/* ---------- TOKENS ---------- */
:root {
  /* Inherited from presentation slides */
  --beige: #ECE2D2;          /* main background */
  --beige-soft: #F2EADC;     /* lighter card surfaces */
  --beige-warm: #E5D9C4;     /* hover/banner */
  --brown: #3D3329;          /* dark pill / headings */
  --brown-deep: #2C241D;     /* hover dark */
  --brown-soft: #5A4B3C;     /* body text */
  --brown-muted: #8A7765;    /* secondary text */
  --bronze: #9B7E3F;         /* olive/gold cards */
  --bronze-deep: #856A33;    /* bronze hover */
  --cream: #F5EBDC;          /* on-dark text */
  --line: rgba(61, 51, 41, 0.18);
  --line-strong: rgba(61, 51, 41, 0.4);

  --serif: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-pill: 999px;
  --r-card: 28px;
  --r-card-lg: 36px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --section-pad: clamp(80px, 10vw, 160px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--beige);
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--brown); color: var(--cream); }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ---------- SPLASH SCREEN ---------- */
.splash {
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.splash__panel {
  position: absolute; left: 0; right: 0;
  height: 50%;
  background: var(--brown);
  transition: transform 1s var(--ease) 2.6s;
}
.splash__panel--top { top: 0; }
.splash__panel--bottom { bottom: 0; }

.splash__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  color: var(--cream);
  z-index: 2;
  transition: opacity 0.6s var(--ease) 2.4s;
}

.splash__mark {
  position: relative;
  width: 230px; height: 230px;
  color: var(--cream);
  display: grid; place-items: center;
}
.splash__ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: ringDraw 1.6s var(--ease) 0.2s forwards;
  transform-origin: center;
}
.splash__logo {
  width: 78%; height: 78%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.7);
  animation: logoIn 1s var(--ease) 0.6s forwards, logoFloat 4s var(--ease) 1.6s infinite;
  filter: drop-shadow(0 0 30px rgba(245,235,220,0.15));
}

@keyframes ringDraw {
  0% { stroke-dashoffset: 1; transform: rotate(-90deg); }
  100% { stroke-dashoffset: 0; transform: rotate(0); }
}
@keyframes logoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes logoFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.02) translateY(-4px); }
}

.splash__wordmark {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  display: flex; gap: 0.04em;
}
.splash__wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50%);
  animation: charUp 0.7s var(--ease) forwards;
}
.splash__wordmark span:nth-child(1) { animation-delay: 1.5s; }
.splash__wordmark span:nth-child(2) { animation-delay: 1.55s; }
.splash__wordmark span:nth-child(3) { animation-delay: 1.6s; }
.splash__wordmark span:nth-child(4) { animation-delay: 1.65s; }
.splash__wordmark span:nth-child(5) { animation-delay: 1.7s; }
.splash__wordmark span:nth-child(6) { animation-delay: 1.78s; color: var(--bronze); font-style: italic; }
.splash__wordmark span:nth-child(7) { animation-delay: 1.85s; }
.splash__wordmark span:nth-child(8) { animation-delay: 1.9s; }
.splash__wordmark span:nth-child(9) { animation-delay: 1.95s; }

@keyframes charUp { to { opacity: 1; transform: translateY(0); } }

.splash__sub {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(245,235,220,0.7);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 2.1s forwards;
}
.splash__sub i {
  width: 24px; height: 1px;
  background: rgba(245,235,220,0.5);
}

.splash__progress {
  width: 200px; height: 1px;
  background: rgba(245,235,220,0.2);
  position: relative; overflow: hidden;
  margin-top: 12px;
}
.splash__progress span {
  position: absolute; inset: 0;
  background: var(--cream);
  transform: scaleX(0); transform-origin: left;
  animation: splashProg 2.5s var(--ease) forwards;
}
@keyframes splashProg {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* End-state animation: panels split */
.splash.is-done .splash__panel--top { transform: translateY(-100%); }
.splash.is-done .splash__panel--bottom { transform: translateY(100%); }
.splash.is-done .splash__center { opacity: 0; }
.splash.is-done { transition-delay: 0.6s; pointer-events: none; }
.splash.is-done.is-gone { visibility: hidden; }

/* ---------- CURSOR ---------- */
.cursor, .cursor-dot {
  position: fixed; pointer-events: none;
  z-index: 9997;
  border-radius: 50%;
  transition: transform 0.18s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
  mix-blend-mode: multiply;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--brown);
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--brown);
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 70px; height: 70px; background: rgba(61,51,41,0.06); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- SHARED PILL (the big design signature from the slides) ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  border-radius: var(--r-pill);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: all 0.4s var(--ease);
}
.pill--dark {
  background: var(--brown);
  color: var(--cream);
}
.pill--dark:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px rgba(44, 36, 29, 0.5);
}

.pill-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  padding: clamp(20px, 3.5vw, 38px) clamp(36px, 6vw, 80px);
  letter-spacing: -0.02em;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(236, 226, 210, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex; align-items: center;
  color: var(--brown);
}
.nav__brand-wordmark {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease), height 0.4s var(--ease);
}
.nav__brand:hover .nav__brand-wordmark {
  transform: scale(1.04);
}
.nav.is-scrolled .nav__brand-wordmark {
  height: 45px;
}
@media (max-width: 520px) {
  .nav__brand-wordmark { height: 22px; }
}
.nav__links {
  display: flex; gap: 32px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--brown);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brown);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  font-size: 0.92rem; font-weight: 500;
  font-family: var(--sans);
  padding: 12px 22px;
}
.nav__menu {
  display: none;
  width: 44px; height: 44px;
  position: relative;
}
.nav__menu span {
  position: absolute; left: 12px;
  width: 20px; height: 1.5px;
  background: var(--brown);
  transition: transform 0.4s var(--ease);
}
.nav__menu span:nth-child(1) { top: 18px; }
.nav__menu span:nth-child(2) { top: 25px; }
.nav__menu.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__menu.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: block; }
}

.drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--brown);
  color: var(--cream);
  padding: 120px 40px;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column; gap: 24px;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif); font-size: 2rem;
  letter-spacing: -0.01em;
  position: relative; width: max-content;
}
.drawer a::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.drawer a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,126,63,0.18), transparent 70%);
}
.hero__circle--1 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  animation: float 18s ease-in-out infinite;
}
.hero__circle--2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(61,51,41,0.12), transparent 70%);
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.float {
  position: absolute;
  width: 60px; height: 120px;
  color: var(--brown);
  opacity: 0.35;
}
.float--1 { top: 22%; left: 6%; animation: sway 6s ease-in-out infinite; }
.float--2 { bottom: 18%; right: 8%; transform: rotate(20deg); animation: sway 7s ease-in-out infinite reverse; }
@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
.float--2 { animation-name: sway2; }
@keyframes sway2 {
  0%, 100% { transform: rotate(15deg); }
  50% { transform: rotate(25deg); }
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__emblem {
  position: relative;
  width: clamp(260px, 32vw, 380px);
  height: clamp(260px, 32vw, 380px);
  margin: 0 auto 36px;
  color: var(--brown);
  animation: emblemIn 1.4s var(--ease) 0.3s both;
}

/* Center logo — static, breathes softly */
.hero__emblem-logo {
  position: absolute;
  inset: 24%;
  width: 52%; height: 52%;
  object-fit: contain;
  z-index: 4;
  animation: emblemBreath 5s var(--ease) infinite;
  filter: drop-shadow(0 6px 24px rgba(61,51,41,0.12));
}

/* Outer rotating curved-text ring */
.hero__emblem-text {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  color: var(--brown);
  opacity: 0.85;
  animation: spinCW 60s linear infinite;
}

/* Tick ring — counter-rotates */
.hero__emblem-ticks {
  position: absolute; inset: 6%;
  width: 88%; height: 88%;
  z-index: 2;
  color: var(--brown-muted);
  opacity: 0.75;
  animation: spinCCW 80s linear infinite;
}

/* Static inner thin ring */
.hero__emblem-inner {
  position: absolute; inset: 18%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  z-index: 3;
  animation: emblemBreath 5s var(--ease) infinite;
}

/* Cardinal compass dots */
.hero__emblem-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  z-index: 3;
  box-shadow: 0 0 0 4px var(--beige);
}
.hero__emblem-dot--n { top: -3px; left: calc(50% - 3px); }
.hero__emblem-dot--s { bottom: -3px; left: calc(50% - 3px); }
.hero__emblem-dot--e { right: -3px; top: calc(50% - 3px); }
.hero__emblem-dot--w { left: -3px; top: calc(50% - 3px); }
.hero__emblem-dot {
  animation: dotPulse 3s var(--ease) infinite;
}
.hero__emblem-dot--s { animation-delay: 0.75s; }
.hero__emblem-dot--e { animation-delay: 1.5s; }
.hero__emblem-dot--w { animation-delay: 2.25s; }

/* Orbiting leaf-flecks (slow, opposite to text) */
.hero__emblem-orbit {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  color: var(--bronze);
  animation: spinCW 42s linear infinite reverse;
}

@keyframes emblemIn {
  from { transform: scale(0.5) rotate(-30deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes emblemBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
@keyframes spinCW { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--brown);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
}
.hero__title .word {
  display: inline-flex;
  overflow: hidden;
}
.hero__title .char {
  display: inline-block;
  transform: translateY(110%);
  animation: charIn 1s var(--ease) forwards;
}
.hero__title .word:nth-child(1) .char:nth-child(1) { animation-delay: 0.5s; }
.hero__title .word:nth-child(1) .char:nth-child(2) { animation-delay: 0.55s; }
.hero__title .word:nth-child(1) .char:nth-child(3) { animation-delay: 0.6s; }
.hero__title .word:nth-child(1) .char:nth-child(4) { animation-delay: 0.65s; }
.hero__title .word:nth-child(1) .char:nth-child(5) { animation-delay: 0.7s; }
.hero__title .word:nth-child(2) .char { animation-delay: 0.8s; }
.hero__title .word:nth-child(3) .char:nth-child(1) { animation-delay: 0.9s; }
.hero__title .word:nth-child(3) .char:nth-child(2) { animation-delay: 0.95s; }
.hero__title .word:nth-child(3) .char:nth-child(3) { animation-delay: 1s; }
@keyframes charIn { to { transform: translateY(0); } }

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 36px;
  font-family: var(--sans);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brown);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.2s forwards;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__tagline i {
  color: var(--bronze);
  font-style: normal;
  font-size: 1.4em;
}

.hero__sub {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--brown-soft);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.4s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex; gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.55s forwards;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-size: 0.95rem; font-weight: 500;
  transition: all 0.4s var(--ease);
}
.btn--primary {
  background: var(--brown);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--brown-deep);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -22px rgba(44, 36, 29, 0.55);
}
.btn--ghost {
  border: 1px solid var(--brown);
  color: var(--brown);
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--cream);
}
.btn--full { width: 100%; justify-content: center; padding: 20px; }

.hero__meta {
  display: flex; justify-content: center; gap: clamp(40px, 8vw, 100px);
  margin: 0 auto 60px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.7s forwards;
}
.hero__meta > div {
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.hero__meta-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brown-muted);
}

.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--brown-muted);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.9s forwards;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: var(--brown-muted);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--brown);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--brown);
  color: var(--cream);
  padding: 26px 0;
  overflow: hidden;
  border-radius: 0;
}
.marquee__track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.marquee__track i {
  color: var(--bronze);
  font-style: normal;
  font-size: 0.7em;
}
.marquee__track span:hover { font-style: italic; color: var(--bronze); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD (the big pill on the slides) ---------- */
.section-head {
  max-width: var(--container);
  margin: 0 auto var(--section-pad);
  padding: 0 clamp(20px, 4vw, 48px);
  margin-bottom: 60px;
}

/* Push section paddings */
.story, .menu, .deli, .opportunity, .location, .visit {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ---------- STORY ---------- */
.story__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story__col--text {
  display: flex; flex-direction: column; gap: 22px;
  max-width: 560px;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--brown);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.lede em { font-style: italic; color: var(--bronze); }
.story p { color: var(--brown-soft); }
.story p b { color: var(--brown); font-weight: 500; }

.story__list {
  margin-top: 20px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.story__list li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--brown);
  transition: padding-left 0.4s var(--ease);
}
.story__list li:hover { padding-left: 12px; }
.story__list li b {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--bronze);
  letter-spacing: 0.05em;
  font-weight: 500;
  min-width: 28px;
}

.story__art {
  position: sticky; top: 120px;
  aspect-ratio: 4/5;
  background: var(--beige-soft);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  display: grid; place-items: center;
  padding: 60px;
  position: relative;
}
.story__laurel {
  position: absolute;
  width: 60%; height: auto;
  color: var(--brown);
  opacity: 0.92;
  top: 8%; left: 50%;
  transform: translateX(-50%);
}
.story__quote {
  position: relative;
  background: var(--brown);
  color: var(--cream);
  padding: 32px 28px 28px;
  border-radius: var(--r-card);
  max-width: 78%;
  margin-top: auto;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}
.story__quote-mark {
  position: absolute;
  top: -8px; left: 16px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--bronze);
}
.story__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

@media (max-width: 880px) {
  .story__container { grid-template-columns: 1fr; }
  .story__art { position: static; aspect-ratio: 1/1; }
}

/* ---------- OPPORTUNITY (BRONZE CARDS — straight from the slides) ---------- */
.opportunity__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 760px) { .opportunity__grid { grid-template-columns: 1fr; } }

.bronze {
  background: var(--bronze);
  color: var(--cream);
  border-radius: var(--r-card-lg);
  padding: 36px clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: center;
  transition: all 0.5s var(--ease);
  min-height: 240px;
}
.bronze::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,235,220,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.bronze:hover {
  background: var(--bronze-deep);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(133, 106, 51, 0.55);
}
.bronze:hover::before { opacity: 1; }

.bronze__inner { position: relative; z-index: 2; }
.bronze__inner h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.bronze__inner p {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.92;
}
.bronze__art {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  opacity: 0.85;
  position: relative; z-index: 2;
}
.bronze__art svg { width: 70%; max-width: 140px; transition: transform 0.6s var(--ease); }
.bronze:hover .bronze__art svg { transform: rotate(-6deg) scale(1.05); }

.bronze--tall {
  grid-template-columns: 1fr;
  align-items: flex-start;
  min-height: 280px;
}
.bronze__year {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

/* ---------- MENU ---------- */
.menu__intro {
  max-width: 640px;
  margin: -30px auto 60px;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--brown-soft);
  font-style: italic;
}

.menu__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 980px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .menu__grid { grid-template-columns: 1fr; } }

.card {
  background: var(--beige-soft);
  border-radius: var(--r-card);
  padding: 30px 28px 32px;
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(61, 51, 41, 0.4);
}
.card:hover::before { opacity: 1; }
.card:hover .card__num,
.card:hover .card__visual,
.card:hover .card__body h3,
.card:hover .card__body p,
.card:hover .card__price { color: var(--cream); }

.card__num {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-bottom: 8px;
  transition: color 0.5s var(--ease);
}
.card__visual {
  width: 100%; aspect-ratio: 1/1;
  max-width: 180px;
  margin: 0 auto 24px;
  color: var(--brown);
  transition: color 0.5s var(--ease), transform 0.6s var(--ease);
}
.card:hover .card__visual { transform: rotate(-4deg) scale(1.04); }
.card__body { text-align: center; }
.card__body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--brown);
  margin-bottom: 8px;
  transition: color 0.5s var(--ease);
}
.card__body p {
  font-size: 0.92rem;
  color: var(--brown-soft);
  margin-bottom: 16px;
  transition: color 0.5s var(--ease);
  line-height: 1.5;
}
.card__price {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: all 0.5s var(--ease);
}
.card:hover .card__price {
  color: var(--cream);
  border-color: rgba(245,235,220,0.5);
}

/* ---------- DELI TILES ---------- */
.deli__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  min-height: 720px;
}
.deli__tile {
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--r-card-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  min-height: 320px;
}
.deli__tile:hover {
  background: var(--brown-deep);
  transform: translateY(-4px);
}
.deli__tile--1 { grid-row: span 2; background: var(--bronze); }
.deli__tile--1:hover { background: var(--bronze-deep); }
.deli__tile--2 { background: var(--beige-soft); color: var(--brown); }
.deli__tile--2:hover { background: var(--beige-warm); }
.deli__tile--3 { background: var(--brown); }
.deli__tile--4 { grid-row: span 1; background: var(--beige-soft); color: var(--brown); }
.deli__tile--4:hover { background: var(--beige-warm); }

.deli__tile-inner { position: relative; z-index: 2; }
.deli__tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  opacity: 0.8;
}
.deli__tile h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.deli__tile p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 360px;
}
.deli__svg {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 50%; max-width: 280px;
  opacity: 0.4;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
  color: currentColor;
}
.deli__tile--1 .deli__svg { width: 60%; max-width: 360px; }
.deli__tile:hover .deli__svg {
  transform: translate(-12px, -12px) rotate(-6deg);
  opacity: 0.6;
}

@media (max-width: 880px) {
  .deli__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .deli__tile--1 { grid-row: auto; }
}

/* ---------- BANNER ---------- */
.banner {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
  position: relative;
}
.banner__leaf {
  position: absolute;
  width: 80px; height: 200px;
  color: var(--bronze);
  top: 50%;
  transform: translateY(-50%);
}
.banner__leaf--l { left: 4%; }
.banner__leaf--r { right: 4%; }
.banner__text {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex; flex-direction: column;
  gap: 12px;
}
.banner__line { display: block; }
.banner__line--italic { font-style: italic; color: var(--bronze); }

/* ---------- LOCATION ---------- */
.location__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.location__stats {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
}
.location__stats li {
  display: flex; flex-direction: column;
  gap: 6px; align-items: flex-start;
}
.location__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--brown);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
}
.location__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brown-muted);
}
.location__note {
  grid-column: span 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--brown-soft);
  max-width: 720px;
  margin-top: 20px;
}

@media (max-width: 760px) {
  .location__grid { grid-template-columns: 1fr; }
  .location__stats { grid-column: span 1; grid-template-columns: repeat(2, 1fr); }
  .location__note { grid-column: span 1; }
}

/* ---------- VISIT ---------- */
.visit__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 880px) { .visit__container { grid-template-columns: 1fr; } }

.display {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brown);
}
.display em { font-style: italic; color: var(--bronze); }

.visit__col h3.display { margin: 12px 0 24px; }
.visit__col > p { font-size: 1.05rem; max-width: 460px; margin-bottom: 36px; }

.visit__hours {
  border-top: 1px solid var(--line);
  margin-bottom: 36px;
}
.visit__row {
  display: flex; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--brown);
  gap: 16px;
}
.visit__dots {
  flex: 1;
  border-bottom: 1px dashed var(--line-strong);
  transform: translateY(-4px);
}

.visit__address {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.visit__address p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--brown);
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brown);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  transition: gap 0.4s var(--ease);
}
.link-arrow:hover { gap: 14px; }

.visit__card {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--r-card-lg);
}
.visit__card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.visit__card > p { opacity: 0.85; margin-bottom: 28px; font-size: 0.95rem; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.field input, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,235,220,0.3);
  padding: 12px 0;
  color: var(--cream);
  font-size: 1rem;
  font-family: var(--serif);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus { border-color: var(--bronze); }
.field select option { background: var(--brown); color: var(--cream); }

.btn--full { background: var(--cream); color: var(--brown); margin-top: 8px; }
.btn--full:hover { background: var(--bronze); color: var(--cream); }
.btn__sent { display: none; }
.form--sent .btn__send { display: none; }
.form--sent .btn__sent { display: inline; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: 60px;
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand img {
  width: 220px; height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 16px;
}
.footer__tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  opacity: 0.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--bronze);
}
.footer__cols p {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.85;
}
.footer__cols a { transition: opacity 0.3s var(--ease); }
.footer__cols a:hover { opacity: 1; color: var(--bronze); }

.footer__massive {
  font-family: var(--serif);
  font-size: clamp(5rem, 22vw, 22rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,235,220,0.3);
  margin: 40px 0;
  display: flex; justify-content: center;
  flex-wrap: wrap;
  gap: 0.06em;
  user-select: none;
}
.footer__massive .amp { color: var(--bronze); -webkit-text-stroke: 0; font-style: italic; }

.footer__base {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid rgba(245,235,220,0.15);
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.65;
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 14px;
}

/* ---------- REVEAL UTILS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- INGREDIENTS GRID ---------- */
.ingredients__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
}
@media (max-width: 980px) { .ingredients__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .ingredients__grid { grid-template-columns: repeat(2, 1fr); } }

.ing {
  background: var(--beige-soft);
  border-radius: var(--r-card);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.ing::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% -40%;
  height: 120%;
  background: radial-gradient(circle, var(--bronze), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transform: translateY(20%);
}
.ing:hover { transform: translateY(-6px); background: var(--beige-warm); }
.ing:hover::after { opacity: 0.18; transform: translateY(0); }

.ing svg {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--brown);
  transition: transform 0.6s var(--ease), color 0.4s var(--ease);
}
.ing:hover svg { transform: rotate(-8deg) scale(1.1); color: var(--bronze-deep); }

.ing h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ing p {
  font-size: 0.84rem;
  color: var(--brown-muted);
  line-height: 1.45;
}

/* ---------- GALLERY ---------- */
.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 980px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 600px) { .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; } }

.gallery__item {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--beige-warm);
  cursor: pointer;
  isolation: isolate;
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

@media (max-width: 980px) {
  .gallery__item--lg, .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .gallery__item--tall { grid-row: span 2; }
}
@media (max-width: 600px) {
  .gallery__item--lg, .gallery__item--wide, .gallery__item--tall {
    grid-column: span 1; grid-row: span 1;
  }
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.85) contrast(1.02);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 29, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  color: var(--cream);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__item figcaption span {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.gallery__item figcaption i {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  border: 1px solid rgba(245,235,220,0.4);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}

/* Broken-image fallback (still pretty) */
.img-fail {
  visibility: hidden;
}
.gallery__item:has(img.img-fail),
.location__hero:has(img.img-fail),
.location__photos figure:has(img.img-fail) {
  background: linear-gradient(135deg, var(--bronze), var(--brown));
}
.gallery__item:has(img.img-fail)::before,
.location__photos figure:has(img.img-fail)::before {
  content: '✦';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--cream);
  font-size: 3rem; opacity: 0.5;
}

/* ---------- SHOP / STEP INSIDE — fullbleed shop image ---------- */
.shop {
  position: relative;
  min-height: 92vh;
  padding: var(--section-pad) 0;
  overflow: hidden;
  isolation: isolate;
  display: flex; align-items: center;
}

.shop__bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.shop__bg img {
  width: 100%; height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%; left: 0;
  filter: saturate(0.95) contrast(1.05);
  will-change: transform;
}
.shop__bg img.img-fail {
  visibility: hidden;
}
.shop:has(.img-fail) {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--brown) 70%);
}

.shop__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(44,36,29,0.78) 0%, rgba(44,36,29,0.55) 45%, rgba(44,36,29,0.2) 80%);
}

.shop__content {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  color: var(--cream);
  max-width: 720px;
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  gap: 22px;
}

.shop__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  display: flex; flex-direction: column;
}
.shop__title em { font-style: italic; color: var(--bronze); }
.shop__title span {
  display: block;
  overflow: hidden;
}
.shop__title span > * { display: inline-block; }

.shop__content p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-family: var(--serif);
  line-height: 1.5;
  max-width: 540px;
  opacity: 0.92;
}

.shop__actions {
  display: flex; gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pill--ghost-light {
  border: 1px solid rgba(245,235,220,0.5);
  color: var(--cream);
  padding: 14px 26px;
  font-size: 0.92rem;
}
.pill--ghost-light:hover {
  background: var(--cream);
  color: var(--brown);
}

/* Circular sticker */
.shop__sticker {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(20px, 5vw, 80px);
  z-index: 3;
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
}
@media (max-width: 760px) { .shop__sticker { display: none; } }

.shop__sticker-inner {
  position: relative;
  width: 100%; height: 100%;
}
.shop__sticker-inner img {
  position: absolute;
  inset: 22%;
  width: 56%; height: 56%;
  object-fit: contain;
  z-index: 2;
}
.shop__sticker-text {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--cream);
  animation: stickerSpin 18s linear infinite;
  opacity: 0.9;
}
@keyframes stickerSpin { to { transform: rotate(360deg); } }

/* ---------- LOCATION TOP: hero aerial + facade card ---------- */
.location__top {
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(16px, 1.6vw, 22px);
}
@media (max-width: 880px) { .location__top { grid-template-columns: 1fr; } }

.location__hero {
  position: relative;
  height: clamp(360px, 56vh, 560px);
  overflow: hidden;
  border-radius: var(--r-card-lg);
}
.location__hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1.2s var(--ease);
}
.location__hero:hover img { transform: scale(1.04); }
.location__hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,36,29,0.85) 0%, rgba(44,36,29,0.35) 50%, transparent 100%);
}
.location__hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(28px, 4vw, 48px);
  color: var(--cream);
}
.location__hero-overlay h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 12px;
  max-width: 520px;
}

.location__facade {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  background: var(--beige-warm);
  height: clamp(360px, 56vh, 560px);
}
.location__facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.2s var(--ease);
}
.location__facade:hover img { transform: scale(1.05); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brown-muted);
  margin-bottom: 14px;
}
.eyebrow .line { width: 32px; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(245,235,220,0.85); }

.pill--cream {
  background: var(--cream);
  color: var(--brown);
  padding: 14px 26px;
  font-size: 0.92rem;
  width: max-content;
}
.pill--cream:hover { background: var(--bronze); color: var(--cream); transform: translateY(-2px); }

/* ---------- LOCATION SPLIT (photos + bronze cards) ---------- */
.location__split {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 880px) {
  .location__split { grid-template-columns: 1fr; }
}

.location__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 22px);
  min-height: 480px;
}
.location__photos figure:nth-child(1) { grid-column: span 2; }
.location__photos figure {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--beige-warm);
}
.location__photos img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1s var(--ease);
}
.location__photos figure:hover img { transform: scale(1.05); }
.location__photos figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  letter-spacing: -0.005em;
}

.location__cards {
  display: flex; flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
}
.location__cards .bronze { min-height: auto; }

/* ---------- LOCATION STATS (animated number tiles) ---------- */
.location__stats {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--r-card-lg);
  position: relative;
}
@media (max-width: 760px) { .location__stats { grid-template-columns: repeat(2, 1fr); } }

.location__stats li {
  display: flex; flex-direction: column;
  gap: 6px; align-items: flex-start;
  position: relative;
  padding-left: 20px;
}
.location__stats li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
}
.location__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
}
.location__num-suffix {
  font-family: var(--serif);
  color: var(--bronze);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-style: italic;
  margin-left: 2px;
  font-weight: 500;
}
.location__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,235,220,0.65);
  margin-top: 4px;
}

/* ---------- MAP ---------- */
.map {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 880px) { .map { grid-template-columns: 1fr; } }

.map__frame {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--beige-warm);
  box-shadow: 0 30px 60px -40px rgba(61,51,41,0.35);
}
.map__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.7) hue-rotate(-10deg) sepia(0.18);
  transition: filter 0.6s var(--ease);
}
.map__frame:hover iframe { filter: saturate(0.9); }

.map__panel {
  background: var(--bronze);
  color: var(--cream);
  border-radius: var(--r-card-lg);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
}
.map__panel .eyebrow { color: rgba(245,235,220,0.75); }
.map__panel .eyebrow .line { background: rgba(245,235,220,0.6); }
.map__panel .display { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.map__panel .display em { color: var(--brown); }
.map__panel p { font-size: 0.95rem; opacity: 0.92; }

.map__points {
  display: flex; flex-direction: column; gap: 10px;
  margin: 6px 0 12px;
  font-size: 0.92rem;
}
.map__points li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(245,235,220,0.12);
  border-radius: var(--r-pill);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.map__points li:hover {
  background: rgba(245,235,220,0.22);
  transform: translateX(6px);
}
.map__points b {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 400;
}

.map__panel .pill--dark {
  background: var(--brown);
  margin-top: auto;
  width: max-content;
}

/* ---------- MAGNETIC HOVER (extra polish) ---------- */
[data-magnetic] {
  transition: transform 0.45s var(--ease);
}

/* ---------- IMAGE REVEAL UTILITY ---------- */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--brown);
  z-index: 2;
  transform-origin: left;
  transition: transform 1s var(--ease);
}
.img-reveal.is-in::before { transform: scaleX(0); transform-origin: right; }

/* ---------- LANGUAGE SWITCHER ---------- */
.lang {
  position: relative;
  font-family: var(--sans);
}
.lang__toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.lang__toggle:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.lang__toggle svg { transition: transform 0.5s var(--ease); }
.lang.is-open .lang__toggle { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.lang.is-open .lang__toggle svg { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 12px); right: 0;
  min-width: 180px;
  background: var(--cream);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(44,36,29,0.28),
              0 0 0 1px var(--line);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 110;
  list-style: none;
}
.lang.is-open .lang__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang__menu li { display: block; }
.lang__menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--brown);
  border-radius: 12px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  letter-spacing: -0.005em;
}
.lang__menu button:hover { background: var(--beige-warm); }
.lang__menu button.is-active {
  background: var(--brown);
  color: var(--cream);
}

@media (max-width: 880px) {
  .lang { display: none; }
}
