/* =========================================================
   TAHMIS COFFEE — Since 1635
   Editorial / museum-quality storytelling site
   ========================================================= */

:root{
  /* palette */
  --walnut-950:#140d09;
  --walnut-900:#1b130d;
  --walnut-800:#261a11;
  --walnut-700:#332317;
  --stone-100:#f4ecdd;
  --stone-200:#ece0c9;
  --parchment:#f6efe2;
  --copper:#b9793f;
  --copper-light:#d99a5f;
  --copper-dark:#8a5a2c;
  --gold:#c9a15a;
  --ink:#1a120c;
  --ink-soft:#4a3b2f;
  --cream-text:#f2e9db;
  --line:rgba(201,161,90,.28);

  --serif:"Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease:cubic-bezier(.22,1,.36,1);
  --dur-s:.4s;
  --dur-m:.8s;
  --dur-l:1.4s;

  --header-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:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--walnut-950);
  color:var(--cream-text);
  font-family:var(--sans);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
h1,h2,h3,h4,p{ margin:0; }

/* language toggle visibility handled by JS text swap, both stay present */

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:2px;
}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--gold); color:var(--ink); padding:.8em 1.4em; border-radius:0 0 6px 0;
}
.skip-link:focus{ left:0; }

.grain-overlay{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position:fixed; width:420px; height:420px; border-radius:50%;
  pointer-events:none; z-index:1;
  background:radial-gradient(circle, rgba(201,161,90,.10), transparent 70%);
  transform:translate(-50%,-50%);
  left:var(--mx,50vw); top:var(--my,50vh);
  transition:opacity .4s ease;
  opacity:0;
}
@media (hover:hover) and (pointer:fine){
  .cursor-glow.is-active{ opacity:1; }
}

/* =========================== LAYOUT PRIMITIVES =========================== */
.section{ position:relative; }
.section-inner{
  max-width:900px; margin:0 auto; padding:0 6vw;
  text-align:center;
}
.eyebrow{
  font-family:var(--sans); font-size:.78rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.1rem; font-weight:500;
}
.section-title{
  font-family:var(--serif); font-weight:500; font-size:clamp(2rem,4.6vw,3.4rem);
  line-height:1.12; margin-bottom:1.4rem; color:var(--stone-100);
}
.section-lead{
  font-size:1.08rem; color:rgba(242,233,219,.78); max-width:620px; margin:0 auto 2.4rem;
  font-weight:300;
}

.btn{
  display:inline-flex; align-items:center; gap:.6em;
  padding:1em 2.1em; font-size:.86rem; letter-spacing:.06em; text-transform:uppercase;
  font-weight:500; border-radius:999px; transition:all var(--dur-s) var(--ease);
  border:1px solid transparent;
}
.btn-primary{ background:var(--gold); color:var(--ink); }
.btn-primary:hover{ background:var(--copper-light); transform:translateY(-2px); box-shadow:0 12px 30px -10px rgba(201,161,90,.5); }
.btn-outline{ border-color:var(--line); color:var(--stone-100); }
.btn-outline:hover{ border-color:var(--gold); background:rgba(201,161,90,.08); }
.btn-ghost{ color:var(--stone-100); font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; padding:.5em .3em; }
.btn-ghost:hover{ color:var(--gold); }

/* reveal-on-scroll */
.reveal-up{
  opacity:0; transform:translateY(34px);
  transition:opacity 1s var(--ease), transform 1s var(--ease);
  will-change:opacity, transform;
}
.reveal-up.is-visible{ opacity:1; transform:translateY(0); }

/* =========================== HEADER =========================== */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:500; height:var(--header-h);
  display:flex; align-items:center;
  transition:background var(--dur-m) var(--ease), height var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease);
}
.site-header::before{
  content:""; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(20,13,9,.75), transparent);
  opacity:1; transition:opacity var(--dur-m) var(--ease); z-index:-1;
}
.site-header.is-scrolled{
  height:66px; background:rgba(20,13,9,.86); backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 1px 0 var(--line);
}
.site-header.is-scrolled::before{ opacity:0; }

.header-inner{
  width:100%; max-width:1400px; margin:0 auto; padding:0 5vw;
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
}

.wordmark{ display:flex; align-items:center; }
.wordmark-logo{ height:52px; width:auto; transition:height var(--dur-m) var(--ease); }
.site-header.is-scrolled .wordmark-logo{ height:42px; }

.main-nav{ display:flex; gap:2.1rem; }
.main-nav a{
  font-size:.82rem; letter-spacing:.05em; color:rgba(242,233,219,.82);
  position:relative; padding:.3rem 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1px; background:var(--gold);
  transition:right var(--dur-s) var(--ease);
}
.main-nav a:hover::after, .main-nav a:hover{ color:var(--stone-100); }
.main-nav a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:1.4rem; }
.lang-toggle{ display:flex; align-items:center; gap:.4rem; font-size:.78rem; letter-spacing:.05em; color:rgba(242,233,219,.6); }
.lang-btn{ padding:.2rem .3rem; color:inherit; }
.lang-btn.is-active{ color:var(--gold); font-weight:600; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:26px; }
.nav-toggle span{ height:1px; background:var(--stone-100); width:100%; transition:transform .3s var(--ease), opacity .3s var(--ease); }

/* =========================== HERO =========================== */
.hero{
  height:100svh; min-height:640px; display:flex; align-items:center; justify-content:center;
  overflow:hidden; text-align:center;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(.85) brightness(.55) sepia(.15);
  transform:scale(1.12);
  animation:heroKen 22s ease-in-out infinite alternate;
}
@keyframes heroKen{
  from{ transform:scale(1.12) translate(0,0); }
  to{ transform:scale(1.24) translate(-1.5%,-1%); }
}
.hero-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at center 30%, rgba(20,13,9,.15), rgba(20,13,9,.86) 78%),
    linear-gradient(to bottom, rgba(20,13,9,.55), rgba(20,13,9,.35) 40%, rgba(20,13,9,.92));
}
.hero-glass{
  position:absolute; inset:0; opacity:.5; mix-blend-mode:soft-light;
  background:
    repeating-linear-gradient(100deg, rgba(217,154,95,.12) 0 40px, transparent 40px 90px),
    radial-gradient(circle at 30% 20%, rgba(185,121,63,.35), transparent 55%),
    radial-gradient(circle at 75% 15%, rgba(201,161,90,.3), transparent 50%);
}
.hero-rays{
  position:absolute; inset:-10% -10%; opacity:.35; mix-blend-mode:screen;
  background:conic-gradient(from 200deg at 60% 10%, transparent 0deg, rgba(217,154,95,.5) 8deg, transparent 20deg, transparent 340deg);
  animation:raysDrift 30s linear infinite;
}
@keyframes raysDrift{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }

.hero-cup{
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:min(26vw,260px); z-index:2; pointer-events:none;
  opacity:.9;
}
.hero-cup picture, .hero-cup img{
  width:100%; border-radius:10px 10px 0 0; opacity:.8;
  mask-image:linear-gradient(to bottom, transparent 0%, black 14%, black 55%, transparent 97%),
             linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite:intersect;
  -webkit-mask-image:linear-gradient(to bottom, transparent 0%, black 14%, black 55%, transparent 97%);
}
.steam{ position:absolute; left:50%; bottom:78%; transform:translateX(-50%); width:120px; height:220px; }
.steam span{
  position:absolute; bottom:0; width:10px; height:120px; border-radius:50%;
  background:linear-gradient(to top, rgba(244,236,221,.55), transparent 80%);
  filter:blur(6px);
  animation:steamRise 6s ease-in infinite;
}
.steam span:nth-child(1){ left:30px; animation-delay:0s; }
.steam span:nth-child(2){ left:60px; animation-delay:1.6s; height:150px; }
.steam span:nth-child(3){ left:88px; animation-delay:3.2s; }
@keyframes steamRise{
  0%{ transform:translateY(0) translateX(0) scaleX(1); opacity:0; }
  15%{ opacity:.6; }
  50%{ transform:translateY(-90px) translateX(8px) scaleX(1.3); opacity:.4; }
  100%{ transform:translateY(-200px) translateX(-10px) scaleX(1.8); opacity:0; }
}

.hero-content{ position:relative; z-index:3; padding:0 6vw; display:flex; flex-direction:column; align-items:center; }
.hero-content .eyebrow{ font-size:.82rem; }
.hero-title{
  font-family:var(--serif); font-weight:500; font-style:italic;
  font-size:clamp(3.4rem,11vw,8rem); line-height:1; color:var(--stone-100);
  margin-bottom:.6rem; text-shadow:0 10px 60px rgba(0,0,0,.5);
}
.hero-sub{
  font-family:var(--serif); font-size:clamp(1.1rem,2.4vw,1.6rem); letter-spacing:.06em;
  color:var(--gold); margin-bottom:2.6rem; font-weight:400;
}

.scroll-cue{
  position:absolute; bottom:2.6rem; left:50%; transform:translateX(-50%);
  z-index:3; display:flex; flex-direction:column; align-items:center; gap:.8rem;
  font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(242,233,219,.65);
}
.scroll-line{ width:1px; height:46px; background:linear-gradient(to bottom, var(--gold), transparent); position:relative; overflow:hidden; }
.scroll-line::after{
  content:""; position:absolute; left:0; top:-100%; width:100%; height:100%; background:var(--stone-100);
  animation:scrollDrip 2.6s var(--ease) infinite;
}
@keyframes scrollDrip{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

/* =========================== THE BEGINNING =========================== */
.beginning{ background:var(--walnut-950); padding:9rem 0 8rem; }
.beginning-visual{
  max-width:520px; margin:0 auto 4rem; border-radius:16px; overflow:hidden;
  box-shadow:0 30px 70px -25px rgba(0,0,0,.55);
}
.beginning-visual img{ width:100%; display:block; aspect-ratio:4/5; object-fit:cover; }
.etymology{
  display:inline-flex; flex-direction:column; gap:.3rem; margin:0 auto 4rem;
  padding:1.6rem 2.4rem; border:1px solid var(--line); border-radius:14px;
  background:linear-gradient(160deg, rgba(201,161,90,.06), transparent);
}
.etym-word{ font-family:var(--serif); font-style:italic; font-size:1.5rem; color:var(--gold); }
.etym-def{ font-size:.92rem; color:rgba(242,233,219,.7); }

.timeline{ max-width:760px; margin:0 auto; position:relative; text-align:left; }
.timeline::before{
  content:""; position:absolute; left:110px; top:6px; bottom:6px; width:1px;
  background:linear-gradient(to bottom, var(--gold), var(--line) 90%);
}
.timeline-item{ display:grid; grid-template-columns:110px 1fr; gap:2rem; padding:0 0 3.4rem 0; position:relative; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:106px; top:6px; width:9px; height:9px; border-radius:50%;
  background:var(--gold); box-shadow:0 0 0 5px var(--walnut-950), 0 0 18px rgba(201,161,90,.7);
}
.timeline-year{ font-family:var(--serif); font-size:1.15rem; color:var(--stone-100); font-weight:500; padding-top:1px;}
.timeline-item p{ color:rgba(242,233,219,.82); font-size:1.02rem; max-width:52ch; font-weight:300; }

/* =========================== HISTORIC BUILDING =========================== */
.building{ background:linear-gradient(180deg, var(--walnut-950), var(--walnut-900)); padding:8rem 0; }
.building-stage{
  position:relative; z-index:1; max-width:1100px; margin:0 auto 4rem; padding:0 5vw;
}
.building-photo{ width:100%; border-radius:18px; aspect-ratio:1/1; object-fit:cover; box-shadow:0 40px 80px -30px rgba(0,0,0,.6); }

.hotspot{
  position:absolute; left:var(--x); top:var(--y); transform:translate(-50%,-50%);
  width:34px; height:34px; display:flex; align-items:center; justify-content:center;
  z-index:2;
}
.hotspot-dot{
  width:13px; height:13px; border-radius:50%;
  background:var(--ink); border:2px solid var(--stone-100);
  box-shadow:0 2px 8px rgba(0,0,0,.45);
  animation:hotspotPulse 2.6s ease-out infinite;
}
@keyframes hotspotPulse{
  0%{ box-shadow:0 2px 8px rgba(0,0,0,.45), 0 0 0 0 rgba(244,236,221,.65); }
  70%{ box-shadow:0 2px 8px rgba(0,0,0,.45), 0 0 0 14px rgba(244,236,221,0); }
  100%{ box-shadow:0 2px 8px rgba(0,0,0,.45), 0 0 0 0 rgba(244,236,221,0); }
}
.hotspot:hover .hotspot-dot, .hotspot:focus-visible .hotspot-dot{
  background:#8f3b32; border-color:var(--stone-100); transform:scale(1.25);
}

.hotspot-tip{
  position:absolute; bottom:calc(100% + 14px); left:50%; transform:translate(-50%,6px);
  width:min(240px,60vw); background:var(--parchment); color:var(--ink); border-radius:12px;
  padding:.9rem 1.1rem; text-align:left; box-shadow:0 25px 50px -15px rgba(0,0,0,.55);
  z-index:5; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.hotspot-tip strong{ display:block; font-family:var(--serif); font-weight:600; margin-bottom:.3rem; color:var(--copper-dark); }
.hotspot-tip span{ display:block; font-size:.85rem; color:var(--ink-soft); line-height:1.5; }
.hotspot:hover .hotspot-tip, .hotspot:focus-within .hotspot-tip, .hotspot.is-open .hotspot-tip{
  opacity:1; visibility:visible; transform:translate(-50%,0);
}
/* keep tips inside the frame horizontally */
.hotspot--left .hotspot-tip{ left:0; transform:translate(0,6px); }
.hotspot--left:hover .hotspot-tip, .hotspot--left:focus-within .hotspot-tip, .hotspot--left.is-open .hotspot-tip{ transform:translate(0,0); }
.hotspot--right .hotspot-tip{ left:auto; right:0; transform:translate(0,6px); }
.hotspot--right:hover .hotspot-tip, .hotspot--right:focus-within .hotspot-tip, .hotspot--right.is-open .hotspot-tip{ transform:translate(0,0); }
/* the lowest hotspot (doors) has no room above it near the caption; flip tip below */
.hotspot[style*="--y:79%"] .hotspot-tip{ bottom:auto; top:calc(100% + 14px); }

.building-gallery{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; max-width:1200px; margin:0 auto; padding:0 5vw;
}
.building-gallery figure{ margin:0; overflow:hidden; border-radius:14px; aspect-ratio:4/5; }
.building-gallery img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease); }
.building-gallery figure:hover img{ transform:scale(1.08); }

/* =========================== JOURNEY (MAP) =========================== */
.journey{ background:var(--walnut-900); padding:8rem 0; }
.map-wrap{ max-width:1100px; margin:0 auto 3rem; padding:0 5vw; }
.map-svg{ width:100%; height:auto; overflow:visible; }
.route-line{
  fill:none; stroke:var(--gold); stroke-width:2; stroke-linecap:round;
  stroke-dasharray:1400; stroke-dashoffset:1400;
  transition:stroke-dashoffset 2.4s var(--ease);
}
.route-line.is-drawn{ stroke-dashoffset:0; }
.route-point circle{ fill:var(--walnut-900); stroke:var(--gold); stroke-width:2; }
.route-point .pt-tahmis{ fill:var(--gold); }
.route-point text{
  font-family:var(--sans); font-size:13px; letter-spacing:.08em; fill:var(--stone-100); text-anchor:middle;
  opacity:0; transition:opacity .6s var(--ease) .4s;
}
.map-wrap.is-drawn .route-point text{ opacity:1; }

.journey-captions{
  display:grid; grid-template-columns:repeat(5,1fr); gap:1.6rem; max-width:1300px; margin:0 auto; padding:0 5vw;
}
.journey-caption{ border-top:1px solid var(--line); padding-top:1.1rem; }
.jc-tag{ display:block; font-size:.7rem; letter-spacing:.14em; color:var(--gold); margin-bottom:.6rem; }
.journey-caption p{ font-size:.92rem; color:rgba(242,233,219,.78); font-weight:300; }

/* =========================== CRAFT =========================== */
.craft{ background:linear-gradient(180deg, var(--walnut-900), var(--walnut-950)); padding:8rem 0; }
.craft-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.6rem; max-width:1400px; margin:0 auto; padding:0 5vw;
}
.craft-card{ position:relative; border-radius:16px; overflow:hidden; aspect-ratio:3/4.2; }
.craft-card picture, .craft-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 1.4s var(--ease); }
.craft-card:hover img{ transform:scale(1.1); }
.craft-card::after{
  content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(15,10,7,.92) 8%, rgba(15,10,7,.15) 60%);
}
.craft-copy{ position:absolute; left:0; right:0; bottom:0; padding:1.6rem; z-index:2; }
.craft-index{ font-family:var(--serif); font-style:italic; color:var(--gold); font-size:.95rem; }
.craft-copy h3{ font-family:var(--serif); font-size:1.35rem; margin:.3rem 0 .5rem; color:var(--stone-100); }
.craft-copy p{ font-size:.86rem; color:rgba(242,233,219,.8); font-weight:300; }

/* =========================== COLLECTION (Tadesso-style cards) =========================== */
.collection{ background:var(--walnut-950); padding:8rem 0; }
.collection-showcase{
  display:grid; grid-template-columns:1fr 1.15fr; gap:1.6rem; align-items:center;
  max-width:1200px; margin:0 auto 3.5rem; padding:0 5vw;
}
.collection-showcase figure{ margin:0; border-radius:14px; overflow:hidden; background:rgba(201,161,90,.04); }
.collection-showcase img{ width:100%; display:block; }
.collection-showcase__chart img{ padding:1.2rem; object-fit:contain; background:var(--parchment); }
.collection-showcase__tray img{ aspect-ratio:4/3; object-fit:cover; }
.collection-toolbar{ max-width:1400px; margin:0 auto 2.5rem; padding:0 5vw; }
.filter-row{
  display:flex; gap:.4rem 1.6rem; flex-wrap:wrap;
  border-bottom:1px solid var(--line); padding-bottom:1.2rem;
}
.filt{
  background:transparent; border:none; font-family:var(--sans); font-size:.72rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase; color:rgba(242,233,219,.45); cursor:pointer;
  padding:.45rem 0; position:relative; transition:color .25s var(--ease);
}
.filt::after{
  content:""; position:absolute; left:0; right:0; bottom:-1.2rem; height:2px;
  background:transparent; transition:background .25s var(--ease);
}
.filt:hover, .filt.is-active{ color:var(--gold); }
.filt.is-active::after{ background:var(--gold); }

.catalog-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--line); max-width:1400px; margin:0 auto 4rem; padding:0 5vw;
}
.prod-card{
  background:var(--walnut-900); padding:1.2rem 1rem 1.4rem; position:relative;
  transition:background .25s var(--ease), transform .32s cubic-bezier(.34,1.2,.64,1), box-shadow .25s var(--ease);
}
.prod-card.is-hidden{ display:none; }
.prod-card:hover{
  background:var(--walnut-800); z-index:50;
  box-shadow:0 16px 48px rgba(0,0,0,.45); transform:translateY(-6px) scale(1.03);
}
.prod-num{
  position:absolute; top:.85rem; left:.85rem; font-size:.68rem; font-weight:600;
  letter-spacing:.12em; color:rgba(201,161,90,.55);
}
.prod-img-wrap{
  width:100%; height:210px; display:flex; align-items:flex-end; justify-content:center;
  margin-bottom:1rem; overflow:hidden; border-radius:14px;
  border:1px solid rgba(201,161,90,.14);
  background:
    radial-gradient(ellipse 90% 70% at 50% 88%, rgba(244,236,221,.14), rgba(201,161,90,.08) 42%, transparent 72%),
    linear-gradient(180deg, #322418 0%, var(--walnut-900) 100%);
  transition:background .25s var(--ease), border-color .25s var(--ease);
}
.prod-card:hover .prod-img-wrap{
  border-color:rgba(201,161,90,.28);
  background:
    radial-gradient(ellipse 90% 70% at 50% 88%, rgba(244,236,221,.18), rgba(201,161,90,.12) 42%, transparent 72%),
    linear-gradient(180deg, #3b2b1d 0%, var(--walnut-800) 100%);
}
.prod-img-wrap img{
  max-height:200px; max-width:88%; object-fit:contain;
  mix-blend-mode:screen;
  filter:brightness(1.06) contrast(1.04) saturate(1.03) drop-shadow(0 14px 28px rgba(0,0,0,.5));
  transition:transform .3s var(--ease), filter .3s var(--ease);
}
.prod-card[data-active-size="100g"] .prod-img-wrap img{ max-height:162px; }
.prod-card[data-active-size="250g"] .prod-img-wrap img{ max-height:186px; }
.prod-card[data-active-size="500g"] .prod-img-wrap img{ max-height:214px; }
.prod-card[data-active-size="800g"] .prod-img-wrap img{ max-height:220px; }
.prod-card:hover .prod-img-wrap img{
  transform:translateY(-6px) scale(1.05);
  filter:brightness(1.1) contrast(1.05) saturate(1.05) drop-shadow(0 18px 34px rgba(0,0,0,.56));
}
.prod-name{
  font-family:var(--serif); font-size:1.05rem; font-weight:500; color:var(--stone-100);
  line-height:1.25; margin:0 0 .25rem;
}
.prod-en{
  font-size:.72rem; color:rgba(242,233,219,.55); margin:0 0 .75rem; font-weight:300;
}
.prod-sizes{ display:flex; gap:4px; flex-wrap:wrap; margin-bottom:.5rem; }
.sz{
  background:rgba(201,161,90,.08); border:1px solid var(--line); border-radius:2px;
  padding:3px 10px; font-size:.68rem; color:rgba(242,233,219,.75); font-weight:500;
  cursor:pointer; transition:background .2s, border-color .2s, color .2s;
}
.sz:hover, .sz.is-active{ background:rgba(201,161,90,.18); border-color:var(--gold); color:var(--gold); }
.prod-note{
  font-size:.62rem; letter-spacing:.04em; color:rgba(242,233,219,.65);
  background:rgba(201,161,90,.1); border:1px solid var(--line); border-radius:999px;
  padding:.35rem .65rem; margin-bottom:.25rem; line-height:1.4;
}
.prod-detail{
  max-height:0; overflow:hidden; opacity:0;
  transition:max-height .35s ease, opacity .25s ease, padding-top .25s ease;
  border-top:1px solid transparent; margin-top:.6rem; padding-top:0;
}
.prod-card:hover .prod-detail,
.prod-card.is-open .prod-detail{
  max-height:380px; opacity:1; padding-top:.75rem; border-top-color:var(--line);
  overflow-y:auto; overscroll-behavior:contain;
  scrollbar-width:thin; scrollbar-color:rgba(201,161,90,.45) transparent;
}
.prod-detail::-webkit-scrollbar{ width:4px; }
.prod-detail::-webkit-scrollbar-thumb{ background:rgba(201,161,90,.45); border-radius:4px; }
.detail-section{ margin-bottom:.5rem; }
.detail-title{
  font-size:.58rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.35rem;
}
.detail-table{ width:100%; border-collapse:collapse; }
.detail-table tr td{
  font-size:.68rem; padding:2px 0; vertical-align:top;
}
.detail-table tr td:first-child{ color:rgba(242,233,219,.5); width:58%; }
.detail-table tr td:last-child{ color:var(--stone-100); font-weight:600; text-align:right; }
.detail-divider{ height:1px; background:var(--line); margin:.35rem 0; }
@media (hover:none){
  .prod-card{ cursor:pointer; }
}

.collection-cta{ display:flex; justify-content:center; gap:1.2rem; flex-wrap:wrap; }

.product-catalog:not(.is-expanded) .collection-toolbar{ display:none; }
.product-catalog:not(.is-expanded) .prod-card.is-collapsed{ display:none; }
.product-catalog:not(.is-expanded) .catalog-grid{ margin-bottom:1.5rem; }
.product-catalog.is-expanded .collection-expand-wrap{ display:none; }

.collection-expand-wrap{
  max-width:1400px; margin:0 auto 3rem; padding:0 5vw;
  display:flex; flex-direction:column; align-items:center; gap:.65rem;
}
.collection-expand-btn{
  background:transparent; border:1px solid var(--gold); border-radius:999px;
  color:var(--gold); font-family:var(--sans); font-size:.78rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase; padding:.85em 2em;
  cursor:pointer; transition:background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.collection-expand-btn:hover{
  background:rgba(201,161,90,.12); color:var(--stone-100); transform:translateY(-2px);
}
.collection-expand-hint{
  margin:0; font-size:.82rem; color:rgba(242,233,219,.5); font-weight:300;
}

/* =========================== TODAY =========================== */
.today{ background:linear-gradient(180deg, var(--walnut-950), var(--walnut-900)); padding:8rem 0; }
.today-gallery{
  display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:260px; gap:1.4rem;
  max-width:1300px; margin:0 auto 3.4rem; padding:0 5vw;
}
.today-gallery figure{ margin:0; overflow:hidden; border-radius:16px; }
.today-gallery .span-2{ grid-column:span 2; }
.today-gallery img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease); filter:saturate(.95); }
.today-gallery figure:hover img{ transform:scale(1.06); }

.cert-row{ display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-bottom:3rem; }
.cert-pill{
  border:1px solid var(--line); border-radius:999px; padding:.6em 1.3em; font-size:.75rem;
  letter-spacing:.1em; color:rgba(242,233,219,.85);
}
.today-closing{
  text-align:center; font-family:var(--serif); font-style:italic; font-size:clamp(1.3rem,2.6vw,2rem);
  color:var(--gold);
}

/* =========================== FAQ =========================== */
.faq{ background:var(--walnut-950); padding:6rem 0 7rem; }
.faq-list{ max-width:760px; margin:2.4rem auto 0; display:flex; flex-direction:column; gap:.8rem; }
.faq-item{
  border:1px solid var(--line); border-radius:12px; background:rgba(242,233,219,.03);
  overflow:hidden; transition:border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item[open]{ border-color:rgba(201,161,90,.45); background:rgba(201,161,90,.05); }
.faq-item summary{
  cursor:pointer; list-style:none; padding:1.1rem 1.4rem; font-family:var(--serif);
  font-size:1.05rem; color:var(--stone-100); font-weight:500;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; float:right; color:var(--gold); font-size:1.2rem; line-height:1;
  transition:transform .3s var(--ease);
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{
  margin:0; padding:0 1.4rem 1.2rem; font-size:.92rem; line-height:1.75;
  color:rgba(242,233,219,.78); font-weight:300;
}

/* =========================== FOOTER =========================== */
.site-footer{ background:var(--ink); border-top:1px solid var(--line); padding:5rem 0 2rem;
  background-image:radial-gradient(circle at 20% 20%, rgba(201,161,90,.05), transparent 60%);
}
.footer-inner{ max-width:1200px; margin:0 auto; padding:0 6vw; }
.footer-logo{ display:flex; justify-content:center; margin-bottom:1.6rem; }
.footer-logo img{ height:110px; width:auto; }
.footer-tagline{ font-family:var(--serif); font-style:italic; font-size:clamp(1.4rem,3vw,2.1rem); color:var(--stone-100); text-align:center; margin-bottom:4rem; }
.footer-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2.4rem; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:3rem 0; margin-bottom:2rem; }
.footer-heading{ display:block; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); margin-bottom:.9rem; }
.footer-col p{ font-size:.9rem; color:rgba(242,233,219,.75); line-height:1.9; font-weight:300; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{ text-align:center; font-size:.76rem; color:rgba(242,233,219,.45); }

/* =========================== RESPONSIVE =========================== */
@media (max-width:1080px){
  .craft-grid{ grid-template-columns:repeat(2,1fr); }
  .catalog-grid{ grid-template-columns:repeat(3,1fr); }
  .journey-captions{ grid-template-columns:repeat(3,1fr); }
  .today-gallery{ grid-auto-rows:220px; }
}

@media (max-width:860px){
  .main-nav{
    position:fixed; inset:66px 0 0 0; background:rgba(20,13,9,.98); backdrop-filter:blur(20px);
    flex-direction:column; align-items:center; justify-content:center; gap:2rem;
    transform:translateY(-8px); opacity:0; pointer-events:none; transition:opacity .35s var(--ease), transform .35s var(--ease);
  }
  .main-nav.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .main-nav a{ font-size:1.2rem; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-ghost{ display:none; }

  .building-gallery{ grid-template-columns:1fr; }
  .collection-showcase{ grid-template-columns:1fr; }
  .craft-grid{ grid-template-columns:1fr; }
  .catalog-grid{ grid-template-columns:repeat(2,1fr); }
  .journey-captions{ grid-template-columns:1fr; gap:1.2rem; }
  .today-gallery{ grid-template-columns:1fr; grid-auto-rows:240px; }
  .today-gallery .span-2{ grid-column:span 1; }
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .timeline::before{ left:70px; }
  .timeline-item{ grid-template-columns:70px 1fr; gap:1.2rem; }
  .timeline-item::before{ left:66px; }
}

@media (max-width:520px){
  .catalog-grid{ grid-template-columns:repeat(2,1fr); }
  .hero-title{ font-size:clamp(2.6rem,15vw,4rem); }
  .section-inner{ padding:0 7vw; }
}
