/* ====================================================
   DIP TEA CHAI MASALA — Stylesheet
   ==================================================== */

:root{
  --cream:    #FAF8F5;
  --teal:     #09090B;
  --teal-2:   #18181B;
  --tan:      #F4E6D8;
  --gold:     #C8A27A;
  --ink:      #2D2D2D;
  --ink-soft: #4A4A4A;
  --cream-soft: rgba(244,230,216,0.9);
  --cream-mute: rgba(244,230,216,0.65);
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, sans-serif;
  --maxw: 1200px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family:var(--sans);
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 1.5rem;
}

/* ---------- Shared typography ---------- */
.eyebrow{
  font-family:var(--sans);
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.38em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.25rem;
}
.eyebrow--light{ color:var(--gold); }

.section{ position:relative; padding:7rem 0; }
@media(min-width:768px){ .section{ padding:8.5rem 0; } }

.section__head{
  max-width:780px;
  margin:0 auto 4rem;
  text-align:center;
}
.section__title{
  font-family:var(--serif);
  font-weight:500;
  line-height:1.08;
  letter-spacing:-.01em;
  font-size:clamp(2.2rem, 4.8vw, 3.9rem);
  color:#09090B;
}
.section__title--light{ color:#fff; }
.section__title--left{ text-align:left; }

.section__sub{
  margin-top:1.5rem;
  font-size:1.05rem;
  color:var(--ink-soft);
}
.section__sub--light{ color:var(--cream-soft); }

.divider{
  display:block;
  width:64px; height:1px;
  background:var(--gold);
  margin:1.75rem auto;
}
.divider--left{ margin-left:0; margin-right:0; }

.lead{
  font-size:1.08rem;
  color:var(--ink-soft);
  margin-bottom:1.25rem;
}
.body-text{
  color:var(--ink-soft);
  margin-bottom:2rem;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  font-family:var(--sans);
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  padding:1.05rem 2.4rem;
  cursor:pointer;
  border:1px solid transparent;
  transition:all .35s ease;
}
.btn__arrow{ transition:transform .35s ease; }
.btn:hover .btn__arrow{ transform:translateX(5px); }

.btn--outline-light{
  border-color:rgba(244,230,216,.55);
  color:var(--cream-soft);
  background:transparent;
}
.btn--outline-light:hover{
  background:var(--cream-soft);
  color:#09090B;
  border-color:var(--cream-soft);
}
.btn--solid{
  background:#09090B;
  color:var(--cream-soft);
  border-color:#09090B;
}
.btn--solid:hover{ background:var(--teal-2); transform:translateY(-2px); }

.btn--outline-dark{
  border-color:#09090B;
  color:#09090B;
  background:transparent;
}
.btn--outline-dark:hover{ background:#09090B; color:var(--cream); }

.btn--block{ width:100%; justify-content:center; }

/* ====================================================
   HEADER
   ==================================================== */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  transition:background .45s ease, box-shadow .45s ease, padding .45s ease;
  padding:.5rem 0;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}
.brand{ display:flex; align-items:center; gap:.85rem; }
.brand__logo{
  width:56px; height:56px;
  display:grid; place-items:center;
  flex:none;
}
.brand__logo img{
  width:100%; height:100%;
  object-fit:contain;
  filter:drop-shadow(0 0 10px rgba(200,162,122,.35));
}
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__name{
  font-family:var(--serif);
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:.12em;
  color:#fff;
  transition:color .45s ease;
}
.brand__sub{
  font-size:.62rem;
  letter-spacing:.34em;
  color:var(--gold);
  margin-top:3px;
}
.nav{ display:flex; gap:2.4rem; }
.nav a{
  font-size:.92rem;
  font-weight:400;
  color:var(--cream-soft);
  position:relative;
  transition:color .3s ease;
}
.nav a::after{
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:0; height:1px; background:var(--gold);
  transition:width .3s ease;
}
.nav a:hover{ color:#fff; }
.nav a:hover::after{ width:100%; }

/* scrolled state */
.header.scrolled{
  background:rgba(250,248,245,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 rgba(0,0,0,.06);
}
.header.scrolled .brand__name{ color:#09090B; }
.header.scrolled .nav a{ color:var(--ink); }
.header.scrolled .nav a:hover{ color:var(--gold); }
.header.scrolled .nav-toggle span{ background:#09090B; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:26px; height:2px; background:var(--cream-soft);
  transition:.3s;
}

/* ====================================================
   HERO
   ==================================================== */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero__slides{ position:absolute; inset:0; }
.hero__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:scale(1.05);
}
.hero__slide.is-active{ opacity:1; transform:scale(1); transition:opacity 1.2s ease, transform 7s ease; }
.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(9,9,11,.55), rgba(9,9,11,.45), rgba(9,9,11,.75));
}
.hero__content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  padding:0 1.5rem;
}
.hero__title{
  font-family:var(--serif);
  font-weight:500;
  color:#fff;
  line-height:1.02;
  letter-spacing:-.01em;
  font-size:clamp(2.8rem, 8vw, 6rem);
  margin-bottom:1.4rem;
}
.hero__sub{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--cream-soft);
  margin-bottom:2.4rem;
}
.hero__content .eyebrow{ animation:none; }

.hero__dots{
  position:absolute;
  bottom:7.5rem; left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  gap:.75rem;
}
.hero__dot{
  width:34px; height:2px;
  background:rgba(244,230,216,.35);
  border:none; cursor:pointer;
  transition:background .3s ease;
}
.hero__dot.is-active{ background:var(--gold); }

.hero__scroll{
  position:absolute;
  bottom:2.2rem; left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.6rem;
}
.hero__scroll-text{
  font-size:.62rem;
  letter-spacing:.34em;
  color:var(--cream-mute);
}
.hero__scroll-line{
  width:1px; height:38px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%,100%{ opacity:.3; transform:scaleY(.6); }
  50%{ opacity:1; transform:scaleY(1); }
}

/* ====================================================
   OUR CHAI JOURNEY
   ==================================================== */
.journey{ background:var(--cream); }
.journey__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
}
.journey__media{ position:relative; }
.journey__img{ position:relative; z-index:2; }
.journey__media img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
}
.journey__frame{
  position:absolute;
  inset:24px -24px -24px 24px;
  border:1px solid var(--gold);
  z-index:1;
}
.journey__media::before{
  content:"";
  position:absolute;
  top:-22px; left:-22px;
  width:120px; height:120px;
  background:var(--tan);
  z-index:0;
}
.journey__content{ padding-right:1rem; }

/* ====================================================
   WHY DIP TEA
   ==================================================== */
.why{ background:#09090B; }
.why__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  perspective:1200px; /* 3D context so cards tilt + content gains depth on hover */
}
.feature{
  position:relative;
  transform-style:preserve-3d;
  will-change:transform;
  border:1px solid rgba(200,162,122,.16);
  border-radius:16px;
  background:rgba(255,255,255,.02);
  padding:2.6rem 2.2rem;
  transition:transform .4s ease, border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
/* glowing gold border that lights up brightest near the cursor (spotlight border) */
.feature::before{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  padding:1.5px;
  background:radial-gradient(220px circle at var(--mx,50%) var(--my,50%),
            rgba(226,186,134,1), rgba(200,162,122,.45) 35%, rgba(200,162,122,0) 70%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  opacity:0;
  transition:opacity .45s ease;
  pointer-events:none;
}
/* soft inner glare following the cursor */
.feature::after{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(200,162,122,.14), transparent 55%);
  opacity:0;
  transition:opacity .45s ease;
  pointer-events:none;
}
.feature:hover{
  /* pure-CSS 3D lift + tilt — works on every hover even without JS.
     JS (when present) overrides this transform to follow the cursor. */
  transform:translateY(-10px) rotateX(4deg) scale(1.02);
  border-color:rgba(200,162,122,.28);
  background:rgba(255,255,255,.045);
  box-shadow:0 30px 60px rgba(0,0,0,.5), 0 0 42px rgba(200,162,122,.14);
}
.feature:hover::before,
.feature:hover::after{ opacity:1; }

/* content floats forward on hover for real parallax depth */
.feature__icon,
.feature__title,
.feature__text{
  transition:transform .45s cubic-bezier(.16,1,.3,1),
             border-color .4s ease, box-shadow .4s ease, color .4s ease;
}
.feature:hover .feature__icon{ transform:translateZ(55px); }
.feature:hover .feature__title{ transform:translateZ(34px); }
.feature:hover .feature__text{ transform:translateZ(18px); }

.feature__icon{
  position:relative;
  width:58px; height:58px;
  border-radius:50%;
  border:1px solid rgba(200,162,122,.45);
  display:grid; place-items:center;
  color:var(--gold);
  margin-bottom:1.8rem;
}
.feature:hover .feature__icon{
  border-color:var(--gold);
  box-shadow:0 0 26px rgba(200,162,122,.32);
}
.feature__icon svg{ width:24px; height:24px; }
.feature__title{
  position:relative;
  font-family:var(--serif);
  font-size:1.6rem;
  font-weight:500;
  color:#fff;
  margin-bottom:.7rem;
}
.feature__text{ position:relative; color:var(--cream-mute); font-size:.98rem; }

/* ====================================================
   FIVE PILLARS / INGREDIENTS
   ==================================================== */
.pillars{ background:var(--tan); overflow:hidden; }
.pillars__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.08;
  z-index:0;
}
.pillars .container{ position:relative; z-index:1; }
.pillars__grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1.5rem;
}
.spice{
  background:#fff;
  padding:2.4rem 1.4rem;
  text-align:center;
  border-radius:2px;
  box-shadow:0 18px 40px rgba(4,47,54,.06);
  transition:transform .4s ease, box-shadow .4s ease;
}
.spice:hover{ transform:translateY(-8px); box-shadow:0 26px 50px rgba(4,47,54,.12); }
.spice__icon{
  width:104px; height:104px;
  margin:0 auto 1.3rem;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(200,162,122,.4);
  box-shadow:0 10px 24px rgba(4,47,54,.12), inset 0 0 0 4px #fff;
  transition:transform .45s cubic-bezier(.16,1,.3,1), border-color .45s ease, box-shadow .45s ease;
}
.spice__icon img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.spice:hover .spice__icon{
  transform:translateY(-3px) scale(1.05);
  border-color:var(--gold);
  box-shadow:0 16px 32px rgba(4,47,54,.18), 0 0 26px rgba(200,162,122,.35), inset 0 0 0 4px #fff;
}
.spice:hover .spice__icon img{ transform:scale(1.12); }
.spice__name{
  font-family:var(--serif);
  font-size:1.5rem;
  font-weight:600;
  color:#09090B;
  margin-bottom:.6rem;
}
.spice__line{
  display:block;
  width:34px; height:2px;
  background:var(--gold);
  margin:0 auto .9rem;
}
.spice__text{ font-size:.9rem; color:var(--ink-soft); }

/* ====================================================
   SIGNATURE / PRODUCT
   ==================================================== */
.signature{ background:var(--cream); overflow:hidden; }
.signature__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
}
.signature__media{
  position:relative;
  display:grid; place-items:center;
  padding:2.5rem;
}
.signature__media::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(145deg,var(--tan),#efe2d2);
  border-radius:8px;
}
.signature__glow{
  position:absolute;
  width:60%; height:60%;
  background:radial-gradient(circle,rgba(200,162,122,.35),transparent 70%);
  filter:blur(40px);
}
.signature__img{
  position:relative;
  z-index:2;
  width:78%;
  max-width:360px;
}
.signature__media img{
  width:100%;
  border-radius:4px;
  display:block;
}
.signature__badge{
  position:absolute;
  z-index:3;
  top:2.5rem; right:2.5rem;
  background:#09090B;
  color:var(--gold);
  font-size:.62rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  padding:.6rem 1rem;
  border-radius:999px;
}
.signature__list{ margin:0 0 2.2rem; }
.signature__list li{
  position:relative;
  padding-left:1.7rem;
  margin-bottom:.85rem;
  color:var(--ink-soft);
}
.signature__list li::before{
  content:"";
  position:absolute;
  left:0; top:.6em;
  width:7px; height:7px;
  border-radius:50%;
  background:var(--gold);
}

/* ====================================================
   PRICING / PACKS
   ==================================================== */
.plans{ background:linear-gradient(180deg,var(--tan),var(--cream)); }
.plans__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  align-items:stretch;
  perspective:1500px; /* 3D context for the tilt + depth on hover */
}
.plan{
  position:relative;
  transform-style:preserve-3d;
  will-change:transform;
  display:flex;
  flex-direction:column;
  text-align:center;
  background:#fff;
  border:1px solid rgba(200,162,122,.28);
  border-radius:12px;
  padding:2.6rem 1.7rem;
  box-shadow:0 18px 40px rgba(4,47,54,.06);
  transition:transform .45s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease;
}
/* glowing gold border that lights up near the cursor (spotlight border) */
.plan::before{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  padding:1.5px;
  background:radial-gradient(240px circle at var(--mx,50%) var(--my,50%),
            rgba(226,186,134,1), rgba(200,162,122,.45) 35%, rgba(200,162,122,0) 70%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  opacity:0;
  transition:opacity .45s ease;
  pointer-events:none;
  z-index:1;
}
/* soft inner glare following the cursor */
.plan::after{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(200,162,122,.12), transparent 55%);
  opacity:0;
  transition:opacity .45s ease;
  pointer-events:none;
  z-index:0;
}
.plan:hover{
  /* pure-CSS 3D lift + tilt — works on every hover; JS enhances to follow cursor */
  transform:translateY(-10px) rotateX(4deg) scale(1.02);
  box-shadow:0 34px 64px rgba(4,47,54,.16);
  border-color:rgba(200,162,122,.4);
}
.plan:hover::before,
.plan:hover::after{ opacity:1; }
/* keep card content above the glare layer */
.plan > *{ position:relative; z-index:2; }
/* content floats forward for real depth */
.plan__badge,
.plan__name,
.plan__weight,
.plan__price{ transition:transform .45s cubic-bezier(.16,1,.3,1); }
.plan:hover .plan__badge{ transform:translateX(-50%) translateZ(45px); }
.plan:hover .plan__weight{ transform:translateZ(38px); }
.plan:hover .plan__price{ transform:translateZ(26px); }
.plan:hover .plan__name{ transform:translateZ(16px); }
.plan__name{
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.1rem;
}
.plan__weight{
  font-family:var(--serif);
  font-size:3rem;
  font-weight:600;
  line-height:1;
  color:#09090B;
}
.plan__weight span{ font-size:1.3rem; color:var(--gold); margin-left:2px; }
.plan__price{
  font-family:var(--serif);
  font-size:2.5rem;
  font-weight:600;
  color:#09090B;
  margin:.7rem 0 .3rem;
}
.plan__cur{ font-size:1.3rem; vertical-align:super; color:var(--gold); margin-right:1px; }
.plan__was{
  font-family:var(--sans);
  font-size:1.05rem;
  font-weight:400;
  color:var(--ink-soft);
  margin-left:.45rem;
}
.plan__rate{ font-size:.82rem; color:var(--ink-soft); }
.plan__save{
  display:inline-block;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8a6a3f;
  background:rgba(200,162,122,.16);
  padding:.32rem .8rem;
  border-radius:999px;
}
.plan .divider{ margin:1.5rem auto; }
.plan__features{
  text-align:left;
  margin:0 auto 2rem;
  display:inline-block;
}
.plan__features li{
  position:relative;
  padding-left:1.6rem;
  margin-bottom:.7rem;
  font-size:.92rem;
  color:var(--ink-soft);
}
.plan__features li::before{
  content:"";
  position:absolute;
  left:0; top:.45em;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--gold);
}
.plan .btn{ margin-top:auto; }

/* most-popular card — dark premium treatment */
.plan--popular{
  background:#09090B;
  border-color:var(--gold);
  box-shadow:0 26px 60px rgba(4,47,54,.22);
}
.plan--popular:hover{ box-shadow:0 34px 70px rgba(4,47,54,.3); }
.plan--popular .plan__weight,
.plan--popular .plan__price{ color:#fff; }
.plan--popular .plan__features li{ color:var(--cream-soft); }
.plan--popular .divider{ background:rgba(200,162,122,.6); }
.plan--popular .plan__was{ color:var(--cream-mute); }
.plan__badge{
  position:absolute;
  top:-13px; left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
  font-size:.62rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#09090B;
  background:var(--gold);
  padding:.45rem 1.1rem;
  border-radius:999px;
  box-shadow:0 6px 16px rgba(200,162,122,.4);
}

/* trust row */
.plans__trust{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem 2.2rem;
  margin-top:3rem;
}
.plans__trust li{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.9rem;
  color:var(--ink-soft);
}
.plans__trust svg{ width:18px; height:18px; color:var(--gold); flex:none; }

/* ====================================================
   HOW TO BREW / PROCESS FLOW
   ==================================================== */
.brew{
  background:linear-gradient(180deg,var(--cream) 0%,#f6efe6 100%);
  overflow:hidden;
}
.brew__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.05;
  z-index:0;
}
.brew .container{ position:relative; z-index:1; }

.brew__timeline{
  position:relative;
  max-width:900px;
  margin:0 auto;
}

/* central spine + the gold fill that draws itself on scroll */
.brew__line{
  position:absolute;
  top:8px; bottom:8px;
  left:50%;
  transform:translateX(-50%);
  width:3px;
  border-radius:3px;
  background:rgba(200,162,122,.20);
  z-index:0;
}
.brew__line-fill{
  position:absolute;
  top:0; left:0;
  width:100%; height:0;
  border-radius:3px;
  background:linear-gradient(180deg,var(--gold),#e6c79d);
  box-shadow:0 0 14px rgba(200,162,122,.6);
}
/* glowing 'comet' that rides the leading edge of the fill */
.brew__line-fill::after{
  content:"";
  position:absolute;
  left:50%; bottom:-5px;
  transform:translateX(-50%);
  width:12px; height:12px;
  border-radius:50%;
  background:var(--gold);
  animation:brewComet 1.8s ease-in-out infinite;
}
@keyframes brewComet{
  0%,100%{ box-shadow:0 0 8px 2px rgba(200,162,122,.6); }
  50%{ box-shadow:0 0 18px 6px rgba(200,162,122,.85); }
}

.brew__step{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  margin-bottom:3rem;
}
.brew__step:last-child{ margin-bottom:0; }

/* numbered node sitting on the spine; lights up as its step reveals */
.brew__node{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%) scale(.5);
  width:60px; height:60px;
  border-radius:50%;
  background:var(--cream);
  border:2px solid rgba(200,162,122,.4);
  display:grid; place-items:center;
  font-family:var(--serif);
  font-size:1.2rem;
  font-weight:600;
  color:var(--gold);
  z-index:3;
  opacity:0;
  transition:transform .6s cubic-bezier(.16,1,.3,1) .1s,
             opacity .5s ease .1s,
             background .5s ease, border-color .5s ease,
             color .5s ease, box-shadow .5s ease;
}
.brew__step.is-in .brew__node{
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
  background:#09090B;
  border-color:var(--gold);
  color:var(--gold);
  box-shadow:0 0 0 8px rgba(200,162,122,.12), 0 0 26px rgba(200,162,122,.45);
}
/* single ripple 'ping' the moment the step activates */
.brew__node::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius:50%;
  border:2px solid var(--gold);
  opacity:0;
}
.brew__step.is-in .brew__node::before{
  animation:brewRipple 1.3s ease-out .25s 1;
}
@keyframes brewRipple{
  0%{ transform:scale(1); opacity:.75; }
  100%{ transform:scale(2); opacity:0; }
}

/* card */
.brew__card{
  position:relative;
  background:#fff;
  padding:2.2rem 2.2rem;
  border-radius:8px;
  box-shadow:0 18px 40px rgba(4,47,54,.06);
  border:1px solid rgba(200,162,122,0);
  transition:transform .45s cubic-bezier(.16,1,.3,1),
             box-shadow .45s ease, border-color .45s ease;
}
/* top accent bar that sweeps in on hover */
.brew__card::before{
  content:"";
  position:absolute;
  top:0; left:1.6rem; right:1.6rem;
  height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:scaleX(0);
  transition:transform .5s ease;
}
.brew__card:hover{
  transform:translateY(-9px);
  box-shadow:0 32px 64px rgba(4,47,54,.16);
  border-color:rgba(200,162,122,.5);
}
.brew__card:hover::before{ transform:scaleX(1); }
/* little pointer linking card to the spine */
.brew__card::after{
  content:"";
  position:absolute;
  top:50%;
  width:18px; height:18px;
  background:#fff;
  border:1px solid rgba(200,162,122,0);
  transform:translateY(-50%) rotate(45deg);
  transition:border-color .45s ease;
}
.brew__card:hover::after{ border-color:rgba(200,162,122,.5); }
.brew__step--l .brew__card{
  grid-column:1;
  margin-right:3.9rem;
  text-align:right;
}
.brew__step--l .brew__card::after{ right:-9px; border-left:0; border-bottom:0; }
.brew__step--r .brew__card{
  grid-column:2;
  margin-left:3.9rem;
  text-align:left;
}
.brew__step--r .brew__card::after{ left:-9px; border-right:0; border-top:0; }

/* icon in a glowing gold medallion */
.brew__icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:66px; height:66px;
  border-radius:50%;
  line-height:1;
  margin-bottom:1.1rem;
  color:#a87b40;
  background:radial-gradient(circle at 50% 35%, rgba(200,162,122,.26), rgba(200,162,122,.07));
  border:1px solid rgba(200,162,122,.35);
  box-shadow:inset 0 0 18px rgba(200,162,122,.15);
  transition:transform .45s cubic-bezier(.16,1,.3,1),
             box-shadow .45s ease, border-color .45s ease, color .45s ease;
}
.brew__icon svg{ width:30px; height:30px; }
.brew__card:hover .brew__icon{
  transform:scale(1.12) rotate(-6deg);
  color:#09090B;
  border-color:var(--gold);
  box-shadow:inset 0 0 18px rgba(200,162,122,.25), 0 10px 24px rgba(200,162,122,.32);
}
.brew__title{
  font-family:var(--serif);
  font-size:1.6rem;
  font-weight:600;
  color:#09090B;
  margin-bottom:.5rem;
  transition:color .4s ease;
}
.brew__card:hover .brew__title{ color:#5a4326; }
.brew__text{ color:var(--ink-soft); font-size:.98rem; }

/* directional slide-in reveal (card moves, node stays on the spine) */
html.has-anim .brew__step.reveal{ opacity:1; transform:none; }
html.has-anim .brew__card{
  opacity:0;
  transition:opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1),
             box-shadow .45s ease, border-color .45s ease;
}
html.has-anim .brew__step--l .brew__card{ transform:translateX(-70px); }
html.has-anim .brew__step--r .brew__card{ transform:translateX(70px); }
html.has-anim .brew__step.is-in .brew__card{
  opacity:1; transform:none;
  transition:opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1),
             box-shadow .45s ease, border-color .45s ease;
}
/* keep hover responsive + override the revealed transform */
html.has-anim .brew__step.is-in .brew__card:hover{ transform:translateY(-9px); }

/* closing CTA — highlighted Instagram brewing-guide callout */
.brew__cta{
  position:relative;
  max-width:660px;
  margin:5rem auto 0;
  padding:3rem 2.5rem;
  text-align:center;
  border:1px solid rgba(200,162,122,.4);
  border-radius:12px;
  background:linear-gradient(160deg, rgba(255,255,255,.7), rgba(244,230,216,.45));
  box-shadow:0 20px 50px rgba(4,47,54,.07);
  overflow:hidden;
}
.brew__cta-text{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.4rem;
  line-height:1.4;
  color:var(--ink-soft);
  max-width:540px;
  margin:0 auto 1.8rem;
}
.brew__cta .btn{ position:relative; z-index:1; }

@media (prefers-reduced-motion:reduce){
  .brew__line-fill::after,
  .brew__step.is-in .brew__node::before{ animation:none; }
  html.has-anim .brew__step--l .brew__card,
  html.has-anim .brew__step--r .brew__card{ transform:none; }
}

/* ====================================================
   GALLERY
   ==================================================== */
.gallery{ background:var(--cream); }
.gallery__masonry{
  column-count:4;
  column-gap:1.25rem;
}
.gallery__item{
  position:relative;
  cursor:pointer;
  margin-bottom:1.25rem;
  overflow:hidden;
  border-radius:3px;
  break-inside:avoid;
}
.gallery__item img{
  width:100%;
  transition:transform .7s ease;
}
.gallery__item:hover img{ transform:scale(1.06); }

/* hover overlay with tea-cup zoom affordance */
.gallery__zoom{
  position:absolute; inset:0;
  z-index:5;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(to top, rgba(9,9,11,.6), rgba(9,9,11,.15));
  color:var(--gold);
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
}
.gallery__zoom svg{
  width:40px; height:40px;
  transform:scale(.7) translateY(6px);
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.gallery__item:hover .gallery__zoom{ opacity:1; }
.gallery__item:hover .gallery__zoom svg{ transform:scale(1) translateY(0); }

/* ====================================================
   GALLERY LIGHTBOX
   ==================================================== */
.lightbox{
  position:fixed; inset:0;
  z-index:1000;
  display:flex; align-items:center; justify-content:center;
  padding:5vh 4.5rem;
  background:rgba(9,9,11,.94);
  backdrop-filter:blur(6px);
  opacity:0; visibility:hidden;
  transition:opacity .4s ease, visibility 0s linear .4s;
}
.lightbox.is-open{
  opacity:1; visibility:visible;
  transition:opacity .4s ease;
}

.lightbox__stage{
  position:relative;
  margin:0;
  max-width:1000px; max-height:86vh;
  display:flex; flex-direction:column; align-items:center;
}
.lightbox__img{
  max-width:100%; max-height:80vh;
  object-fit:contain;
  border-radius:4px;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}
.lightbox.is-open .lightbox__img.is-swap{
  animation:lbZoom .5s cubic-bezier(.16,1,.3,1);
}
@keyframes lbZoom{
  from{ opacity:0; transform:scale(.93); }
  to{ opacity:1; transform:scale(1); }
}
.lightbox__caption{
  margin-top:1.2rem;
  font-family:var(--serif);
  font-style:italic;
  font-size:1.15rem;
  color:var(--cream-soft);
  text-align:center;
}

.lightbox__close{
  position:absolute; top:1.4rem; right:1.6rem;
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(200,162,122,.4);
  color:var(--cream-soft);
  display:grid; place-items:center;
  cursor:pointer;
  transition:background .3s ease, color .3s ease, transform .4s ease;
}
.lightbox__close:hover{ background:var(--gold); color:#09090B; transform:rotate(90deg); }
.lightbox__close svg{ width:22px; height:22px; }

.lightbox__nav{
  position:absolute; top:50%;
  transform:translateY(-50%);
  width:54px; height:54px; border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(200,162,122,.4);
  color:var(--cream-soft);
  display:grid; place-items:center;
  cursor:pointer; z-index:2;
  transition:background .3s ease, color .3s ease;
}
.lightbox__nav:hover{ background:var(--gold); color:#09090B; }
.lightbox__nav svg{ width:24px; height:24px; }
.lightbox__nav--prev{ left:1.6rem; }
.lightbox__nav--next{ right:1.6rem; }

.lightbox__count{
  position:absolute; bottom:1.5rem; left:50%;
  transform:translateX(-50%);
  font-size:.78rem; letter-spacing:.22em;
  color:var(--cream-mute);
}

html.lb-lock, html.lb-lock body{ overflow:hidden; }

@media(max-width:768px){
  .lightbox{ padding:4vh 3.5rem; }
  .lightbox__nav{ width:44px; height:44px; }
  .lightbox__nav--prev{ left:.5rem; }
  .lightbox__nav--next{ right:.5rem; }
  .lightbox__close{ top:.8rem; right:.8rem; width:42px; height:42px; }
  .lightbox__caption{ font-size:1rem; }
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials{ position:relative; overflow:hidden; }
.testimonials__bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}
.testimonials__overlay{
  position:absolute; inset:0;
  background:rgba(9,9,11,.9);
  z-index:1;
}
.testimonials .container{ position:relative; z-index:2; }

.testimonials__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:1100px;
  margin:0 auto;
}
.t-card{
  position:relative;
  overflow:hidden;
  text-align:left;
  padding:2.6rem 2rem 2.2rem;
  border:1px solid rgba(200,162,122,.22);
  border-radius:12px;
  background:rgba(244,230,216,.04);
  backdrop-filter:blur(2px);
  transition:transform .5s cubic-bezier(.16,1,.3,1),
             border-color .45s ease, background .45s ease, box-shadow .45s ease;
}
/* sweeping gold accent bar along the top edge */
.t-card::before{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:scaleX(0);
  transition:transform .55s ease;
}
.t-card:hover{
  transform:translateY(-10px);
  border-color:rgba(200,162,122,.55);
  background:rgba(244,230,216,.075);
  box-shadow:0 32px 60px rgba(0,0,0,.45), 0 0 34px rgba(200,162,122,.12);
}
.t-card:hover::before{ transform:scaleX(1); }

/* big decorative quote mark */
.t-card__mark{
  position:absolute;
  top:.4rem; right:1.3rem;
  font-family:var(--serif);
  font-size:5.5rem;
  line-height:1;
  color:rgba(200,162,122,.22);
  transition:transform .55s cubic-bezier(.16,1,.3,1), color .45s ease;
  pointer-events:none;
}
.t-card:hover .t-card__mark{
  transform:translateY(4px) scale(1.12);
  color:rgba(200,162,122,.42);
}

.t-card__stars{
  position:relative;
  color:var(--gold);
  letter-spacing:.28em;
  font-size:.95rem;
  margin-bottom:1.2rem;
}
.t-card__quote{
  position:relative;
  font-family:var(--serif);
  font-size:1.22rem;
  font-style:italic;
  line-height:1.55;
  color:var(--cream-soft);
  margin-bottom:1.8rem;
  transition:color .45s ease;
}
.t-card:hover .t-card__quote{ color:#fff; }

.t-card__person{
  display:flex;
  align-items:center;
  gap:.85rem;
  padding-top:1.3rem;
  border-top:1px solid rgba(200,162,122,.16);
}
.t-card__avatar{
  flex:none;
  width:46px; height:46px;
  border-radius:50%;
  display:grid; place-items:center;
  font-family:var(--serif);
  font-size:1.25rem;
  font-weight:600;
  color:#09090B;
  background:linear-gradient(145deg,var(--gold),#e6c79d);
  box-shadow:0 0 0 0 rgba(200,162,122,.4);
  transition:box-shadow .45s ease, transform .45s ease;
}
.t-card:hover .t-card__avatar{
  transform:scale(1.08);
  box-shadow:0 0 0 6px rgba(200,162,122,.14), 0 6px 18px rgba(200,162,122,.3);
}
.t-card__meta{ display:flex; flex-direction:column; line-height:1.25; }
.t-card__name{ color:#fff; font-weight:500; font-size:1rem; }
.t-card__loc{
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-top:2px;
}
@media(max-width:920px){
  .testimonials__grid{ grid-template-columns:1fr; max-width:540px; }
}

/* ====================================================
   INSTAGRAM
   ==================================================== */
.instagram{ background:var(--cream); }
/* 3-up grid of real post/reel covers that link to Instagram */
.instagram__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.1rem;
  max-width:920px;
  margin:0 auto;
}
.ig-tile{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:10px;
  box-shadow:0 12px 30px rgba(4,47,54,.08);
  transition:transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
}
.ig-tile__media{ display:block; width:100%; height:100%; cursor:pointer; }
.ig-tile img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .7s cubic-bezier(.16,1,.3,1);
}
.ig-tile:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 50px rgba(4,47,54,.22), 0 0 0 2px var(--gold);
}
.ig-tile:hover img{ transform:scale(1.1); }

/* center play button (reels) — the "play" option */
.ig-tile__play{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%) scale(.85);
  z-index:2;
  width:58px; height:58px;
  border-radius:50%;
  display:grid; place-items:center;
  color:#fff;
  background:rgba(9,9,11,.42);
  border:2px solid rgba(255,255,255,.85);
  opacity:.92;
  transition:transform .45s cubic-bezier(.16,1,.3,1), opacity .4s ease,
             background .4s ease, color .4s ease, border-color .4s ease;
  pointer-events:none;
}
.ig-tile__play svg{ width:24px; height:24px; margin-left:3px; }
.ig-tile:hover .ig-tile__play{
  transform:translate(-50%,-50%) scale(1);
  opacity:1;
  background:rgba(200,162,122,.9);
  color:#09090B;
  border-color:var(--gold);
}

/* Instagram-style action bar — like · comment · share */
.ig-tile__bar{
  position:absolute; left:0; right:0; bottom:0;
  z-index:4;
  display:flex; align-items:center; gap:.35rem;
  padding:.85rem .8rem .75rem;
  background:linear-gradient(to top, rgba(9,9,11,.85), rgba(9,9,11,0));
  opacity:0; transform:translateY(12px);
  transition:opacity .4s ease, transform .45s cubic-bezier(.16,1,.3,1);
  pointer-events:none;
}
.ig-tile:hover .ig-tile__bar,
.ig-tile:focus-within .ig-tile__bar{ opacity:1; transform:translateY(0); }
.ig-tile:focus-within .ig-tile__play{ opacity:1; transform:translate(-50%,-50%) scale(1); }
.ig-act{
  width:38px; height:38px;
  display:grid; place-items:center;
  color:#fff; cursor:pointer;
  background:none; border:none; padding:0;
  pointer-events:auto;
  transition:transform .25s ease, color .25s ease;
}
.ig-act svg{ width:23px; height:23px; }
.ig-act:hover{ color:var(--gold); transform:scale(1.18); }
.ig-act:active{ transform:scale(.9); }
/* visible keyboard focus indicators */
.ig-tile__media:focus-visible,
.ig-act:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:4px; }
.ig-act__toast{
  margin-left:.4rem;
  font-size:.64rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold);
  opacity:0; transform:translateX(-4px);
  transition:opacity .3s ease, transform .3s ease;
  pointer-events:none;
}
.ig-tile__bar.is-copied .ig-act__toast{ opacity:1; transform:translateX(0); }

/* touch devices have no hover — keep the bar + play visible */
@media(hover:none){
  .ig-tile__bar{ opacity:1; transform:none; background:linear-gradient(to top, rgba(9,9,11,.72), transparent); }
  .ig-tile__play{ opacity:.9; }
}
@media(max-width:760px){
  .instagram__grid{ gap:.6rem; }
  .ig-tile__play{ width:48px; height:48px; }
  .ig-act{ width:34px; height:34px; }
  .ig-act svg{ width:20px; height:20px; }
}
.instagram__cta{ text-align:center; margin-top:3rem; }
.btn__ig{ display:inline-flex; align-items:center; }
.btn__ig svg{ width:18px; height:18px; }

/* ====================================================
   CONTACT
   ==================================================== */
.contact{ background:var(--tan); }
.contact__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  align-items:start;
}
.contact__form{
  background:#fff;
  padding:2.5rem;
  border-radius:9px;
  box-shadow:0 20px 50px rgba(4,47,54,.07);
  transition:box-shadow .4s ease;
}
.contact__form:hover{ box-shadow:0 28px 60px rgba(4,47,54,.12); }
.contact__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.contact__form input,
.contact__form textarea,
.contact__form select{
  width:100%;
  font-family:var(--sans);
  font-size:.95rem;
  color:var(--ink);
  background:#fbfaf8;
  border:1px solid #e7e1d8;
  border-radius:3px;
  padding:.95rem 1rem;
  margin-bottom:1rem;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.contact__form input:hover,
.contact__form textarea:hover,
.contact__form select:hover{ border-color:rgba(200,162,122,.5); }
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(200,162,122,.15);
}
.contact__form textarea{ resize:vertical; }

/* package picker — custom gold dropdown arrow */
.contact__select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
  padding-right:2.6rem;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A27A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1rem center;
  background-size:15px;
}
/* grey out the placeholder option until a real package is chosen */
.contact__select:invalid{ color:#9a958c; }
.contact__select option{ color:var(--ink); }

/* auto-filled price field reads as a computed value */
.contact__form .price-field{
  background:#f6efe3;
  border-color:#e7d9c5;
  font-weight:600;
  color:#09090B;
  letter-spacing:.01em;
  cursor:default;
}
.contact__form .price-field::placeholder{ color:#b6a98f; font-weight:400; }
.contact__note{
  margin-top:1rem;
  font-size:.9rem;
  color:#09090B;
  text-align:center;
  min-height:1.2em;
}

.contact__info{ display:flex; flex-direction:column; gap:1rem; }
/* clickable contact cards — call / email / open map, with rich hover */
.info-card{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  gap:1.2rem;
  background:#fff;
  padding:1.4rem 1.5rem;
  border-radius:9px;
  border:1px solid rgba(200,162,122,0);
  box-shadow:0 10px 30px rgba(4,47,54,.05);
  color:inherit;
  transition:transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease;
}
/* gold accent bar that grows along the left edge on hover */
.info-card::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width:3px;
  background:var(--gold);
  transform:scaleY(0); transform-origin:center;
  transition:transform .45s ease;
}
.info-card:hover{
  transform:translateY(-5px);
  border-color:rgba(200,162,122,.4);
  box-shadow:0 24px 46px rgba(4,47,54,.14);
}
.info-card:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}
.info-card:hover::before{ transform:scaleY(1); }
.info-card__icon{
  flex:none;
  width:50px; height:50px;
  border-radius:50%;
  background:#09090B;
  color:var(--gold);
  display:grid; place-items:center;
  transition:transform .45s cubic-bezier(.16,1,.3,1), background .4s ease, color .4s ease, box-shadow .4s ease;
}
.info-card__icon svg{ width:20px; height:20px; }
.info-card:hover .info-card__icon{
  transform:scale(1.1) rotate(-8deg);
  background:var(--gold);
  color:#09090B;
  box-shadow:0 8px 20px rgba(200,162,122,.45);
}
.info-card__text{ flex:1; min-width:0; display:block; }
.info-card__label{
  display:block;
  font-size:.68rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.2rem;
}
.info-card__value{ display:block; color:#09090B; font-weight:500; word-break:break-word; }
/* arrow that slides in to signal the card is tappable */
.info-card__arrow{
  flex:none;
  color:var(--gold);
  display:grid; place-items:center;
  opacity:0; transform:translateX(-8px);
  transition:opacity .4s ease, transform .4s ease;
}
.info-card__arrow svg{ width:20px; height:20px; }
.info-card:hover .info-card__arrow{ opacity:1; transform:translateX(0); }

.contact__map{
  height:230px;
  border-radius:9px;
  overflow:hidden;
  border:1px solid rgba(200,162,122,0);
  box-shadow:0 10px 30px rgba(4,47,54,.05);
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.contact__map:hover{
  transform:translateY(-4px);
  border-color:rgba(200,162,122,.4);
  box-shadow:0 24px 46px rgba(4,47,54,.14);
}
.contact__map iframe{ width:100%; height:100%; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer{
  background:#09090B;
  color:var(--cream-soft);
  padding:5rem 0 2rem;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:3rem;
}
.footer__logo{
  display:block;
  width:100px; height:100px;
  margin-bottom:1.5rem;
}
.footer__logo img{
  width:100%; height:100%;
  object-fit:contain;
  filter:drop-shadow(0 0 14px rgba(200,162,122,.3));
}
.footer__tagline{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.4rem;
  color:#fff;
  margin-bottom:1rem;
}
.footer__about{ color:var(--cream-mute); font-size:.95rem; max-width:340px; }
.footer__heading{
  font-family:var(--serif);
  font-size:1.4rem;
  font-weight:500;
  color:var(--gold);
  margin-bottom:1.5rem;
}
.footer__links li{ margin-bottom:.7rem; }
.footer__links a{ color:var(--cream-soft); transition:color .3s ease; }
.footer__links a:hover{ color:var(--gold); padding-left:4px; }
.footer__ig{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  border:1px solid rgba(200,162,122,.4);
  padding:.7rem 1.1rem;
  border-radius:999px;
  margin-bottom:1.5rem;
  transition:background .3s ease;
}
.footer__ig:hover{ background:rgba(200,162,122,.12); }
.footer__ig svg{ width:18px; height:18px; display:block; }
.footer__contact{ color:var(--cream-mute); font-size:.95rem; margin-bottom:.4rem; }
.footer__bottom{
  margin-top:3.5rem;
  padding-top:2rem;
  border-top:1px solid rgba(244,230,216,.12);
  text-align:center;
}
.footer__bottom p{ color:var(--cream-mute); font-size:.88rem; }

/* ====================================================
   WHATSAPP FLOAT
   ==================================================== */
.whatsapp-float{
  position:fixed;
  right:1.5rem; bottom:1.5rem;
  z-index:90;
  width:56px; height:56px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:grid; place-items:center;
  box-shadow:0 8px 24px rgba(37,211,102,.45);
  transition:transform .3s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:32px; height:32px; }

/* ====================================================
   SCROLL ANIMATIONS  (ESSO-style)
   Animations only activate when <html> has .has-anim
   (added by JS, skipped for prefers-reduced-motion), so
   the site stays fully visible if JS/CDN ever fails.
   ==================================================== */

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* base reveal (fade-up) — visible by default, hidden only with .has-anim */
.reveal{ opacity:1; transform:none; }
html.has-anim .reveal{
  opacity:0;
  transform:translateY(42px);
  transition:opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
  transition-delay:var(--d,0s);
}
html.has-anim .reveal.is-in{ opacity:1; transform:none; }

/* title mask reveal — the heading rises out of a clip mask */
html.has-anim .anim-title{ overflow:hidden; padding-bottom:.08em; }
html.has-anim .anim-title .title-inner{
  display:block;
  transform:translateY(115%);
  transition:transform 1.15s cubic-bezier(.16,1,.3,1);
}
html.has-anim .anim-title.is-in .title-inner{ transform:translateY(0); }

/* image mask reveal — a panel wipes away while the photo un-zooms */
.img-reveal{ position:relative; overflow:hidden; }
.img-reveal > img{ display:block; }
html.has-anim .img-reveal > img{
  transform:scale(1.32);
  transition:transform 1.5s cubic-bezier(.16,1,.3,1);
  transition-delay:var(--d,0s);
}
html.has-anim .img-reveal.is-in > img{ transform:scale(1); }
.img-reveal .reveal-panel{
  position:absolute; inset:0;
  background:#09090B;
  z-index:4;
  transform:scaleX(1);
  transform-origin:left center;
}
html.has-anim .img-reveal .reveal-panel{
  transition:transform 1.15s cubic-bezier(.76,0,.24,1);
  transition-delay:var(--d,0s);
}
html.has-anim .img-reveal.is-in .reveal-panel{
  transform:scaleX(0);
  transform-origin:right center;
}
/* no-anim safety: keep panel hidden when animations are off */
html:not(.has-anim) .img-reveal .reveal-panel{ display:none; }

/* parallax layers sit slightly larger so movement never shows an edge */
[data-parallax]{ will-change:transform; }
.pillars__bg[data-parallax],
.testimonials__bg[data-parallax]{
  top:-12%; height:124%;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media(max-width:1024px){
  .pillars__grid{ grid-template-columns:repeat(3,1fr); }
  .gallery__masonry{ column-count:3; }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  .plans__grid{ grid-template-columns:repeat(2,1fr); gap:1.25rem; }
}
@media(max-width:768px){
  .nav{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:78%;
    max-width:320px;
    background:#09090B;
    flex-direction:column;
    justify-content:center;
    gap:1.8rem;
    padding:2rem;
    transform:translateX(100%);
    transition:transform .4s ease;
    z-index:99;
  }
  .nav.open{ transform:translateX(0); }
  .nav a{ color:var(--cream-soft); font-size:1.1rem; }
  .nav-toggle{ display:flex; z-index:101; }
  .header.scrolled .nav a{ color:var(--cream-soft); }

  .journey__grid,
  .signature__grid,
  .contact__grid{ grid-template-columns:1fr; gap:3rem; }
  .journey__media{ max-width:480px; }
  .why__grid{ grid-template-columns:1fr 1fr; }
  .pillars__grid{ grid-template-columns:1fr 1fr; }
  .gallery__masonry{ column-count:2; }
  .footer__grid{ grid-template-columns:1fr; gap:2.5rem; }
  .journey__media::before{ display:none; }

  /* brew timeline → single left-aligned column */
  .brew__line{ left:28px; }
  .brew__step{ grid-template-columns:1fr; margin-bottom:1.8rem; }
  .brew__node{ left:28px; }
  .brew__step--l .brew__card,
  .brew__step--r .brew__card{
    grid-column:1;
    margin:0 0 0 4.5rem;
    text-align:left;
  }
  .brew__step--l .brew__card::after,
  .brew__step--r .brew__card::after{ left:-9px; right:auto; }
  /* uniform slide-from-left on mobile */
  html.has-anim .brew__step--l .brew__card,
  html.has-anim .brew__step--r .brew__card{ transform:translateX(-40px); }
  html.has-anim .brew__step.is-in .brew__card{ transform:none; }
  .brew__cta{ margin-top:3.5rem; padding:2.4rem 1.6rem; }
}
@media(max-width:560px){
  .plans__grid{ grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; }
}
@media(max-width:480px){
  .why__grid,
  .pillars__grid,
  .contact__row{ grid-template-columns:1fr; }
  .section{ padding:5rem 0; }
  .hero__dots{ bottom:6rem; }
}

/* ====================================================
   PRELOADER
   ==================================================== */
html.is-loading{ overflow:hidden; }

.preloader{
  position:fixed; inset:0;
  z-index:9999;
  background:radial-gradient(circle at 50% 44%, #181208 0%, #0a0908 72%);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .7s ease .15s, visibility 0s linear .9s;
}

.preloader__inner{
  display:flex; flex-direction:column; align-items:center;
  transition:opacity .55s ease, transform .6s ease;
}

/* full logo shown directly (no backing disc), with a soft glow on the dark loader */
.preloader__badge{
  display:grid; place-items:center;
  animation:plIn .9s cubic-bezier(.2,.7,.3,1) both,
            plPulse 3.4s ease-in-out 1.1s infinite;
}
.preloader__logo{
  width:164px; height:164px; object-fit:contain; display:block;
  filter:drop-shadow(0 0 30px rgba(200,162,122,.4));
}

/* brand */
.preloader__brand{ margin-top:1.8rem; text-align:center; opacity:0; animation:plFadeUp .7s ease .5s forwards; }
.preloader__name{
  display:block; font-family:var(--serif); font-size:1.8rem; font-weight:600;
  letter-spacing:.22em; color:#fff;
}
.preloader__sub{
  display:block; font-size:.6rem; letter-spacing:.46em;
  text-transform:uppercase; color:var(--gold); margin-top:8px;
}

/* sleek horizontal progress bar */
.preloader__bar{
  margin-top:2.2rem;
  width:210px; height:2px; border-radius:2px;
  background:rgba(200,162,122,.16);
  overflow:hidden;
  opacity:0; animation:plFadeUp .7s ease .7s forwards;
}
.preloader__bar-fill{
  display:block; height:100%; width:0;
  background:linear-gradient(90deg, var(--gold), #e9cfa6);
  box-shadow:0 0 10px rgba(200,162,122,.6);
  transition:width .25s ease;
}
.preloader__count{
  margin-top:1rem;
  font-size:.7rem; letter-spacing:.24em; color:var(--cream-mute);
  opacity:0; animation:plFadeUp .7s ease .8s forwards;
}

@keyframes plIn{ from{ opacity:0; transform:scale(.72); } to{ opacity:1; transform:scale(1); } }
@keyframes plPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.045); }
}
@keyframes plFadeUp{ from{ opacity:0; transform:translateY(12px); } to{ opacity:1; transform:none; } }

/* exit */
.preloader.done{ opacity:0; visibility:hidden; }
.preloader.done .preloader__inner{ opacity:0; transform:translateY(-10px); }

@media (prefers-reduced-motion: reduce){
  .preloader__badge, .preloader__brand, .preloader__bar, .preloader__count{ animation:none !important; opacity:1; }
  .preloader__bar-fill{ transition:none; }
  .preloader{ transition:opacity .4s ease, visibility 0s linear .4s; }
}
