:root {
  --ink: #25120e;
  --ink-soft: #4f3029;
  --paper: #f4eadb;
  --paper-deep: #ddc5a6;
  --orange: #ff6845;
  --orange-dark: #ad321d;
  --mint: #b8d8c8;
  --green: #17483f;
  --green-dark: #0c302b;
  --yellow: #ffcf58;
  --white: #fffaf2;
  --header-height: 82px;
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--orange); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid var(--focus-inner, var(--white));
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-outer, var(--ink));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(20px, 4vw, 72px);
  color: var(--paper);
  border-bottom: 1px solid rgba(244, 234, 219, .14);
  transition: background .35s, color .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  background: rgba(244, 234, 219, .96);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(37, 18, 14, .10);
  backdrop-filter: blur(14px);
  border-color: transparent;
}
.brand {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 17px;
  aspect-ratio: 1;
  border: 5px solid var(--orange);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px currentColor;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); }
.desktop-nav a {
  position: relative;
  font-size: .82rem;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 800;
  transition: background .25s, color .25s, border-color .25s;
}
.header-cta:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.menu-toggle, .mobile-nav { display: none; }

.section { position: relative; padding: clamp(88px, 11vw, 160px) 0; }
.section-shell { width: min(1440px, calc(100% - clamp(40px, 8vw, 144px))); margin: 0 auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.02; letter-spacing: -.035em; }
h2 { max-width: 1000px; margin-bottom: 34px; font-size: clamp(2.2rem, 5.3vw, 5.4rem); text-wrap: balance; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .3s var(--ease-out), background .3s, color .3s, box-shadow .3s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: var(--ink); border-color: var(--orange); box-shadow: 0 12px 28px rgba(255, 104, 69, .18); }
.button-primary:hover { background: var(--yellow); border-color: var(--yellow); box-shadow: 0 17px 34px rgba(255, 207, 88, .20); }
.button-ghost { background: transparent; color: var(--paper); }
.button-ghost:hover { background: var(--paper); color: var(--ink); }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 48px) clamp(20px, 4vw, 72px) 0;
  background: var(--ink);
  color: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  pointer-events: none;
  background-image: radial-gradient(circle at center, var(--paper) 0 1px, transparent 1.3px);
  background-size: 19px 19px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.hero-glow-one { width: 44vw; height: 44vw; right: -19vw; top: -22vw; background: radial-gradient(circle, rgba(255, 104, 69, .58), rgba(255, 104, 69, 0) 68%); }
.hero-glow-two { width: 34vw; height: 34vw; left: 22vw; bottom: -27vw; background: radial-gradient(circle, rgba(184, 216, 200, .28), rgba(184, 216, 200, 0) 68%); }
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(24px, 4vw, 76px);
  padding: 24px 0 56px;
}
.hero-copy { padding-top: 12px; }
.hero-route {
  max-width: 620px;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(30px, 4vw, 62px);
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(244, 234, 219, .35);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  animation: heroIn .9s .18s var(--ease-out) forwards;
}
.hero h1 { margin-bottom: 34px; font-size: clamp(3rem, 7.7vw, 7.9rem); letter-spacing: -.045em; }
.hero h1 span { display: block; opacity: 0; clip-path: inset(0 0 100% 0); animation: titleIn 1.1s var(--ease-out) forwards; }
.hero h1 span:nth-child(1) { color: var(--orange); animation-delay: .12s; }
.hero h1 span:nth-child(2) { animation-delay: .26s; }
.hero-lead { max-width: 620px; margin-bottom: 36px; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.55; color: #e6d8c6; opacity: 0; animation: heroIn 1s .48s var(--ease-out) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: heroIn 1s .62s var(--ease-out) forwards; }
.hero-art { position: relative; width: min(100%, 620px); justify-self: center; opacity: 0; animation: heroArtIn 1.4s .3s var(--ease-out) forwards; }
.route-orbit { overflow: visible; }
.orbit-dash { fill: none; stroke: var(--paper); stroke-width: 1.3; stroke-dasharray: 2 18; opacity: .45; }
.orbit-thin { fill: none; stroke: var(--orange); stroke-width: 2; opacity: .3; }
.orbit-path { fill: none; stroke: var(--mint); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 10 16; opacity: .7; }
.moving-stop { offset-path: path("M91,235 C141,82 332,24 472,114 C585,187 591,366 505,471 C406,593 188,569 91,428 C49,367 45,298 91,235Z"); animation: routeMove 13s linear infinite; }
.steam { fill: none; stroke: var(--paper); stroke-width: 12; stroke-linecap: round; opacity: .85; stroke-dasharray: 160; animation: steam 3.4s ease-in-out infinite; }
.steam-two { animation-delay: -1.4s; }
.art-stamp {
  position: absolute;
  right: -4%;
  bottom: 6%;
  width: 158px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(8deg);
}
.art-stamp strong { font-family: var(--display); font-size: .88rem; }
.art-note { position: absolute; top: 8%; left: -3%; font-size: .8rem; line-height: 1.35; transform: rotate(-7deg); }
.art-note strong { font-family: var(--display); color: var(--mint); font-size: 1.25rem; }
.hero-ticker { position: relative; z-index: 2; width: calc(100% + clamp(40px, 8vw, 144px)); margin-left: calc(clamp(20px, 4vw, 72px) * -1); overflow: hidden; padding: 14px 0; background: var(--orange); color: var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; font-family: var(--display); font-size: .72rem; font-weight: 800; animation: ticker 28s linear infinite; }
.ticker-track i { width: 9px; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; }

.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 7vw, 120px); }
.story-intro h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); }
.story-intro > p { max-width: 650px; font-size: 1.25rem; line-height: 1.6; color: var(--ink-soft); }
.story-copy { max-width: 560px; padding-top: 18px; font-size: 1.05rem; color: var(--ink-soft); }
.story-copy p + p { margin-top: 26px; }
.facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 22px 0 0; border-top: 1px solid rgba(37, 18, 14, .24); }
.fact { padding: 36px clamp(12px, 2.2vw, 34px) 0; border-right: 1px solid rgba(37, 18, 14, .24); }
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact dt { display: flex; align-items: flex-start; gap: 7px; margin-bottom: 18px; font-family: var(--display); font-size: clamp(2.9rem, 5vw, 5.3rem); font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.fact dt sup { padding-top: 8px; font-family: var(--body); font-size: .85rem; letter-spacing: 0; }
.fact dd { max-width: 210px; margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }

.menu-section { overflow: hidden; background: var(--orange); }
.menu-section::after { content: ""; position: absolute; width: 480px; height: 480px; right: -270px; top: 90px; border: 70px solid var(--ink); border-radius: 50%; opacity: .07; pointer-events: none; }
.menu-heading { display: grid; grid-template-columns: 1.5fr .5fr; align-items: end; gap: 40px; }
.menu-heading h2 { margin-bottom: 0; }
.menu-heading p { max-width: 390px; margin-bottom: 4px; font-weight: 600; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 52px 0 34px; }
.menu-tab, .bean-button {
  padding: 11px 18px;
  border: 1px solid rgba(37, 18, 14, .48);
  border-radius: 100px;
  background: transparent;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s;
}
.menu-tab:hover, .bean-button:hover { transform: translateY(-2px); }
.menu-tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--ink); }
.menu-card { min-height: 196px; padding: 32px 32px 28px 0; border-bottom: 1px solid rgba(37, 18, 14, .44); transition: background .35s var(--ease-out), transform .35s var(--ease-out); }
.menu-card:nth-child(2n) { padding-left: 32px; padding-right: 0; border-left: 1px solid rgba(37, 18, 14, .44); }
.menu-card:not([hidden]):hover { background: rgba(244, 234, 219, .26); transform: translateY(-3px); }
.menu-card[hidden] { display: none; }
.menu-card.is-entering { animation: cardIn .55s var(--ease-out) both; }
.menu-card-top { display: flex; justify-content: space-between; gap: 24px; }
.menu-card h3 { margin-bottom: 17px; font-size: clamp(1.25rem, 2vw, 1.85rem); }
.menu-card-top > span { flex: 0 0 auto; font-family: var(--display); font-weight: 700; }
.menu-card p { max-width: 540px; margin-bottom: 20px; color: #44221a; line-height: 1.55; }
.menu-note { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.beans { background: var(--green); color: var(--paper); }
.beans-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 9vw, 140px); align-items: center; }
.beans-copy h2 { font-size: clamp(2.4rem, 4.8vw, 5rem); }
.beans-copy > p { max-width: 550px; color: #d6e9df; font-size: 1.1rem; }
.bean-switcher { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.bean-button { border-color: rgba(244, 234, 219, .5); color: var(--paper); }
.bean-button.is-active { background: var(--paper); color: var(--green); border-color: var(--paper); }
.bean-ticket { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 58px); background: var(--paper); color: var(--ink); box-shadow: 0 28px 60px rgba(3, 24, 21, .28); clip-path: polygon(0 0, 100% 0, 100% 95%, 98% 97%, 96% 95%, 94% 97%, 92% 95%, 90% 97%, 88% 95%, 86% 97%, 84% 95%, 82% 97%, 80% 95%, 78% 97%, 76% 95%, 74% 97%, 72% 95%, 70% 97%, 68% 95%, 66% 97%, 64% 95%, 62% 97%, 60% 95%, 58% 97%, 56% 95%, 54% 97%, 52% 95%, 50% 97%, 48% 95%, 46% 97%, 44% 95%, 42% 97%, 40% 95%, 38% 97%, 36% 95%, 34% 97%, 32% 95%, 30% 97%, 28% 95%, 26% 97%, 24% 95%, 22% 97%, 20% 95%, 18% 97%, 16% 95%, 14% 97%, 12% 95%, 10% 97%, 8% 95%, 6% 97%, 4% 95%, 2% 97%, 0 95%); }
.bean-ticket::before { content: ""; position: absolute; right: -90px; top: -105px; width: 250px; aspect-ratio: 1; border: 46px solid var(--orange); border-radius: 50%; opacity: .24; }
.ticket-top, .ticket-bottom { position: relative; display: flex; justify-content: space-between; gap: 20px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.ticket-top { padding-bottom: 20px; border-bottom: 1px dashed rgba(37, 18, 14, .42); }
.ticket-main { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 35px 0 28px; }
.bean-country { margin-bottom: 8px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; color: var(--orange-dark); }
.ticket-main h3 { margin-bottom: 12px; font-size: clamp(2rem, 4.5vw, 4.3rem); }
.ticket-main p:last-child { margin: 0; font-weight: 700; color: var(--ink-soft); }
.bean-seal { width: 94px; aspect-ratio: 1; display: grid; place-items: center; position: relative; border: 2px solid var(--ink); border-radius: 50%; transform: rotate(8deg); }
.bean-seal::before, .bean-seal::after { content: ""; position: absolute; inset: 7px; border: 1px dashed var(--ink); border-radius: inherit; }
.bean-seal span { font-family: var(--display); font-size: 1.8rem; font-weight: 800; }
.bean-seal small { position: absolute; bottom: 13px; font-size: .62rem; font-weight: 800; }
.bean-story { max-width: 68ch; margin-bottom: 32px; color: var(--ink-soft); }
.taste-scales { display: grid; gap: 16px; padding: 27px 0; border-top: 1px dashed rgba(37, 18, 14, .42); border-bottom: 1px dashed rgba(37, 18, 14, .42); }
.taste-row { display: grid; grid-template-columns: 110px 1fr 45px; gap: 18px; align-items: center; font-size: .78rem; font-weight: 800; }
.taste-track { height: 10px; background: #d9c7ae; border-radius: 8px; overflow: hidden; }
.taste-track i { display: block; width: var(--score); height: 100%; background: var(--orange); border-radius: inherit; }
.taste-row strong { text-align: right; }
.ticket-bottom { padding-top: 23px; }

.atmosphere { background: var(--paper); }
.atmosphere-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 40px; }
.atmosphere-heading h2 { margin-bottom: 0; }
.atmosphere-heading p { max-width: 390px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(140px, 18vw); gap: 14px; margin-top: 60px; }
.gallery-item { position: relative; overflow: hidden; grid-column: span 4; grid-row: span 1; padding: 0; border: 0; background: var(--green); cursor: zoom-in; }
.gallery-wide { grid-column: span 8; }
.gallery-tall { grid-column: span 4; grid-row: span 2; }
.gallery-wide-small { grid-column: span 8; }
.gallery-item svg { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .6s; }
.gallery-item span { position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 100px; background: var(--paper); color: var(--ink); font-size: .7rem; font-weight: 800; transform: translateY(10px); opacity: 0; transition: transform .35s var(--ease-out), opacity .35s; }
.gallery-item:hover svg { transform: scale(1.045); filter: saturate(1.08); }
.gallery-item:hover span, .gallery-item:focus-visible span { opacity: 1; transform: translateY(0); }

.reviews { overflow: hidden; background: var(--yellow); }
.reviews::before { content: "“"; position: absolute; top: -150px; right: 2vw; font-family: var(--display); font-size: 38rem; line-height: 1; color: var(--ink); opacity: .05; pointer-events: none; }
.reviews-heading { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.reviews-heading h2 { margin: 0; }
.review-controls { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.round-control { width: 52px; aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%; background: transparent; font-size: 1.3rem; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.round-control:hover { background: var(--ink); color: var(--yellow); transform: translateY(-2px); }
.review-autoplay { min-height: 52px; padding: 0 18px; border: 1px solid var(--ink); border-radius: 100px; background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.review-autoplay:hover, .review-autoplay[aria-pressed="true"] { background: var(--ink); color: var(--yellow); transform: translateY(-2px); }
.review-viewport { overflow: hidden; margin-top: 66px; }
.review-track { display: flex; transition: transform .75s var(--ease-out); }
.review-slide { flex: 0 0 100%; margin: 0; padding-right: 10%; }
.review-slide > p { max-width: 1150px; margin-bottom: 48px; font-family: var(--display); font-size: clamp(1.7rem, 4.2vw, 4.1rem); font-weight: 600; line-height: 1.22; letter-spacing: -.035em; }
.review-slide footer { display: flex; flex-direction: column; gap: 4px; }
.review-slide footer strong { font-size: .95rem; }
.review-slide footer span { color: #674d00; font-size: .82rem; }
.review-dots { display: flex; gap: 4px; margin-top: 20px; }
.review-dot { position: relative; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 8px; background: transparent; cursor: pointer; }
.review-dot::before { content: ""; position: absolute; inset: 18px 4px; border-radius: 6px; background: rgba(37, 18, 14, .25); transition: background .35s, transform .35s var(--ease-out); }
.review-dot.is-active::before { background: var(--ink); transform: scaleY(1.35); }
.reviews-disclaimer { margin: 30px 0 0; font-size: .72rem; color: #604700; }

.contacts { background: var(--paper); }
.contacts-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 40px; }
.contacts-heading h2 { margin: 0; }
.contacts-heading p { max-width: 400px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.contacts-layout { display: grid; grid-template-columns: .72fr 1.28fr; margin-top: 66px; }
.contact-panel { padding: clamp(30px, 4vw, 60px); background: var(--ink); color: var(--paper); }
.contact-detail { padding-bottom: 29px; margin-bottom: 28px; border-bottom: 1px solid rgba(244, 234, 219, .22); }
.contact-detail span { display: block; margin-bottom: 8px; color: #cbb9a5; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-detail p { margin: 0; font-size: 1.04rem; }
.contact-detail a { text-decoration: underline; text-decoration-color: rgba(244, 234, 219, .35); text-underline-offset: 4px; }
.contact-detail a:hover { color: var(--orange); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { padding: 9px 14px; border: 1px solid rgba(244, 234, 219, .35); border-radius: 100px; font-size: .78rem; font-weight: 800; transition: background .25s, color .25s; }
.social-links a:hover { background: var(--paper); color: var(--ink); }
.map-wrap { position: relative; min-height: 500px; overflow: hidden; }
.map { width: 100%; height: 100%; object-fit: cover; }
.map-route { animation: mapDash 18s linear infinite; }
.map-time { position: absolute; right: 24px; bottom: 24px; display: flex; flex-direction: column; padding: 18px 22px; background: var(--paper); color: var(--ink); border-radius: 14px; box-shadow: 0 14px 35px rgba(23, 72, 63, .18); }
.map-time strong { font-family: var(--display); font-size: 1.35rem; }
.map-time span { font-size: .72rem; }
.booking-panel { grid-column: 1 / -1; display: grid; grid-template-columns: .72fr 1.28fr; background: var(--mint); }
.booking-copy { padding: clamp(34px, 5vw, 72px); }
.booking-copy h3 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 4rem); }
.booking-copy p { max-width: 440px; color: var(--green-dark); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; padding: clamp(34px, 5vw, 72px); background: var(--green); color: var(--paper); }
.field { grid-column: 1 / -1; }
.field-half { grid-column: span 1; }
.field label { display: block; margin-bottom: 7px; color: #d3e8dd; font-size: .73rem; font-weight: 800; }
.field input, .field select { width: 100%; height: 54px; padding: 0 16px; border: 1px solid rgba(244, 234, 219, .44); border-radius: 12px; background: rgba(12, 48, 43, .45); color: var(--white); outline: 0; transition: background .25s, border-color .25s, box-shadow .25s; color-scheme: dark; }
.field input::placeholder { color: #b7cec2; }
.field input:focus, .field select:focus { background: var(--green-dark); border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 207, 88, .25); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #ff9c85; }
.field-error { display: block; min-height: 18px; margin-top: 5px; color: #ffc2b5; font-size: .7rem; }
.consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 11px; color: #d3e8dd; font-size: .72rem; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--yellow); }
.consent-error { grid-column: 1 / -1; margin-top: -22px; }
.booking-submit { grid-column: 1 / -1; justify-content: space-between; border-color: var(--orange); background: var(--orange); color: var(--ink); }
.booking-submit:hover { background: var(--yellow); border-color: var(--yellow); }
.booking-submit.is-loading { pointer-events: none; opacity: .75; }
.booking-submit.is-loading span:first-child::after { content: "…"; }
.form-success { grid-column: 1 / -1; padding: 17px 18px; border-radius: 12px; background: var(--paper); color: var(--green-dark); font-weight: 700; }

.site-footer { overflow: hidden; padding: 60px clamp(20px, 4vw, 72px) 38px; background: var(--ink); color: var(--paper); }
.footer-wordmark { margin: 0 0 30px; font-family: var(--display); font-size: clamp(5rem, 20vw, 20rem); font-weight: 800; line-height: .85; letter-spacing: -.06em; color: var(--orange); text-align: center; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; padding-top: 32px; border-top: 1px solid rgba(244, 234, 219, .23); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-links { display: flex; gap: 28px; font-weight: 800; }
.footer-links a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.footer-links a:hover { color: var(--orange); }
.footer-meta { justify-self: end; text-align: right; color: #cbb9a5; }

.lightbox {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  overflow: visible;
}
.lightbox::backdrop { background: rgba(18, 8, 6, .92); backdrop-filter: blur(8px); }
.lightbox-content { width: 100%; }
.lightbox-visual { height: min(72svh, 720px); background: var(--green); }
.lightbox-visual svg { width: 100%; height: 100%; }
.lightbox-content p { margin: 12px 0 0; font-weight: 700; }
.lightbox-close, .lightbox-nav { position: fixed; border: 1px solid rgba(244, 234, 219, .55); border-radius: 50%; background: rgba(37, 18, 14, .8); color: var(--paper); cursor: pointer; transition: background .25s, color .25s; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--orange); color: var(--ink); }
.lightbox-close { top: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 50px; height: 50px; transform: translateY(-50%); font-size: 1.3rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.cursor-dot { position: fixed; z-index: 999; top: 0; left: 0; width: 9px; height: 9px; pointer-events: none; border-radius: 50%; background: var(--orange); transform: translate(-50%, -50%); opacity: 0; scale: 1; transition: scale .25s, opacity .25s; mix-blend-mode: difference; }
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-hovering { scale: 3.8; }

@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes titleIn { from { opacity: 0; transform: translateY(55px); clip-path: inset(0 0 100% 0); } to { opacity: 1; transform: translateY(0); clip-path: inset(0); } }
@keyframes heroArtIn { from { opacity: 0; transform: translateY(30px) scale(.93) rotate(-3deg); } to { opacity: 1; transform: translateY(0) scale(1) rotate(0); } }
@keyframes routeMove { to { offset-distance: 100%; } }
@keyframes steam { 0%, 100% { stroke-dashoffset: 160; opacity: 0; transform: translateY(8px); } 35%, 70% { stroke-dashoffset: 0; opacity: .85; transform: translateY(-4px); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mapDash { to { stroke-dashoffset: -520; } }

@media (max-width: 1050px) {
  :root { --header-height: 72px; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 102; justify-self: end; width: 48px; height: 48px; display: grid; place-content: center; gap: 7px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; }
  .menu-toggle span { width: 20px; height: 2px; background: currentColor; transition: transform .3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px; padding: 90px 24px 40px; background: var(--green-dark); color: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .35s, visibility .35s, transform .35s var(--ease-out); }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav > a { font-family: var(--display); font-size: clamp(1.65rem, 7vw, 3rem); font-weight: 700; }
  .mobile-nav-cta { margin-top: 18px; padding: 12px 20px; border-radius: 100px; background: var(--orange); color: var(--ink); font-family: var(--body) !important; font-size: .9rem !important; }
  .site-header:has(.mobile-nav.is-open) { color: var(--paper); background: transparent; box-shadow: none; }
  .hero-grid { grid-template-columns: 1fr .8fr; }
  .hero h1 { font-size: clamp(3rem, 8.5vw, 6rem); }
  .story-grid, .beans-shell { gap: 50px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 30px 24px; border-bottom: 1px solid rgba(37, 18, 14, .24); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(3) { padding-left: 0; }
  .taste-row { grid-template-columns: 100px 1fr 40px; gap: 10px; }
}

@media (max-width: 767px) {
  .section-shell { width: min(100% - 36px, 680px); }
  .section { padding: 88px 0; }
  h2 { margin-bottom: 24px; font-size: clamp(2rem, 10vw, 3.4rem); }
  .site-header { padding: 0 18px; }
  .hero { min-height: 100svh; padding: calc(var(--header-height) + 28px) 18px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 4px; padding-bottom: 36px; }
  .hero-route { margin-bottom: 28px; }
  .hero h1 { margin-bottom: 25px; font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .hero-lead { margin-bottom: 26px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { min-height: 52px; }
  .hero-art { width: min(96%, 470px); margin: -14px auto -4px; }
  .art-stamp { right: -2%; width: 112px; font-size: .56rem; }
  .art-stamp strong { font-size: .67rem; }
  .art-note { left: -1%; font-size: .65rem; }
  .hero-ticker { width: calc(100% + 36px); margin-left: -18px; }
  .story-grid, .menu-heading, .beans-shell, .atmosphere-heading, .contacts-heading, .booking-panel { grid-template-columns: 1fr; }
  .story-intro > p { font-size: 1.08rem; }
  .story-copy { padding-top: 0; }
  .facts { grid-template-columns: 1fr 1fr; gap: 0; }
  .fact { padding: 24px 16px; }
  .fact dt { font-size: clamp(2.15rem, 10vw, 3.4rem); }
  .fact dd { font-size: .76rem; }
  .menu-heading, .atmosphere-heading, .contacts-heading { align-items: start; }
  .menu-tabs { flex-wrap: nowrap; margin: 38px -18px 25px; padding: 0 18px 8px; overflow-x: auto; scrollbar-width: none; }
  .menu-tab { flex: 0 0 auto; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card, .menu-card:nth-child(2n) { min-height: 0; padding: 24px 0; border-left: 0; }
  .menu-card:not([hidden]):hover { transform: translateY(-2px); }
  .beans-shell { gap: 42px; }
  .bean-switcher { margin-top: 28px; }
  .bean-ticket { padding: 27px 20px 42px; }
  .ticket-main { grid-template-columns: 1fr; }
  .bean-seal { position: absolute; top: 25px; right: 0; width: 70px; }
  .ticket-main h3 { padding-right: 56px; font-size: 2rem; }
  .taste-row { grid-template-columns: 86px 1fr 38px; font-size: .67rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 8px; margin-top: 40px; }
  .gallery-item, .gallery-wide, .gallery-tall, .gallery-wide-small { grid-column: span 1; grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide-small { grid-column: span 2; }
  .gallery-item span { opacity: 1; transform: none; }
  .reviews-heading { align-items: flex-start; flex-direction: column; }
  .review-controls { justify-content: flex-start; }
  .review-viewport { margin-top: 45px; }
  .review-slide { padding-right: 2%; }
  .review-slide > p { font-size: clamp(1.45rem, 7vw, 2.2rem); }
  .contacts-layout { grid-template-columns: 1fr; margin-top: 40px; }
  .map-wrap { min-height: 400px; }
  .booking-panel { grid-column: auto; }
  .booking-form { grid-template-columns: 1fr; }
  .field-half { grid-column: 1 / -1; }
  .footer-wordmark { margin-bottom: 44px; font-size: 24vw; }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .footer-links { flex-wrap: wrap; }
  .footer-meta { justify-self: start; text-align: left; }
  .lightbox-nav { top: auto; bottom: 22px; }
  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }
  .lightbox-visual { height: 62svh; }
  .cursor-dot { display: none; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 12.5vw; }
  .hero-art { width: 88%; }
  .hero-route { font-size: .65rem; }
  .fact { padding-left: 10px; padding-right: 10px; }
  .fact dd { font-size: .7rem; }
  .gallery-grid { grid-auto-rows: 155px; }
}

@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
}
