/* =========================================================================
   Sections
   ========================================================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: grid;
  align-items: center;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 24px; display: inline-flex; align-items: center; gap: 14px; }
.hero__eyebrow .dot { display: inline-block; width: 5px; height: 5px; background: rgb(var(--gold)); }

.hero__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  max-width: 18ch;
  margin: 0;
  text-wrap: balance;
}
.hero__headline .line { display: block; }
.hero__headline .accent {
  font-style: italic;
  font-weight: 400;
  color: rgb(var(--navy));
}

.hero__sub {
  margin-top: 32px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgb(var(--ink-soft));
  max-width: 54ch;
}

.hero__cta {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
}
.hero__cta .phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; color: rgb(var(--ink-soft));
}
.hero__cta .phone a { color: rgb(var(--navy)); font-weight: 500; border-bottom: 1px solid rgb(var(--rule)); padding-bottom: 2px; }
.hero__cta .phone a:hover { border-color: rgb(var(--gold)); }

.hero__meta {
  position: relative;
  margin-top: clamp(48px, 6vw, 80px);
  padding-bottom: 40px;
  display: flex; justify-content: space-between; align-items: end;
  color: rgb(var(--ink-mute));
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 3;
}
.hero__meta .rule { flex: 1; height: 1px; background: rgb(var(--rule)); margin: 0 24px 6px; }

/* ---- Variant A: photographic hero (image swapped via --hero-img) ---- */
:root {
  /* Default hero image, overridden by Tweaks via --hero-img */
  --hero-img: url("assets/hero/sailboat.jpg");
}
body[data-hero="photo"] .hero { color: rgb(var(--cream)); }
body[data-hero="photo"] .hero__media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgb(20 28 44 / 0.20) 0%, rgb(20 28 44 / 0.15) 35%, rgb(20 28 44 / 0.55) 100%),
    var(--hero-img);
  background-size: cover; background-position: center;
  filter: saturate(0.95) contrast(1.05) brightness(1.08);
  z-index: 1;
  transform: scale(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
/* Mobile: lighten overlay further so dark photos still show through */
@media (max-width: 720px) {
  body[data-hero="photo"] .hero__media {
    background-image:
      linear-gradient(180deg, rgb(20 28 44 / 0.10) 0%, rgb(20 28 44 / 0.05) 35%, rgb(20 28 44 / 0.45) 100%),
      var(--hero-img);
    filter: saturate(1) contrast(1.05) brightness(1.18);
  }
}
@keyframes heroDrift {
  0%   { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.06) translateY(-1.5%); }
}
body[data-hero="photo"] .hero__headline,
body[data-hero="photo"] .hero__headline .accent { color: rgb(var(--cream)); }
body[data-hero="photo"] .hero__sub { color: rgb(var(--cream) / 0.85); }
body[data-hero="photo"] .hero__eyebrow { color: rgb(var(--cream) / 0.7); }
body[data-hero="photo"] .hero__cta .phone { color: rgb(var(--cream) / 0.7); }
body[data-hero="photo"] .hero__cta .phone a { color: rgb(var(--cream)); border-color: rgb(var(--cream) / 0.4); }
body[data-hero="photo"] .hero__meta { color: rgb(var(--cream) / 0.55); }
body[data-hero="photo"] .hero__meta .rule { background: rgb(var(--cream) / 0.25); }
body[data-hero="photo"] .btn { background: rgb(var(--cream)); color: rgb(var(--navy)); }
body[data-hero="photo"] .btn:hover { background: #fff; }
body[data-hero="photo"] .btn--ghost { background: transparent; color: rgb(var(--cream)); border-color: rgb(var(--cream) / 0.4); }
body[data-hero="photo"] .btn--ghost:hover { background: rgb(var(--cream)); color: rgb(var(--navy)); }

/* ---- Variant B: architectural interior ---- */
body[data-hero="interior"] .hero { color: rgb(var(--cream)); }
body[data-hero="interior"] .hero__media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgb(var(--navy) / 0.88) 0%, rgb(var(--navy) / 0.5) 55%, rgb(var(--navy) / 0.25) 100%),
    var(--hero-img);
  background-size: cover; background-position: center;
  z-index: 1;
}
body[data-hero="interior"] .hero__headline,
body[data-hero="interior"] .hero__headline .accent { color: rgb(var(--cream)); }
body[data-hero="interior"] .hero__sub { color: rgb(var(--cream) / 0.85); }
body[data-hero="interior"] .hero__eyebrow { color: rgb(var(--cream) / 0.7); }
body[data-hero="interior"] .hero__cta .phone { color: rgb(var(--cream) / 0.7); }
body[data-hero="interior"] .hero__cta .phone a { color: rgb(var(--cream)); border-color: rgb(var(--cream) / 0.4); }
body[data-hero="interior"] .hero__meta { color: rgb(var(--cream) / 0.55); }
body[data-hero="interior"] .hero__meta .rule { background: rgb(var(--cream) / 0.25); }
body[data-hero="interior"] .btn { background: rgb(var(--cream)); color: rgb(var(--navy)); }
body[data-hero="interior"] .btn--ghost { background: transparent; color: rgb(var(--cream)); border-color: rgb(var(--cream) / 0.4); }
body[data-hero="interior"] .btn--ghost:hover { background: rgb(var(--cream)); color: rgb(var(--navy)); }

/* ---- Variant C: flat navy, typographic ---- */
body[data-hero="flat"] .hero { background: rgb(var(--navy)); color: rgb(var(--cream)); }
body[data-hero="flat"] .hero__media {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgb(var(--cream) / 0.035), transparent 60%),
    radial-gradient(800px 400px at 10% 90%, rgb(var(--gold) / 0.04), transparent 60%);
}
body[data-hero="flat"] .hero__headline,
body[data-hero="flat"] .hero__headline .accent { color: rgb(var(--cream)); }
body[data-hero="flat"] .hero__sub { color: rgb(var(--cream) / 0.78); }
body[data-hero="flat"] .hero__eyebrow { color: rgb(var(--cream) / 0.6); }
body[data-hero="flat"] .hero__cta .phone { color: rgb(var(--cream) / 0.7); }
body[data-hero="flat"] .hero__cta .phone a { color: rgb(var(--cream)); border-color: rgb(var(--cream) / 0.4); }
body[data-hero="flat"] .hero__meta { color: rgb(var(--cream) / 0.45); }
body[data-hero="flat"] .hero__meta .rule { background: rgb(var(--cream) / 0.2); }
body[data-hero="flat"] .btn { background: rgb(var(--cream)); color: rgb(var(--navy)); }
body[data-hero="flat"] .btn--ghost { background: transparent; color: rgb(var(--cream)); border-color: rgb(var(--cream) / 0.4); }
body[data-hero="flat"] .btn--ghost:hover { background: rgb(var(--cream)); color: rgb(var(--navy)); }

/* ---- Variant D: split, type left, photo right ---- */
body[data-hero="split"] .hero {
  display: grid;
  grid-template-columns: 1fr;
}
body[data-hero="split"] .hero__media {
  display: none;
}
body[data-hero="split"] .hero__split-img {
  display: block;
  background-image:
    linear-gradient(180deg, rgb(var(--navy) / 0.15), rgb(var(--navy) / 0.15)),
    var(--hero-img);
  background-size: cover; background-position: center;
}
@media (min-width: 980px) {
  body[data-hero="split"] .hero { grid-template-columns: 1.05fr 1fr; padding-top: 120px; min-height: 100vh; }
  body[data-hero="split"] .hero .container { padding-right: 48px; }
}
body[data-hero="photo"] .hero__split-img,
body[data-hero="interior"] .hero__split-img,
body[data-hero="flat"] .hero__split-img { display: none; }

/* ---------- Value columns (3-up) ---------- */
.values { padding: var(--section-y) 0; }
.values__lead { max-width: 70ch; margin-bottom: 80px; }
.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 48px;
}
@media (min-width: 820px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); gap: 80px 56px; }
}
.value-col { display: flex; flex-direction: column; gap: 20px; }
.value-col .icon-draw { width: 64px; height: 64px; color: rgb(var(--navy)); }
.value-col .icon-draw path,
.value-col .icon-draw circle,
.value-col .icon-draw line,
.value-col .icon-draw rect {
  fill: none; stroke: currentColor; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round;
}
.value-col h3 { margin-top: 8px; }
.value-col .numeral {
  font-family: var(--font-serif); font-style: italic;
  color: rgb(var(--gold));
  font-size: 14px;
  letter-spacing: 0.1em;
}
.value-col p { color: rgb(var(--ink-soft)); }

/* ---------- Problem section (natural-flow stack) ---------- */
.problem { background: rgb(var(--navy)); color: rgb(var(--cream)); padding: 140px 0 160px; }
.problem__stage { display: contents; } /* neutralize old wrapper */
.problem__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 900px) {
  .problem__inner { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.problem__eyebrow { color: rgb(var(--cream) / 0.6); display: block; margin-bottom: 48px; }
.problem__count {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  color: rgb(var(--gold));
  margin-bottom: 18px; text-transform: uppercase;
}

/* Panels are stacked, all visible — each fades up as it enters viewport */
.problem__panels { display: flex; flex-direction: column; gap: 56px; min-height: 0; position: static; }
.problem__panel {
  position: static; inset: auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  pointer-events: auto;
  padding-top: 32px;
  border-top: 1px solid rgb(var(--cream) / 0.12);
}
.problem__panel:first-child { border-top: 0; padding-top: 0; }
.problem__panel.is-active { opacity: 1; transform: none; }
.problem__panel h2 {
  color: rgb(var(--cream));
  font-size: clamp(28px, 3vw, 44px);
  font-family: var(--font-serif); font-weight: 400;
  line-height: 1.12; letter-spacing: -0.015em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.problem__panel p {
  color: rgb(var(--cream) / 0.78);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
}

/* Stat scrolls naturally with the panels (no sticky pin) */
.problem aside { align-self: start; }
.problem__stat {
  font-family: var(--font-serif); font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9; color: rgb(var(--cream)); letter-spacing: -0.03em;
}
.problem__stat sup { font-size: 0.35em; vertical-align: top; color: rgb(var(--gold)); font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }
.problem__stat-caption { color: rgb(var(--cream) / 0.65); max-width: 36ch; margin-top: 20px; font-size: 15px; }

/* Old pinned-progress rail — hidden in new flow */
.problem__progress { display: none; }

/* ---------- How it works timeline ---------- */
.timeline { position: relative; }
.timeline__intro { max-width: 64ch; margin-bottom: 80px; }
.timeline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
}
.timeline__track {
  --fill: 0%;
  position: absolute;
  left: 11px; top: 6px; bottom: 6px; width: 1px;
  background: rgb(var(--rule));
}
.timeline__track::after {
  content: "";
  position: absolute; top: 0; left: 0; width: 1px; height: var(--fill);
  background: linear-gradient(180deg, rgb(var(--navy)) 0%, rgb(var(--gold)) 100%);
  transition: height 0.1s linear;
}
.timeline__step {
  position: relative;
  padding-left: 56px;
}
.timeline__dot {
  position: absolute; left: 6px; top: 6px;
  width: 12px; height: 12px;
  background: rgb(var(--cream));
  border: 1px solid rgb(var(--navy));
  border-radius: 50%;
  z-index: 1;
}
.timeline__dot::after {
  content: ""; position: absolute; inset: 3px;
  background: rgb(var(--navy));
  border-radius: 50%;
}
.timeline__step .num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  color: rgb(var(--gold)); margin-bottom: 8px;
}
.timeline__step h3 { margin-bottom: 12px; font-size: clamp(24px, 2vw, 30px); }
.timeline__step p  { color: rgb(var(--ink-soft)); max-width: 56ch; }
.timeline__step .icon-draw { width: 44px; height: 44px; color: rgb(var(--navy)); margin-top: 20px; opacity: 0.9; }

/* ---------- Income illustration chart ---------- */
.illustration {
  background: rgb(var(--paper));
  padding: 80px var(--gutter);
}
.illustration__card {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .illustration__card { grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
}
.illustration__chart {
  width: 100%; height: auto;
  background: rgb(var(--cream));
  border: 1px solid rgb(var(--rule));
  padding: 28px;
  position: relative;
}
.illustration__chart svg { width: 100%; height: auto; display: block; }
.illustration__legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgb(var(--ink-soft));
  font-family: var(--font-mono); letter-spacing: 0.05em;
  margin-top: 18px;
}
.illustration__legend .sw { display: inline-block; width: 14px; height: 2px; margin-right: 8px; vertical-align: middle; }

/* ---------- Trust / carriers ---------- */
.trust { background: rgb(var(--cream)); border-top: 1px solid rgb(var(--rule)); border-bottom: 1px solid rgb(var(--rule)); }
.trust__grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start;
}
@media (min-width: 900px) { .trust__grid { grid-template-columns: 0.9fr 1.4fr; gap: 96px; } }
.trust__carriers {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgb(var(--rule));
  border: 1px solid rgb(var(--rule));
}
@media (min-width: 640px) { .trust__carriers { grid-template-columns: repeat(3, 1fr); } }
.trust__carrier {
  background: rgb(var(--cream));
  aspect-ratio: 2.4 / 1;
  display: grid; place-items: center;
  color: rgb(var(--ink-soft));
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.trust__carrier svg { width: 38px; height: 38px; color: rgb(var(--navy)); opacity: 0.85; }
.trust__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: 0.01em;
  color: rgb(var(--navy));
  white-space: nowrap;
}
.trust__fine { margin-top: 28px; font-size: 14px; color: rgb(var(--ink-mute)); max-width: 64ch; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials { background: rgb(var(--paper)); }
.testimonials__inner { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); text-align: left; }
.quotes { position: relative; min-height: 260px; margin-top: 48px; }
.quote {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1200ms var(--ease-out);
  pointer-events: none;
}
.quote.is-active { opacity: 1; pointer-events: auto; }
.quote blockquote {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3; color: rgb(var(--ink));
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  max-width: 30ch;
}
.quote cite {
  display: block; margin-top: 28px;
  font-style: normal;
  font-size: 14px; letter-spacing: 0.05em;
  color: rgb(var(--ink-mute));
  font-family: var(--font-sans);
}
.quote cite span { color: rgb(var(--ink-soft)); }

.quote-nav {
  display: flex; align-items: center; gap: 16px; margin-top: 56px;
}
.quote-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgb(var(--ink-mute) / 0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.quote-dot.is-active { background: rgb(var(--navy)); transform: scale(1.4); }
.quote-nav__arrows { margin-left: auto; display: flex; gap: 2px; }
.quote-nav__arrows button {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgb(var(--rule));
  color: rgb(var(--navy));
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.quote-nav__arrows button:hover { border-color: rgb(var(--navy)); background: rgb(var(--navy)); color: rgb(var(--cream)); }

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid; grid-template-columns: 1fr; gap: 60px;
}
@media (min-width: 900px) { .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: 96px; } }
.faq__list { border-top: 1px solid rgb(var(--rule)); }
.faq__item { border-bottom: 1px solid rgb(var(--rule)); }
.faq__q {
  width: 100%;
  background: transparent; border: none; cursor: pointer;
  padding: 28px 48px 28px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.4vw, 23px);
  letter-spacing: -0.01em;
  color: rgb(var(--ink));
  position: relative;
  line-height: 1.3;
}
.faq__q::after {
  content: ""; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px;
  background:
    linear-gradient(rgb(var(--navy)), rgb(var(--navy))) center/12px 1px no-repeat,
    linear-gradient(rgb(var(--navy)), rgb(var(--navy))) center/1px 12px no-repeat;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); background: linear-gradient(rgb(var(--navy)), rgb(var(--navy))) center/12px 1px no-repeat; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 700ms var(--ease-out);
}
.faq__item.is-open .faq__a { max-height: 320px; }
.faq__a p { color: rgb(var(--ink-soft)); padding: 0 0 28px; max-width: 64ch; }

/* ---------- Resources / articles ---------- */
.resources__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgb(var(--rule));
  border: 1px solid rgb(var(--rule));
  margin-top: 64px;
}
@media (min-width: 720px) { .resources__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .resources__grid { grid-template-columns: repeat(3, 1fr); } }
.resource {
  background: rgb(var(--cream));
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background var(--dur-base) var(--ease-out);
}
.resource:hover { background: rgb(var(--paper)); }
.resource .kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgb(var(--gold));
}
.resource h3 { font-size: clamp(22px, 1.6vw, 26px); line-height: 1.25; }
.resource .meta { margin-top: auto; padding-top: 28px; font-size: 13px; color: rgb(var(--ink-mute)); letter-spacing: 0.04em; font-family: var(--font-mono); }

/* ---------- Final CTA ---------- */
.cta-final { background: rgb(var(--navy)); color: rgb(var(--cream)); }
.cta-final__inner { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); text-align: left; }
.cta-final h2 {
  color: rgb(var(--cream));
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  max-width: 20ch;
}
.cta-final p { color: rgb(var(--cream) / 0.82); max-width: 56ch; margin-top: 28px; font-size: 18px; }
.cta-final__actions { margin-top: 52px; display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; }
.cta-final .phone-block {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 14px; color: rgb(var(--cream) / 0.55);
  letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono);
}
.cta-final .phone-block a {
  font-family: var(--font-serif); font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.015em;
  color: rgb(var(--cream)); text-transform: none;
}
.cta-final .phone-block a:hover { color: rgb(var(--gold)); }

/* ---------- Footer ---------- */
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto;
}
@media (min-width: 820px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; } }
.footer__brand .nav__logo { height: 36px; }
.footer__brand .nav__logo img { filter: none; max-width: 220px; height: 36px !important; }
.footer__col h4 {
  color: rgb(var(--cream) / 0.5);
  font-family: var(--font-sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer__fine {
  max-width: var(--max); margin: 80px auto 0; padding: 48px var(--gutter) 0;
  border-top: 1px solid rgb(var(--cream) / 0.12);
  display: grid; gap: 24px;
}
.footer__fine .compliance { font-size: 13px; line-height: 1.7; color: rgb(var(--cream) / 0.55); max-width: 88ch; }
.footer__fine .copy { font-size: 12px; letter-spacing: 0.1em; font-family: var(--font-mono); color: rgb(var(--cream) / 0.4); text-transform: uppercase; }

/* ---------- Producers page specific ---------- */
.producers-hero {
  background: rgb(var(--navy)); color: rgb(var(--cream));
  padding: 180px 0 120px;
  position: relative; overflow: hidden;
}
.producers-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 85% 30%, rgb(var(--cream) / 0.03), transparent 65%),
    radial-gradient(600px 400px at 5% 100%, rgb(var(--gold) / 0.05), transparent 60%);
  pointer-events: none;
}
.producers-hero .container { position: relative; z-index: 1; }
.producers-hero h1 { color: rgb(var(--cream)); max-width: 18ch; }
.producers-hero p { color: rgb(var(--cream) / 0.82); max-width: 56ch; margin-top: 28px; font-size: 19px; }

.offer-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgb(var(--rule));
  border: 1px solid rgb(var(--rule));
}
@media (min-width: 820px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }
.offer {
  background: rgb(var(--cream));
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.offer .num {
  font-family: var(--font-serif); font-style: italic;
  color: rgb(var(--gold));
  font-size: 14px; letter-spacing: 0.08em;
}
.offer h3 { font-size: clamp(22px, 1.7vw, 28px); margin-top: 4px; }
.offer p { color: rgb(var(--ink-soft)); }

.stats {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.stat { border-top: 1px solid rgb(var(--rule)); padding-top: 28px; }
.stat__num { font-family: var(--font-serif); font-size: clamp(44px, 4.4vw, 64px); line-height: 1; letter-spacing: -0.02em; color: rgb(var(--navy)); }
.stat__num sup { font-size: 0.45em; color: rgb(var(--gold)); font-family: var(--font-sans); font-weight: 500; margin-left: 2px; }
.stat__label { margin-top: 14px; font-size: 14px; color: rgb(var(--ink-mute)); letter-spacing: 0.02em; max-width: 28ch; }

.producer-form {
  background: rgb(var(--paper));
  padding: 72px var(--gutter);
}
.producer-form__inner {
  max-width: 720px; margin: 0 auto;
}
.producer-form form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px;
  margin-top: 40px;
}
.producer-form .full { grid-column: 1 / -1; }
.producer-form label {
  display: block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgb(var(--ink-mute)); margin-bottom: 8px;
}
.producer-form input, .producer-form select, .producer-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans); font-size: 16px;
  background: rgb(var(--cream));
  border: 1px solid rgb(var(--rule));
  color: rgb(var(--ink));
  border-radius: 0;
}
.producer-form input:focus, .producer-form select:focus, .producer-form textarea:focus {
  outline: none; border-color: rgb(var(--navy));
}
