@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=Great+Vibes&display=swap');

:root {
  --ink: #2b1b12;
  --espresso: #3f2a1d;
  --cocoa: #5b3b26;
  --latte: #b9824f;
  --gold: #b7894d;
  --cream: #fffaf0;
  --paper: #f7efe2;
  --sand: #ead8bf;
  --blush: #f5c8bd;
  --sage: #9aac82;
  --clay: #c1775d;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(63, 42, 29, .16);
  --shadow-soft: 0 16px 46px rgba(63, 42, 29, .11);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --nav-height: 128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 200, 189, .28), transparent 32rem),
    radial-gradient(circle at 82% 8%, rgba(183, 137, 77, .20), transparent 26rem),
    linear-gradient(180deg, #fffaf2 0%, #f7efe2 52%, #fffaf2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  z-index: -1;
  background-image:
    radial-gradient(rgba(91, 59, 38, .13) 1px, transparent 1px),
    radial-gradient(rgba(183, 137, 77, .10) 1px, transparent 1px);
  background-position: 0 0, 18px 24px;
  background-size: 72px 72px, 92px 92px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: rgba(183, 137, 77, .24); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 9999;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .22s ease;
}
.skip-link:focus { top: 16px; }

.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--clay), var(--sage));
  z-index: 9998;
  box-shadow: 0 0 20px rgba(183, 137, 77, .5);
}

.container {
  width: min(calc(100% - 38px), var(--max));
  margin-inline: auto;
}

.section { padding: clamp(72px, 8vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(56px, 6vw, 92px) 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 6.5rem);
  line-height: .88;
  letter-spacing: -.045em;
  margin: 0 0 18px;
  color: var(--espresso);
}
.section-title .script, .script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--latte);
}
.section-lead {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  max-width: 760px;
  color: rgba(43, 27, 18, .78);
  margin: 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.section-head.center { text-align: center; display: block; }
.section-head.center .section-lead { margin-inline: auto; }

.brand-mark {
  width: 128px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-mark.small { width: 98px; }
.brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.46rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .98;
  max-width: 150px;
}
.brand-sub { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin-top: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, .74);
  border-bottom: 1px solid rgba(91, 59, 38, .10);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 240, .92);
  box-shadow: 0 10px 30px rgba(63, 42, 29, .08);
}
.nav-wrap {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 14px; min-width: 285px; }
.nav-brand img { width: 188px; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: rgba(43, 27, 18, .78);
  font-size: .92rem;
  font-weight: 650;
}
.nav-links a { position: relative; padding: 10px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width .24s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 170px; }
.nav-toggle {
  display: none;
  border: 1px solid rgba(91,59,38,.16);
  background: rgba(255,255,255,.45);
  border-radius: 999px;
  color: var(--ink);
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px 0; border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(91,59,38,.18);
  background: rgba(255,255,255,.55);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 10px 24px rgba(63, 42, 29, .06);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(63, 42, 29, .12); }
.btn-primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #d8ad70); color: var(--ink); border-color: transparent; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-small { min-height: 38px; padding: 9px 15px; font-size: .88rem; }
.icon-btn { width: 46px; height: 46px; padding: 0; border-radius: 999px; }

.hero {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 80px) 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -16% -10%;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(91, 59, 38, .16), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(183,137,77,.35);
  color: var(--cocoa);
  background: rgba(255, 255, 255, .52);
  border-radius: 999px;
  padding: 8px 13px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 8px 26px rgba(63, 42, 29, .06);
}
.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .78;
  margin: 28px 0 24px;
  letter-spacing: -.07em;
  color: var(--espresso);
}
.hero-title .script { display: block; font-size: .43em; margin-left: .08em; line-height: .92; }
.hero-title-logo {
  margin: 22px 0 20px;
  line-height: 1;
  letter-spacing: 0;
}
.hero-title-logo img {
  width: min(780px, 100%);
  max-height: none;
  object-fit: contain;
  object-position: left center;
  overflow: visible;
  filter: drop-shadow(0 20px 30px rgba(63,42,29,.10));
}
.hero-lead {
  max-width: 620px;
  color: rgba(43,27,18,.78);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px; }
.stat-chip {
  min-width: 130px;
  padding: 16px 18px;
  border: 1px solid rgba(91,59,38,.12);
  background: rgba(255,255,255,.50);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(63,42,29,.07);
}
.stat-chip strong { display: block; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .98rem; line-height: 1.1; color: var(--espresso); letter-spacing: -.02em; font-weight: 850; }
.stat-chip span { display: block; margin-top: 7px; color: rgba(43,27,18,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 750; }

.hero-visual {
  position: relative;
  min-height: min(68svh, 700px);
}
.hero-frame {
  position: absolute;
  inset: 0;
  border-radius: clamp(28px, 5vw, 54px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.54);
  transform: rotate(-1deg);
  background: var(--paper);
}
.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 900ms ease, transform 2200ms ease;
}
.hero-frame img.is-active { opacity: 1; transform: scale(1); }
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,21,12,.06), rgba(35,21,12,.38));
}
.hero-drink-card {
  position: absolute;
  left: -8%;
  bottom: 7%;
  width: min(260px, 44vw);
  border-radius: 30px;
  padding: 12px;
  background: rgba(255, 252, 246, .72);
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transform: rotate(2.4deg);
}
.hero-drink-card img { border-radius: 23px; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-drink-card p { margin: 10px 6px 2px; font-size: .86rem; font-weight: 800; display: flex; justify-content: space-between; gap: 8px; }
.floating-badge {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-align: center;
  background: rgba(255,250,240,.78);
  border: 1px solid rgba(183,137,77,.28);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  color: var(--cocoa);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1;
  animation: float 5.8s ease-in-out infinite;
}
.floating-badge small { display: block; font-family: Inter, sans-serif; font-size: .58rem; text-transform: uppercase; letter-spacing: .18em; margin-top: 7px; color: var(--gold); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(91,59,38,.12);
  background: rgba(255,255,255,.32);
}
.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
  color: var(--cocoa);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}
.marquee-track span { display: inline-flex; gap: 34px; align-items: center; }
.marquee-track span::after { content: "✦"; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card {
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(91,59,38,.11);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: -40% -50% auto auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(183,137,77,.18), transparent 72%);
}
.feature-card .number { color: var(--gold); font-weight: 900; letter-spacing: .16em; font-size: .74rem; }
.feature-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.75rem; line-height: 1; margin: 28px 0 12px; color: var(--espresso); }
.feature-card p { margin: 0; color: rgba(43,27,18,.70); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.image-stack { position: relative; min-height: 520px; }
.image-stack .main-img,
.image-stack .side-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.65);
}
.image-stack .main-img { inset: 0 12% 8% 0; width: 88%; height: 92%; }
.image-stack .side-img { right: 0; bottom: 0; width: 44%; height: 44%; }
.text-panel {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(91,59,38,.11);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
}
.text-panel p { color: rgba(43,27,18,.76); }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.pill { border: 1px solid rgba(91,59,38,.14); border-radius: 999px; padding: 8px 12px; background: rgba(255,250,240,.62); color: var(--cocoa); font-size: .84rem; font-weight: 700; }

.showcase-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.poster-feature,
.visual-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(91,59,38,.11);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.poster-feature { display: grid; grid-template-columns: .86fr 1.14fr; }
.poster-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 610px; }
.poster-copy { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.poster-copy h3, .visual-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); line-height: .9; margin: 0 0 16px; color: var(--espresso); }
.poster-copy p { color: rgba(43,27,18,.76); }
.flavor-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.flavor-list li { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 10px; border-bottom: 1px dashed rgba(91,59,38,.18); color: rgba(43,27,18,.76); }
.flavor-list strong { color: var(--espresso); }
.drink-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.visual-card { padding: 12px; }
.visual-card img { width: 100%; height: 280px; object-fit: cover; border-radius: 26px; background: white; }
.visual-card figcaption { padding: 14px 8px 8px; font-weight: 850; display: flex; justify-content: space-between; gap: 10px; }
.visual-card figcaption small { display: block; margin-top: 4px; color: rgba(43,27,18,.58); font-weight: 600; }

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 32%);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.horizontal-scroll > * { scroll-snap-align: start; }
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 430px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(91,59,38,.11);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.product-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; transform: scale(1.01); transition: transform .55s ease, filter .55s ease; }
.product-card:hover img { transform: scale(1.06); filter: saturate(1.05); }
.product-card .overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  border-radius: 22px;
  background: rgba(255,250,240,.78);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  padding: 16px;
}
.product-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; line-height: 1; margin: 0 0 6px; color: var(--espresso); }
.product-card p { margin: 0; color: rgba(43,27,18,.66); font-size: .9rem; }
.product-card .price { position: absolute; top: 14px; right: 14px; border-radius: 999px; padding: 7px 11px; background: rgba(43,27,18,.82); color: var(--cream); font-weight: 850; }

.bento-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.bento-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(91,59,38,.10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 340px;
  position: relative;
}
.bento-card.tall { grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }
.bento-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bento-card:hover img { transform: scale(1.04); }
.bento-card .bento-caption {
  position: absolute;
  inset: auto 14px 14px 14px;
  background: rgba(255,250,240,.82);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 22px;
  padding: 14px;
  backdrop-filter: blur(16px);
}
.bento-caption strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; color: var(--espresso); line-height: 1; display: block; }
.bento-caption span { font-size: .86rem; color: rgba(43,27,18,.66); }

.craft-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.craft-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(91,59,38,.11);
  box-shadow: var(--shadow-soft);
}
.craft-card img { width: 100%; aspect-ratio: 10 / 13.5; object-fit: cover; }
.craft-card div { padding: 22px; }
.craft-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; margin: 0 0 10px; color: var(--espresso); }
.craft-card p { margin: 0; color: rgba(43,27,18,.70); }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; counter-reset: step; }
.process-step {
  counter-increment: step;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(91,59,38,.11);
  box-shadow: var(--shadow-soft);
}
.process-step::before { content: "0" counter(step); color: var(--gold); font-weight: 900; letter-spacing: .18em; font-size: .75rem; }
.process-step h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; margin: 20px 0 8px; line-height: 1; }
.process-step p { margin: 0; color: rgba(43,27,18,.68); }

.gallery-filter, .menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 34px;
}
.filter-btn, .tab-btn {
  border: 1px solid rgba(91,59,38,.15);
  background: rgba(255,255,255,.50);
  color: rgba(43,27,18,.76);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.filter-btn:hover, .tab-btn:hover { transform: translateY(-1px); }
.filter-btn.is-active, .tab-btn.is-active { background: var(--ink); color: var(--cream); }
.gallery-grid {
  columns: 4 230px;
  column-gap: 18px;
}
.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(91,59,38,.10);
  box-shadow: 0 12px 32px rgba(63,42,29,.08);
  cursor: zoom-in;
  break-inside: avoid;
  position: relative;
}
.gallery-item img { width: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item[hidden] { display: none; }
.gallery-item figcaption {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  border-radius: 16px;
  background: rgba(255,250,240,.82);
  padding: 8px 10px;
  font-size: .78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.menu-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(91,59,38,.11);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.menu-card img { width: 100%; aspect-ratio: 1 / .9; object-fit: cover; background: white; }
.menu-card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.menu-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.75rem; line-height: 1; margin: 0; color: var(--espresso); }
.menu-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--gold); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.menu-card p { margin: 0; color: rgba(43,27,18,.69); }
.menu-card footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; padding-top: 10px; border-top: 1px dashed rgba(91,59,38,.17); }
.price-label { font-weight: 900; color: var(--espresso); }
.note { color: rgba(43,27,18,.60); font-size: .9rem; }
.notice-card {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(91,59,38,.12);
  color: rgba(43,27,18,.74);
}

.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.visit-card, .map-card, .faq-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(91,59,38,.11);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.visit-card { padding: clamp(28px, 4vw, 44px); }
.info-list { display: grid; gap: 18px; margin: 28px 0; }
.info-row { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding-bottom: 18px; border-bottom: 1px dashed rgba(91,59,38,.18); }
.info-row dt { font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--gold); }
.info-row dd { margin: 0; color: rgba(43,27,18,.78); font-weight: 650; }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: sepia(.14) saturate(.95); }
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.faq-card { padding: 24px; }
.faq-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; line-height: 1; margin: 0 0 10px; color: var(--espresso); }
.faq-card p { margin: 0; color: rgba(43,27,18,.70); }

.cta-band {
  position: relative;
  border-radius: clamp(30px, 4vw, 54px);
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  box-shadow: var(--shadow);
  background: var(--espresso);
  color: var(--cream);
  isolation: isolate;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: .58; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,27,18,.86), rgba(43,27,18,.32)); z-index: -1; }
.cta-content { padding: clamp(30px, 6vw, 72px); max-width: 640px; }
.cta-content h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.6rem, 6vw, 6rem); line-height: .88; letter-spacing: -.05em; margin: 0 0 16px; }
.cta-content p { color: rgba(255,250,240,.82); font-size: 1.07rem; }

.site-footer {
  padding: 58px 0 28px;
  background: rgba(43,27,18,.94);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "ScentTok";
  position: absolute;
  right: -2vw;
  bottom: -54px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: 1;
  color: rgba(255,250,240,.045);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr .85fr; gap: 28px; position: relative; }
.site-footer .brand-mark { filter: brightness(0) invert(1); mix-blend-mode: normal; opacity: .86; }
.footer-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; margin: 0 0 12px; }
.footer-grid p, .footer-grid a { color: rgba(255,250,240,.72); }
.footer-grid a:hover { color: var(--cream); }
.footer-list { display: grid; gap: 8px; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,250,240,.12); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(255,250,240,.58); font-size: .88rem; position: relative; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 12, 8, .84);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox-inner { max-width: min(1100px, 92vw); max-height: 88vh; position: relative; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox-caption { color: var(--cream); margin-top: 12px; text-align: center; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,250,240,.9);
  cursor: pointer;
  font-size: 1.3rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 850;
  display: grid;
  gap: 10px;
}
.floating-actions a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(43,27,18,.92);
  color: var(--cream);
  box-shadow: 0 14px 32px rgba(43,27,18,.24);
  border: 1px solid rgba(255,250,240,.2);
  font-weight: 900;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.page-hero {
  padding: clamp(64px, 9vw, 130px) 0 clamp(42px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}
.page-hero .container { display: grid; grid-template-columns: 1fr .72fr; gap: 40px; align-items: end; }
.page-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 10vw, 9rem);
  line-height: .76;
  letter-spacing: -.07em;
  margin: 20px 0;
  color: var(--espresso);
}
.page-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 430px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.page-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1080px) {
  :root { --nav-height: 112px; }
  .nav-brand { min-width: 250px; }
  .nav-brand img { width: 146px; height: auto; }
  .brand-word { font-size: 1.18rem; max-width: 104px; }
  .brand-sub { font-size: .54rem; }
  .nav-actions { min-width: auto; }
  .nav-links { gap: 16px; }
  .card-grid, .craft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.tall { grid-row: span 1; }
  .showcase-row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-height: 86px; }
  .nav-brand { min-width: auto; }
  .nav-brand img { width: 76px; height: auto; }
  .brand-word { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 16px;
    right: 16px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,250,240,.96);
    border: 1px solid rgba(91,59,38,.12);
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    transform: scaleY(.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .nav-links { opacity: 1; transform: scaleY(1); pointer-events: auto; }
  .nav-links a { width: 100%; padding: 14px 10px; border-bottom: 1px solid rgba(91,59,38,.08); }
  .nav-actions .btn { display: none; }
  .hero-grid, .split, .visit-grid, .page-hero .container { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 540px; }
  .hero-drink-card { left: 10px; width: 210px; }
  .floating-badge { right: 10px; width: 120px; height: 120px; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 20px; }
  .poster-feature { grid-template-columns: 1fr; }
  .poster-feature img { min-height: auto; max-height: 720px; object-fit: cover; object-position: top; }
  .drink-mini-grid, .process, .faq-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .image-stack { min-height: 460px; }
  .horizontal-scroll { grid-auto-columns: minmax(252px, 76vw); }
  .map-card iframe { min-height: 420px; }
  .page-visual { height: 330px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero-title { font-size: clamp(3.7rem, 18vw, 6rem); }
  .hero-title-logo img { width: min(100%, 560px); max-height: none; }
  .hero-visual { min-height: 440px; }
  .hero-frame { transform: none; }
  .floating-badge { display: none; }
  .hero-drink-card { width: 170px; bottom: -4px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-chip { min-width: 0; padding: 14px; }
  .card-grid, .craft-grid, .menu-grid, .bento-grid, .drink-mini-grid, .process, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .image-stack { min-height: 390px; }
  .image-stack .main-img { inset: 0 0 0 0; width: 100%; height: 100%; }
  .image-stack .side-img { display: none; }
  .visit-card { padding: 24px; }
  .info-row { grid-template-columns: 1fr; gap: 5px; }
  .floating-actions { right: 12px; bottom: 12px; }
  .floating-actions a { width: 44px; height: 44px; }
  .page-title { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .page-hero { padding-top: 46px; }
  .page-visual { height: 260px; transform: none; }
  .footer-bottom { display: block; }
}

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