/* ============================================================
   Mr. Avocado — tokens
   ============================================================ */
:root{
  --cream:      #fbf3e2;
  --cream-2:    #f3e6c8;
  --ink:        #1c2b1a;
  --ink-soft:   #3a4a37;
  --forest:     #16281a;
  --forest-2:   #1f3a24;
  --forest-3:   #24401f;
  --gold:       #eaad2c;
  --gold-2:     #f7c948;
  --coral:      #ef6b45;
  --coral-2:    #ff8a5c;
  --leaf:       #7fa53f;
  --leaf-2:     #9bc25c;
  --muted:      #8a8270;

  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(22,40,26,0.10);
  --shadow-md: 0 20px 45px rgba(22,40,26,0.16);
  --shadow-lg: 0 30px 70px rgba(22,40,26,0.28);

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--gold); color:var(--forest); }

.section-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 6vw;
}

@media (min-width:1500px){
  .section-inner{ padding:0 60px; }
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--forest);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.done{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-logo{
  width:80px; height:80px; border-radius:50%;
  animation:pulseLogo 1.1s ease-in-out infinite;
}
@keyframes pulseLogo{
  0%,100%{ transform:scale(1); opacity:.85; }
  50%{ transform:scale(1.12); opacity:1; }
}

/* ============================================================
   Cursor glow (decorative, desktop only)
   ============================================================ */
.cursor-glow{
  position:fixed; top:0; left:0; width:420px; height:420px;
  border-radius:50%; pointer-events:none; z-index:1;
  background:radial-gradient(circle, rgba(234,173,44,0.10), transparent 70%);
  transform:translate(-50%,-50%);
  transition:opacity .3s ease;
  opacity:0;
}
@media (hover:hover) and (pointer:fine){
  .cursor-glow.active{ opacity:1; }
}

/* ============================================================
   Buttons / pills / kickers
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  text-decoration:none;
  font-weight:600; font-size:15px;
  padding:14px 26px;
  border-radius:var(--radius-pill);
  border:none;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn-lg{ padding:17px 32px; font-size:16px; }
.btn-primary{
  background:linear-gradient(135deg, var(--gold-2), var(--gold));
  color:var(--forest);
  box-shadow:0 10px 26px rgba(234,173,44,0.38);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(234,173,44,0.48); }
.btn-primary:active{ transform:translateY(0); }
.btn-outline{
  background:transparent;
  border:1.5px solid rgba(28,43,26,0.25);
  color:var(--ink);
}
.btn-outline:hover{ background:rgba(28,43,26,0.06); transform:translateY(-3px); }

.eyebrow-pill{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(239,107,69,0.12);
  border:1px solid rgba(239,107,69,0.35);
  color:var(--coral);
  font-weight:600; font-size:13px;
  padding:8px 18px;
  border-radius:var(--radius-pill);
  margin-bottom:22px;
}

.kicker{
  display:block;
  font-weight:700; font-size:13px; letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--coral);
  margin-bottom:12px;
}

.section-title{
  font-weight:700;
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  letter-spacing:-0.5px;
  color:var(--forest);
}
.section-sub{
  margin-top:12px;
  font-size:16px;
  color:var(--ink-soft);
}
.section-head{ max-width:640px; margin:0 auto 50px; text-align:center; }
.text-gold{ color:var(--gold); }
.text-green{ color:var(--leaf); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
[data-reveal]{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay:0s;
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
[data-reveal-delay="1"]{ transition-delay:.12s; }
[data-reveal-delay="2"]{ transition-delay:.24s; }

/* ============================================================
   Nav
   ============================================================ */
.site-nav{
  position:sticky; top:0; z-index:200;
  padding:16px 0;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-nav.scrolled{
  background:rgba(251,243,226,0.85);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 8px 30px rgba(22,40,26,0.08);
  padding:10px 0;
}
.nav-inner{
  max-width:1280px; margin:0 auto; padding:0 6vw;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--forest);
  font-family:var(--font-head); font-weight:700; font-size:19px;
}
.nav-logo{
  width:42px; height:42px; border-radius:50%; object-fit:cover;
  box-shadow:0 6px 16px rgba(22,40,26,0.25);
}
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a:not(.btn){
  text-decoration:none; color:var(--ink); font-weight:600; font-size:15px;
  position:relative; padding:4px 0;
}
.nav-links a:not(.btn)::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--coral); transition:width .3s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after{ width:100%; }
.nav-cta{ font-size:14px; padding:11px 20px; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; padding:0;
}
.nav-toggle span{
  width:100%; height:2.5px; background:var(--forest); border-radius:2px;
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

.nav-scrim{
  position:fixed; inset:0; background:rgba(22,40,26,0.4); z-index:150;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.nav-scrim.show{ opacity:1; pointer-events:auto; }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position:relative;
  padding:70px 0 100px;
  overflow:hidden;
}
.hero-orbs{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.orb{ position:absolute; border-radius:50%; filter:blur(2px); }
.orb-gold{
  width:560px; height:560px; top:-260px; left:-200px;
  background:radial-gradient(circle, rgba(234,173,44,0.38), transparent 70%);
  animation:driftA 16s ease-in-out infinite;
}
.orb-coral{
  width:640px; height:640px; bottom:-320px; right:-220px;
  background:radial-gradient(circle, rgba(239,107,69,0.25), transparent 70%);
  animation:driftB 20s ease-in-out infinite;
}
.orb-green{
  width:300px; height:300px; top:35%; right:6%;
  background:radial-gradient(circle, rgba(127,165,63,0.28), transparent 70%);
  animation:driftA 13s ease-in-out infinite reverse;
}
@keyframes driftA{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(30px,40px) scale(1.06); }
}
@keyframes driftB{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(-40px,-30px) scale(1.08); }
}
.blob-shape{
  position:absolute; opacity:.5;
  border-radius:42% 58% 65% 35% / 45% 40% 60% 55%;
  border:2px dashed rgba(28,43,26,0.15);
  animation:spin 40s linear infinite;
}
.blob-1{ width:220px; height:220px; top:14%; left:6%; }
.blob-2{ width:150px; height:150px; bottom:10%; right:30%; animation-direction:reverse; animation-duration:30s; }
@keyframes spin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }

.floaters{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.floater{
  position:absolute; font-size:34px; filter:drop-shadow(0 10px 14px rgba(22,40,26,0.2));
  animation:floatY 7s ease-in-out infinite;
  opacity:.9;
}
.f1{ top:18%; left:4%; animation-delay:0s; font-size:30px; }
.f2{ top:66%; left:9%; animation-delay:1.1s; font-size:26px; }
.f3{ top:12%; right:34%; animation-delay:.4s; font-size:36px; }
.f4{ top:78%; left:44%; animation-delay:1.8s; font-size:28px; }
.f5{ top:8%; right:4%; animation-delay:.9s; font-size:32px; }
.f6{ bottom:6%; right:18%; animation-delay:1.4s; font-size:30px; }
@keyframes floatY{
  0%,100%{ transform:translateY(0) rotate(-4deg); }
  50%{ transform:translateY(-22px) rotate(6deg); }
}

.hero-inner{
  position:relative; z-index:2;
  max-width:1280px; margin:0 auto; padding:0 6vw;
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
  min-height:60vh;
}
.hero-title{
  font-weight:800; font-size:clamp(42px,6vw,74px); line-height:1.02; letter-spacing:-1.5px;
  color:var(--forest);
}
.hero-sub{
  font-size:18px; line-height:1.7; color:var(--ink-soft);
  margin-top:22px; max-width:480px;
}
.hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
.hero-stats{ display:flex; align-items:center; gap:26px; margin-top:44px; }
.hero-stats > div{ display:flex; flex-direction:column; gap:2px; }
.hero-stats strong{ font-family:var(--font-head); font-size:26px; color:var(--forest); }
.hero-stats span{ font-size:13px; color:var(--muted); }
.stat-divider{ width:1px; height:32px; background:rgba(28,43,26,0.15); }

.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; height:520px; }
.hero-visual-glow{
  position:absolute; width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle, rgba(234,173,44,0.4), rgba(239,107,69,0.14) 55%, transparent 75%);
  filter:blur(6px);
  animation:pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.06); opacity:.85; }
}
.tilt-wrap{ position:relative; width:100%; max-width:500px; will-change:transform; }
.hero-splash{
  width:100%;
  filter:drop-shadow(0 40px 50px rgba(22,40,26,0.35));
  animation:bob 6s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-16px); }
}
.hero-badge{
  position:absolute; bottom:0; left:0;
  width:88px; height:88px; border-radius:50%;
  box-shadow:0 14px 30px rgba(22,40,26,0.35);
  border:3px solid var(--cream);
}
.float-slow{ animation:floatSlow 4.5s ease-in-out infinite; }
@keyframes floatSlow{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid rgba(28,43,26,0.3); border-radius:20px;
  display:flex; justify-content:center; padding-top:8px; z-index:3;
}
.scroll-cue span{
  width:4px; height:8px; border-radius:2px; background:var(--coral);
  animation:scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{ transform:translateY(0); opacity:1; }
  70%{ opacity:0; }
  100%{ transform:translateY(14px); opacity:0; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee{
  background:var(--forest);
  overflow:hidden;
  padding:16px 0;
  border-top:1px solid rgba(234,173,44,0.2);
  border-bottom:1px solid rgba(234,173,44,0.2);
}
.marquee-track{
  display:flex; align-items:center; gap:18px; white-space:nowrap;
  width:max-content;
  animation:scrollLeft 26s linear infinite;
}
.marquee-track span{
  font-family:var(--font-head); font-weight:600; font-size:16px;
  color:var(--cream); letter-spacing:.5px;
}
.marquee-track i{ color:var(--gold); font-style:normal; font-size:14px; }
@keyframes scrollLeft{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ============================================================
   About
   ============================================================ */
.about{ padding:120px 0; }
.about-grid{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center;
}
.about-visual{ position:relative; }
.about-blob{
  position:absolute; inset:-30px; z-index:0;
  border-radius:50% 45% 55% 50% / 55% 50% 50% 45%;
  background:radial-gradient(circle, rgba(234,173,44,0.22), transparent 70%);
}
.about-img{ position:relative; z-index:1; width:100%; filter:drop-shadow(0 30px 40px rgba(22,40,26,0.3)); }
.about-badge{
  position:absolute; bottom:10px; right:-10px; z-index:2;
  background:var(--cream); border:1px solid rgba(28,43,26,0.1);
  padding:10px 18px; border-radius:var(--radius-pill);
  font-weight:600; font-size:13px; box-shadow:var(--shadow-md);
}
.about-copy p{ font-size:17px; line-height:1.8; color:var(--ink-soft); margin-bottom:16px; }

.stat-cards{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }
.stat-card{
  background:#fff; border-radius:var(--radius-md);
  padding:20px 26px; box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column; gap:4px;
  min-width:120px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.stat-num{ font-family:var(--font-head); font-weight:700; font-size:30px; color:var(--coral); }
.stat-card:nth-child(2) .stat-num{ color:var(--leaf); }
.stat-card:nth-child(3) .stat-num{ color:var(--gold); font-size:24px; }
.stat-label{ font-size:13px; color:var(--muted); }

/* ============================================================
   Features
   ============================================================ */
.features{ padding:60px 0 120px; }
.feature-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.feature-card{
  background:#fff; border-radius:var(--radius-lg);
  padding:34px 28px; box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change:transform;
}
.feature-card:hover{ box-shadow:var(--shadow-md); }
.feature-icon{
  width:56px; height:56px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.icon-gold{ background:rgba(234,173,44,0.15); color:var(--gold); }
.icon-coral{ background:rgba(239,107,69,0.15); color:var(--coral); }
.icon-green{ background:rgba(127,165,63,0.18); color:var(--leaf); }
.feature-card h3{ font-size:19px; font-weight:700; color:var(--forest); margin-bottom:10px; }
.feature-card p{ font-size:14.5px; line-height:1.65; color:var(--ink-soft); }

/* ============================================================
   Menu
   ============================================================ */
.menu-section{
  position:relative;
  background:var(--forest);
  padding:120px 0;
  overflow:hidden;
}
.menu-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.menu-orb{
  position:absolute; border-radius:50%; filter:blur(2px);
}
.menu-orb-gold{
  top:-160px; right:-140px; width:440px; height:440px;
  background:radial-gradient(circle, rgba(234,173,44,0.20), transparent 70%);
  animation:driftA 17s ease-in-out infinite;
}
.menu-orb-coral{
  bottom:-200px; left:-160px; width:480px; height:480px;
  background:radial-gradient(circle, rgba(239,107,69,0.16), transparent 70%);
  animation:driftB 21s ease-in-out infinite;
}
.menu-orb-green{
  top:38%; left:8%; width:260px; height:260px;
  background:radial-gradient(circle, rgba(127,165,63,0.18), transparent 70%);
  animation:driftA 14s ease-in-out infinite reverse;
}
.menu-blob{
  position:absolute; opacity:.35;
  border-radius:42% 58% 65% 35% / 45% 40% 60% 55%;
  border:1.5px dashed rgba(251,243,226,0.16);
  animation:spin 46s linear infinite;
}
.menu-blob-1{ width:200px; height:200px; top:8%; right:16%; }
.menu-blob-2{ width:130px; height:130px; bottom:14%; left:22%; animation-direction:reverse; animation-duration:32s; }
.menu-grain{
  position:absolute; inset:-2px;
  background-image:radial-gradient(rgba(251,243,226,0.05) 1px, transparent 1px);
  background-size:26px 26px;
  opacity:.5;
}
.menu-floater{
  position:absolute; font-size:26px; opacity:.28;
  filter:grayscale(0.15);
  animation:floatY 8s ease-in-out infinite;
}
.mf1{ top:10%; left:5%; font-size:28px; animation-delay:0s; }
.mf2{ top:70%; left:4%; font-size:24px; animation-delay:.6s; }
.mf3{ top:16%; right:6%; font-size:26px; animation-delay:1.2s; }
.mf4{ bottom:8%; right:10%; font-size:24px; animation-delay:1.8s; }
.mf5{ top:44%; right:3%; font-size:22px; animation-delay:.9s; }
.mf6{ bottom:30%; left:2%; font-size:24px; animation-delay:2.2s; }
.menu-section .kicker{ color:var(--gold-2); }
.menu-section .section-title{ color:var(--cream); }
.menu-section .section-sub{ color:rgba(251,243,226,0.65); }

.menu-filters{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  margin-bottom:54px; position:relative; z-index:1;
}
.filter-pill{
  background:rgba(251,243,226,0.06);
  border:1px solid rgba(251,243,226,0.18);
  color:var(--cream);
  font-weight:600; font-size:13px;
  padding:10px 20px; border-radius:var(--radius-pill);
  transition:all .25s var(--ease);
}
.filter-pill:hover{ background:rgba(251,243,226,0.14); }
.filter-pill.active{
  background:linear-gradient(135deg, var(--gold-2), var(--gold));
  color:var(--forest); border-color:transparent;
  box-shadow:0 8px 20px rgba(234,173,44,0.35);
}

.menu-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:24px; position:relative; z-index:1;
}
.menu-card{
  background:var(--forest-2);
  border-radius:var(--radius-lg);
  padding:30px 30px 26px;
  border-top:4px solid var(--gold);
  box-shadow:0 20px 45px rgba(0,0,0,0.25);
  scroll-margin-top:110px;
  transition:opacity .35s ease, transform .5s var(--ease);
}
.menu-card.hide{ display:none; }
.menu-card-head{ display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.menu-card-icon{ font-size:22px; }
.menu-card h3{ font-size:19px; font-weight:700; color:var(--cream); }
.menu-tags{ display:flex; flex-wrap:wrap; gap:9px; }
.menu-tag{
  background:rgba(251,243,226,0.06);
  border:1px solid rgba(251,243,226,0.12);
  color:var(--cream);
  font-size:13.5px; font-weight:500;
  padding:9px 15px; border-radius:var(--radius-pill);
  transition:background .25s ease, transform .25s ease;
}
.menu-tag:hover{ background:rgba(234,173,44,0.18); transform:translateY(-2px); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery{ position:relative; padding:120px 0; overflow:hidden; }
.gallery-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.gallery-orb{ position:absolute; border-radius:50%; filter:blur(2px); }
.gallery-orb-1{
  top:-180px; left:-140px; width:460px; height:460px;
  background:radial-gradient(circle, rgba(127,165,63,0.20), transparent 70%);
  animation:driftA 18s ease-in-out infinite;
}
.gallery-orb-2{
  bottom:-220px; right:-160px; width:520px; height:520px;
  background:radial-gradient(circle, rgba(234,173,44,0.22), transparent 70%);
  animation:driftB 22s ease-in-out infinite;
}
.gallery-orb-3{
  top:30%; right:12%; width:220px; height:220px;
  background:radial-gradient(circle, rgba(239,107,69,0.16), transparent 70%);
  animation:driftA 15s ease-in-out infinite reverse;
}
.gallery-ring{
  position:absolute; border-radius:50%;
  border:2px dashed rgba(28,43,26,0.10);
  animation:spin 50s linear infinite;
}
.gallery-ring-1{ width:300px; height:300px; bottom:6%; left:4%; }
.gallery-ring-2{ width:170px; height:170px; top:10%; right:22%; animation-direction:reverse; animation-duration:34s; }

.gallery-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-template-rows:230px 230px 260px;
  grid-template-areas:
    "cups splash orange berry"
    "cups splash orange berry"
    "collage collage collage collage";
  gap:22px;
}
.gallery-item{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md);
  will-change:transform;
  transition:box-shadow .3s ease;
}
.gallery-item:hover{ box-shadow:var(--shadow-lg); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.gallery-item:hover img{ transform:scale(1.06); }

.item-cups{ grid-area:cups; }
.item-collage{ grid-area:collage; }
.item-splash{ grid-area:splash; }
.item-orange{ grid-area:orange; }
.item-berry{ grid-area:berry; }
.gallery-caption{
  position:absolute; left:16px; bottom:14px;
  background:rgba(22,40,26,0.72);
  color:var(--cream); font-weight:600; font-size:13px;
  padding:8px 16px; border-radius:var(--radius-pill);
  backdrop-filter:blur(6px);
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner{
  position:relative;
  background:linear-gradient(135deg, var(--coral), var(--gold));
  padding:90px 0; overflow:hidden; text-align:center;
}
.cta-orbs{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.25), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.2), transparent 40%);
}
.cta-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:18px; }
.cta-inner h2{ font-size:clamp(28px,3.6vw,42px); color:var(--forest); font-weight:800; }
.cta-inner p{ color:rgba(28,43,26,0.75); font-size:17px; max-width:440px; }
.cta-inner .btn-primary{ background:var(--forest); color:var(--cream); box-shadow:0 14px 30px rgba(22,40,26,0.3); margin-top:8px; }
.cta-inner .btn-primary:hover{ background:var(--forest-2); }

/* ============================================================
   Contact
   ============================================================ */
.contact{ padding:120px 0; }
.contact-grid{ display:grid; grid-template-columns:1fr 0.9fr; gap:60px; align-items:center; }
.contact-row{ display:flex; gap:16px; margin-bottom:24px; }
.contact-icon{
  width:46px; height:46px; border-radius:14px; flex-shrink:0;
  background:rgba(234,173,44,0.15);
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.contact-row strong{ display:block; font-size:16px; color:var(--forest); margin-bottom:3px; }
.contact-row span{ font-size:14.5px; color:var(--ink-soft); line-height:1.5; }
.contact-actions{ display:flex; gap:14px; margin-top:10px; flex-wrap:wrap; }
.contact-map{
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  height:420px; border:6px solid #fff;
}
.contact-map iframe{ width:100%; height:100%; border:0; filter:grayscale(0.15) contrast(1.05); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background:var(--forest); padding:44px 0; }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.site-footer .nav-brand{ color:var(--cream); }
.footer-links{ display:flex; gap:26px; }
.footer-links a{ text-decoration:none; color:rgba(251,243,226,0.75); font-size:14px; font-weight:500; }
.footer-links a:hover{ color:var(--gold-2); }
.footer-copy{ font-size:13px; color:rgba(251,243,226,0.5); }

/* ============================================================
   Back to top
   ============================================================ */
.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:150;
  width:48px; height:48px; border-radius:50%;
  background:var(--forest); color:var(--gold);
  border:none; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0; transform:translateY(16px) scale(.9); pointer-events:none;
  transition:opacity .3s var(--ease), transform .3s var(--ease), background .3s ease;
}
.back-to-top.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.back-to-top:hover{ background:var(--forest-2); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1100px){
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{
    display:block; column-count:2; column-gap:20px;
    grid-template-areas:none;
  }
  .gallery-item{
    grid-area:auto; break-inside:avoid; margin-bottom:20px;
    width:100%; animation:none;
  }
  .item-cups{ aspect-ratio:3 / 4; }
  .item-collage{ aspect-ratio:16 / 10; }
  .item-splash,.item-orange{ aspect-ratio:2 / 3; height:auto; }
  .item-berry{ aspect-ratio:4 / 5; height:auto; }
  .contact-grid{ grid-template-columns:1fr; }
  .contact-map{ height:340px; }
}

@media (max-width:920px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,82vw);
    background:var(--cream); flex-direction:column; align-items:flex-start;
    padding:100px 32px 40px; gap:24px;
    box-shadow:-10px 0 40px rgba(22,40,26,0.2);
    transform:translateX(100%); transition:transform .4s var(--ease);
    z-index:160;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a:not(.btn){ font-size:18px; }
  .nav-cta{ margin-top:10px; }
  .nav-toggle{ display:flex; }

  .hero-inner{ grid-template-columns:1fr; text-align:center; }
  .hero-copy{ order:2; display:flex; flex-direction:column; align-items:center; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-visual{ order:1; height:380px; margin-bottom:20px; }

  .about-grid{ grid-template-columns:1fr; }
  .about-visual{ max-width:340px; margin:0 auto; }

  .feature-grid{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  .hero-title{ font-size:clamp(38px,10vw,54px); }
  .hero-stats{ flex-wrap:wrap; justify-content:center; }
  .gallery-grid{ column-count:1; }
  .item-cups{ aspect-ratio:4 / 3; }
  .section-inner{ padding:0 22px; }
  .contact-actions{ width:100%; }
  .contact-actions .btn{ flex:1; justify-content:center; }
}

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