/* ============================================================
   VIENNA SPECIALTY COFFEE — Editorial Luxury
   Brand tokens • Playfair Display + Inter • desktop-first
   ============================================================ */

:root {
  /* brand palette */
  --bg:        #F7F3EC;
  --surface:   #FFFFFF;
  --ink:       #2B1D16;
  --coffee:    #3B2A20;
  --coffee-2:  #6B4F3B;
  --gold:      #C89A63;
  --border:    #E7DDD1;

  --ink-60: rgba(43,29,22,.60);
  --ink-45: rgba(43,29,22,.45);
  --ink-12: rgba(43,29,22,.12);
  --paper-2: #F1EADE;

  --font-display: "Playfair Display", Georgia, serif;
  --font-serif:   "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;

  /* fluid type */
  --step--1: clamp(.78rem, .76rem + .1vw, .85rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  --step-3:  clamp(2.4rem, 1.8rem + 3vw, 4rem);
  --step-4:  clamp(3rem, 2rem + 5vw, 6.5rem);
  --step-5:  clamp(3.4rem, 2.2rem + 6.4vw, 8.5rem);

  --gutter: clamp(1.25rem, 3.6vw, 4.25rem);
  --maxw: 1400px;
  --ease: cubic-bezier(.22,1,.36,1);
  --radius: 12px;
  --section-space-tight: clamp(2.25rem, 4vh, 3.5rem);
  --section-space: clamp(2.75rem, 5vh, 4.25rem);
  --section-space-deep: clamp(3.25rem, 6.5vh, 5.25rem);
  --section-gap: clamp(1.25rem, 2vw, 2rem);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { -webkit-text-size-adjust:100%; scroll-padding-top:96px; }
body {
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-sans);
  font-size:var(--step-0);
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img { display:block; width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
em { font-style:italic; }
::selection { background:var(--gold); color:#fff; }

/* lenis */
html.lenis,html.lenis body{height:auto;}
.lenis.lenis-smooth{scroll-behavior:auto!important;}
.lenis.lenis-stopped{overflow:hidden;}

/* ---------- shared type ---------- */
.display{
  font-family:var(--font-display);
  font-weight:500;
  line-height:1.02;
  letter-spacing:0;
  color:var(--coffee);
  font-size:var(--step-3);
}
.display em{ color:var(--gold); font-weight:500; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.7rem;
  font-size:var(--step--1);
  letter-spacing:.28em; text-transform:uppercase;
  font-weight:500; color:var(--coffee-2);
}
.eyebrow span{ width:34px; height:1px; background:var(--gold); display:inline-block; }
.eyebrow--light{ color:rgba(255,255,255,.7); }
.eyebrow--light span{ background:var(--gold); }

.lead{ font-size:var(--step-1); line-height:1.45; color:var(--ink); font-weight:400; }
.body-copy{ color:var(--ink-60); max-width:46ch; }
.price{ font-family:var(--font-display); color:var(--gold); font-weight:500; white-space:nowrap; }

.section{ padding:var(--section-space) var(--gutter); max-width:var(--maxw); margin-inline:auto; }

/* ---------- buttons ---------- */
.btn{
  --bg-btn:var(--coffee); --fg-btn:#fff;
  display:inline-flex; align-items:center; gap:.7rem;
  font-size:var(--step--1); letter-spacing:.04em; font-weight:500;
  padding:1rem 1.6rem; border-radius:100px; cursor:pointer; border:1px solid transparent;
  position:relative; overflow:hidden; transition:transform .5s var(--ease), color .4s var(--ease);
  will-change:transform;
}
.btn span{ position:relative; z-index:2; }
.btn__arrow{ width:18px; height:18px; position:relative; z-index:2; transition:transform .5s var(--ease); }
.btn:hover .btn__arrow{ transform:translateX(4px); }

.btn--solid{ background:var(--bg-btn); color:var(--fg-btn); }
.btn--solid::after{ content:""; position:absolute; inset:0; background:var(--gold); transform:translateY(101%); transition:transform .5s var(--ease); z-index:1; }
.btn--solid:hover{ color:#23150d; }
.btn--solid:hover::after{ transform:translateY(0); }
.btn--invert{ background:var(--bg); color:var(--coffee); }
.btn--invert::after{ background:var(--gold); }
.btn--invert:hover{ color:#23150d; }

.btn--line{ background:transparent; color:var(--coffee); border-color:var(--ink-12); }
.btn--line::after{ content:""; position:absolute; inset:0; background:var(--coffee); transform:translateY(101%); transition:transform .5s var(--ease); z-index:1; }
.btn--line:hover{ color:#fff; border-color:var(--coffee); }
.btn--line:hover::after{ transform:translateY(0); }
.btn--line-light{ color:#fff; border-color:rgba(255,255,255,.32); }
.btn--line-light::after{ background:#fff; }
.btn--line-light:hover{ color:var(--coffee); border-color:#fff; }

.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--ink-12); padding:.7rem 1.2rem; }
.btn__dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); }
.btn:active{ transform:scale(.97); }

/* cream solid (over dark hero) */
.btn--cream{ background:var(--bg); color:var(--coffee); }
.btn--cream::after{ background:var(--gold); }
.btn--cream:hover{ color:#23150d; }

/* plain text link button (light) */
.btn--text-light{ background:transparent; color:var(--bg); border:0; padding-inline:.4rem; letter-spacing:.14em; text-transform:uppercase; }
.btn--text-light::after{ content:""; position:absolute; left:.4rem; right:.4rem; bottom:.55rem; height:1px; background:var(--bg); transform:scaleX(0); transform-origin:left; transition:transform .45s var(--ease); z-index:1; }
.btn--text-light:hover::after{ transform:scaleX(1); }

/* ============================================================
   LOADER
   ============================================================ */
.loader{ position:fixed; inset:0; background:var(--coffee); z-index:1000; display:grid; place-items:center; color:var(--bg); transition:transform .9s var(--ease); will-change:transform; }
.loader.is-hidden{ transform:translateY(-100%); }
.loader__mark{ display:flex; flex-direction:column; align-items:center; gap:1.4rem; }
.loader .bean{ width:36px; height:auto; color:var(--gold); animation:beanpulse 1.4s var(--ease) infinite; }
.loader__count{ font-family:var(--font-display); font-size:1.4rem; letter-spacing:.1em; opacity:.7; }
@keyframes beanpulse{ 0%,100%{ transform:translateY(0); opacity:.7 } 50%{ transform:translateY(-6px); opacity:1 } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{ position:fixed; top:0; left:0; right:0; z-index:90; transition:background .5s var(--ease), backdrop-filter .5s, box-shadow .5s; }
.nav__inner{ max-width:var(--maxw); margin-inline:auto; padding:.6rem var(--gutter);
  display:flex; align-items:center; justify-content:space-between; gap:2rem; }
.nav.is-solid{ background:rgba(247,243,236,.78); backdrop-filter:blur(16px) saturate(1.2);
  box-shadow:0 1px 0 var(--border); }

.brand{ display:flex; align-items:center; gap:.7rem; }
.brand--stacked{ flex-direction:column; align-items:center; gap:.15rem; text-align:center; }
.brand__bean{ width:28px; height:auto; color:var(--gold); }
.brand--stacked .brand__bean{ width:18px; }
.brand__cherry{ width:30px; height:auto; color:var(--gold); }
.brand__logo{ height:56px; width:auto; display:block; }
.brand--footer .brand__logo{ height:56px; width:auto; }
.brand__type{ display:flex; flex-direction:column; line-height:1; }
.brand__name{ font-family:var(--font-display); font-size:1.25rem; font-weight:600; letter-spacing:.02em; color:var(--coffee); transition:color .5s var(--ease); }
.brand--stacked .brand__name{ font-size:1.15rem; letter-spacing:.06em; }
.brand__sub{ font-size:.48rem; letter-spacing:.34em; text-transform:uppercase; color:var(--coffee-2); margin-top:.15rem; transition:color .5s var(--ease); }
.brand--stacked .brand__sub{ font-size:.5rem; letter-spacing:.42em; }
.nav__links{ display:flex; gap:2.4rem; }
.nav__links a{ font-size:var(--step--1); letter-spacing:.06em; text-transform:uppercase; color:var(--ink); position:relative; padding:.2rem 0; transition:color .5s var(--ease); }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background:var(--gold); transition:width .4s var(--ease); }
.nav__links a:hover{ color:var(--coffee); }
.nav__links a:hover::after{ width:100%; }
.nav__pin{ width:15px; height:15px; position:relative; z-index:2; }

.nav__burger{ display:none; background:none; border:0; flex-direction:column; gap:5px; cursor:pointer; padding:.4rem; }
.nav__burger span{ width:26px; height:1.6px; background:var(--coffee); transition:transform .4s var(--ease), opacity .3s, background .5s; }

/* --- light state while transparent over the dark hero (home only) --- */
body:not(.page-light) .nav:not(.is-solid) .brand__name,
body:not(.page-light) .nav:not(.is-solid) .brand__sub,
body:not(.page-light) .nav:not(.is-solid) .nav__links a{ color:var(--bg); }
body:not(.page-light) .nav:not(.is-solid) .brand__bean{ color:var(--gold); }
body:not(.page-light) .nav:not(.is-solid) .nav__links a:hover{ color:#fff; }
body:not(.page-light) .nav:not(.is-solid) .nav__cta{ color:var(--bg); border-color:rgba(247,243,236,.4); }
body:not(.page-light) .nav:not(.is-solid) .nav__cta:hover{ color:#23150d; }
body:not(.page-light) .nav:not(.is-solid) .nav__burger span{ background:var(--bg); }

/* menu page keeps a permanent solid nav */
body.page-light .nav{ background:rgba(247,243,236,.82); backdrop-filter:blur(16px) saturate(1.2); box-shadow:0 1px 0 var(--border); }
body.page-light .nav__links a[aria-current="page"]{ color:var(--coffee); }
body.page-light .nav__links a[aria-current="page"]::after{ width:100%; }
.nav__cta::after{ content:""; position:absolute; inset:0; background:var(--gold); transform:translateY(101%); transition:transform .5s var(--ease); z-index:1; border-radius:inherit; }
.nav__cta:hover::after{ transform:translateY(0); }
.nav__cta:hover{ color:#23150d; }
.nav__burger.is-open span:first-child{ transform:translateY(3.3px) rotate(45deg); }
.nav__burger.is-open span:last-child{ transform:translateY(-3.3px) rotate(-45deg); }

.mobile-menu{ position:fixed; inset:0; background:var(--coffee); z-index:80; display:flex; flex-direction:column; justify-content:center; gap:1rem; padding:var(--gutter);
  transform:translateY(-100%); transition:transform .6s var(--ease); }
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu a{ font-family:var(--font-display); font-size:clamp(2rem,9vw,3rem); color:var(--bg); }
.mobile-menu a:hover{ color:var(--gold); }

/* ============================================================
   1 · HERO — full-bleed café, overlaid wordmark
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:center; overflow:hidden;
  padding:clamp(6.5rem,12vh,8.5rem) var(--gutter) clamp(3.25rem,7vh,5rem); }
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{ width:100%; height:100%; object-fit:cover; transform:scale(1.08); will-change:transform; }
.hero__overlay{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg, rgba(24,15,9,.86) 0%, rgba(24,15,9,.62) 38%, rgba(24,15,9,.20) 70%, rgba(24,15,9,.05) 100%),
    linear-gradient(0deg, rgba(24,15,9,.55) 0%, transparent 34%); }

.hero__inner{ position:relative; z-index:2; max-width:var(--maxw); margin-inline:auto; width:100%; }

.hero__title{ font-family:var(--font-display); font-weight:500; font-size:var(--step-5);
  line-height:.96; letter-spacing:0; color:var(--bg); margin:1.2rem 0 1.2rem; }
.hero__title em{ color:var(--gold); }
.hero__title .line{ display:block; overflow:hidden; }
.hero__title .line > span{ display:block; }

.hero__divider{ display:flex; align-items:center; gap:1rem; margin:0 0 1.2rem; }
.hero__rule{ height:1px; width:clamp(40px,7vw,96px); background:rgba(247,243,236,.4); }
.hero__bean{ width:18px; height:auto; color:var(--gold); }

.hero__sub{ font-family:var(--font-serif); font-style:italic; font-size:clamp(1.5rem,1rem+1.6vw,2.4rem);
  line-height:1.25; color:rgba(247,243,236,.92); }
.hero__actions{ display:flex; gap:1rem; align-items:center; margin-top:2rem; flex-wrap:wrap; }

.hero__scroll{ position:absolute; left:50%; bottom:clamp(1.6rem,4vh,2.6rem); z-index:2;
  display:flex; align-items:center; gap:.9rem; color:rgba(247,243,236,.7); transform:translateX(-50%); }
.hero__scroll:hover{ color:var(--bg); }
.hero__mouse{ width:20px; height:32px; border:1.5px solid rgba(247,243,236,.5); border-radius:12px; position:relative; flex:none; }
.hero__mouse i{ position:absolute; top:6px; left:50%; width:2px; height:6px; background:var(--gold); border-radius:2px; transform:translateX(-50%); animation:mouse 1.8s var(--ease) infinite; }
@keyframes mouse{ 0%{ opacity:0; transform:translate(-50%,-3px) } 30%{ opacity:1 } 70%{ opacity:1 } 100%{ opacity:0; transform:translate(-50%,9px) } }
.hero__scrolltxt{ font-size:var(--step--1); letter-spacing:.22em; text-transform:uppercase; }

/* ============================================================
   2 · ABOUT
   ============================================================ */
.about__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,4.25rem); align-items:center; }
.about__media{ position:relative; }
.about__img{ border-radius:var(--radius); aspect-ratio:4/3; object-fit:cover; object-position:center; box-shadow:0 40px 80px -50px rgba(43,29,22,.5); }
.about__tag{ position:absolute; bottom:1.4rem; left:1.4rem; background:rgba(247,243,236,.85); backdrop-filter:blur(8px);
  padding:.6rem 1.1rem; border-radius:100px; font-size:var(--step--1); letter-spacing:.04em; color:var(--coffee); }
.about__copy h2{ margin:1.2rem 0 1.2rem; font-size:var(--step-3); }
.about__copy .lead{ margin-bottom:1.4rem; max-width:40ch; }
.about__link{ display:inline-flex; margin-top:1.6rem; }
.about__stats{ display:flex; gap:2.2rem; margin-top:2.2rem; padding-top:1.6rem; border-top:1px solid var(--border); flex-wrap:wrap; }
.about__stats .num{ font-family:var(--font-display); font-size:2.2rem; color:var(--gold); display:block; line-height:1; }
.about__stats .lbl{ font-size:var(--step--1); color:var(--ink-45); letter-spacing:.02em; }

/* ============================================================
   3 · CRAFT
   ============================================================ */
.craft{ background:linear-gradient(180deg,var(--bg),var(--paper-2)); max-width:none; padding:var(--section-space-deep) 0; }
.craft > *{ max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.craft__head{ display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:end; margin-bottom:clamp(2rem,4vw,3.25rem); }
.craft__title{ grid-column:1; font-size:var(--step-3); }
.craft__intro{ grid-column:2; color:var(--ink-60); max-width:38ch; justify-self:start; }
.craft__intro--foot{ grid-column:1 / -1; max-width:48ch; text-align:center; margin-top:clamp(2rem,3vw,3rem); font-size:var(--step-0); }

/* editorial connected process — vertical timeline, image beside */
.craft__content{
  display:grid; grid-template-columns:1fr 1.3fr; gap:clamp(2rem,4vw,4rem);
  margin-top:clamp(2.4rem,5vw,4rem); align-items:start;
}
.craft__process{
  position:relative; display:flex; flex-direction:column; gap:2rem;
  padding-left:clamp(2.8rem,4vw,3.5rem);
}
.craft__rail{
  position:absolute; left:1.5rem; top:0.5rem; bottom:0.5rem;
  width:1px; background:var(--border);
}
.craft__railfill{
  position:absolute; inset:0; transform-origin:top center; transform:scaleY(0);
  background:linear-gradient(180deg, var(--gold), var(--coffee-2));
}
.craft-step{
  position:relative; display:grid;
  grid-template-columns:auto 1fr; gap:0.2rem 1.2rem;
}
.craft-step__no{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(2rem,2.8vw,3.6rem); line-height:1; color:var(--gold);
  grid-row:1; transition:transform .5s var(--ease);
}
.craft-step__node{
  position:absolute; left:-1.65rem; top:0.4rem; width:12px; height:12px; border-radius:50%;
  background:var(--gold); transform:translateX(-50%); box-shadow:0 0 0 6px var(--bg);
  transition:transform .5s var(--ease);
}
.craft-step__body{ grid-column:2; grid-row:1 / span 2; }
.craft-step h3{ font-family:var(--font-display); font-weight:500; font-size:1.5rem; color:var(--coffee); margin-bottom:.35rem; }
.craft-step p{ font-size:.9rem; color:var(--ink-60); line-height:1.6; max-width:36ch; }
.craft-step:hover .craft-step__no{ transform:translateX(6px); }
.craft-step:hover .craft-step__node{ transform:translateX(-50%) scale(1.5); }

.craft__feature{
  position:relative; margin-top:-1.8rem; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:9/16; max-height:520px; justify-self:center;
}
.craft__feature img{ width:100%; height:100%; object-fit:cover; }
.craft__feature-cap{
  position:absolute; left:1rem; bottom:1rem; background:rgba(247,243,236,.85); backdrop-filter:blur(8px);
  padding:.5rem .9rem; border-radius:100px; font-size:var(--step--1); letter-spacing:.04em; color:var(--coffee);
}

/* ============================================================
   4 · EXPERIENCE
   ============================================================ */
.experience{
  background:
    linear-gradient(135deg,rgba(20,13,10,.96) 0%,rgba(59,42,32,.98) 48%,rgba(31,21,16,.98) 100%);
  color:var(--bg); position:relative; overflow:hidden;
}
.experience::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(90deg,rgba(247,243,236,.06) 1px,transparent 1px),
    linear-gradient(180deg,rgba(247,243,236,.035) 1px,transparent 1px);
  background-size:72px 72px; mask-image:linear-gradient(90deg,transparent,black 18%,black 72%,transparent);
}
.experience__sticky{
  position:relative; z-index:1; min-height:92svh; max-width:var(--maxw); margin-inline:auto;
  display:grid; grid-template-columns:minmax(0,.85fr) minmax(380px,1.05fr) minmax(280px,.72fr);
  align-items:center; gap:clamp(1.4rem,3.5vw,3rem); padding:var(--section-space-deep) var(--gutter);
}
.experience .eyebrow{ color:rgba(247,243,236,.66); }
.experience__copy{ max-width:42ch; }
.experience__title{ color:var(--bg); font-size:clamp(2.8rem,2.1rem + 3.4vw,5.6rem); margin:1rem 0 1.1rem; }
.experience__title em{ color:var(--gold); }
.experience__desc{ color:rgba(247,243,236,.68); max-width:36ch; font-size:var(--step-1); line-height:1.48; }
.experience__link{ margin-top:1.7rem; }

.experience__stage{
  min-height:min(68svh,620px); position:relative; display:grid; place-items:center;
}
.experience__drink{
  position:relative; z-index:2; width:min(100%,520px); display:flex; justify-content:center; align-items:center;
  padding:clamp(1rem,2vw,1.6rem);
}
.frame-canvas{ width:100%; height:auto; display:block; }
.experience__drink .frame-canvas{ position:relative; z-index:1; max-width:480px; filter:drop-shadow(0 42px 58px rgba(0,0,0,.55));
  -webkit-mask-image:radial-gradient(66% 80% at 50% 46%, #000 52%, rgba(0,0,0,0) 86%);
  mask-image:radial-gradient(66% 80% at 50% 46%, #000 52%, rgba(0,0,0,0) 86%); }
.experience__caption{
  position:absolute; z-index:3; left:clamp(.8rem,2vw,1.4rem); bottom:clamp(.8rem,2vw,1.4rem);
  max-width:22ch; color:rgba(247,243,236,.72); font-size:var(--step--1); letter-spacing:.08em; text-transform:uppercase;
}
.experience__progress{
  position:absolute; z-index:4; right:0; top:12%; bottom:12%; width:2px;
  background:rgba(247,243,236,.16); border-radius:2px;
}
.experience__progress i{ position:absolute; left:0; right:0; top:0; height:0%; background:var(--gold); border-radius:2px; }

.experience__steps{ list-style:none; display:flex; flex-direction:column; gap:.75rem; }
.experience__steps li{
  display:grid; grid-template-columns:auto 1fr; gap:.2rem .9rem; padding:1rem 0;
  border-top:1px solid rgba(247,243,236,.14); color:rgba(247,243,236,.5);
  transition:color .45s var(--ease), transform .45s var(--ease), border-color .45s var(--ease);
}
.experience__steps li:last-child{ border-bottom:1px solid rgba(247,243,236,.14); }
.experience__steps li span{
  grid-row:span 2; font-family:var(--font-display); font-size:1.55rem; line-height:1; color:rgba(200,154,99,.54);
  transition:color .45s var(--ease);
}
.experience__steps strong{
  font-family:var(--font-display); font-size:1.35rem; line-height:1.1; font-weight:500; color:rgba(247,243,236,.76);
  transition:color .45s var(--ease);
}
.experience__steps em{ font-family:var(--font-sans); font-style:normal; font-size:.92rem; line-height:1.45; color:rgba(247,243,236,.48); }
.experience__steps li.is-active{ color:var(--bg); transform:translateX(-.35rem); border-color:rgba(200,154,99,.5); }
.experience__steps li.is-active span,.experience__steps li.is-active strong{ color:var(--gold); }
.experience__steps li.is-active em{ color:rgba(247,243,236,.76); }

/* ============================================================
   5 · SIGNATURE DRINKS
   ============================================================ */
.drinks__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:2.2rem; margin-bottom:clamp(2rem,4vw,3rem); flex-wrap:wrap; }
.drinks__head h2{ margin-top:1.1rem; font-size:var(--step-3); }
.drinks__note{ color:var(--ink-60); max-width:31ch; }
.drinks__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.drink-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition:transform .6s var(--ease), box-shadow .6s var(--ease); }
.drink-card__media{ aspect-ratio:4/5; overflow:hidden; }
.drink-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease); }
.drink-card__body{ padding:1.4rem 1.4rem 1.7rem; }
.drink-card__row{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; margin-bottom:.5rem; }
.drink-card__row h3{ font-family:var(--font-display); font-weight:500; font-size:1.5rem; color:var(--coffee); }
.drink-card__row .price{ font-size:1.25rem; }
.drink-card p{ font-size:.9rem; color:var(--ink-60); line-height:1.5; }
.drink-card:hover{ transform:translateY(-8px); box-shadow:0 44px 80px -50px rgba(43,29,22,.5); }
.drink-card:hover .drink-card__media img{ transform:scale(1.07); }

/* ============================================================
   6 · FRESH BAKES (pinned scrub)
   ============================================================ */
.bakes{ background:linear-gradient(180deg,var(--paper-2),var(--bg)); position:relative; }
.bakes__sticky{ min-height:92svh; display:grid; grid-template-columns:1.1fr .9fr; align-items:center;
  gap:clamp(1rem,3vw,2.5rem); padding:var(--section-space) var(--gutter); max-width:var(--maxw); margin-inline:auto; }
.bakes__stage{ position:relative; display:flex; align-items:center; justify-content:center; }
.bakes__stage .bakes__img{ max-width:640px; width:100%; height:auto; border-radius:var(--radius); display:block; }
.bakes__copy{ max-width:38ch; }
.bakes__title{ margin:1.6rem 0 1.4rem; font-size:var(--step-3); }
.bakes__desc{ color:var(--ink-60); margin-bottom:2rem; line-height:1.65; }

/* ============================================================
   7 · FOOD MENU
   ============================================================ */
.food{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(1.75rem,4vw,4rem); align-items:center; }
.food__media{ position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:16/10; box-shadow:0 50px 90px -55px rgba(43,29,22,.5); }
.food__media img{ width:100%; height:100%; object-fit:cover; }
.food__cap{ position:absolute; left:1.3rem; bottom:1.3rem; background:rgba(247,243,236,.85); backdrop-filter:blur(8px);
  padding:.55rem 1rem; border-radius:100px; font-size:var(--step--1); color:var(--coffee); letter-spacing:.03em; }
.food__copy h2{ margin:1.2rem 0 1.4rem; font-size:var(--step-3); }
.food__copy .lead{ max-width:32ch; margin-bottom:1.5rem; }
.food__list{ list-style:none; }
.food__list li{ display:flex; align-items:baseline; gap:.8rem; padding:.85rem 0; border-top:1px solid var(--border); }
.food__list li:last-child{ border-bottom:1px solid var(--border); }
.food__name{ font-family:var(--font-display); font-size:1.2rem; color:var(--coffee); white-space:nowrap; }
.food__dots{ flex:1; border-bottom:1px dotted var(--ink-12); transform:translateY(-4px); }
.food__list .price{ font-size:1.1rem; }

/* ============================================================
   8 · GALLERY
   ============================================================ */
.gallery__head{ display:flex; flex-direction:column; gap:1.1rem; margin-bottom:clamp(1.75rem,3vw,2.5rem); }
.gallery__head h2{ font-size:var(--step-3); }
.masonry{ columns:3; column-gap:1rem; }
.masonry__item{ break-inside:avoid; margin-bottom:1rem; border-radius:var(--radius); overflow:hidden; position:relative; }
.masonry__item img{ width:100%; height:auto; display:block; transition:transform 1.1s var(--ease); }
/* natural aspect ratios — every gallery photo shows in full */
.masonry__item::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(43,29,22,.28)); opacity:0; transition:opacity .5s var(--ease); }
.masonry__item:hover img{ transform:scale(1.05); }
.masonry__item:hover::after{ opacity:1; }
.masonry__cap{ position:absolute; left:1.1rem; bottom:1rem; z-index:2; color:var(--bg);
  font-size:var(--step--1); letter-spacing:.04em; opacity:0; transform:translateY(8px);
  transition:opacity .5s var(--ease), transform .5s var(--ease); }
.masonry__item:hover .masonry__cap{ opacity:1; transform:translateY(0); }

/* lightbox */
.lightbox{ position:fixed; inset:0; z-index:400; display:flex; align-items:center; justify-content:center;
  padding:clamp(1.5rem,5vw,4rem); background:rgba(24,15,9,.86); backdrop-filter:blur(6px);
  opacity:0; visibility:hidden; transition:opacity .45s var(--ease), visibility .45s; }
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:min(1100px,92vw); max-height:86vh; width:auto; border-radius:var(--radius);
  box-shadow:0 50px 100px -40px rgba(0,0,0,.7); transform:scale(.96); transition:transform .45s var(--ease); }
.lightbox.is-open img{ transform:scale(1); }
.lightbox__close{ position:absolute; top:1.4rem; right:1.6rem; width:46px; height:46px; border-radius:50%;
  border:1px solid rgba(247,243,236,.4); background:transparent; color:var(--bg); font-size:1.4rem; cursor:pointer;
  display:grid; place-items:center; transition:background .3s, transform .3s; }
.lightbox__close:hover{ background:rgba(247,243,236,.12); transform:rotate(90deg); }

/* ============================================================
   9 · TESTIMONIAL
   ============================================================ */
.quote{ background:var(--paper-2); padding:var(--section-space-deep) var(--gutter); text-align:center; min-height:min(68svh,640px); display:grid; place-items:center; }
.quote__inner{ max-width:1000px; margin-inline:auto; position:relative; }
.quote__mark{ font-family:var(--font-display); font-size:clamp(6rem,16vw,12rem); color:var(--gold); line-height:.5; display:block; opacity:.5; height:.45em; }
.quote__text{ font-size:var(--step-4); line-height:1.1; color:var(--coffee); font-weight:400; }
.quote__text em{ color:var(--gold); }
.quote__by{ margin-top:2.4rem; font-size:var(--step--1); letter-spacing:.18em; text-transform:uppercase; color:var(--ink-45); }

/* ============================================================
   10 · FINAL CTA
   ============================================================ */
.cta{ background:var(--coffee); color:var(--bg); padding:var(--section-space-deep) var(--gutter);
  position:relative; overflow:hidden; min-height:min(68svh,640px); display:grid; align-items:center; }
.cta__bg{ position:absolute; inset:0; z-index:0; }
.cta__bg img{ width:100%; height:100%; object-fit:cover; opacity:.28; }
.cta::after{ content:""; position:absolute; inset:0; z-index:1;
  background:radial-gradient(120% 90% at 50% 50%, rgba(59,42,32,.55), rgba(43,29,22,.92)); }
.cta::before{ content:""; position:absolute; z-index:1; width:60vw; height:60vw; left:-20vw; top:-20vw; border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,99,.18),transparent 65%); }
.cta__inner{ max-width:var(--maxw); margin-inline:auto; position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; text-align:center; }
.cta__title{ color:var(--bg); font-size:var(--step-4); margin:1.6rem 0 2.6rem; }
.cta__title em{ color:var(--gold); }
.cta__actions{ display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }

/* ============================================================
   FOOTER  (warm cream · rich brown tones)
   ============================================================ */
.footer{
  background: var(--paper-2);
  padding:var(--section-space) var(--gutter) 1.6rem;
  max-width:var(--maxw);
  margin-inline:auto;
  overflow:hidden;
}

/* newsletter band */
.footer__cta{
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
  padding-bottom:2.6rem; margin-bottom:2.6rem;
  border-bottom:1px solid var(--border);
}
.footer__cta .eyebrow span{ background:var(--coffee-2); }
.footer__cta-title{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(1.6rem,1.1rem+1.6vw,2.4rem);
  color:var(--coffee); margin-top:.6rem;
}
.footer__form{ display:flex; gap:.6rem; flex:1; min-width:280px; max-width:460px; }
.footer__form input{
  flex:1; border:1px solid var(--border); background:var(--bg);
  border-radius:100px; padding:0 1.3rem; font-family:var(--font-sans);
  font-size:var(--step--1); color:var(--ink); height:52px; transition:border-color .3s, box-shadow .3s;
}
.footer__form input::placeholder{ color:var(--ink-45); }
.footer__form input:focus{ outline:none; border-color:var(--coffee); box-shadow:0 0 0 3px rgba(59,42,32,.08); }
.footer__form .btn{ flex:none; }

.footer__top{
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:clamp(1.75rem,4vw,4rem);
  padding-bottom:2.4rem; border-bottom:1px solid var(--border);
}
.brand--footer .brand__name{ font-size:1.6rem; }
.brand--footer .brand__bean{ width:26px; }
.footer__tag{
  font-family:var(--font-serif); font-style:italic; font-size:1.3rem;
  color:var(--coffee-2); margin-top:1.2rem;
}
.footer__social{ display:flex; gap:.7rem; margin-top:1.4rem; }
.footer__social a{
  width:42px; height:42px; border:1px solid var(--border); border-radius:50%;
  display:grid; place-items:center; color:var(--coffee-2);
  transition:background .35s var(--ease), color .35s, border-color .35s, transform .35s;
}
.footer__social svg{ width:18px; height:18px; }
.footer__social a:hover{ background:var(--coffee); color:var(--bg); border-color:var(--coffee); transform:translateY(-3px); }
.footer__cols{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.6rem; }
.footer__col h4{ font-size:var(--step--1); letter-spacing:.16em; text-transform:uppercase; color:var(--coffee); font-weight:600; margin-bottom:.9rem; }
.footer__col p{ font-size:.95rem; color:var(--ink-60); line-height:1.7; }
.footer__col a{ transition:color .3s; color:var(--coffee-2); }
.footer__col a:hover{ color:var(--coffee); }
.footer__map{ display:inline-block; margin-top:.7rem; font-size:var(--step--1); color:var(--coffee); letter-spacing:.03em; font-weight:500; }
.footer__map:hover{ color:var(--gold); }

/* oversized watermark wordmark */
.footer__word{
  font-family:var(--font-display); font-weight:600; line-height:.8;
  color:var(--coffee); opacity:.04;
  font-size:clamp(6rem,22vw,18rem); letter-spacing:-.02em;
  margin:1.5rem 0 -.1em; pointer-events:none;
  user-select:none; white-space:nowrap;
}

.footer__bottom{
  display:flex; justify-content:space-between; gap:1rem;
  padding-top:1.6rem; border-top:1px solid var(--border);
  font-size:var(--step--1); color:var(--ink-45); flex-wrap:wrap; align-items:center;
}
.footer__top-link{ color:var(--coffee-2); letter-spacing:.04em; transition:color .3s; }
.footer__top-link:hover{ color:var(--coffee); }

/* link with arrow (e.g. "view full menu") */
.link-arrow{ display:inline-flex; align-items:center; gap:.5rem; font-size:var(--step--1); letter-spacing:.06em;
  text-transform:uppercase; color:var(--coffee); position:relative; }
.link-arrow svg{ width:18px; height:18px; transition:transform .45s var(--ease); }
.link-arrow::after{ content:""; position:absolute; left:0; bottom:-3px; height:1px; width:100%; background:var(--gold); transform:scaleX(.4); transform-origin:left; transition:transform .45s var(--ease); }
.link-arrow:hover svg{ transform:translateX(5px); }
.link-arrow:hover::after{ transform:scaleX(1); }
.drinks__note{ display:flex; flex-direction:column; gap:1.1rem; align-items:flex-start; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page{ max-width:var(--maxw); margin-inline:auto; }
.menu-hero{ min-height:min(62svh,620px); padding:clamp(8rem,15vh,11rem) var(--gutter) clamp(2rem,5vh,3.25rem); text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; }
.menu-hero__title{ font-size:var(--step-4); }
.menu-hero__sub{ max-width:52ch; color:var(--ink-60); font-size:var(--step-1); line-height:1.5; }
.menu-hero__note{ font-size:var(--step--1); letter-spacing:.14em; text-transform:uppercase; color:var(--ink-45); }

.menu-wrap{ padding:clamp(.5rem,2vh,1.25rem) var(--gutter) clamp(3rem,6vh,4.5rem);
  columns:2; column-gap:clamp(1.2rem,1.8vw,1.8rem); max-width:1320px; margin-inline:auto; }

/* each category is its own colour-coded card */
.menu-cat{
  --cat:#6b4f3b; --cat-tint:#f1eade;
  break-inside:avoid; -webkit-column-break-inside:avoid; margin-bottom:clamp(1.2rem,1.8vw,1.8rem);
  background:var(--cat-tint); border:1px solid color-mix(in srgb, var(--cat) 22%, transparent);
  border-radius:26px; padding:clamp(1.5rem,2.4vw,2.3rem) clamp(1.4rem,2.1vw,2rem) clamp(1.1rem,1.8vw,1.6rem);
  box-shadow:0 30px 60px -52px rgba(43,29,22,.45); transition:transform .55s var(--ease), box-shadow .55s var(--ease); }
.menu-cat:hover{ transform:translateY(-5px); box-shadow:0 44px 76px -54px rgba(43,29,22,.5); }
.menu-cat__head{ display:flex; align-items:center; gap:.8rem; margin-bottom:1.3rem; }
.menu-cat__head::before{ content:""; width:11px; height:11px; border-radius:50%; background:var(--cat); flex:none; box-shadow:0 0 0 4px color-mix(in srgb, var(--cat) 16%, transparent); }
.menu-cat__head h2{ font-family:var(--font-display); font-weight:500; font-size:clamp(1.5rem,1.15rem+.9vw,2rem); color:var(--cat); white-space:nowrap; }
.menu-cat__rule{ flex:1; height:1px; background:color-mix(in srgb, var(--cat) 28%, transparent); }
.menu-cat__hint{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--cat); opacity:.8; white-space:nowrap; }

.menu-list{ list-style:none; display:flex; flex-direction:column; }
.menu-item{ padding:.85rem 0; border-top:1px solid color-mix(in srgb, var(--cat) 15%, transparent); }
.menu-item:first-child{ border-top:0; padding-top:0; }
.menu-item__main{ display:flex; align-items:baseline; gap:.7rem; }
.menu-item__name{ font-family:var(--font-display); font-size:1.18rem; color:var(--coffee); white-space:nowrap; }
.menu-item__dots{ flex:1; border-bottom:1px dotted color-mix(in srgb, var(--cat) 30%, transparent); transform:translateY(-4px); }
.menu-item .price{ font-size:1.1rem; color:var(--cat); font-weight:500; }
.menu-item__desc{ font-size:.88rem; color:var(--ink-60); margin-top:.25rem; max-width:42ch; }

/* per-category colour coding (order matches the menu) */
.menu-wrap .menu-cat:nth-child(1){  --cat:#4a3422; --cat-tint:#efe7dc; } /* Espresso Bar — dark roast */
.menu-wrap .menu-cat:nth-child(2){  --cat:#7a5230; --cat-tint:#f1e8dc; } /* Cold Coffee — caramel */
.menu-wrap .menu-cat:nth-child(3){  --cat:#8a6a45; --cat-tint:#f0ebde; } /* Manual Brewing — tan */
.menu-wrap .menu-cat:nth-child(4){  --cat:#6b4a36; --cat-tint:#efe7dd; } /* Frappe — mocha */
.menu-wrap .menu-cat:nth-child(5){  --cat:#5b3a2e; --cat-tint:#eee2da; } /* Hot Chocolate — cocoa */
.menu-wrap .menu-cat:nth-child(6){  --cat:#977c3c; --cat-tint:#f2ecda; } /* Specialty Tea — amber */
.menu-wrap .menu-cat:nth-child(7){  --cat:#5f7a45; --cat-tint:#eaeede; } /* Matcha — green */
.menu-wrap .menu-cat:nth-child(8){  --cat:#3f8a72; --cat-tint:#e3efe9; } /* Mojito — mint */
.menu-wrap .menu-cat:nth-child(9){  --cat:#b06a3a; --cat-tint:#f5e9db; } /* Iced Tea — peach */
.menu-wrap .menu-cat:nth-child(10){ --cat:#b0637a; --cat-tint:#f4e7eb; } /* Milkshakes — rose */
.menu-wrap .menu-cat:nth-child(11){ --cat:#c2783a; --cat-tint:#f6ead9; } /* Juices — orange */
.menu-wrap .menu-cat:nth-child(12){ --cat:#a85638; --cat-tint:#f3e5dc; } /* First Bite — terracotta */
.menu-wrap .menu-cat:nth-child(13){ --cat:#7d7536; --cat-tint:#eeecda; } /* Sandwiches — olive */
.menu-wrap .menu-cat:nth-child(14){ --cat:#79532f; --cat-tint:#f0e7db; } /* Burgers — toasted */
.menu-wrap .menu-cat:nth-child(15){ --cat:#5d7a4a; --cat-tint:#eaeede; } /* Pasta — basil */
.menu-wrap .menu-cat:nth-child(16){ --cat:#b8893a; --cat-tint:#f5edd7; } /* Bake House — butter gold */
.menu-wrap .menu-cat:nth-child(17){ --cat:#936a3c; --cat-tint:#f1e9da; } /* Breads — crust */
.menu-wrap .menu-cat:nth-child(18){ --cat:#b89233; --cat-tint:#f4eed6; } /* All-Day Breakfast — yolk */

.menu-cta{ text-align:center; padding:var(--section-space-tight) var(--gutter) var(--section-space);
  display:flex; flex-direction:column; align-items:center; gap:1.4rem; border-top:1px solid var(--border); }
.menu-cta__title{ font-size:var(--step-3); }
.menu-cta .cta__actions{ display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; margin-top:.6rem; }

/* ============================================================
   OUR STORY — journey timeline
   ============================================================ */
.story-page{ max-width:var(--maxw); margin-inline:auto; }
.story-hero{ min-height:min(64svh,640px); padding:clamp(8rem,15vh,11rem) var(--gutter) clamp(2.5rem,6vh,4rem); text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.2rem; }
.story-hero__title{ font-size:var(--step-5); line-height:.96; }
.story-hero__sub{ max-width:54ch; color:var(--ink-60); font-size:var(--step-1); line-height:1.5; }
.story-hero__scroll{ position:static; margin-top:1rem; color:var(--ink-45); }
.story-hero__scroll .hero__mouse{ border-color:var(--ink-12); }
.story-hero__scroll .hero__scrolltxt{ color:var(--ink-45); }
.story-hero__scroll:hover{ color:var(--coffee); }

.story-time{ position:relative; padding:clamp(.5rem,2vh,1.5rem) var(--gutter) var(--section-space-deep); max-width:1120px; margin-inline:auto; }
.story-time::before{ content:""; position:absolute; top:0; bottom:0; left:50%; width:1px; background:var(--border); transform:translateX(-50%); }

.jrn{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.75rem,4vw,4.5rem); align-items:center;
  margin-bottom:clamp(2.5rem,5vh,4.5rem); }
.jrn:last-child{ margin-bottom:0; }
.jrn__media{ position:relative; aspect-ratio:4/5; border-radius:var(--radius); overflow:hidden;
  box-shadow:0 40px 80px -55px rgba(43,29,22,.5); background:var(--paper-2); }
.jrn__media img{ position:relative; z-index:2; width:100%; height:100%; object-fit:cover; object-position:center 38%; }
.jrn__ph{ position:absolute; inset:0; z-index:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.9rem;
  background:linear-gradient(150deg,#fff,var(--paper-2)); border:1px solid var(--border); border-radius:var(--radius); }
.jrn__ph svg{ width:30px; color:var(--gold); }
.jrn__ph em{ font-family:var(--font-serif); font-style:italic; font-size:1.3rem; color:var(--coffee-2); }

.jrn__body{ padding:0 1rem; }
.jrn__no{ font-family:var(--font-display); font-size:clamp(2.4rem,1.6rem+2vw,3.4rem); color:var(--gold); line-height:1; display:block; }
.jrn__title{ font-family:var(--font-display); font-weight:500; font-size:clamp(1.8rem,1.3rem+1.6vw,2.6rem); color:var(--coffee); margin:.5rem 0 1rem; }
.jrn__body p{ color:var(--ink-60); max-width:46ch; }

/* node dot on the centre line */
.jrn::after{ content:""; position:absolute; left:50%; top:50%; width:13px; height:13px; border-radius:50%;
  background:var(--gold); border:3px solid var(--bg); transform:translate(-50%,-50%); z-index:3; }

/* alternating: reversed rows put media on the right */
.jrn--rev .jrn__media{ order:2; }
.jrn--rev .jrn__body{ order:1; text-align:right; }
.jrn--rev .jrn__body p{ margin-left:auto; }

.story-dest{ background:var(--coffee); color:var(--bg); padding:var(--section-space-deep) var(--gutter);
  position:relative; overflow:hidden; min-height:min(70svh,700px); display:flex; align-items:center; }
.story-dest::before{ content:""; position:absolute; width:55vw; height:55vw; right:-18vw; bottom:-22vw; border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,99,.2),transparent 65%); }
.story-dest__inner{ max-width:var(--maxw); margin-inline:auto; position:relative; z-index:2; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1.4rem; }
.story-dest__media{ width:100%; max-width:480px; border-radius:12px; overflow:hidden; aspect-ratio:16/9; }
.story-dest__media img{ width:100%; height:100%; display:block; object-fit:cover; }
.story-dest__title{ color:var(--bg); font-size:var(--step-4); }
.story-dest__copy{ max-width:50ch; color:rgba(247,243,236,.66); font-size:var(--step-1); line-height:1.5; }
.story-dest__sign{ font-family:var(--font-serif); font-style:italic; font-size:1.3rem; color:var(--gold); }
.story-dest .cta__actions{ display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; margin-top:1rem; }

/* gratitude / closing letter */
.story-thanks{ background:linear-gradient(180deg,var(--paper-2),var(--bg)); padding:var(--section-space-deep) var(--gutter); }
.story-thanks__inner{ max-width:760px; margin-inline:auto; text-align:center; display:flex; flex-direction:column; align-items:center; gap:1.3rem; }
.story-thanks__bean{ width:34px; color:var(--gold); }
.story-thanks__title{ font-size:var(--step-3); }
.story-thanks__letter{ display:flex; flex-direction:column; gap:1.2rem; margin-top:.6rem; }
.story-thanks__letter p{ font-family:var(--font-serif); font-size:clamp(1.25rem,1.05rem+.6vw,1.6rem); line-height:1.65; color:var(--coffee-2); }
.story-thanks__letter em{ font-style:italic; color:var(--gold); }
.story-thanks__sign{ margin-top:1rem; font-size:var(--step--1); letter-spacing:.04em; color:var(--ink-45); line-height:1.8; }
.story-thanks__sign span{ font-family:var(--font-display); font-size:1.5rem; letter-spacing:0; color:var(--coffee); display:inline-block; margin-top:.2rem; }
.story-thanks__actions{ margin-top:1.6rem; }

/* ============================================================
   EXPERIENCE PAGE — compact premium journey
   ============================================================ */
.exp-page{ max-width:none; }
.exp-hero{ position:relative; min-height:92svh; overflow:hidden; color:var(--bg); display:flex; align-items:flex-end; }
.exp-hero__media,.exp-hero__shade{ position:absolute; inset:0; }
.exp-hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center 58%; }
.exp-hero__shade{ background:linear-gradient(90deg,rgba(22,14,10,.88) 0%,rgba(22,14,10,.62) 42%,rgba(22,14,10,.12) 100%),linear-gradient(0deg,rgba(22,14,10,.66),transparent 42%); }
.exp-hero__inner{ position:relative; z-index:1; width:100%; max-width:var(--maxw); margin-inline:auto; padding:clamp(8rem,14vh,10rem) var(--gutter) var(--section-space); }
.exp-hero__title{ color:var(--bg); font-size:var(--step-5); line-height:.94; max-width:12ch; margin:1rem 0 1rem; }
.exp-hero__sub{ max-width:44ch; color:rgba(247,243,236,.76); font-size:var(--step-1); line-height:1.5; }
.exp-hero__meta{ display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.4rem; }
.exp-hero__meta span{ padding:.62rem .9rem; border:1px solid rgba(247,243,236,.24); border-radius:999px; color:rgba(247,243,236,.82); font-size:var(--step--1); letter-spacing:.06em; text-transform:uppercase; backdrop-filter:blur(8px); }

.exp-essentials{ min-height:min(78svh,720px); display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(2rem,5vw,5rem); align-items:center; }
.exp-essentials__title{ font-size:var(--step-4); max-width:12ch; margin:1rem 0 1rem; }
.exp-essentials__copy .lead{ max-width:36ch; }
.exp-essentials__list{ display:grid; gap:.6rem; }
.exp-feature{ display:grid; grid-template-columns:auto 1fr; gap:.2rem 1rem; padding:1rem 0; border-top:1px solid var(--border); }
.exp-feature:last-child{ border-bottom:1px solid var(--border); }
.exp-feature__no{ grid-row:span 2; font-family:var(--font-display); font-size:1.8rem; line-height:1; color:var(--gold); }
.exp-feature h3{ font-family:var(--font-display); font-weight:500; font-size:1.35rem; color:var(--coffee); }
.exp-feature p{ color:var(--ink-60); max-width:38ch; }

.exp-atmosphere{ background:linear-gradient(180deg,#201510,#35251d); color:var(--bg); padding:var(--section-space-deep) var(--gutter); min-height:92svh; display:flex; align-items:center; }
.exp-atmosphere__inner{ width:100%; max-width:var(--maxw); margin-inline:auto; display:grid; grid-template-columns:.72fr 1.28fr; gap:clamp(2rem,4vw,4rem); align-items:center; }
.exp-atmosphere__title{ color:var(--bg); font-size:var(--step-4); max-width:11ch; margin:1rem 0 1rem; }
.exp-atmosphere__copy p:not(.eyebrow){ color:rgba(247,243,236,.72); max-width:38ch; font-size:var(--step-1); line-height:1.5; }
.exp-atmosphere__grid{ display:grid; grid-template-columns:1.2fr .8fr 1fr; grid-template-areas:"counter detail lounge" "counter bite lounge"; gap:.8rem; }
.exp-shot{ overflow:hidden; border-radius:var(--radius); border:1px solid rgba(247,243,236,.12);
  background:radial-gradient(120% 120% at 50% 30%, rgba(247,243,236,.07), rgba(0,0,0,.16));
  box-shadow:0 42px 70px -56px rgba(0,0,0,.75); padding:clamp(.5rem,1vw,.9rem); }
.exp-shot img{ width:100%; height:100%; object-fit:contain; border-radius:calc(var(--radius) - 6px); transition:transform 1s var(--ease); }
.exp-shot:hover img{ transform:scale(1.04); }
.exp-shot--counter{ grid-area:counter; aspect-ratio:4/5; }
.exp-shot--counter img{ object-position:center 58%; }
.exp-shot--detail{ grid-area:detail; aspect-ratio:4/3; }
.exp-shot--bite{ grid-area:bite; aspect-ratio:4/5; }
.exp-shot--lounge{ grid-area:lounge; aspect-ratio:4/5; }

.exp-visit{ min-height:min(84svh,760px); display:grid; grid-template-columns:1fr .9fr; gap:clamp(2rem,5vw,5rem); align-items:center; }
.exp-visit__media{ border-radius:var(--radius); overflow:hidden; aspect-ratio:4/5; box-shadow:0 42px 70px -52px rgba(43,29,22,.5); }
.exp-visit__media img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.exp-visit__title{ font-size:var(--step-4); max-width:11ch; margin:1rem 0 1.2rem; }
.exp-visit__list{ list-style:none; display:grid; gap:.15rem; margin-bottom:1.6rem; }
.exp-visit__list li{ display:flex; align-items:baseline; gap:.8rem; padding:.85rem 0; border-top:1px solid var(--border); }
.exp-visit__list li:last-child{ border-bottom:1px solid var(--border); }
.exp-visit__list span{ font-family:var(--font-display); color:var(--gold); font-size:1.35rem; }
.exp-visit__list strong{ font-family:var(--font-display); font-weight:500; font-size:1.25rem; color:var(--coffee); }
.exp-visit__actions{ justify-content:flex-start; }

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.loc-page{ max-width:var(--maxw); margin-inline:auto; }
.loc-hero{ padding:clamp(9rem,18vh,13rem) var(--gutter) clamp(2.5rem,6vh,4rem); text-align:center; display:flex; flex-direction:column; align-items:center; gap:1.3rem; }
.loc-hero__title{ font-size:var(--step-4); }
.loc-hero__sub{ max-width:54ch; color:var(--ink-60); font-size:var(--step-1); line-height:1.5; }
.loc-hero__cta{ margin-top:.6rem; }

.loc-feature{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,5vw,5rem); align-items:center; padding:clamp(2rem,5vh,4rem) var(--gutter); }
.loc-street{ position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4; background:var(--paper-2); box-shadow:0 50px 90px -55px rgba(43,29,22,.5); }
.loc-street img{ position:relative; z-index:2; width:100%; height:100%; object-fit:cover; }
.loc-street__ph{ position:absolute; inset:0; z-index:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.8rem; background:linear-gradient(150deg,#fff,var(--paper-2)); border:1px solid var(--border); border-radius:var(--radius); }
.loc-street__ph svg{ width:30px; color:var(--gold); }
.loc-street__ph em{ font-family:var(--font-serif); font-style:italic; font-size:1.2rem; color:var(--coffee-2); }
.loc-street__pin{ position:absolute; left:1.1rem; bottom:1.1rem; z-index:2; display:inline-flex; align-items:center; gap:.5rem; background:rgba(247,243,236,.9); backdrop-filter:blur(8px); padding:.55rem 1rem; border-radius:100px; font-size:var(--step--1); letter-spacing:.03em; color:var(--coffee); transition:color .3s; }
.loc-street__pin svg{ width:15px; height:15px; }
.loc-street__pin:hover{ color:var(--gold); }
.loc-feature__title{ font-size:var(--step-3); margin:1rem 0 1.3rem; }
.loc-feature__copy .lead{ margin-bottom:1rem; max-width:40ch; }
.loc-feature__addr{ font-style:normal; margin-top:1.6rem; padding-top:1.4rem; border-top:1px solid var(--border); font-family:var(--font-display); font-size:1.15rem; color:var(--coffee); line-height:1.6; }

.loc-info{ padding:clamp(3rem,7vh,5rem) var(--gutter); }
.loc-info__head{ display:flex; flex-direction:column; gap:1rem; margin-bottom:clamp(2rem,4vw,3rem); }
.loc-info__head h2{ font-size:var(--step-3); }
.loc-info__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; }
.loc-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.8rem 1.6rem; transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.loc-card h3{ font-family:var(--font-display); font-weight:500; font-size:1.35rem; color:var(--coffee); margin-bottom:.7rem; }
.loc-card p{ font-size:.95rem; color:var(--ink-60); line-height:1.6; }
.loc-card:hover{ transform:translateY(-6px); box-shadow:0 36px 60px -44px rgba(43,29,22,.4); border-color:var(--gold); }

.loc-map{ padding:clamp(2rem,4vh,3rem) var(--gutter) clamp(4rem,8vh,6rem); }
.loc-map__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:2rem; margin-bottom:1.6rem; flex-wrap:wrap; }
.loc-map__head h2{ font-size:var(--step-3); margin-top:1rem; }
.loc-map__frame{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); aspect-ratio:16/7; box-shadow:0 50px 90px -60px rgba(43,29,22,.5); }
.loc-map__frame iframe{ width:100%; height:100%; border:0; display:block; filter:saturate(.92) contrast(1.02); }

/* ============================================================
   PREMIUM SIGNATURE LAYER (grain · cursor · curtain · reveals)
   ============================================================ */
/* film grain */
.grain{ position:fixed; inset:0; z-index:120; pointer-events:none; opacity:.05; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:170px 170px; }

/* custom cursor */
.cursor{ position:fixed; top:0; left:0; z-index:300; pointer-events:none; width:38px; height:38px; margin:-19px 0 0 -19px;
  border:1px solid var(--gold); border-radius:50%;
  transition:width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .35s, border-color .35s, opacity .3s; }
.cursor__dot{ position:absolute; top:50%; left:50%; width:4px; height:4px; margin:-2px 0 0 -2px; border-radius:50%; background:var(--gold); transition:opacity .3s; }
.cursor.is-hover{ width:66px; height:66px; margin:-33px 0 0 -33px; background:rgba(200,154,99,.12); }
.cursor.is-hover .cursor__dot{ opacity:0; }
.cursor.is-down{ width:28px; height:28px; margin:-14px 0 0 -14px; }
html.has-cursor, html.has-cursor *{ cursor:none !important; }
html.has-cursor input, html.has-cursor textarea{ cursor:auto !important; }
@media (hover:none){ .cursor{ display:none; } html.has-cursor, html.has-cursor *{ cursor:auto !important; } }

/* page-transition curtain */
.curtain{ position:fixed; inset:0; z-index:950; background:var(--coffee); display:grid; place-items:center; pointer-events:none; will-change:transform; }
.curtain__bean{ width:42px; color:var(--gold); }

/* per-line heading reveal */
.r-line{ display:block; overflow:hidden; padding-bottom:.02em; }
.r-inner{ display:block; will-change:transform; }

/* active nav link */
.nav__links a.is-current{ color:var(--coffee); }
.nav__links a.is-current::after{ width:100%; }
body:not(.page-light) .nav:not(.is-solid) .nav__links a.is-current{ color:#fff; }

@media (prefers-reduced-motion:reduce){ .grain{ display:none; } }

/* ============================================================
   REVEAL STATES (driven by GSAP; fallback visible)
   ============================================================ */
.reveal-fade,.reveal-card{ will-change:transform,opacity; }
.js-ready .reveal-fade{ opacity:0; transform:translateY(26px); }
.js-ready .reveal-card{ opacity:0; transform:translateY(40px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .craft__content{ grid-template-columns:1fr; }
  .craft__feature{ aspect-ratio:16/9; max-height:none; justify-self:stretch; }
  .masonry{ columns:2; }
  .hero__meta{ gap:1.8rem; }
  .experience__sticky{ grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr); }
  .experience__steps{ grid-column:1 / -1; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
  .experience__steps li{ height:100%; }
  .exp-rhythm__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .exp-mosaic{
    grid-template-columns:1fr 1fr; grid-template-areas:
      "counter detail"
      "exterior exterior"
      "bite retail"
      "lounge lounge";
  }
}
@media (max-width:860px){
  .nav__links,.nav__cta{ display:none; }
  .nav__burger{ display:flex; }
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ order:-1; max-width:380px; }
  .about__grid,.food,.experience__sticky,.bakes__sticky,.craft__head,.footer__top{ grid-template-columns:1fr; }
  .craft__intro{ grid-column:1; }
  .food__media{ order:-1; }
  .experience__sticky{ text-align:left; min-height:auto; }
  .experience__stage{ min-height:430px; }
  .bakes__stage{ order:-1; }
  .experience__steps{ grid-template-columns:1fr; }
  .footer__cols{ grid-template-columns:repeat(2,1fr); }
  .menu-wrap{ columns:1; }
  .loc-feature{ grid-template-columns:1fr; }
  .loc-street{ order:-1; }
  .loc-info__grid{ grid-template-columns:repeat(2,1fr); }
  .loc-map__frame{ aspect-ratio:4/3; }
  .exp-overview__grid,.exp-rhythm__head,.exp-rhythm__grid{ grid-template-columns:1fr; }
  .exp-overview__title,.exp-rhythm__title,.exp-montage__title{ max-width:none; }
  .exp-mosaic{
    grid-template-columns:1fr 1fr; grid-template-areas:
      "counter counter"
      "detail exterior"
      "bite retail"
      "lounge lounge";
  }
  /* story timeline stacks; line shifts to the left rail */
  .story-time::before{ left:18px; }
  .jrn{ grid-template-columns:1fr; gap:1.4rem; padding-left:48px; margin-bottom:3rem; }
  .jrn__media{ order:1 !important; }
  .jrn__body{ order:2 !important; padding:0; text-align:left !important; }
  .jrn--rev .jrn__body p{ margin-left:0; }
  .jrn__body p{ max-width:none; }
  .jrn::after{ left:18px; top:0; transform:translate(-50%,0); }
}
@media (max-width:560px){
  .drinks__grid,.masonry,.loc-info__grid{ grid-template-columns:1fr; columns:1; }
  .craft__content{ gap:2rem; }
  .craft-step__no{ font-size:1.8rem; }
  .hero__meta{ flex-wrap:wrap; }
  .about__stats{ gap:1.4rem; }
  .footer__bottom{ flex-direction:column; gap:.4rem; }
  .experience__sticky{ padding-block:var(--section-space); }
  .experience__stage{ min-height:360px; }
  .experience__drink .frame-canvas{ max-width:340px; }
  .experience__caption{ position:relative; left:auto; bottom:auto; justify-self:start; margin-top:.5rem; }
  .exp-mosaic{
    grid-template-columns:1fr; grid-template-areas:
      "counter"
      "detail"
      "exterior"
      "bite"
      "retail"
      "lounge";
  }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .js-ready .reveal-fade,.js-ready .reveal-card{ opacity:1; transform:none; }
  .hero__scrollline::after,.loader .bean{ animation:none; }
}
