/* Santa Fe Greens — elevated editorial */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --bg: #f4f0e7;
  --bg-2: #e9e2d6;
  --surface: #fffdf8;
  --ink: #172019;
  --ink-2: #39433c;
  --muted: #6d746e;
  --line: rgba(20, 58, 44, 0.14);
  --forest: #143a2c;
  --forest-2: #24513f;
  --gold: #c79a45;
  --gold-soft: rgba(199, 154, 69, 0.18);
  --max: 1220px;
  --nav-h: 82px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-2); }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  flex-shrink: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.25rem !important;
  background: var(--gold);
  color: #102a20 !important;
  border-radius: 0;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  transition: background 0.25s var(--ease);
}

.nav-cta:hover {
  background: #d8ad5b;
  color: #102a20 !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.75rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn--primary {
  background: var(--forest);
  color: #f7f4ef !important;
  border-color: var(--forest);
}
.btn--primary:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  color: #fff !important;
}

.btn--secondary {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: #f7f4ef !important;
}

.btn--ghost {
  background: transparent;
  color: #f7f4ef !important;
  border-color: rgba(247, 244, 239, 0.4);
}
.btn--ghost:hover {
  border-color: #f7f4ef;
  background: rgba(247, 244, 239, 0.08);
}

.btn--light {
  background: #f7f4ef;
  color: var(--forest) !important;
  border-color: #f7f4ef;
}
.btn--light:hover {
  background: #fff;
  color: var(--forest-2) !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ——— Hero ——— */
.hero {
  padding: 6.75rem 0 6.25rem;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 154, 69, 0.18), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(77, 132, 104, 0.28), transparent 36%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 54px, rgba(255,255,255,0.018) 55px 56px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid > *,
.split > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 4.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  color: #fffaf0;
}

.hero h1 em {
  color: #dfbd76;
  font-weight: 400;
}

.hero-lead {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(255, 250, 240, 0.76);
  max-width: 28rem;
  margin: 0;
  line-height: 1.7;
}

.hero .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #102a20 !important;
}

.hero .btn--primary:hover {
  background: #ddb66c;
  border-color: #ddb66c;
}

.hero .btn--secondary {
  border-color: rgba(255, 250, 240, 0.7);
  color: #fffaf0 !important;
}

.hero .btn--secondary:hover {
  background: #fffaf0;
  color: var(--forest) !important;
}

.hero-offer {
  background: var(--surface);
  color: var(--ink);
  padding: 1.75rem 2rem 2rem;
  border-top: 5px solid var(--gold);
  box-shadow: 0 28px 70px rgba(3, 18, 12, 0.28);
}

.hero-offer-head,
.hero-offer-row,
.hero-offer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.hero-offer-head {
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-offer-row {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.hero-offer-row div {
  display: grid;
  gap: 0.15rem;
}

.hero-offer-row strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.hero-offer-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-offer-row b {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-offer-total {
  margin: 0.35rem 0 1.25rem;
  padding: 1rem 0;
  border-top: 2px solid var(--forest);
  color: var(--forest);
}

.hero-offer-total span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer-total strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.hero-offer .btn { width: 100%; }

/* ——— Trust row ——— */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 250, 240, 0.2);
}

.chips li {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.62);
  padding: 1rem 1.35rem 0 0;
}

.chips li:not(:last-child)::after {
  content: "·";
  margin-left: 1.35rem;
  color: var(--gold);
}

/* ——— Sections ——— */
.section { padding: 6.25rem 0; }
.section--tight { padding: 4rem 0; }
.section--deep { background: var(--bg-2); }
.section--forest {
  background: var(--forest);
  color: #f7f4ef;
}

.section-head {
  max-width: 32rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.85rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
}

.section--forest .section-head p {
  color: rgba(247, 244, 239, 0.65);
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

/* ——— Cards / products ——— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  box-shadow: 0 12px 34px rgba(26, 50, 39, 0.06);
}

.card:hover {
  border-color: rgba(20, 58, 44, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(26, 50, 39, 0.11);
}

.card-body {
  padding: 2rem 2rem 2.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
}

.muted { color: var(--muted); font-size: 0.88rem; font-weight: 300; }

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
}

.product-card--pea { background: #eef3e9; }
.product-card--pea::before { background: #72905d; }
.product-card--sunflower { background: #f4ead6; }
.product-card--sunflower::before { background: #c59037; }
.product-card--broccoli { background: #e6efe8; }
.product-card--broccoli::before { background: #3f7358; }

.product-visual {
  aspect-ratio: 5/4;
  background:
    linear-gradient(160deg, #e8efe9 0%, var(--bg-2) 55%, #e4d9c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual::after {
  content: attr(data-crop);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(26, 50, 39, 0.07);
}

.step {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--line);
  counter-increment: step;
}

.step:last-child { border-right: none; }

.steps { counter-reset: step; }

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

/* ——— Plans ——— */
.plan {
  padding: 2rem 1.75rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.plan--featured {
  border-color: var(--forest);
  background: linear-gradient(180deg, var(--surface) 0%, #eef3f0 100%);
}

.plan--featured::before {
  content: "Most popular";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--forest);
  color: #f7f4ef;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
}

.plan-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.plan h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.plan .price {
  margin: 0.85rem 0 0.25rem;
  font-size: 2.1rem;
}

.plan .price span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0;
}

.plan ul {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  flex: 1;
}

.plan li {
  padding: 0.45rem 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 300;
  border-bottom: 1px solid var(--line);
}

.plan li:last-child { border-bottom: none; }

.plan .btn { width: 100%; margin-top: auto; }

/* ——— Feature band ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
}

.split p {
  margin: 0 0 1rem;
  font-weight: 300;
  color: var(--ink-2);
  max-width: 30rem;
  line-height: 1.7;
}

.section--forest .split p {
  color: rgba(247, 244, 239, 0.75);
}

.split-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.split-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.12);
  font-weight: 300;
  font-size: 1.02rem;
}

.section--forest .split-list li {
  color: rgba(247, 244, 239, 0.9);
  border-bottom-color: rgba(247, 244, 239, 0.12);
}

/* ——— Page hero ——— */
.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at 84% 12%, rgba(199, 154, 69, 0.18), transparent 27%),
    var(--forest);
  border-bottom: 4px solid var(--gold);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.9rem;
  color: #fffaf0;
}

.page-hero p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
}

/* ——— Prose / grow ——— */
.prose {
  max-width: 40rem;
}

.prose h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  margin: 2.75rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.prose h2:first-child,
.prose h2.mt-0 { margin-top: 0; }

.prose h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.75rem 0 0.45rem;
  color: var(--forest);
}

.prose p, .prose li {
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.75;
}

.prose ul {
  padding-left: 1.15rem;
}

.input-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.95rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.input-table th,
.input-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}

.input-table th {
  background: var(--forest);
  color: #f7f4ef;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.input-table td strong {
  font-weight: 500;
  color: var(--ink);
}

.input-table tr:last-child td { border-bottom: none; }

/* ——— How We Grow ——— */
.grow-hero {
  position: relative;
  overflow: hidden;
  padding: 6.25rem 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 154, 69, 0.2), transparent 30%),
    linear-gradient(125deg, #102f24 0%, var(--forest) 58%, #1d4938 100%);
  border-bottom: 4px solid var(--gold);
}

.grow-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 70px, rgba(255, 255, 255, 0.018) 71px 72px);
  pointer-events: none;
}

.grow-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.grow-hero h1 {
  max-width: 47rem;
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.grow-hero__lead {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
}

.grow-proof {
  background: var(--surface);
  padding: 2rem 2.2rem 2.15rem;
  border-top: 5px solid var(--gold);
  box-shadow: 0 28px 70px rgba(3, 18, 12, 0.28);
}

.grow-proof__label {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grow-proof dl { margin: 0; }

.grow-proof dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.grow-proof dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.grow-proof dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.grow-section-head {
  max-width: 47rem;
}

.grow-section-head .eyebrow,
.grow-details-heading .eyebrow {
  margin-bottom: 0.8rem;
}

.grow-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.grow-card {
  position: relative;
  min-height: 260px;
  padding: 2.35rem 2.4rem 2.5rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(26, 50, 39, 0.07);
}

.grow-card::after {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 11rem;
  height: 11rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}

.grow-card__number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.grow-card h3 {
  max-width: 30rem;
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.1;
}

.grow-card p {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.7;
}

.grow-card a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(20, 58, 44, 0.25);
  text-underline-offset: 0.18em;
}

.grow-capacity {
  padding: 6.25rem 0;
  color: #fffaf0;
  background: #0f3024;
}

.grow-capacity__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.grow-capacity__copy h2 {
  max-width: 33rem;
  margin: 0 0 1.1rem;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.grow-capacity__copy > p:last-child {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 300;
  line-height: 1.75;
}

.grow-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 240, 0.22);
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
}

.grow-metric {
  min-width: 0;
  padding: 2rem 1.5rem 2rem 0;
}

.grow-metric + .grow-metric {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 250, 240, 0.16);
}

.grow-metric strong {
  display: block;
  color: #dfbd76;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.grow-metric span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 250, 240, 0.67);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.grow-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.grow-details-heading {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  max-width: 28rem;
  margin: 0;
}

.grow-faq details {
  padding: 1.5rem 0;
}

.grow-faq summary {
  font-size: 1.35rem;
  line-height: 1.25;
}

.grow-faq details p {
  max-width: 42rem;
}

/* ——— FAQ ——— */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 400;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
}

.faq details[open] summary::after { content: "−"; }

.faq details p {
  margin: 0.85rem 0 0.15rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.7;
}

/* ——— CTA ——— */
.cta-band {
  text-align: center;
  padding: 4.5rem 2rem;
  background: var(--forest);
  color: #f7f4ef;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 26rem;
  font-weight: 300;
  color: rgba(247, 244, 239, 0.7);
  line-height: 1.65;
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 0;
}

/* ——— Footer ——— */
.site-footer {
  background: #0b241a;
  color: rgba(247, 244, 239, 0.55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-brand strong {
  color: #f7f4ef;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.site-footer h4 {
  color: #f7f4ef;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-bottom: 0.5rem; }

.site-footer a {
  color: rgba(247, 244, 239, 0.55);
  font-size: 0.92rem;
  font-weight: 300;
  transition: color 0.2s;
}

.site-footer a:hover { color: #f7f4ef; }

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 239, 0.08);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 300;
}

/* ——— Utility ——— */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.85rem 1.15rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.mobile-cta .btn { width: 100%; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .grid-3,
  .steps,
  .footer-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .steps { border: none; }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1.75rem 0;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.25rem;
    gap: 0;
  }

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

  .nav-links a {
    display: block;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--line);
    min-height: 44px;
  }

  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    margin-top: 0.85rem;
    width: 100%;
    border-bottom: none !important;
  }

  .hero {
    padding: 4rem 0 4.25rem;
  }

  .hero-offer { padding: 1.4rem 1.35rem 1.5rem; }

  .chips li:not(:last-child)::after { display: none; }
  .chips {
    gap: 0.65rem 1.25rem;
    padding-top: 1.25rem;
  }
  .chips li { padding: 0; }

  .mobile-cta { display: block; }
  body { padding-bottom: 5.25rem; }

  .section { padding: 3.75rem 0; }

  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.25rem); }

  .input-table,
  .input-table tbody,
  .input-table tr,
  .input-table td {
    display: block;
    width: 100%;
  }

  .input-table {
    background: transparent;
    border: 0;
  }

  .input-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .input-table tr {
    margin-bottom: 1rem;
    padding: 1.25rem 1.3rem;
    background: var(--surface);
    border-top: 4px solid var(--forest);
    box-shadow: 0 10px 28px rgba(20, 58, 44, 0.07);
  }

  .input-table td {
    padding: 0.45rem 0;
    border: 0;
  }

  .input-table td:first-child {
    padding-bottom: 0.85rem;
    margin-bottom: 0.45rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .input-table td:nth-child(2)::before,
  .input-table td:nth-child(3)::before {
    display: block;
    margin-bottom: 0.1rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .input-table td:nth-child(2)::before { content: "What we use"; }
  .input-table td:nth-child(3)::before { content: "Details"; }

  .grow-hero {
    padding: 4.25rem 0 4.5rem;
  }

  .grow-hero__grid,
  .grow-capacity__grid,
  .grow-details-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grow-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .grow-proof {
    padding: 1.5rem 1.4rem 1.6rem;
  }

  .grow-details-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .grow-card-grid,
  .grow-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .grow-card {
    min-height: 0;
    padding: 1.8rem 1.5rem 2rem;
  }

  .grow-proof dl div {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .grow-capacity {
    padding: 4.25rem 0;
  }

  .grow-metric,
  .grow-metric + .grow-metric {
    padding: 1.5rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  }

  .grow-metric:last-child {
    border-bottom: 0;
  }

  .grow-faq summary {
    font-size: 1.2rem;
  }
}

@media (min-width: 901px) {
  .nav-links .nav-cta { display: inline-flex !important; }
}
