/* ============================= TOKENS ============================= */
:root{
  --forest:#12372A;
  --green:#2E7D32;
  --moss:#81C784;
  --cream:#F8F7F2;
  --white:#FFFFFF;
  --gold:#D4A373;
  --ink:#1A1A1A;
  --line: rgba(18,55,42,.13);
  --line-soft: rgba(18,55,42,.07);
  --shadow-lg: 0 30px 70px -25px rgba(18,55,42,.38);
  --shadow-sm: 0 10px 30px -12px rgba(18,55,42,.22);
  --font-display:'Fraunces', ui-serif, Georgia, serif;
  --font-body:'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:'IBM Plex Mono', ui-monospace, monospace;
  --container: 1220px;
  --nav-h: 84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
::selection{ background:var(--moss); color:var(--forest); }

.skip-link{
  position:absolute; left:12px; top:-60px; z-index:999;
  background:var(--forest); color:var(--cream); padding:10px 16px; border-radius:8px;
  font-family:var(--font-mono); font-size:13px; transition:top .2s ease;
}
.skip-link:focus{ top:12px; }

:focus-visible{ outline:2.5px solid var(--gold); outline-offset:3px; border-radius:4px; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 28px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--green); font-weight:500;
}
.eyebrow::before{
  content:''; width:16px; height:1.5px; background:var(--gold);
}

/* ---- shelf-tag motif: little rotated label chips, used sparingly as a signature ---- */
.tag-chip{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.04em;
  background:var(--white); color:var(--forest);
  border:1.5px dashed var(--line);
  padding:6px 12px 6px 10px; border-radius:6px;
  display:inline-flex; align-items:center; gap:6px;
  box-shadow:var(--shadow-sm);
  transform:rotate(-2.5deg);
}
.tag-chip .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); flex:none; }

.btn{
  font-family:var(--font-body); font-weight:700; font-size:15px;
  padding:15px 28px; border-radius:100px; border:none;
  display:inline-flex; align-items:center; gap:9px;
  cursor:pointer; transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .3s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--forest); color:var(--cream); box-shadow:0 14px 30px -12px rgba(18,55,42,.55); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 36px -12px rgba(18,55,42,.6); background:var(--green); }
.btn-ghost{ background:transparent; color:var(--forest); border:1.5px solid var(--line); }
.btn-ghost:hover{ transform:translateY(-3px); background:var(--white); border-color:var(--forest); }
.btn-gold{ background:var(--gold); color:var(--forest); box-shadow:0 14px 30px -14px rgba(212,163,115,.7); }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 20px 34px -14px rgba(212,163,115,.8); }
.btn svg{ width:17px; height:17px; flex:none; }
.btn:active{ transform:translateY(0) scale(.98); }

.section{ position:relative; padding:130px 0; }
.section-tight{ padding:96px 0; }
@media (max-width: 760px){
  .section{ padding:88px 0; }
  .section-tight{ padding:70px 0; }
}

.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(32px,4.4vw,50px); margin-top:14px; line-height:1.08; }
.section-head p{ margin-top:16px; font-size:17px; line-height:1.6; color:rgba(26,26,26,.68); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.reveal{ opacity:0; transform:translateY(36px) scale(.985); }

/* ============================= LOADER ============================= */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:var(--forest);
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  gap:26px;
}
.loader-basket{
  width:132px; height:132px; position:relative;
  perspective:600px;
}
#loader-canvas{ width:100%; height:100%; display:block; }
.loader-basket .cube{
  width:100%; height:100%; position:absolute; inset:0; transform-style:preserve-3d;
  animation:loaderSpin 2.6s linear infinite; display:none;
}
@media (prefers-reduced-motion: reduce){ .loader-basket .cube{ animation:none; } }
@keyframes loaderSpin{ from{ transform:rotateY(0deg) rotateX(8deg); } to{ transform:rotateY(360deg) rotateX(8deg); } }
.loader-basket svg{ width:100%; height:100%; }
.loader-word{ font-family:var(--font-display); color:var(--cream); font-size:15px; letter-spacing:.02em; text-align:center; min-height:24px; }
.loader-word .line2{ display:block; font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; color:var(--moss); margin-top:8px; text-transform:uppercase; opacity:.9; }
.loader-bar{ width:150px; height:2px; background:rgba(248,247,242,.18); border-radius:2px; overflow:hidden; }
.loader-bar-fill{ height:100%; width:0%; background:var(--gold); }
#loader.hide{ animation:loaderOut .7s cubic-bezier(.6,0,.2,1) forwards; }
@keyframes loaderOut{ to{ opacity:0; visibility:hidden; transform:scale(1.03); } }

/* ============================= NAVBAR ============================= */
#navbar{
  position:fixed; top:18px; left:50%; transform:translateX(-50%); z-index:500;
  width:min(1160px, calc(100% - 32px));
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px 12px 22px;
  background:rgba(248,247,242,.68);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.5);
  border-radius:100px;
  box-shadow:0 12px 34px -18px rgba(18,55,42,.35);
  transition:padding .4s cubic-bezier(.22,1,.36,1), width .4s cubic-bezier(.22,1,.36,1), background .4s ease;
}
#navbar.compact{ padding:8px 10px 8px 20px; width:min(980px, calc(100% - 32px)); background:rgba(248,247,242,.86); }
.nav-brand{ display:flex; align-items:center; gap:9px; font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--forest); }
.nav-brand .mark{ width:30px; height:30px; flex:none; }
.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  font-size:14px; font-weight:600; color:rgba(18,55,42,.75); padding:9px 15px; border-radius:100px;
  transition:color .25s ease, background .25s ease;
  position:relative;
}
.nav-links a:hover{ color:var(--forest); background:rgba(18,55,42,.06); }
.nav-actions{ display:flex; align-items:center; gap:8px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%; border:1.5px solid var(--line);
  background:var(--white); display:flex; align-items:center; justify-content:center; flex:none;
  transition:transform .3s ease, background .3s ease;
}
.icon-btn:hover{ transform:translateY(-2px); background:var(--moss); }
.icon-btn svg{ width:17px; height:17px; color:var(--forest); }
.nav-cta{
  background:var(--forest); color:var(--cream); font-size:13.5px; font-weight:700;
  padding:11px 20px; border-radius:100px; display:flex; align-items:center; gap:7px;
  transition:transform .3s ease, background .3s ease;
}
.nav-cta:hover{ background:var(--green); transform:translateY(-2px); }
.nav-burger{ display:none; }
@media (max-width: 920px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
}
@media (max-width: 560px){
  .nav-cta span{ display:none; }
  .nav-cta{ padding:11px; }
}

#mobile-menu{
  position:fixed; inset:0; z-index:600; background:var(--forest);
  display:flex; flex-direction:column; justify-content:center; align-items:center; gap:6px;
  transform:translateY(-100%); transition:transform .5s cubic-bezier(.6,0,.2,1);
}
#mobile-menu.open{ transform:translateY(0); }
#mobile-menu a{ color:var(--cream); font-family:var(--font-display); font-size:30px; padding:14px 0; }
#mobile-menu .mclose{
  position:absolute; top:26px; right:26px; width:46px; height:46px; border-radius:50%;
  background:rgba(248,247,242,.1); display:flex; align-items:center; justify-content:center; border:1px solid rgba(248,247,242,.25);
}
#mobile-menu .mclose svg{ width:20px; height:20px; color:var(--cream); }

/* ============================= HERO ============================= */
#hero{
  position:relative; min-height:100svh; display:flex; align-items:center;
  padding-top:var(--nav-h); overflow:hidden;
  background:
    radial-gradient(ellipse 900px 600px at 18% 0%, rgba(129,199,132,.35), transparent 60%),
    radial-gradient(ellipse 900px 700px at 100% 30%, rgba(212,163,115,.22), transparent 55%),
    linear-gradient(180deg, #E9F1E6 0%, var(--cream) 55%);
}
#hero-canvas-wrap{ position:absolute; inset:0; z-index:1; }
#hero-canvas{ width:100%; height:100%; display:block; touch-action:pan-y; }
.hero-fog-layer{
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background:linear-gradient(180deg, transparent 55%, var(--cream) 96%);
}
.hero-inner{
  position:relative; z-index:3; width:100%;
  display:grid; place-items:center; text-align:center; gap:26px;
  padding:60px 24px 40px;
}
.hero-tagchip-row{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.hero-inner h1{
  font-size:clamp(56px, 11vw, 128px); line-height:.92; color:var(--forest);
  letter-spacing:-.02em;
}
.hero-inner h1 em{ font-style:normal; color:var(--green); }
.hero-sub{
  font-family:var(--font-display); font-weight:500; font-size:clamp(19px,2.4vw,26px);
  color:rgba(18,55,42,.72); margin-top:-8px;
}
.hero-tagline{
  font-size:16.5px; color:rgba(26,26,26,.68); max-width:420px; line-height:1.55;
}
.hero-btn-row{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:6px; }
.hero-meta{
  display:flex; gap:22px; flex-wrap:wrap; justify-content:center; margin-top:8px;
  font-family:var(--font-mono); font-size:12.5px; color:var(--forest); letter-spacing:.03em;
}
.hero-meta span{ display:flex; align-items:center; gap:7px; }
.hero-meta .pulse{ width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 0 0 rgba(46,125,50,.6); animation:pulse 2s infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(46,125,50,.55);} 70%{ box-shadow:0 0 0 9px rgba(46,125,50,0);} 100%{ box-shadow:0 0 0 0 rgba(46,125,50,0);} }
.pulse.closed, .pulse2.closed{ background:#B5342A !important; animation:none !important; box-shadow:none !important; }
.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--forest); opacity:.65;
}
.scroll-cue .stick{ width:1.5px; height:34px; background:linear-gradient(var(--forest), transparent); position:relative; overflow:hidden; }
.scroll-cue .stick::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--gold); animation:scrollcue 2s ease-in-out infinite; }
@keyframes scrollcue{ 0%{ top:-100%;} 60%{ top:100%;} 100%{ top:100%;} }

/* ============================= MARQUEE STRIP ============================= */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--forest); overflow:hidden; padding:16px 0; position:relative;
}
.marquee-track{ display:flex; gap:52px; width:max-content; animation:marquee 32s linear infinite; }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation-play-state:paused; } }
.marquee span{ font-family:var(--font-mono); font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:rgba(248,247,242,.75); display:flex; align-items:center; gap:14px; white-space:nowrap; }
.marquee span::before{ content:'✦'; color:var(--gold); font-size:11px; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============================= WHY EDEN ============================= */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:980px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }
.why-card{
  background:var(--white); border:1px solid var(--line-soft); border-radius:22px;
  padding:30px 26px; box-shadow:var(--shadow-sm);
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .3s ease;
}
.why-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.why-card .num{ font-family:var(--font-mono); font-size:12px; color:var(--gold); letter-spacing:.08em; }
.why-card .icon-wrap{
  width:52px; height:52px; border-radius:15px; background:linear-gradient(150deg,var(--moss),var(--green));
  display:flex; align-items:center; justify-content:center; margin:16px 0 18px;
}
.why-card .icon-wrap svg{ width:24px; height:24px; color:var(--white); }
.why-card h3{ font-size:19px; margin-bottom:8px; color:var(--forest); }
.why-card p{ font-size:14.5px; line-height:1.55; color:rgba(26,26,26,.62); }

/* ============================= EXPLORER ============================= */
#explorer{ background:var(--forest); color:var(--cream); position:relative; overflow:hidden; }
#explorer::before{
  content:''; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background:radial-gradient(ellipse 700px 500px at 85% 10%, rgba(129,199,132,.16), transparent 60%);
}
.explorer-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom:44px; }
.explorer-head .eyebrow{ color:var(--moss); }
.explorer-head h2{ color:var(--cream); font-size:clamp(30px,4vw,46px); margin-top:12px; }
.explorer-head p{ color:rgba(248,247,242,.62); margin-top:14px; max-width:480px; font-size:15.5px; line-height:1.6; }
.explorer-hint{
  font-family:var(--font-mono); font-size:12px; color:rgba(248,247,242,.55);
  border:1px dashed rgba(248,247,242,.3); border-radius:10px; padding:10px 14px; max-width:230px;
}
.explorer-stage{
  position:relative; border-radius:26px; overflow:hidden; border:1px solid rgba(248,247,242,.14);
  background:linear-gradient(160deg, #0e2c21, #163d2c);
  height:560px; box-shadow:0 40px 90px -30px rgba(0,0,0,.55);
}
@media (max-width:760px){ .explorer-stage{ height:440px; } }
#explorer-canvas{ width:100%; height:100%; display:block; touch-action:none; cursor:grab; }
#explorer-canvas:active{ cursor:grabbing; }
.explorer-controls{ position:absolute; bottom:18px; left:18px; display:flex; gap:10px; z-index:5; }
.explorer-controls button{
  width:42px; height:42px; border-radius:50%; background:rgba(248,247,242,.12); border:1px solid rgba(248,247,242,.25);
  color:var(--cream); display:flex; align-items:center; justify-content:center; backdrop-filter:blur(6px);
  transition:background .25s ease, transform .25s ease;
}
.explorer-controls button:hover{ background:rgba(248,247,242,.22); transform:translateY(-2px); }
.explorer-controls svg{ width:18px; height:18px; }
.explorer-drag-tip{
  position:absolute; top:18px; left:18px; z-index:5;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  color:rgba(248,247,242,.6); background:rgba(0,0,0,.2); padding:8px 12px; border-radius:100px;
  display:flex; align-items:center; gap:7px; transition:opacity .4s ease;
}
.hotspot-card{
  position:absolute; z-index:6; right:18px; top:18px; width:250px;
  background:rgba(248,247,242,.97); color:var(--ink); border-radius:16px; padding:20px;
  box-shadow:0 20px 50px -14px rgba(0,0,0,.5);
  opacity:0; transform:translateY(10px) scale(.97); pointer-events:none;
  transition:opacity .35s ease, transform .35s ease;
}
.hotspot-card.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.hotspot-card .tagm{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--green); }
.hotspot-card h4{ font-size:20px; margin:8px 0 6px; color:var(--forest); }
.hotspot-card p{ font-size:13.5px; line-height:1.5; color:rgba(26,26,26,.65); }
.hotspot-images{ display:flex; gap:6px; margin-top:12px; }
.hotspot-images img{ width:100%; height:64px; object-fit:cover; border-radius:9px; flex:1; display:block; }
.hotspot-images-empty{ margin-top:12px; font-family:var(--font-mono); font-size:11px; color:rgba(26,26,26,.4); }
.explorer-legend{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.legend-chip{
  font-family:var(--font-mono); font-size:12px; color:rgba(248,247,242,.75);
  display:flex; align-items:center; gap:8px; border:1px solid rgba(248,247,242,.18); padding:8px 13px; border-radius:100px;
  background:transparent; transition:background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.legend-chip:hover{ border-color:rgba(248,247,242,.4); transform:translateY(-2px); color:var(--cream); }
.legend-chip.active{ background:rgba(248,247,242,.16); border-color:rgba(248,247,242,.55); color:var(--cream); }
.legend-chip i{ width:9px; height:9px; border-radius:2px; display:block; flex:none; }

/* ============================= CATEGORIES ============================= */
.cat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .cat-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .cat-grid{ grid-template-columns:1fr;} }
.cat-card{
  position:relative; border-radius:24px; padding:28px; min-height:250px;
  display:flex; flex-direction:column; justify-content:space-between;
  background:var(--white); border:1px solid var(--line-soft); overflow:hidden;
  transform-style:preserve-3d; transition:transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
  box-shadow:var(--shadow-sm); cursor:pointer;
}
.cat-card:hover{ box-shadow:var(--shadow-lg); }
.cat-card .bar{ position:absolute; left:0; top:0; bottom:0; width:5px; }
.cat-card .cat-icon{
  width:54px; height:54px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:var(--cream); transition:transform .5s cubic-bezier(.22,1,.36,1);
}
.cat-card:hover .cat-icon{ transform:translateY(-4px) rotate(-6deg); }
.cat-card .cat-icon svg{ width:26px; height:26px; }
.cat-card h3{ font-size:21px; margin:20px 0 8px; color:var(--forest); }
.cat-card p{ font-size:14px; line-height:1.55; color:rgba(26,26,26,.6); margin-bottom:18px; }
.cat-card .explore{ font-family:var(--font-mono); font-size:12px; letter-spacing:.05em; text-transform:uppercase; color:var(--forest); display:flex; align-items:center; gap:6px; }
.cat-card .explore svg{ width:14px; height:14px; transition:transform .3s ease; }
.cat-card:hover .explore svg{ transform:translateX(5px); }

/* ============================= CATEGORY PHOTO LIGHTBOX ============================= */
.cat-lightbox{ position:fixed; inset:0; z-index:800; display:none; align-items:center; justify-content:center; padding:24px; }
.cat-lightbox.show{ display:flex; }
.cat-lightbox-backdrop{ position:absolute; inset:0; background:rgba(18,55,42,.72); backdrop-filter:blur(5px); -webkit-backdrop-filter:blur(5px); }
.cat-lightbox-panel{
  position:relative; z-index:2; background:var(--cream); border-radius:26px; padding:34px;
  max-width:640px; width:100%; max-height:86vh; overflow-y:auto; box-shadow:0 40px 90px -20px rgba(0,0,0,.5);
}
.cat-lightbox-close{
  position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%;
  background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:var(--forest); transition:background .25s ease, transform .25s ease;
}
.cat-lightbox-close:hover{ background:var(--moss); transform:rotate(90deg); }
.cat-lightbox-close svg{ width:17px; height:17px; }
.cat-lightbox-panel h3{ font-family:var(--font-display); font-size:26px; color:var(--forest); padding-right:44px; margin-top:10px; }
.cat-lightbox-panel p{ margin-top:8px; color:rgba(26,26,26,.6); font-size:14.5px; line-height:1.55; }
.cat-lightbox-images{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px; margin-top:24px; }
.cat-lightbox-images img{ width:100%; height:220px; object-fit:cover; border-radius:16px; display:block; }
.cat-lightbox-empty{
  margin-top:24px; font-family:var(--font-mono); font-size:12.5px; color:rgba(26,26,26,.45);
  background:var(--white); border:1px dashed var(--line); border-radius:14px; padding:20px; text-align:center;
}


#gallery{ background:linear-gradient(180deg,var(--cream), #EFEBE0 60%, var(--cream)); }
.gallery-shelf-line{ position:relative; height:1px; background:var(--line); margin:0 0 0; }
.gallery-wrap{ position:relative; }
.gallery-track{
  display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x proximity; padding:6px 0 30px;
  cursor:grab; user-select:none; scrollbar-width:none;
}
.gallery-track::-webkit-scrollbar{ display:none; }
.gallery-track.dragging{ cursor:grabbing; scroll-snap-type:none; }
.gallery-card{
  flex:none; width:min(340px, 78vw); scroll-snap-align:start;
  background:var(--white); border-radius:20px; overflow:hidden; box-shadow:var(--shadow-sm);
  border:1px solid var(--line-soft);
}
.gallery-card .frame{ position:relative; height:230px; overflow:hidden; }
.gallery-card .frame img{ width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.22,1,.36,1); }
.gallery-card:hover .frame img{ transform:scale(1.08); }
.gallery-card .cap{ padding:18px 20px 22px; }
.gallery-card .tagm{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--green); }
.gallery-card h4{ font-size:17px; margin:8px 0 5px; color:var(--forest); }
.gallery-card p{ font-size:13.5px; color:rgba(26,26,26,.6); line-height:1.5; }
.gallery-nav{ display:flex; gap:10px; justify-content:flex-end; margin-top:-14px; margin-bottom:10px; }
.gallery-nav button{
  width:44px; height:44px; border-radius:50%; background:var(--white); border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center; transition:transform .3s ease, background .3s ease;
}
.gallery-nav button:hover{ transform:translateY(-2px); background:var(--moss); }
.gallery-nav svg{ width:18px; height:18px; color:var(--forest); }

/* ============================= REVIEWS ============================= */
#reviews{ text-align:center; }
.rating-hero{ display:flex; flex-direction:column; align-items:center; gap:10px; margin-bottom:56px; }
.rating-hero .big{ font-family:var(--font-display); font-size:clamp(60px,9vw,96px); color:var(--forest); line-height:1; display:flex; align-items:center; gap:14px; }
.rating-hero .stars{ display:flex; gap:6px; }
.rating-hero .stars svg{ width:26px; height:26px; color:var(--gold); }
.rating-hero .sub{ font-family:var(--font-mono); font-size:13px; letter-spacing:.06em; color:rgba(26,26,26,.55); text-transform:uppercase; }
.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; text-align:left; }
@media (max-width:900px){ .review-grid{ grid-template-columns:1fr; max-width:520px; margin:0 auto;} }
.review-card{
  background:var(--white); border:1px solid var(--line-soft); border-radius:20px; padding:28px;
  box-shadow:var(--shadow-sm); transition:transform .4s ease, box-shadow .4s ease;
}
.review-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.review-card .stars{ display:flex; gap:3px; margin-bottom:16px; }
.review-card .stars svg{ width:15px; height:15px; color:var(--gold); }
.review-card p{ font-family:var(--font-display); font-size:17px; line-height:1.5; color:var(--forest); font-weight:500; }
.review-card .who{ margin-top:18px; font-family:var(--font-mono); font-size:12px; color:rgba(26,26,26,.5); letter-spacing:.03em; }

/* ============================= LOCATION ============================= */
#location{ background:var(--forest); color:var(--cream); }
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
@media (max-width:900px){ .loc-grid{ grid-template-columns:1fr; gap:40px; } }
#location .eyebrow{ color:var(--moss); }
#location h2{ color:var(--cream); font-size:clamp(32px,4.4vw,50px); margin-top:14px; line-height:1.08; }
.loc-address{ margin-top:24px; font-size:17px; line-height:1.7; color:rgba(248,247,242,.82); }
.loc-address strong{ color:var(--cream); display:block; font-family:var(--font-display); font-size:22px; margin-bottom:6px; }
.loc-hours{ margin-top:20px; display:flex; align-items:center; gap:10px; font-family:var(--font-mono); font-size:13px; color:var(--moss); }
.loc-hours-note{ margin-top:7px; margin-left:18px; font-family:var(--font-mono); font-size:12px; color:rgba(248,247,242,.5); letter-spacing:.03em; }
.loc-hours .pulse2{ width:8px; height:8px; border-radius:50%; background:var(--moss); box-shadow:0 0 0 0 rgba(129,199,132,.6); animation:pulse 2s infinite; }
.loc-btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }
.loc-alt-phone{ margin-top:16px; font-family:var(--font-mono); font-size:12.5px; color:rgba(248,247,242,.55); }
.loc-alt-phone a{ color:var(--moss); text-decoration:underline; text-underline-offset:2px; }
.loc-alt-phone a:hover{ color:var(--cream); }
.map-card{ position:relative; border-radius:28px; overflow:hidden; border:1px solid rgba(248,247,242,.18); box-shadow:0 40px 90px -30px rgba(0,0,0,.5); background:linear-gradient(160deg,#0e2c21,#173f2d 60%,#0e2c21); aspect-ratio:4/3.4; }
.map-illustration{ position:absolute; inset:0; }
.map-illustration svg{ width:100%; height:100%; display:block; }
.map-tag{ position:absolute; left:20px; top:20px; z-index:4; }
.map-compass{
  position:absolute; right:18px; top:18px; z-index:4; width:38px; height:38px; border-radius:50%;
  background:rgba(248,247,242,.1); border:1px solid rgba(248,247,242,.22); display:flex; align-items:center; justify-content:center;
}
.map-compass svg{ width:16px; height:16px; }
.map-waypoint-label{
  position:absolute; left:24%; top:60%; z-index:3; transform:translate(-50%,10px);
  font-family:var(--font-mono); font-size:10px; letter-spacing:.04em; color:rgba(248,247,242,.55);
  background:rgba(0,0,0,.25); padding:4px 9px; border-radius:100px; white-space:nowrap;
}
.map-pin-center{ position:absolute; left:50%; top:41%; transform:translate(-50%,-100%); z-index:3; }
.map-pin-center svg{ width:44px; height:44px; filter:drop-shadow(0 10px 16px rgba(0,0,0,.45)); position:relative; z-index:2; display:block; margin:0 auto; }
.pin-radar{ position:relative; width:10px; height:10px; margin:0 auto; }
.pin-radar::before, .pin-radar::after{
  content:''; position:absolute; left:50%; top:50%; width:10px; height:10px; margin:-5px 0 0 -5px;
  border-radius:50%; background:rgba(212,163,115,.55);
}
.pin-radar::after{ animation:radarPulse 2.4s ease-out infinite; }
@keyframes radarPulse{ 0%{ transform:scale(1); opacity:.75;} 100%{ transform:scale(4.6); opacity:0;} }
.map-card-label{ position:absolute; left:50%; top:41%; transform:translate(-50%, 16px); text-align:center; z-index:3; width:80%; }
.map-card-label strong{ display:block; font-family:var(--font-display); color:var(--cream); font-size:17px; }
.map-card-label span{ display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.05em; color:rgba(248,247,242,.6); margin-top:5px; text-transform:uppercase; }
.map-card-btn{ position:absolute; left:50%; bottom:22px; transform:translateX(-50%); z-index:4; font-size:13.5px; padding:12px 22px; }

/* ============================= CTA ============================= */
#cta{ position:relative; overflow:hidden; text-align:center; }
#cta-canvas-wrap{ position:absolute; inset:0; z-index:0; }
.cta-inner{ position:relative; z-index:2; }
#cta h2{ font-size:clamp(34px,5.2vw,58px); color:var(--forest); line-height:1.06; }
#cta p{ margin-top:16px; font-size:17px; color:rgba(26,26,26,.66); }
.cta-btn-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:32px; }

/* ============================= FOOTER ============================= */
footer{ background:var(--forest); color:rgba(248,247,242,.72); padding:70px 0 26px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(248,247,242,.13); }
@media (max-width:760px){ .foot-grid{ grid-template-columns:1fr; gap:34px; } }
.foot-brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-size:22px; color:var(--cream); font-weight:700; }
.foot-brand .mark{ width:32px; height:32px; }
.foot-tag{ margin-top:14px; font-size:14.5px; line-height:1.6; max-width:280px; }
.foot-col h5{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--moss); margin-bottom:16px; }
.foot-col li{ margin-bottom:11px; font-size:14.5px; }
.foot-col a:hover{ color:var(--cream); }
.foot-bottom{ display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:10px; padding-top:24px; font-size:12.5px; font-family:var(--font-mono); text-align:center; }
.tobacco-notice{
  display:flex; align-items:center; justify-content:center; gap:9px; flex-wrap:wrap; text-align:center;
  margin-top:16px; padding-top:16px; border-top:1px solid rgba(248,247,242,.08);
  font-family:var(--font-mono); font-size:11.5px; color:rgba(248,247,242,.5); letter-spacing:.01em;
}
.tobacco-notice svg{ width:18px; height:18px; flex:none; }
.footer-farewell{ text-align:center; padding:44px 24px 6px; border-top:1px solid rgba(248,247,242,.1); margin-top:38px; }
.footer-farewell .mark{ width:44px; height:44px; margin:0 auto 20px; display:block; }
.footer-farewell .farewell-line1{ font-family:var(--font-display); font-size:clamp(19px,2.6vw,24px); color:var(--cream); font-weight:600; }
.footer-farewell .farewell-line2{ font-family:var(--font-display); font-size:15px; font-style:italic; color:var(--moss); margin-top:8px; }
.footer-farewell .farewell-verse{ font-family:var(--font-display); font-size:14px; font-style:italic; line-height:1.65; color:rgba(248,247,242,.55); max-width:440px; margin:28px auto 0; }
.footer-farewell .farewell-verse .verse-ref{ display:block; margin-top:10px; font-family:var(--font-mono); font-style:normal; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); }

/* misc */
.vis-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
