:root{
  --brown-950:#1C140D;
  --brown-900:#251B12;
  --brown-800:#382919;
  --brown-700:#4C3823;
  --tan-500:#B9873F;
  --tan-400:#CFA05C;
  --tan-300:#DEBE86;
  --tan-100:#EFE3C7;
  --cream:#F8F2E6;
  --cream-soft:#F1E9D8;
  --olive-700:#4E5A32;
  --olive-500:#6E7A45;
  --ink:#241A11;
  --ink-soft:#5B4E3F;
  --white:#FFFDF9;
  --shadow-soft: 0 20px 60px -30px rgba(28,20,13,0.45);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:96px;}
body{
  margin:0;
  font-family:"Work Sans", sans-serif;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  min-width:320px;
}
h1,h2,h3,h4{
  font-family:"Fraunces", serif;
  font-weight:500;
  line-height:1.08;
  margin:0;
  letter-spacing:-0.01em;
}
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

/* ---------- reveal on scroll ----------
   Every variant is a fade coupled with a swipe/wipe, and every variant
   reverses when the element leaves the viewport, so content drifts back
   out as you scroll away from it.
   Direction and extras are driven by three custom properties.          */
.reveal,
.reveal-left,
.reveal-right,
.reveal-blur{
  --rx:0px;     /* horizontal swipe distance */
  --ry:30px;    /* vertical swipe distance   */
  --rblur:0px;  /* starting blur             */
  opacity:0;
  filter:blur(var(--rblur));
  transform:translate3d(var(--rx), var(--ry), 0);
  transition:
    opacity .75s var(--ease),
    transform .9s var(--ease),
    filter .9s var(--ease);
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-blur.is-visible{
  opacity:1;
  filter:blur(0);
  transform:translate3d(0, 0, 0);
}
.reveal-left{  --rx:-46px; --ry:0px; }
.reveal-right{ --rx: 46px; --ry:0px; }
.reveal-blur{  --ry:16px; --rblur:12px; }

/* children rise in sequence, and leave in the same sequence */
.reveal-stagger > *{
  opacity:0;
  transform:translate3d(0, 26px, 0);
  transition:opacity .7s var(--ease), transform .85s var(--ease);
}
.reveal-stagger.is-visible > *{
  opacity:1;
  transform:translate3d(0, 0, 0);
}
.reveal-stagger > *:nth-child(1){ transition-delay:.04s; }
.reveal-stagger > *:nth-child(2){ transition-delay:.13s; }
.reveal-stagger > *:nth-child(3){ transition-delay:.22s; }
.reveal-stagger > *:nth-child(4){ transition-delay:.31s; }
.reveal-stagger > *:nth-child(5){ transition-delay:.4s; }
.reveal-stagger > *:nth-child(6){ transition-delay:.49s; }

/* the small rule beside an eyebrow draws itself in */
.section-head .eyebrow-light .rule{
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .8s var(--ease) .25s;
}
.section-head.is-visible .eyebrow-light .rule{ transform:scaleX(1); }

/* imagery: fades with a swipe. Transform and opacity only, so the photo
   inside is composited from its already-decoded bitmap instead of being
   re-rendered every time the panel enters or leaves the screen. */
.reveal-media{
  opacity:0;
  transform:translate3d(-26px, 18px, 0);
  transition:opacity .7s var(--ease), transform .9s var(--ease);
}
.reveal-media.is-visible{
  opacity:1;
  transform:translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal, .reveal-stagger > *, .reveal-left, .reveal-right, .reveal-blur, .reveal-media,
  .hero-load, .hero-load > *, .hero-inner, .scroll-cue, .section-head h2{
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
    clip-path:none !important;
    animation:none !important;
  }
  .section-head .eyebrow-light .rule{ transform:none !important; }
  .hero-media,
  .map-wrap .compass, .map-wrap .connector, .map-wrap .marker-core, .map-wrap .flower{
    animation:none !important;
    transform:none !important;
  }
  .map-wrap .map-label, .map-wrap .map-caption{ opacity:1 !important; transform:none !important; }
  .btn:hover, .why-item:hover, .social-row a:hover, .contact-line:hover,
  .why-item:hover .icon, .about-art .panel:hover img,
  .grade:hover .grade-label, .grade:hover h3, .grade:hover .spec-row{ transform:none !important; }
  .btn:hover::after, .grade:hover::after{ animation:none !important; opacity:0 !important; }
}

/* ---------- header ---------- */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(28,20,13,0.0);
  transition:background .4s ease, box-shadow .4s ease, padding .3s ease;
  padding:26px 0;
  overflow:hidden;
}
header.scrolled{
  background:rgba(28,20,13,0.92);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 30px -18px rgba(0,0,0,.5);
  padding:14px 0;
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--white);
}
/* logo-amarta.png is a 1000x1000 canvas; the artwork itself sits in a
   766x269 box inset 114px from the left and 363px from the top.
   .brand .logo crops that transparent padding, so no asset edit is needed. */
.brand .logo{
  --logo-h:46px;
  display:block;
  position:relative;
  flex:none;
  height:var(--logo-h);
  width:calc(var(--logo-h) * 766 / 269);
  overflow:hidden;
}
.brand .logo img{
  position:absolute;
  left:calc(var(--logo-h) * -114 / 269);
  top:calc(var(--logo-h) * -363 / 269);
  height:calc(var(--logo-h) * 1000 / 269);
  width:auto;
  max-width:none;
}
nav.primary-nav{
  display:flex;
  align-items:center;
  gap:40px;
}
nav.primary-nav a{
  color:var(--tan-100);
  font-size:14.5px;
  letter-spacing:.02em;
  position:relative;
  padding-bottom:4px;
}
nav.primary-nav a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:1px; background:var(--tan-400);
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease);
}
nav.primary-nav a:hover::after{ transform:scaleX(1); }
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border:1px solid var(--tan-400);
  color:var(--tan-100);
  font-size:14px;
  letter-spacing:.02em;
  border-radius:2px;
  background:transparent;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  white-space:nowrap;
}
/* light sweeps across the button on hover */
.btn::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, transparent 15%, rgba(255,253,249,.45) 50%, transparent 85%);
  transform:translate3d(-125%,0,0);
  transition:transform .75s var(--ease);
  pointer-events:none;
}
.btn:hover{
  background:var(--tan-400);
  color:var(--brown-950);
  transform:translate3d(0,-2px,0);
  box-shadow:0 14px 28px -18px rgba(28,20,13,.7);
}
.btn:hover::after{ transform:translate3d(125%,0,0); }
.btn-solid{
  background:var(--tan-400);
  color:var(--brown-950);
  border-color:var(--tan-400);
}
.btn-solid:hover{ background:var(--tan-300); }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
  cursor:pointer;
}
.nav-toggle span{
  width:24px; height:1.5px; background:var(--tan-100);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-row{
    gap:16px;
  }
  nav.primary-nav{
    gap:24px;
  }
  nav.primary-nav a{
    font-size:13.5px;
  }
  .btn{
    padding:10px 18px;
    font-size:13px;
  }
}

@media (max-width: 720px){
  .nav-row{
    gap:12px;
  }
  .nav-toggle{
    display:flex;
  }
  nav.primary-nav{
    display:none;
  }
  .brand .logo{
    --logo-h:38px;
  }
}

.mobile-panel{
  position:fixed;
  inset:0 0 0 0;
  top:0;
  background:var(--brown-950);
  z-index:99;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:28px;
  padding:40px;
  transform:translateY(-100%);
  transition:transform .45s var(--ease);
}
.mobile-panel.open{ transform:translateY(0); }
.mobile-panel a{
  font-family:"Fraunces", serif;
  font-size:30px;
  color:var(--tan-100);
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  background:var(--brown-950);
  overflow:hidden;
}
/* the photo gets its own layer so it can drift and push in as you scroll.
   The scale grows a hair faster than the drift, which supplies the slack the
   downward movement needs (the sliver at the very top hides under the header) */
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  transform:translate3d(0, calc(var(--hero-progress,0) * 4%), 0) scale(calc(1 + var(--hero-progress,0) * .09));
  will-change:transform;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 42%;
}
/* veil sits between the photo and the line art */
.hero::before{
  content:"";
  position:absolute; inset:0; z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(28,20,13,.9) 0%, rgba(28,20,13,.68) 45%, rgba(28,20,13,.38) 100%),
    linear-gradient(180deg, rgba(28,20,13,.42), rgba(28,20,13,.7));
}
.hero-vines{
  position:absolute; inset:0;
  z-index:2;
  opacity:.5;
  mix-blend-mode:screen;
}
.hero-vines svg{ width:100%; height:100%; }
.hero-inner{
  position:relative;
  z-index:3;
  padding-top:120px;
  padding-bottom:90px;
  opacity:clamp(0, calc(1 - var(--hero-progress,0) * 1.15), 1);
  transform:translate3d(0, calc(var(--hero-progress,0) * -70px), 0);
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--tan-300);
  font-size:13.5px;
  letter-spacing:.14em;
  margin-bottom:26px;
}
.eyebrow .rule{
  width:44px; height:1px; background:var(--tan-400);
}
.hero h1{
  color:var(--white);
  font-size:clamp(38px, 6vw, 74px);
  max-width:16.5ch;
  font-weight:500;
}
.hero .tagline{
  margin-top:26px;
  color:var(--tan-200,#DEBE86);
  font-family:"Fraunces", serif;
  font-style:italic;
  font-size:clamp(17px, 2vw, 22px);
  max-width:38ch;
}
.hero .lede{
  margin-top:28px;
  color:rgba(248,242,230,.72);
  font-size:16px;
  line-height:1.7;
  max-width:56ch;
}
.hero-cta{
  margin-top:44px;
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.hero-load > *{
  opacity:0;
  transform:translateY(22px);
  animation:heroIn .9s var(--ease) forwards;
}
.hero-load > *:nth-child(1){ animation-delay:.05s; }
.hero-load > *:nth-child(2){ animation-delay:.22s; }
.hero-load > *:nth-child(3){ animation-delay:.38s; }
.hero-load > *:nth-child(4){ animation-delay:.54s; }
.hero-load > *:nth-child(5){ animation-delay:.7s; }
@keyframes heroIn{ to{ opacity:1; transform:translateY(0); } }
.hero-load > .eyebrow .rule{
  transform-origin:left center;
  animation:ruleDraw 1s var(--ease) .5s both;
}
@keyframes ruleDraw{ from{ transform:scaleX(0); } to{ transform:scaleX(1); } }

.scroll-cue{
  position:absolute;
  left:32px; bottom:34px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(248,242,230,.55);
  font-size:12.5px;
  letter-spacing:.14em;
  /* fades out with a downward swipe as the hero scrolls away */
  opacity:clamp(0, calc(1 - var(--hero-progress,0) * 2.6), 1);
  transform:translate3d(0, calc(var(--hero-progress,0) * 22px), 0);
}
.scroll-cue .line{
  width:1px; height:38px;
  background:linear-gradient(var(--tan-400), transparent);
  animation:cueMove 2.2s ease-in-out infinite;
}
@keyframes cueMove{
  0%,100%{ transform:scaleY(1); opacity:.6; }
  50%{ transform:scaleY(1.3); opacity:1; }
}

/* ---------- intro quote ---------- */
.quote-section{
  background:var(--cream);
  padding:120px 0 100px;
}
.quote-section blockquote{
  max-width:800px;
  margin:0 auto;
  text-align:center;
  font-family:"Fraunces", serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(22px, 3vw, 32px);
  line-height:1.5;
  color:var(--brown-800);
}
.quote-mark{
  display:block;
  text-align:center;
  font-family:"Fraunces", serif;
  font-size:60px;
  color:var(--tan-400);
  margin-bottom:6px;
  line-height:1;
}

/* ---------- about ---------- */
.about{
  background:var(--brown-900);
  padding:110px 0;
  position:relative;
  /* Only this section swipes sideways while it reveals (.about-art goes -46px,
     .about-copy +46px, the tall panel -26px). Below 1024px the grid is a single
     full-width column, so those swipes poke 20-26px past the viewport, widening
     the page; on mobile that lets the page be panned sideways into a strip of the
     body background beside the section. The section's own box is exactly the
     viewport, so clipping here removes the overhang and changes nothing on
     screen: what gets clipped already sat outside the viewport. */
  overflow-x:hidden;   /* fallback for browsers without `clip` */
  overflow-x:clip;
}
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:72px;
  align-items:center;
}
.about-art{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.about-art .panel{
  background:var(--brown-800);
  border:1px solid rgba(223,190,134,.18);
  border-radius:4px;
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1/1.05;
  overflow:hidden;
  /* own compositor layer: the fade in/out just blends an existing layer
     instead of repainting the photo every frame */
  backface-visibility:hidden;
  will-change:opacity, transform;
}
.about-art .panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:2px;
  /* promoted once and never scaled from the reveal, so the decoded bitmap
     is reused for every fade instead of being rasterized again */
  transform:translate3d(0, 0, 0);
  backface-visibility:hidden;
  transition:transform .8s var(--ease);
}
.about-art .panel:hover img{ transform:translate3d(0, 0, 0) scale(1.06); }
.about-art .panel:nth-child(2){ transition-delay:.12s; }
.about-art .panel:nth-child(3){ transition-delay:.24s; }
.about-art .panel.tall{
  grid-row: span 2;
  aspect-ratio:auto;
}
.eyebrow-light{
  color:var(--tan-400);
  font-size:13.5px;
  letter-spacing:.14em;
  margin-bottom:18px;
  display:flex; align-items:center; gap:14px;
}
.eyebrow-light .rule{ width:44px; height:1px; background:var(--tan-500); }
.about-copy h2{
  color:var(--white);
  font-size:clamp(28px, 3.6vw, 42px);
  max-width:14ch;
}
.about-copy p{
  margin-top:22px;
  color:rgba(248,242,230,.72);
  font-size:16px;
  line-height:1.8;
  max-width:48ch;
}
.about-copy .signoff{
  margin-top:30px;
  padding-top:22px;
  border-top:1px solid rgba(223,190,134,.22);
  color:var(--tan-300);
  font-family:"Fraunces", serif;
  font-style:italic;
  font-size:17px;
  max-width:44ch;
}

/* ---------- why choose us ---------- */
.why{
  background:var(--tan-100);
  padding:110px 0;
}
.section-head{
  max-width:640px;
  margin:0 auto 64px;
  text-align:center;
}
.section-head .eyebrow-light{
  justify-content:center;
  color:var(--tan-500);
}
.section-head .eyebrow-light .rule{ background:var(--tan-500); }
.section-head h2{
  color:var(--brown-800);
  font-size:clamp(28px, 3.6vw, 40px);
  filter:blur(9px);
  opacity:0;
  transform:translate3d(0,10px,0);
  transition:filter 1s var(--ease) .1s, opacity 1s var(--ease) .1s, transform 1s var(--ease) .1s;
}
.section-head.is-visible h2{
  filter:blur(0);
  opacity:1;
  transform:translate3d(0,0,0);
}
.why-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
}
.why-item{
  padding:8px 30px;
  position:relative;
  text-align:left;
  transition:transform .5s var(--ease);
}
.why-item::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(120% 90% at 50% 0%, rgba(185,135,63,.14), transparent 72%);
  opacity:0;
  transition:opacity .5s var(--ease);
  pointer-events:none;
}
.why-item:hover{ transform:translate3d(0,-6px,0); }
.why-item:hover::before{ opacity:1; }
.why-row .why-item + .why-item{
  border-left:1px solid rgba(76,56,35,.18);
}
.why-item .icon{
  width:46px; height:46px;
  margin-bottom:22px;
  transition:transform .5s var(--ease), filter .5s var(--ease), opacity .8s var(--ease) .15s;
}
.why-item:hover .icon{
  transform:translate3d(0,-3px,0) scale(1.08);
  filter:drop-shadow(0 10px 16px rgba(185,135,63,.35));
}
.reveal-stagger > * .icon{ opacity:0; }
.reveal-stagger.is-visible > * .icon{ opacity:1; }
.why-item h3{
  font-size:19px;
  color:var(--brown-800);
  margin-bottom:12px;
  font-weight:500;
}
.why-item p{
  font-size:14.5px;
  line-height:1.65;
  color:var(--ink-soft);
}

/* ---------- products ---------- */
.products{
  background:var(--cream);
  padding:120px 0;
}
.grade-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  border:1px solid rgba(76,56,35,.2);
  border-radius:4px;
  overflow:hidden;
}
.grade{
  padding:48px 36px;
  position:relative;
  overflow:hidden;
}
/* warm sheen sweeps across a card on hover */
.grade::after{
  content:"";
  position:absolute; top:-25%; bottom:-25%; left:0;
  width:46%;
  background:linear-gradient(100deg, transparent, rgba(207,160,92,.22), transparent);
  transform:translate3d(-140%,0,0) skewX(-14deg);
  opacity:0;
  pointer-events:none;
}
.grade:hover::after{ opacity:1; animation:sheen 1.15s var(--ease); }
@keyframes sheen{
  from{ transform:translate3d(-140%,0,0) skewX(-14deg); }
  to{ transform:translate3d(340%,0,0) skewX(-14deg); }
}
.grade .grade-label, .grade h3, .spec-row{ transition:transform .5s var(--ease); }
.grade:hover .grade-label, .grade:hover h3{ transform:translate3d(0,-3px,0); }
.grade:hover .spec-row{ transform:translate3d(6px,0,0); }
.grade:hover .spec-row:nth-child(4){ transition-delay:.05s; }
.grade:hover .spec-row:nth-child(5){ transition-delay:.1s; }
.grade:hover .spec-row:nth-child(6){ transition-delay:.15s; }
.grade + .grade{ border-left:1px solid rgba(76,56,35,.2); }
.grade .grade-label{
  font-size:13px;
  letter-spacing:.14em;
  color:var(--tan-500);
  margin-bottom:10px;
}
.grade h3{
  font-size:clamp(21px, 2vw, 25px);
  color:var(--brown-800);
  margin-bottom:30px;
}
.spec-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:16px 0;
  border-top:1px solid rgba(76,56,35,.14);
  font-size:15px;
}
.spec-row:first-of-type{ border-top:none; }
.spec-row .label{ color:var(--ink-soft); }
.spec-row .value{ color:var(--brown-800); font-weight:500; text-align:right; }
.grade.grade-a{ background:var(--white); }
.grade.grade-c{ background:var(--cream-soft); }

/* ---------- origin / map ---------- */
.origin{
  background:var(--brown-950);
  padding:120px 0 130px;
  position:relative;
  overflow:hidden;
}
.origin .section-head h2{ color:var(--white); }
.origin .section-head .eyebrow-light{ color:var(--tan-400); justify-content:center;}
.origin .section-head p.sub{
  margin-top:16px;
  color:rgba(248,242,230,.65);
  font-size:15.5px;
}
.map-wrap{
  max-width:900px;
  margin:0 auto;
  position:relative;
}
.map-wrap svg{ width:100%; height:auto; }

/* --- map motion --- */
.map-wrap .compass{
  transform-box:fill-box;
  transform-origin:center;
  animation:compassFloat 7s ease-in-out infinite;
}
@keyframes compassFloat{
  0%,100%{ transform:translate3d(0,0,0); }
  50%{ transform:translate3d(0,-7px,0); }
}
/* dashes travel from the farm up to the label */
.map-wrap .connector{
  stroke-dasharray:4 6;
  animation:dashFlow 2s linear infinite;
}
@keyframes dashFlow{ to{ stroke-dashoffset:-20; } }
.map-wrap .marker-core{
  transform-box:fill-box;
  transform-origin:center;
  animation:markerBeat 2.4s ease-in-out infinite;
}
@keyframes markerBeat{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.3); }
}
.map-wrap .flower{ animation:flowerGlow 8s ease-in-out infinite; }
@keyframes flowerGlow{
  0%,100%{ opacity:.45; }
  50%{ opacity:.9; }
}
.map-wrap .map-label, .map-wrap .map-caption{
  opacity:0;
  transform:translate3d(0,8px,0);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.map-wrap .map-label{ transition-delay:.35s; }
.map-wrap .map-caption{ transition-delay:.5s; }
.map-wrap.is-visible .map-label,
.map-wrap.is-visible .map-caption{ opacity:1; transform:translate3d(0,0,0); }

/* ---------- connect / footer ---------- */
.connect{
  background:var(--brown-900);
  padding:110px 0 0;
}
.connect-head{
  text-align:center;
  max-width:600px;
  margin:0 auto 70px;
}
.connect-head h2{
  color:var(--white);
  font-size:clamp(30px, 4vw, 48px);
}
.connect-head p{
  margin-top:18px;
  color:rgba(248,242,230,.65);
  font-size:16px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:50px;
  padding-bottom:70px;
  border-bottom:1px solid rgba(223,190,134,.16);
}
.footer-grid h4{
  color:var(--tan-300);
  font-size:13.5px;
  letter-spacing:.1em;
  margin-bottom:22px;
  font-family:"Work Sans", sans-serif;
  font-weight:500;
}
.footer-grid .brand{ margin-bottom:18px; }
.footer-grid .brand .logo{ --logo-h:44px; }
.footer-grid p{
  color:rgba(248,242,230,.62);
  font-size:14.5px;
  line-height:1.7;
  max-width:32ch;
}
.contact-line{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(248,242,230,.8);
  font-size:14.5px;
  margin-bottom:16px;
  transition:transform .4s var(--ease), color .4s var(--ease);
}
.contact-line:hover{ transform:translate3d(4px,0,0); }
.contact-line svg{ width:18px; height:18px; flex:none; color:var(--tan-400); }
.contact-line a:hover{ color:var(--tan-300); }
.contact-line .tag{
  flex:none;
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--tan-400);
  border:1px solid rgba(223,190,134,.32);
  border-radius:2px;
  padding:2px 7px;
  line-height:1.4;
}
.social-row{ display:flex; gap:12px; margin-top:24px; }
.social-row a{
  width:38px; height:38px;
  border:1px solid rgba(223,190,134,.3);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--tan-200,#DEBE86);
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.social-row a:hover{
  background:var(--tan-400);
  color:var(--brown-950);
  border-color:var(--tan-400);
  transform:translate3d(0,-4px,0) scale(1.05);
  box-shadow:0 14px 22px -16px rgba(185,135,63,.9);
}
.social-row a svg{ transition:transform .45s var(--ease); }
.social-row a:hover svg{ transform:scale(1.12); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{
  padding:26px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  color:rgba(248,242,230,.45);
  font-size:13px;
}
.footer-bottom a{ color:var(--tan-300); }

/* ---------- responsive ---------- */
@media (max-width:1024px){
  .container{ padding:0 26px; }
  nav.primary-nav{ display:none; }
  .nav-row > .btn{ display:none; }
  .nav-toggle{ display:flex; }
  .about-grid{ grid-template-columns:1fr; gap:48px; }
  .about-art{ max-width:460px; }
  .why-row{ grid-template-columns:repeat(2, 1fr); row-gap:44px; }
  .why-row .why-item:nth-child(2n+1){ border-left:none; }
  .why-row .why-item:nth-child(n+3){ border-top:1px solid rgba(76,56,35,.18); padding-top:36px; }
  /* three product cards stack once the shell gets tight */
  .grade-grid{ grid-template-columns:1fr; }
  .grade + .grade{ border-left:none; border-top:1px solid rgba(76,56,35,.2); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid .col-brand{ grid-column:1 / -1; }
}

@media (max-width:640px){
  .container{ padding:0 20px; }
  .hero-inner{ padding-top:110px; padding-bottom:70px; }
  .hero .lede{ font-size:15px; }
  .quote-section{ padding:90px 0 70px; }
  .about{ padding:80px 0; }
  .why{ padding:80px 0; }
  .why-row{ grid-template-columns:1fr; row-gap:36px; }
  .why-row .why-item:nth-child(n){ border:none !important; padding-top:0 !important; }
  .why-row .why-item + .why-item{ border-top:1px solid rgba(76,56,35,.18) !important; padding-top:32px !important; }
  .products{ padding:80px 0; }
  .grade{ padding:38px 28px; }
  .origin{ padding:80px 0 90px; }
  .connect{ padding:80px 0 0; }
  .footer-grid{ grid-template-columns:1fr; gap:38px; }
  .footer-grid .col-brand{ grid-column:auto; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .scroll-cue{ display:none; }
}

/* ---------- scroll progress + back to top ---------- */
.scroll-progress{
  position:fixed;
  top:0; left:0; right:0;
  height:2px;
  z-index:120;
  pointer-events:none;
  background:rgba(223,190,134,.1);
}
.scroll-progress span{
  display:block;
  height:100%;
  transform-origin:0 50%;
  transform:scaleX(var(--sp,0));
  background:linear-gradient(90deg, var(--tan-500), var(--tan-300));
  box-shadow:0 0 14px rgba(207,160,92,.55);
}

.to-top{
  position:fixed;
  right:26px; bottom:26px;
  z-index:110;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  padding:0;
  border-radius:50%;
  border:1px solid rgba(223,190,134,.4);
  background:rgba(28,20,13,.72);
  color:var(--tan-300);
  backdrop-filter:blur(8px);
  opacity:0;
  transform:translate3d(0,16px,0) scale(.88);
  pointer-events:none;
  transition:opacity .45s var(--ease), transform .45s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.to-top svg{ width:20px; height:20px; }
.to-top.is-visible{ opacity:1; transform:translate3d(0,0,0) scale(1); pointer-events:auto; }
.to-top:hover{ background:var(--tan-400); color:var(--brown-950); border-color:var(--tan-400); }

@media (max-width:640px){
  .to-top{ right:16px; bottom:16px; width:42px; height:42px; }
}
