:root {
  --ink: #172315;
  --deep: #173b26;
  --leaf: #2f7241;
  --palm: #7f8f45;
  --sprout: #c0cf6f;
  --coir: #6d4026;
  --clay: #b9603d;
  --gold: #d8ad49;
  --cream: #efe2bd;
  --paper: #fff6df;
  --mist: #d9dfb5;
  --line: rgba(38, 46, 24, 0.18);
  --line-strong: rgba(38, 46, 24, 0.36);
  --shadow: 10px 10px 0 rgba(40, 72, 38, 0.18), 0 34px 80px rgba(55, 43, 22, 0.16);
  --radius: 8px;
  --max: 1220px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(127, 143, 69, 0.14), rgba(239, 226, 189, 0) 560px),
    linear-gradient(90deg, rgba(109, 64, 38, 0.04), rgba(47, 114, 65, 0.035)),
    var(--cream);
  background-repeat: no-repeat, no-repeat, repeat;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--paper);
  background: var(--leaf);
}

.site-header {
  position: fixed;
  inset: 22px clamp(16px, 4vw, 56px) auto;
  z-index: 50;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 0 10px 0 14px;
  color: var(--ink);
  border: 1px solid rgba(255, 246, 223, 0.64);
  border-radius: 999px;
  background: rgba(255, 246, 223, 0.78);
  box-shadow: 0 16px 46px rgba(23, 35, 21, 0.14);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 246, 223, 0.93);
  box-shadow: 0 14px 38px rgba(23, 35, 21, 0.16);
}

body.menu-open .site-header {
  color: var(--paper);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--paper);
  background: var(--leaf);
  font-family: "Calistoga", "Fraunces", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.site-header.scrolled .brand-mark,
body.menu-open .brand-mark {
  box-shadow: none;
}

body.menu-open .brand-mark {
  color: var(--paper);
  background: var(--leaf);
  border-color: var(--paper);
}

.brand-text,
.footer-brand {
  font-family: "Calistoga", "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.site-nav {
  position: static;
  z-index: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  color: inherit;
  border: 1px solid rgba(23, 35, 21, 0.08);
  border-radius: 999px;
  background: rgba(239, 226, 189, 0.62);
}

.site-nav::before {
  content: none;
}

.site-nav::after {
  content: none;
}

body.menu-open .site-nav {
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.site-nav a::after {
  content: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--paper);
  background: var(--leaf);
  transform: none;
}

.header-cta {
  position: relative;
  z-index: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
  transform: translateY(-1px);
}

.site-header.scrolled .header-cta {
  box-shadow: none;
}

body.menu-open .header-cta {
  color: var(--paper);
  background: var(--deep);
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  place-items: center;
  justify-self: end;
  width: 50px;
  height: 46px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform 240ms ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -5px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px);
}

body.menu-open .nav-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .nav-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 92svh;
  color: var(--paper);
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

body[data-page="home"] .hero,
body[data-page="home"] .hero::before {
  --hero-image: url("../images/export-grade-coconuts-hero.webp");
}

body[data-page="products"] .page-hero,
body[data-page="products"] .page-hero::before {
  --hero-image: url("../images/semi-husked-coconuts-export.webp");
}

body[data-page="about"] .page-hero,
body[data-page="about"] .page-hero::before {
  --hero-image: url("../images/coconut-husks-grove.webp");
}

body[data-page="process"] .page-hero,
body[data-page="process"] .page-hero::before {
  --hero-image: url("../images/coconut-harvest-farmer.webp");
}

body[data-page="contact"] .page-hero,
body[data-page="contact"] .page-hero::before {
  --hero-image: url("../images/unhusked-green-coconuts.webp");
}

.compact-hero {
  min-height: 70svh;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.08);
  animation: slowZoom 18s ease-out forwards;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(13, 51, 34, 0.74));
  clip-path: polygon(0 28%, 14% 10%, 34% 24%, 54% 0, 74% 20%, 100% 8%, 100% 100%, 0 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 33, 22, 0.78), rgba(10, 33, 22, 0.46) 44%, rgba(10, 33, 22, 0.18)),
    linear-gradient(0deg, rgba(10, 33, 22, 0.42), transparent 54%);
}

.hero-content,
.page-hero-content {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header) + 64px) 0 82px;
}

.hero-content {
  max-width: 1120px;
}

.hero-home .hero-content {
  padding-bottom: 154px;
}

.page-hero-content {
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 16px;
  padding: 0;
  color: var(--coir);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading .eyebrow,
.feature-copy .eyebrow,
.image-led-copy .eyebrow,
.product-matrix .eyebrow,
.contact-panel .eyebrow,
.document-band .eyebrow {
  color: var(--coir);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

h1 {
  max-width: 1160px;
  font-size: clamp(4rem, 9.4vw, 9.7rem);
  line-height: 0.9;
  text-transform: none;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 7.2vw, 7.3rem);
  line-height: 0.91;
}

h2 {
  color: var(--deep);
  max-width: 18ch;
  font-size: clamp(2.45rem, 4.45vw, 4.8rem);
  line-height: 0.95;
}

h3 {
  color: var(--deep);
  font-size: clamp(1.55rem, 2.25vw, 2.28rem);
  line-height: 1;
}

p {
  margin: 0;
}

.hero-copy,
.page-hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
}

.button-primary {
  color: var(--paper);
  background: var(--leaf);
  box-shadow: 7px 7px 0 var(--gold);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--leaf);
}

.button-light {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.8);
  background: rgba(255, 250, 240, 0.12);
  box-shadow: 7px 7px 0 rgba(255, 250, 240, 0.16);
}

.button-light:hover {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 rgba(255, 250, 240, 0.24);
}

.button-secondary {
  color: var(--paper);
  background: var(--coir);
  box-shadow: 7px 7px 0 rgba(116, 69, 32, 0.18);
}

.button-secondary:hover {
  background: var(--clay);
  box-shadow: 3px 3px 0 rgba(116, 69, 32, 0.2);
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 0;
  width: min(520px, calc(100% - 36px));
  overflow: hidden;
  border: 2px solid rgba(255, 250, 240, 0.46);
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 12px 12px 0 rgba(225, 184, 76, 0.44);
}

.hero-stats div {
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 250, 240, 0.16);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 0.9;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(82px, 11vw, 142px) 0;
}

.intro-grid,
.story-layout,
.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.88fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro-copy,
.story-copy,
.process-intro > p,
.feature-copy p,
.image-led-copy p,
.document-band p {
  color: rgba(20, 32, 23, 0.76);
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
}

.story-copy p + p {
  margin-top: 22px;
}

.trust-note {
  margin-top: 24px;
  color: rgba(20, 32, 23, 0.66);
  font-size: 0.92rem;
  font-weight: 800;
}

.answer-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: clamp(56px, 8vw, 96px);
}

.answer-card {
  padding: clamp(28px, 4.5vw, 52px);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.answer-card p {
  margin: 0;
  color: rgba(20, 32, 23, 0.78);
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) - 2px);
  color: var(--deep);
  background: rgba(255, 250, 240, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--deep);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.text-link::after {
  content: "";
  width: 46px;
  height: 3px;
  background: var(--gold);
  transition: width 220ms ease;
}

.text-link:hover::after {
  width: 70px;
}

.product-strip {
  width: min(1460px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.strip-card,
.variety-card,
.value-card,
.proof-card,
.contact-panel,
.contact-aside {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.strip-card {
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  min-height: 560px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.strip-card:nth-child(2) {
  margin-top: 54px;
}

.strip-card:nth-child(3) {
  margin-top: 108px;
}

.strip-card:hover,
.variety-card:hover,
.proof-card:hover,
.value-card:hover,
.timeline-step:hover {
  transform: translateY(-7px);
  box-shadow: 8px 8px 0 rgba(13, 51, 34, 0.22), 0 28px 70px rgba(38, 41, 27, 0.18);
}

.strip-card img,
.variety-card img,
.feature-media img,
.image-stack img,
.contact-aside img,
.showcase-image img {
  transition: transform 700ms ease;
}

.strip-card img,
.variety-card img {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.strip-card:hover img,
.variety-card:hover img,
.feature-media:hover img,
.image-stack img:hover,
.contact-aside:hover img,
.showcase-image:hover img {
  transform: scale(1.055);
}

.strip-card div {
  padding: 28px;
}

.strip-card span,
.variety-card span,
.value-card span,
.proof-card span,
.timeline-step span,
.number-item span,
.showcase-copy > span,
.contact-detail span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.strip-card p,
.variety-card p,
.value-card p {
  margin-top: 14px;
  color: rgba(20, 32, 23, 0.68);
}

.split-feature,
.image-led,
.contact-layout,
.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split-feature.reverse .feature-media {
  order: 2;
}

.feature-media,
.showcase-image {
  min-height: 630px;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 4%, 96% 100%, 0 94%);
}

.feature-copy {
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 7px solid var(--gold);
}

.feature-copy p {
  margin-top: 24px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(20, 32, 23, 0.8);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  background: var(--gold);
}

.statement-band {
  margin: clamp(50px, 8vw, 96px) 0 0;
  padding: clamp(88px, 12vw, 160px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(225, 184, 76, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 250, 240, 0.05) 16px 17px),
    var(--deep);
}

.statement-band p {
  max-width: 1180px;
  margin: 0 auto;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.35rem, 5.5vw, 5.9rem);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.proof-grid,
.values-grid,
.variety-grid,
.number-wall {
  display: grid;
  gap: 20px;
}

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

.proof-card,
.value-card {
  padding: clamp(26px, 4vw, 42px);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.proof-card:nth-child(2),
.value-card:nth-child(2) {
  color: var(--paper);
  background: var(--deep);
}

.proof-card:nth-child(2) strong,
.value-card:nth-child(2) h3,
.value-card:nth-child(2) p {
  color: var(--paper);
}

.proof-card:nth-child(3),
.value-card:nth-child(3) {
  background: var(--mist);
}

.proof-card strong {
  display: block;
  color: var(--deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.28rem);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

.products-layout {
  align-items: end;
  padding-bottom: 36px;
}

.product-tabs {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 7px 7px 0 rgba(13, 51, 34, 0.13);
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.tab-button:hover {
  transform: translateY(-1px);
}

.tab-button.active {
  color: var(--paper);
  background: var(--deep);
}

.product-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.showcase-image {
  min-height: 560px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.showcase-copy {
  align-self: center;
  padding: clamp(30px, 5vw, 68px);
}

.showcase-copy p {
  margin-top: 20px;
  color: rgba(20, 32, 23, 0.72);
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--coir);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: rgba(20, 32, 23, 0.72);
}

.variety-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 56px;
}

.variety-card {
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.variety-card img {
  height: auto;
  aspect-ratio: 1 / 0.78;
}

.variety-card div {
  padding: 30px;
}

.product-matrix {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.matrix-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.matrix-table div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.25fr;
}

.matrix-table span {
  padding: 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.matrix-table span:last-child {
  border-right: 0;
}

.matrix-table div:last-child span {
  border-bottom: 0;
}

.matrix-table div:first-child span {
  color: var(--paper);
  background: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 36px;
}

.image-led {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
}

.image-led-copy {
  padding: clamp(26px, 4vw, 44px);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-stack {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 20px;
  align-items: end;
}

.image-stack img {
  height: auto;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 0.78 / 1;
  clip-path: polygon(0 4%, 100% 0, 92% 100%, 0 96%);
}

.image-stack img:last-child {
  aspect-ratio: 1 / 1.1;
  transform: translateY(-52px);
  clip-path: polygon(8% 0, 100% 6%, 100% 96%, 0 100%);
}

.number-wall {
  grid-template-columns: repeat(4, 1fr);
}

.number-item {
  padding: clamp(26px, 4vw, 44px);
  border-top: 3px solid var(--deep);
  background: rgba(255, 250, 240, 0.45);
}

.number-item strong {
  display: block;
  color: var(--deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
}

.number-item span {
  max-width: 180px;
  margin: 18px 0 0;
  color: rgba(20, 32, 23, 0.7);
}

.process-intro {
  padding-bottom: 40px;
}

.process-timeline {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.timeline-step {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.timeline-step:nth-child(2n) {
  background: var(--mist);
}

.timeline-step:nth-child(3n) {
  color: var(--paper);
  background: var(--deep);
}

.timeline-step:nth-child(3n) h3,
.timeline-step:nth-child(3n) p,
.timeline-step:nth-child(3n) span {
  color: var(--paper);
}

.timeline-step::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 148px;
  height: 148px;
  border: 2px solid rgba(225, 184, 76, 0.58);
  border-radius: 50%;
}

.timeline-step p {
  margin-top: 16px;
  color: rgba(20, 32, 23, 0.7);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.check-grid span {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--deep);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.document-band {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(78px, 10vw, 140px) auto;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border: 2px solid rgba(255, 250, 240, 0.24);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--coir);
  box-shadow: var(--shadow);
}

.document-band .eyebrow,
.document-band h2,
.document-band p {
  color: var(--paper);
}

.document-band .eyebrow {
  color: rgba(255, 246, 223, 0.76);
}

.contact-layout {
  align-items: start;
}

.contact-panel {
  padding: clamp(30px, 5vw, 60px);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.quote-form label:nth-last-of-type(1) {
  grid-column: 1 / -1;
}

.quote-form span {
  color: var(--coir);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 54px;
  padding: 0 16px;
}

.quote-form textarea {
  min-height: 146px;
  padding: 15px 16px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--leaf);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(31, 107, 66, 0.14);
}

.quote-form .button {
  justify-self: start;
}

.quote-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.form-status {
  align-self: center;
  color: var(--leaf);
  font-weight: 800;
}

.contact-aside {
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.contact-aside img {
  height: auto;
  aspect-ratio: 1 / 0.82;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
}

.contact-detail {
  padding: 25px;
  border-top: 2px solid var(--line);
}

.contact-detail a,
.contact-detail p {
  display: block;
  margin: 0;
  color: rgba(20, 32, 23, 0.72);
}

.contact-detail a + a {
  margin-top: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 68px);
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(216, 173, 73, 0.12), transparent 38%),
    var(--ink);
}

.site-footer::before {
  content: "F4I";
  position: absolute;
  left: clamp(18px, 5vw, 68px);
  top: 0.04em;
  color: rgba(255, 246, 223, 0.055);
  font-family: "Calistoga", "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 1;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  top: 34px;
  width: min(360px, 42vw);
  height: 1px;
  background: rgba(255, 246, 223, 0.26);
}

.site-footer p {
  position: relative;
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 246, 223, 0.7);
}

.footer-contact {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 246, 223, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.footer-brand {
  position: relative;
  display: block;
  max-width: 560px;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.footer-links {
  position: relative;
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 220px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 246, 223, 0.2);
  color: rgba(255, 246, 223, 0.82);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.footer-links a::after {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--gold);
  transition: width 220ms ease;
}

.footer-links a:hover::after {
  width: 56px;
}

.footer-meta {
  display: none;
}

.footer-meta span {
  display: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    grid-column: 3;
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    align-items: center;
    display: grid;
    justify-items: stretch;
    gap: 14px;
    padding: clamp(112px, 18vh, 156px) max(22px, 6vw) 42px;
    border-radius: 0;
    border: 0;
    color: var(--paper);
    background: var(--deep);
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transform: none;
    transition: opacity 260ms ease, clip-path 620ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  .site-nav::before,
  .site-nav::after {
    display: none;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0);
  }

  .site-nav a {
    width: min(460px, 100%);
    justify-self: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 246, 223, 0.22);
    border-radius: calc(var(--radius) - 2px);
    color: var(--paper);
    background: transparent;
  }

  .site-nav a.active {
    color: var(--paper);
    background: rgba(255, 246, 223, 0.14);
  }

  .header-cta {
    display: none;
  }

  .hero-stats,
  .product-strip,
  .proof-grid,
  .values-grid,
  .variety-grid,
  .process-timeline,
  .number-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-card:nth-child(2),
  .strip-card:nth-child(3) {
    margin-top: 0;
  }

  .intro-grid,
  .answer-band,
  .story-layout,
  .process-intro,
  .split-feature,
  .split-feature.reverse,
  .image-led,
  .contact-layout,
  .product-matrix,
  .document-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .feature-media {
    order: 0;
  }

  .feature-copy {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 7px solid var(--gold);
  }

  .products-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-tabs {
    justify-self: start;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  }

  .contact-aside {
    position: static;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  body {
    background-size: 100% 640px, auto, auto;
  }

  .site-header {
    inset: 18px 18px auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    height: 70px;
    padding: 0 12px 0 14px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .nav-toggle {
    grid-column: auto;
    width: 44px;
    height: 44px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.98rem;
    line-height: 1;
  }

  .hero,
  .page-hero,
  .compact-hero {
    min-height: 84svh;
  }

  .hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero-content,
  .page-hero-content {
    padding-bottom: 36px;
  }

  .hero-home .hero-content {
    padding-bottom: 26px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.7rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.8vw, 3.8rem);
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 36px), 570px);
    margin: -8px auto 26px;
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 rgba(225, 184, 76, 0.44);
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .product-strip,
  .proof-grid,
  .values-grid,
  .variety-grid,
  .process-timeline,
  .number-wall,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .strip-card {
    min-height: 500px;
  }

  .feature-media,
  .showcase-image {
    min-height: 430px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    transform: none;
  }

  .matrix-table {
    overflow-x: auto;
  }

  .matrix-table div {
    min-width: 680px;
  }

  .quote-form label:nth-last-of-type(1),
  .quote-form .button,
  .form-status {
    grid-column: auto;
  }

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