:root {
  /* Whitestone Standard — revised v2 */
  --ink: #1e1e1e;       /* charcoal — headlines/body */
  --muted: #5b564d;     /* muted charcoal for supporting text */
  --line: #b9b5a9;      /* divider */
  --paper: #d6d2c8;     /* secondary surface */
  --cream: #fcfcfa;     /* near-white canvas */
  --green: #1e1e1e;     /* charcoal for dark structural surfaces */
  --green-2: #2c2c2a;   /* charcoal gradient depth */
  --gold: #c8462d;      /* restrained orange-red accent */
  --gold-light: #ff7043;/* bright logo-orange for small dark-section accents */
  --olive: #746647;     /* muted warm support tone */
  --white: #ffffff;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans Pro", "Sofia Pro", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 86px;
  padding: 0 40px;
  background: rgba(252, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(126px, 10vw, 158px);
  padding: 4px 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand::after {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 58px);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.site-nav .active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button.light {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.button.ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: min(560px, calc(100vh - 86px));
  display: grid;
  align-items: center;
  padding: 60px 56px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(30, 30, 30, 0.94) 0%, rgba(30, 30, 30, 0.78) 40%, rgba(30, 30, 30, 0.24) 75%),
    url("assets/for-brands-hero.png") right center / cover no-repeat;
  border-bottom: 7px solid var(--white);
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(30, 30, 30, 0.94) 0%, rgba(30, 30, 30, 0.78) 40%, rgba(30, 30, 30, 0.24) 75%),
    url("assets/home-hero-modern-market.png") right center / cover no-repeat;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  color: var(--cream);
}

.hero p {
  color: rgba(247, 246, 242, 0.82);
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.6vw, 76px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(29px, 3vw, 40px);
}

h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: var(--gold);
}

h3 {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.18;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.split-band,
.brings,
.partnership,
.process,
.contact-band {
  border-bottom: 7px solid var(--white);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(290px, 34%) 1fr;
  background: var(--paper);
}

.section-copy {
  padding: clamp(32px, 4.3vw, 58px);
}

.section-copy p {
  max-width: 650px;
}

.strong {
  color: var(--gold);
  font-weight: 700;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
  padding: 55px 28px;
  background: linear-gradient(90deg, var(--cream), var(--paper));
}

.value-grid article,
.mini-grid article {
  min-height: 170px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.fit .value-grid p {
  font-size: 14px;
  line-height: 1.42;
}

.fit .section-copy {
  color: var(--white);
  background: radial-gradient(circle at 20% 0%, var(--green-2), var(--green) 62%);
}

.fit .section-copy h2,
.fit .section-copy p {
  color: var(--white);
}

.fit .section-copy h2::after {
  background: var(--gold-light);
}

.fit .section-copy .strong {
  color: var(--gold-light);
}

.fit .value-grid {
  align-items: start;
  background:
    linear-gradient(var(--line), var(--line)) 28px 76px / calc(100% - 56px) 1px no-repeat,
    var(--paper);
}

.fit .value-grid article {
  border-left: none;
  padding-top: 0;
}

.fit .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.brings,
.partnership {
  display: grid;
  grid-template-columns: 43% 57%;
  background: var(--cream);
}

.brings > img,
.partnership > img {
  min-height: 360px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px 42px;
  margin-top: 28px;
}

.check-grid article {
  position: relative;
  padding-left: 34px;
}

.check-grid article::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.partnership {
  grid-template-columns: 58% 42%;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 0;
  margin-top: 36px;
}

.mini-grid article {
  min-height: 148px;
  padding: 0 18px;
}

.process {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 25%);
  gap: 0;
  background: var(--paper);
}

.process-heading {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  gap: 44px;
  padding: 30px 56px 0;
}

.timeline {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 34px 56px 52px;
  background:
    linear-gradient(var(--line), var(--line)) 56px 48px / calc(100% - 112px) 1px no-repeat;
}

.timeline article {
  min-width: 0;
}

.timeline span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.timeline h3 {
  min-height: 34px;
}

.process aside {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--white);
  background: radial-gradient(circle at 20% 0%, var(--green-2), var(--green) 60%);
}

.process aside h3 {
  max-width: 260px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.handshake {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.contact-band {
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--cream);
}

.la-photo {
  min-height: 200px;
  background:
    linear-gradient(0deg, rgba(30, 30, 30, 0.1), rgba(30, 30, 30, 0.1)),
    linear-gradient(130deg, rgba(30, 30, 30, 0.72), rgba(200, 70, 45, 0.14) 39%, rgba(30, 30, 30, 0.74)),
    url("assets/socal-downtown-la.jpg") center / cover no-repeat;
  filter: saturate(0.84);
}

.contact-hero {
  min-height: min(440px, calc(100vh - 86px));
  display: grid;
  align-items: end;
  padding: clamp(44px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.62)),
    url("assets/market-building.png") center / cover no-repeat;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero h1,
.contact-hero p {
  color: var(--white);
}

.contact-options {
  padding: clamp(36px, 5vw, 64px) 36px clamp(46px, 6vw, 76px);
  background: var(--paper);
  border-bottom: 7px solid var(--white);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.2vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdfa;
}

.contact-card-grid h3 {
  margin-bottom: 14px;
}

.contact-card-grid .button {
  margin-top: auto;
}

.form-hero {
  min-height: min(520px, calc(100vh - 86px));
  display: grid;
  align-items: end;
  padding: clamp(44px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.58)),
    url("assets/market-aisle.png") center / cover no-repeat;
}

.brand-form-hero {
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.58)),
    url("assets/brand-execution.png") center / cover no-repeat;
}

.form-hero-copy {
  max-width: 760px;
}

.compact-form-hero {
  min-height: 280px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.94), rgba(30, 30, 30, 0.82)),
    url("assets/market-aisle.png") center / cover no-repeat;
}

.brand-form-hero.compact-form-hero {
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.94), rgba(30, 30, 30, 0.82)),
    url("assets/brand-execution.png") center / cover no-repeat;
}

.catalog-form-hero.compact-form-hero {
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.94), rgba(30, 30, 30, 0.78)),
    url("assets/hero-products.png") center / cover no-repeat;
}

.compact-form-hero .form-hero-copy {
  max-width: 620px;
}

.compact-form-hero h1 {
  max-width: 580px;
  font-size: clamp(38px, 5vw, 58px);
}

.compact-form-hero p:not(.eyebrow) {
  max-width: 500px;
}

.form-hero h1,
.form-hero p {
  color: var(--white);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.58fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(40px, 6vw, 78px) 36px;
  background: var(--paper);
  border-bottom: 7px solid var(--white);
}

.form-intro {
  max-width: 390px;
}

.form-intro h2 {
  margin-bottom: 16px;
}

.compact-form-section {
  grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1.7fr);
  padding-top: clamp(24px, 3.4vw, 42px);
}

.compact-form-note {
  padding-top: 4px;
}

.compact-form-note p {
  font-size: 16px;
  line-height: 1.45;
}

.inquiry-form {
  display: grid;
  gap: 30px;
  padding: clamp(28px, 4vw, 46px);
  background: #fffdfa;
  border: 1px solid var(--line);
}

.inquiry-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-form fieldset:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.inquiry-form legend {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.checkbox-field span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(200, 70, 45, 0.28);
  outline-offset: 2px;
  border-color: var(--gold);
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.hidden-field {
  display: none;
}

.thank-you-section {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: clamp(44px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.62)),
    url("assets/socal-downtown-la.jpg") center / cover no-repeat;
}

.thank-you-panel {
  max-width: 720px;
}

.thank-you-panel h1,
.thank-you-panel p {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr auto auto auto;
  align-items: center;
  gap: 34px;
  padding: 24px 32px;
  color: var(--white);
  background: var(--green);
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer .brand {
  width: 170px;
  padding: 0;
  background: transparent;
  filter: none;
}

.footer-logo {
  opacity: 0.96;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: grid;
  gap: 4px;
}

.footer-contact {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  font-style: normal;
  line-height: 1.5;
  text-transform: none;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.social {
  font-size: 20px;
  font-weight: 800;
  text-transform: none;
}

.portfolio-hero {
  min-height: 470px;
  display: grid;
  align-items: center;
  padding: 52px 56px;
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.98) 0%, rgba(252, 250, 244, 0.94) 37%, rgba(252, 250, 244, 0.2) 67%),
    url("assets/hero-products.png") right center / cover no-repeat;
  border-bottom: 7px solid var(--white);
}

.retail-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 58px 56px;
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 1) 0%, rgba(252, 250, 244, 0.96) 32%, rgba(252, 250, 244, 0.18) 62%),
    url("assets/market-aisle.png") right center / cover no-repeat;
  border-bottom: 7px solid var(--white);
}

.retail-hero-copy {
  max-width: 520px;
}

.retail-hero h1 {
  color: var(--green-2);
  font-size: clamp(42px, 4.8vw, 72px);
}

.lead {
  font-size: 17px;
}

.portfolio-hero-copy {
  max-width: 610px;
}

.portfolio-hero h1 {
  color: var(--green-2);
  font-size: clamp(44px, 5vw, 72px);
}

.portfolio-categories,
.brand-selection,
.retail-support {
  padding: 34px 36px 52px;
  background: var(--cream);
  border-bottom: 7px solid var(--white);
}

.center-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 8px;
}

.center-heading h2::after {
  display: none;
}

.center-heading p {
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 14px;
}

.category-card {
  min-width: 0;
  background: var(--cream);
  border: 1px solid var(--line);
}

.category-card img {
  aspect-ratio: 0.92;
  height: auto;
}

.category-card div {
  padding: 14px 15px 16px;
}

.category-card h3 {
  min-height: 0;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.08;
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.34;
}

.category-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card a:hover,
.text-link:hover {
  color: var(--gold);
}

.retailer-showcase {
  padding: 34px 36px 52px;
  background: var(--paper);
  border-bottom: 7px solid var(--white);
}

.retailer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.retailer-grid span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.retailer-grid.logo-grid span {
  min-height: 96px;
  background: #fffdfa;
}

.retailer-grid.logo-grid span.dark-logo {
  background: #111111;
}

.retailer-grid.logo-grid img {
  display: block;
  width: min(145px, 82%);
  max-height: 54px;
  object-fit: contain;
  filter: saturate(0.92) contrast(0.96);
}

.audience-fork {
  display: grid;
  grid-template-columns: minmax(260px, 34%) 1fr;
  gap: 0;
  padding: 0;
  border-bottom: 7px solid var(--white);
}

.fork-heading,
.fork-grid article {
  padding: clamp(32px, 4.3vw, 58px);
}

.fork-heading {
  border-right: 1px solid rgba(247, 246, 242, 0.14);
}

.fork-heading p {
  max-width: 320px;
}

.fork-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.fork-grid article {
  min-height: 270px;
  border-right: 1px solid rgba(247, 246, 242, 0.14);
}

.fork-grid article:last-child {
  border-right: none;
}

.fork-grid h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
  text-transform: none;
}

.fork-grid p {
  max-width: 340px;
  margin-bottom: 28px;
  font-size: 17px;
}

.thumb-a {
  object-position: 78% 56%;
}

.thumb-b {
  object-position: 58% 45%;
}

.thumb-c {
  object-position: 22% 50%;
}

.thumb-d {
  object-position: 69% 62%;
}

.thumb-e {
  object-position: 82% 48%;
}

.thumb-f {
  object-position: 91% 56%;
}

.capability-band {
  display: grid;
  grid-template-columns: minmax(280px, 28%) 1fr;
  background: linear-gradient(90deg, var(--cream), var(--paper));
  border-bottom: 7px solid var(--white);
}

.portfolio-values {
  background: transparent;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 0;
}

.brand-strip article {
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: center;
}

.brand-strip img {
  aspect-ratio: 0.92;
  height: auto;
  border: 0;
}

.brand-strip img.brand-logo-tile {
  object-fit: contain;
  padding: 16px;
  background: #fffdfa;
}

.product-contain {
  object-fit: contain;
  padding: 12px;
  background: #fffdfa;
}

.grab-go-crop {
  object-position: 50% 24%;
}

.global-flavors-crop {
  object-position: 76% 50%;
}

.farmer-joes-crop {
  object-position: 50% 50%;
}

.ay-chiwawa-crop {
  object-position: 30% 40%;
}

.brand-strip h3 {
  margin: 12px 12px 0;
  font-size: 13px;
}

.brand-strip p {
  margin: 3px 12px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.brand-selection .text-link {
  justify-content: center;
  width: 100%;
}

.catalog-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--green);
}

.catalog-copy {
  padding: clamp(36px, 5vw, 58px);
}

.catalog-copy h2 {
  max-width: 430px;
  color: var(--white);
}

.catalog-copy h2::after {
  background: var(--white);
}

.catalog-copy p {
  max-width: 540px;
}

.catalog-cta img {
  min-height: 300px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 0;
  padding-top: 10px;
}

.support-grid.service-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.support-grid article {
  min-height: 210px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.line-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green-2);
  border: 1px solid var(--green-2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.retail-process {
  display: grid;
  grid-template-columns: minmax(250px, 19%) 1fr;
  gap: 24px;
  padding: 42px 36px;
  background: var(--cream);
  border-bottom: 7px solid var(--white);
}

.retail-process .section-copy {
  padding: 0 20px 0 14px;
}

.retail-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 18px;
}

.retail-steps article {
  min-width: 0;
  text-align: center;
}

.retail-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.retail-steps p {
  min-height: 66px;
}

.retail-steps img {
  aspect-ratio: 1;
  height: auto;
  border-radius: 8px;
}

.retail-cta {
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--paper);
}

.retail-cta img {
  min-height: 340px;
}

.retail-cta-copy {
  align-self: center;
  padding: clamp(36px, 5vw, 64px);
}

.retail-cta-copy h2 {
  max-width: 520px;
}

.pull-quote {
  margin: 28px 0;
  color: var(--green-2);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.pull-quote.light {
  color: var(--white);
}

/* ===== New homepage components ===== */

.section-dark {
  color: var(--cream);
  background: var(--green);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

.section-dark p {
  color: rgba(247, 246, 242, 0.76);
}

.section-dark .strong {
  color: var(--gold-light);
}

.section-dark h2::after {
  background: var(--gold-light);
}

.section-dark .logo-strip {
  border-top-color: rgba(247, 246, 242, 0.2);
}

.section-dark .logo-strip span {
  color: rgba(247, 246, 242, 0.62);
  opacity: 1;
}

.section-dark .dual-panel > div {
  border-right-color: rgba(247, 246, 242, 0.14);
}

.photo-premium {
  filter: grayscale(0.3) sepia(0.16) contrast(1.08) brightness(0.95);
}

.hero .button.secondary {
  color: var(--cream);
  border-color: rgba(247, 246, 242, 0.7);
}

.hero-photo-tag {
  position: absolute;
  right: 56px;
  top: 42px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 2;
  text-align: right;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
}

.market-band {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  background: var(--paper);
  border-bottom: 7px solid var(--white);
}

.market-photo {
  position: relative;
  min-height: 360px;
}

.market-photo img {
  height: 100%;
}

.market-photo span {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 10px 16px;
  color: var(--white);
  background: rgba(30, 30, 30, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-bottom: 7px solid var(--white);
}

.dual-panel > div {
  padding: clamp(32px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.dual-panel > div:last-child {
  border-right: none;
}

.dual-panel img {
  aspect-ratio: 16 / 10;
  height: auto;
  margin: 22px 0;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.logo-strip span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.72;
}

.realities {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 34%);
  background: var(--paper);
  border-bottom: 7px solid var(--white);
}

.realities-copy {
  padding: clamp(32px, 4.3vw, 58px);
}

.realities-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
}

.realities-features article {
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.realities-features article:first-child {
  padding-left: 0;
  border-left: none;
}

.realities-features svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  stroke: var(--gold);
}

.realities-features h3 {
  font-size: 12px;
}

.realities-features p {
  font-size: 13px;
}

.realities-photo {
  min-height: 320px;
  background:
    linear-gradient(0deg, rgba(30, 30, 30, 0.08), rgba(30, 30, 30, 0.08)),
    url("assets/whitestone-box-truck.png") center / cover no-repeat;
}

.photo-grid-band {
  display: grid;
  grid-template-columns: minmax(280px, 26%) 1fr;
  background: var(--cream);
  border-bottom: 7px solid var(--white);
}

.photo-grid-copy {
  padding: clamp(32px, 4.3vw, 58px);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.photo-grid figure {
  position: relative;
  min-height: 100%;
  margin: 0;
}

.photo-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-tone-a { filter: sepia(0.12) saturate(1.05); }
.photo-tone-b { filter: sepia(0.05) saturate(0.95); }
.photo-tone-c { filter: sepia(0.18) saturate(1.1) brightness(0.95); }
.photo-tone-d { filter: grayscale(0.25) brightness(0.9); }

@media (max-width: 1050px) {
  .market-band,
  .dual-panel,
  .realities,
  .photo-grid-band,
  .audience-fork {
    grid-template-columns: 1fr;
  }

  .dual-panel > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .fork-heading {
    border-right: none;
    border-bottom: 1px solid rgba(247, 246, 242, 0.14);
  }

  .realities-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hero-photo-tag {
    display: none;
  }

  .realities-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .realities-features article {
    padding: 0 14px;
    border-left: 1px solid var(--line);
  }

  .realities-features article:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }

  .realities-features article:last-child {
    grid-column: 1 / -1;
    max-width: 72%;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip {
    gap: 18px 24px;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 18px;
    padding: 0 24px;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav .active {
    padding-bottom: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
  }

  .header-cta {
    justify-self: end;
  }

  .split-band,
  .brings,
  .partnership,
  .process,
  .contact-band,
  .capability-band,
  .catalog-cta,
  .retail-process,
  .retail-cta,
  .form-section {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .mini-grid,
  .timeline,
  .category-grid,
  .brand-strip,
  .support-grid,
  .contact-card-grid,
  .retail-steps {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }

  .process-heading,
  .timeline,
  .process aside {
    grid-column: auto;
    grid-row: auto;
  }

  .process-heading {
    grid-template-columns: 1fr;
    padding: 38px 34px 0;
  }

  .timeline {
    padding: 28px 34px 42px;
    background: none;
  }

  .brings > img,
  .partnership > img,
  .catalog-cta img,
  .retail-cta img {
    max-height: 380px;
  }

  .retail-process {
    padding: 36px 28px;
  }

  .form-intro {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    width: 124px;
    padding: 5px 0;
  }

  .menu-toggle {
    justify-self: end;
  }

  .site-nav {
    top: 72px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 680px;
    align-items: end;
    padding: 38px 22px;
    background:
      linear-gradient(180deg, rgba(30, 30, 30, 0.3) 0%, rgba(30, 30, 30, 0.88) 55%, rgba(30, 30, 30, 0.97) 88%),
      url("assets/for-brands-hero.png") 63% top / auto 58% no-repeat,
      var(--green);
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(30, 30, 30, 0.3) 0%, rgba(30, 30, 30, 0.88) 55%, rgba(30, 30, 30, 0.97) 88%),
      url("assets/home-hero-modern-market.png") 66% top / auto 58% no-repeat,
      var(--green);
  }

  .portfolio-hero {
    min-height: 680px;
    align-items: end;
    padding: 38px 22px;
    background:
      linear-gradient(180deg, rgba(252, 250, 244, 0.2) 0%, rgba(252, 250, 244, 0.88) 43%, rgba(252, 250, 244, 1) 78%),
      url("assets/hero-products.png") 62% top / auto 56% no-repeat,
      var(--cream);
  }

  .retail-hero {
    min-height: 650px;
    align-items: end;
    padding: 38px 22px;
    background:
      linear-gradient(180deg, rgba(252, 250, 244, 0.12) 0%, rgba(252, 250, 244, 0.9) 48%, rgba(252, 250, 244, 1) 82%),
      url("assets/market-aisle.png") 65% top / auto 58% no-repeat,
      var(--cream);
  }

  .form-hero {
    min-height: 560px;
    align-items: end;
    padding: 38px 22px;
  }

  .compact-form-hero {
    min-height: 300px;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .compact-form-hero h1 {
    font-size: 36px;
  }

  .form-section {
    padding: 32px 20px 42px;
  }

  .inquiry-form {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-section {
    min-height: calc(100vh - 72px);
    padding: 38px 22px;
  }

  h1 {
    font-size: 42px;
  }

  .section-copy {
    padding: 34px 22px;
  }

  .value-grid,
  .check-grid,
  .mini-grid,
  .timeline,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .brand-strip,
  .support-grid,
  .contact-card-grid,
  .retail-steps,
  .fork-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid.service-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-categories,
  .retailer-showcase,
  .fork-heading,
  .brand-selection,
  .contact-options,
  .retail-support {
    padding: 32px 20px 42px;
  }

  .fork-grid article {
    min-height: auto;
    padding: 30px 20px;
  }

  .retailer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retailer-grid span {
    min-height: 68px;
    font-size: 16px;
  }

  .value-grid {
    padding: 16px 22px 28px;
  }

  .fit .value-grid {
    background: var(--paper);
  }

  .value-grid article,
  .mini-grid article {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .fit .value-grid article:first-child {
    border-top: 0;
  }

  .support-grid article {
    min-height: auto;
    padding: 20px 12px;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .support-grid article:nth-child(odd) {
    border-left: 0;
  }

  .support-grid.service-grid article {
    border-left: 0;
  }

  .category-grid,
  .brand-strip {
    gap: 12px;
  }

  .category-card h3 {
    font-size: 16px;
  }

  .category-card p,
  .brand-strip p {
    font-size: 11px;
  }

  .retail-process {
    padding: 34px 20px;
  }

  .retail-process .section-copy {
    padding: 0;
  }

  .retail-steps p {
    min-height: auto;
  }

  .brings > img,
  .partnership > img {
    min-height: 290px;
  }

  .process aside {
    padding: 34px 22px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .actions {
    gap: 14px;
  }

  .site-footer {
    align-items: start;
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .contact-card-grid,
  .fork-grid {
    grid-template-columns: 1fr;
  }

  .fork-grid article {
    border-right: none;
    border-bottom: 1px solid rgba(247, 246, 242, 0.14);
  }

  .fork-grid article:last-child {
    border-bottom: none;
  }
}

/* Specificity fix: guarantee dark-section backgrounds can't be overridden by
   later same-specificity component rules (.dual-panel, .contact-band, etc.) */
.dual-panel.section-dark,
.contact-band.section-dark,
.retail-cta.section-dark {
  background: var(--green);
}
