:root {
  --green: #003f24;
  --green-2: #0d5b37;
  --coral: #ff4e45;
  --cream: #fff8eb;
  --paper: #f7ecd9;
  --ink: #151311;
  --muted: #24211f;
  --line: rgba(32, 23, 19, .14);
  --white: #fff;
  --shadow: 0 30px 90px rgba(0, 63, 36, .18);
  --radius: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  padding-top: 112px;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.eyebrow { display: none; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h1 { max-width: 600px; font-size: clamp(44px, 4vw, 62px); line-height: .98; font-weight: 600; }
h2 { max-width: none; font-size: 46px; line-height: 1.06; font-weight: 600; text-wrap: balance; }
h3 { font-size: clamp(25px, 2.1vw, 31px); line-height: 1.08; font-weight: 600; }
.lead { max-width: 680px; color: var(--ink); font-size: clamp(18px, 1.6vw, 22px); font-weight: 400; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(255,78,69,.55); outline-offset: 3px; }
.btn-primary { color: var(--cream); background: var(--green); box-shadow: 0 18px 44px rgba(0, 63, 36, .25); }
.btn-coral { color: var(--white); background: var(--coral); box-shadow: 0 18px 44px rgba(255, 78, 69, .28); }
.btn-light { color: var(--green); background: var(--cream); border-color: rgba(255,255,255,.28); }
.icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  color: var(--green);
  background: rgba(255, 248, 235, .96);
  border-bottom: 1px solid rgba(0,63,36,.12);
  backdrop-filter: blur(16px);
}
main [id] { scroll-margin-top: 132px; }
.preheader { color: var(--cream); background: var(--green); }
.preheader-inner { min-height: 36px; display: flex; align-items: center; gap: 26px; font-size: 12px; }
.preheader-address { margin-right: auto; color: rgba(255, 248, 235, .82); }
.preheader-links { display: flex; align-items: center; gap: 18px; color: rgba(255, 248, 235, .82); }
.preheader-address, .preheader-links a { align-self: stretch; display: inline-flex; align-items: center; }
.preheader a { transition: color .2s ease; }
.preheader a:hover { color: var(--coral); }
.preheader-phone { align-self: stretch; display: inline-flex; align-items: center; padding: 0 18px; color: var(--white); background: var(--coral); font-size: 14px; font-weight: 700; }
@media (min-width: 1021px) { .preheader-phone { display: none; } }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; height: 70px; }
.brand-logo-frame { display: flex; align-items: center; width: 96px; height: 68px; overflow: hidden; }
.brand-logo {
  width: auto;
  max-width: 100%;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 23px; color: var(--green); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--coral); }
.nav-links a[aria-current="page"] { color: var(--coral); }
.nav-item { position: relative; }
.nav-item button { border: 0; padding: 0; color: inherit; background: transparent; font: inherit; font-weight: 700; cursor: pointer; }
.nav-item button::after { content: "+"; display: inline-block; margin-left: 6px; color: var(--coral); }
.submenu { position: absolute; top: calc(100% + 20px); left: -18px; display: grid; min-width: 190px; padding: 14px; opacity: 0; visibility: hidden; transform: translateY(-4px); border: 1px solid var(--line); background: var(--cream); box-shadow: 0 14px 35px rgba(0,63,36,.11); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.submenu a { padding: 8px 4px; font-size: 13px; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.header-phone { display: grid; min-width: 154px; padding-left: 18px; border-left: 1px solid var(--line); line-height: 1.15; }
.header-phone span { color: var(--muted); font-size: 11px; font-weight: 500; }
.header-phone strong { margin-top: 4px; color: var(--green); font-size: 16px; }
.mobile-menu { display: none; color: var(--green); background: transparent; border: 1px solid rgba(0,63,36,.22); border-radius: 999px; padding: 10px; }

.drawer-backdrop, .mobile-drawer { display: none; }

.hero { 
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--green);
  background: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0 0 0 49%;
  overflow: hidden;
  background: var(--green);
}
.hero-bg::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0,63,36,.03), rgba(0,63,36,.2)); pointer-events: none; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.035); transition: opacity 1.25s ease; }
.hero-slide.active { z-index: 1; opacity: 1; animation: heroSlideDrift 6.2s ease-out both; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero-slide-cafe img { object-position: 25% center; }
.hero-slide-jura img { object-position: center center; }
.hero-slide-gourmand img { object-position: center 70%; }
@keyframes heroSlideDrift { from { transform: scale(1.035); } to { transform: scale(1.095); } }
.hero-slide-dots { position: absolute; top: 24px; right: 24px; z-index: 4; display: flex; gap: 7px; }
.hero-slide-dots button { position: relative; width: 28px; height: 32px; padding: 0; border: 0; background: transparent; transition: width .2s ease; }
.hero-slide-dots button::after { content: ""; position: absolute; top: 50%; right: 0; left: 0; height: 3px; transform: translateY(-50%); background: rgba(255,255,255,.48); }
.hero-slide-dots button.active { width: 40px; }
.hero-slide-dots button.active::after { background: var(--coral); }
.hero-photo-credit { position: absolute; left: 18px; bottom: 16px; z-index: 4; color: rgba(255,255,255,.84); font-size: 10px; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 62px 52% 62px 0;
}
.hero h1 { margin-top: 0; }
.hero .lead { margin-top: 24px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 900;
}
.badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.floating-hours {
  position: absolute;
  right: max(220px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  z-index: 3;
  width: 280px;
  padding: 20px 22px;
  border-radius: 0;
  color: var(--cream);
  background: var(--green);
  box-shadow: none;
}
.floating-hours span { display: none; }
.floating-hours strong { display: block; margin-top: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; line-height: 1.05; }
.floating-hours p { margin-top: 14px; color: rgba(255,248,235,.72); font-size: 14px; font-weight: 700; }

.intro-grid { display: grid; grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr); gap: 58px; align-items: center; }
.intro-copy, .heritage-grid > *, .events-copy, .commitments-grid > * { min-width: 0; }
.intro-copy h2 { margin-top: 18px; }
.intro-copy p { margin-top: 28px; max-width: 680px; color: var(--ink); font-size: 19px; font-weight: 400; }
.intro-copy p + p { margin-top: 16px; }
.story-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.story-point { padding: 20px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.42); }
.story-point strong { display: block; color: var(--green); font-size: 15px; }
.story-point span { display: block; margin-top: 6px; color: var(--ink); font-size: 13px; font-weight: 400; }

.artist-feature { align-self: stretch; min-width: 0; margin: 0; }
.artist-feature-frame { position: relative; height: 100%; min-height: 610px; overflow: hidden; background: var(--green); }
.artist-feature-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,248,235,.35); pointer-events: none; }
.artist-feature-slides { position: absolute; inset: 0; }
.artist-feature-slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; opacity: 0; transform: scale(1.025); transition: opacity .9s ease; }
.artist-feature-slides img:nth-child(2) { object-position: center 48%; }
.artist-feature-slides img:nth-child(3) { object-position: center 46%; }
.artist-feature-slides img:nth-child(4) { object-position: center 52%; }
.artist-feature-slides img.active { opacity: 1; animation: artistPortraitDrift 5.2s ease-out both; }
.artist-feature-frame > span { position: absolute; top: 18px; left: 18px; z-index: 3; padding: 7px 10px; color: var(--cream); background: rgba(0,63,36,.82); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.artist-feature-dots { position: absolute; right: 16px; bottom: 16px; z-index: 3; display: flex; gap: 6px; padding: 6px; background: rgba(0,63,36,.6); }
.artist-feature-dots button { position: relative; width: 22px; height: 24px; padding: 0; border: 0; background: transparent; }
.artist-feature-dots button::after { content: ""; position: absolute; top: 50%; right: 0; left: 0; height: 2px; transform: translateY(-50%); background: rgba(255,248,235,.5); }
.artist-feature-dots button.active { width: 32px; }
.artist-feature-dots button.active::after { background: var(--coral); }
.artist-feature figcaption { display: grid; gap: 5px; padding-top: 16px; border-top: 3px solid var(--coral); }
.artist-feature figcaption strong { color: var(--green); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; line-height: 1.05; }
.artist-feature figcaption small { color: var(--muted); font-size: 10px; font-weight: 500; }
@keyframes artistPortraitDrift { from { transform: scale(1.025); } to { transform: scale(1.085); } }

.heritage-section {
  position: relative;
  padding: 92px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(0,63,36,.9), rgba(0,63,36,.82)),
    url("assets/zanko-cafe-50.jpg") center 46% / cover no-repeat;
}
.heritage-photo-credit { position: absolute; right: 18px; bottom: 14px; color: rgba(255,248,235,.7); font-size: 10px; font-weight: 600; }
.heritage-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 72px;
  align-items: center;
}
.heritage-mark {
  color: var(--coral);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 15vw, 190px);
  font-weight: 900;
  line-height: .8;
}
.heritage-section h2 { margin-top: 18px; max-width: 720px; }
.heritage-section p:not(.heritage-mark) { margin-top: 28px; max-width: 710px; color: rgba(255,248,235,.9); font-size: 18px; font-weight: 400; }

.offer-strip { padding: 38px 0; color: var(--cream); background: var(--coral); }
.offer-strip-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: center; }
.offer-strip p { font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 600; line-height: 1.15; }
.offer-strip strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; line-height: 1; }
.offer-strip span { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.48); font-size: 14px; font-weight: 850; line-height: 1.65; }

.menu-section { background: var(--paper); }
.section-head {
  display: block;
  margin-bottom: 46px;
}
.menu-toolbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 26px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: thin;
}
.menu-filter {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: var(--cream);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
}
.menu-filter.active { color: var(--cream); background: var(--green); }
@media (max-width: 1200px) {
  .section-head .menu-toolbar { padding-bottom: 6px; }
  .menu-filter { flex: 0 0 auto; white-space: nowrap; }
}
.menu-root { display: grid; gap: 38px; }
.menu-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.menu-category-head small { color: var(--muted); letter-spacing: 0; text-transform: none; }
.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.dish-card {
  overflow: hidden;
  border-radius: 0;
  background: var(--cream);
  border: 1px solid rgba(32,23,19,.1);
  box-shadow: 0 16px 50px rgba(0,63,36,.08);
}
.dish-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #e7e1d8; }
.dish-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.dish-photo-credit {
  position: absolute;
  right: 8px;
  bottom: 7px;
  max-width: calc(100% - 16px);
  padding: 4px 7px;
  color: #fff;
  background: rgba(8, 28, 21, .72);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.25;
}
.dish-card:hover img { transform: scale(1.05); }
.dish-content { padding: 20px; }
.dish-title { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.dish-title h3 { font-size: 25px; }
.dish-title strong { color: var(--coral); font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; font-weight: 700; white-space: nowrap; }
.dish-content p { margin-top: 10px; color: var(--ink); font-size: 15px; font-weight: 400; }
.dish-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.dish-tags span { padding: 6px 9px; border-radius: 999px; color: var(--green); background: rgba(0,63,36,.08); font-size: 12px; font-weight: 900; }

.menu-note {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--green);
}
.menu-note h3 { margin-top: 16px; }
.menu-note p { margin-top: 20px; color: rgba(255,248,235,.76); }
.menu-note-list { display: grid; gap: 10px; }
.menu-note-list span { display: block; padding: 13px 14px; border-radius: 12px; background: rgba(255,255,255,.08); font-weight: 900; }

.experience-section { background: var(--cream); }
.experience-head { margin-bottom: 46px; }
.experience-head h2 { margin-top: 18px; }
.experience-head h2, .atmosphere > .container > h2, .section-head h2 { white-space: nowrap; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--green); }
.experience-item { min-height: 300px; padding: 28px 30px 34px; border-right: 1px solid var(--line); }
.experience-item:first-child { padding-left: 0; }
.experience-item:last-child { border-right: 0; }
.experience-item > span { display: block; color: var(--coral); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.experience-item h3 { margin-top: 48px; color: var(--green); font-size: 32px; }
.experience-item p { margin-top: 16px; max-width: 300px; color: var(--ink); font-size: 16px; font-weight: 400; }

.atmosphere {
  color: var(--cream);
  background: var(--green);
}
.place-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 265px 265px;
  gap: 12px;
  margin-top: 44px;
}
.place-gallery img { width: 100%; height: 100%; object-fit: cover; }
.place-gallery-main { grid-row: 1 / 3; object-position: 50% 72%; }
.place-gallery-bar { grid-column: 2 / 4; object-position: center 46%; }
.place-gallery-room { object-position: 50% 58%; }
.place-gallery-detail { object-position: 50% 52%; }

.events-section { background: var(--paper); }
.events-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 72px; align-items: center; }
.events-copy h2 { margin-top: 18px; }
.events-copy p { margin-top: 26px; max-width: 600px; color: var(--ink); font-size: 18px; font-weight: 400; }
.events-copy .btn { margin-top: 32px; }
.event-types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.event-types span { min-height: 104px; display: flex; align-items: end; padding: 18px; color: var(--cream); background: var(--green); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 600; line-height: 1.05; }
.event-types span:nth-child(2), .event-types span:nth-child(5) { background: var(--coral); }

.commitments-section { padding: 86px 0; background: var(--cream); border-top: 1px solid var(--line); }
.commitments-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.commitments-grid h2 { margin-top: 18px; }
.commitments-list { display: grid; gap: 22px; }
.commitments-list p { padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink); font-size: 17px; font-weight: 400; }

.reviews-section { background: var(--paper); }
.reviews-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.reviews-layout, .reviews-carousel, .reviews-list, .review-item > * { min-width: 0; }
.reviews-intro p { margin-top: 18px; max-width: 340px; color: var(--ink); font-size: 16px; }
.reviews-link { display: inline-block; margin-top: 20px; padding: 6px 0; color: var(--green); border-bottom: 1px solid var(--green); font-size: 14px; font-weight: 700; }
.reviews-carousel { overflow: hidden; }
.reviews-list { display: flex; gap: 16px; overflow: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; }
.reviews-list::-webkit-scrollbar { display: none; }
.review-item { flex: 0 0 calc((100% - 32px) / 3); min-height: 284px; display: grid; grid-template-rows: auto 1fr auto; scroll-snap-align: start; margin: 0; padding: 22px; background: var(--cream); border-top: 3px solid var(--green); }
.review-stars { color: var(--coral); font-size: 15px; line-height: 1; letter-spacing: 0; }
.review-item blockquote { margin: 0; padding: 22px 0; color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-style: italic; font-weight: 600; line-height: 1.12; }
.review-item figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: 12px; }
.review-item figcaption strong { font-weight: 700; }
.review-item figcaption a { margin: -6px -4px; padding: 6px 4px; color: var(--green); border-bottom: 1px solid rgba(0, 67, 45, .35); font-weight: 600; }
.reviews-controls { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
.reviews-dots { display: flex; align-items: center; gap: 7px; }
.reviews-dots button { position: relative; width: 24px; height: 32px; padding: 0; border: 0; background: transparent; transition: width .2s ease; }
.reviews-dots button::after { content: ""; position: absolute; top: 50%; right: 0; left: 0; height: 3px; transform: translateY(-50%); background: rgba(0,67,45,.22); }
.reviews-dots button.active { width: 38px; }
.reviews-dots button.active::after { background: var(--coral); }
.reviews-arrows { display: flex; gap: 8px; }
.reviews-arrows button { width: 42px; height: 42px; padding: 0; border: 1px solid var(--green); color: var(--green); background: transparent; font-size: 21px; line-height: 1; transition: color .2s ease, background .2s ease; }
.reviews-arrows button:hover, .reviews-arrows button:focus-visible { color: var(--cream); background: var(--green); }

.local-links-section { padding: 82px 0; color: var(--cream); background: var(--green); }
.local-links-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: start; }
.local-links-grid h2 { color: var(--cream); }
.local-links-grid > div > p { max-width: 470px; margin-top: 20px; color: rgba(255, 248, 235, .76); }
.local-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.22); }
.local-links a { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); transition: color .2s ease, background .2s ease; }
.local-links a:nth-child(2n) { border-right: 0; }
.local-links a:hover { color: var(--green); background: var(--cream); }
.local-links span { color: var(--coral); font-size: 12px; font-weight: 700; }
.local-links strong { margin-top: 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; line-height: 1.05; }

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}
.contact-card {
  padding: 42px 38px;
  border-radius: 0;
  color: var(--cream);
  background: var(--green);
}
.contact-card h2 { margin-top: 18px; color: var(--cream); }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-list a, .contact-list span {
  display: block;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,248,235,.86);
  font-weight: 850;
}
.map {
  min-height: 470px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  filter: saturate(.9) contrast(.95);
}
.reservation-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: none;
  gap: 10px;
  transform: translateX(-50%);
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,248,235,.9);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.reservation-bar .btn { min-height: 46px; padding: 11px 18px; font-size: 14px; }
.mobile-app-nav { display: none; }
.floating-phone {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 44;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px 10px 15px;
  color: var(--white);
  background: var(--coral);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(32,23,19,.24);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.floating-phone:hover, .floating-phone:focus-visible { transform: translateY(-3px); background: #e9443c; box-shadow: 0 20px 48px rgba(32,23,19,.3); }
.floating-phone .icon { flex: 0 0 auto; width: 21px; height: 21px; }
.floating-phone span { display: grid; line-height: 1.1; }
.floating-phone small { color: rgba(255,255,255,.78); font-size: 10px; font-weight: 600; }
.floating-phone strong { margin-top: 4px; font-size: 14px; white-space: nowrap; }

.footer {
  padding: 54px 0 36px;
  color: var(--muted);
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
}
.footer a, .footer p { display: block; margin: 5px 0; padding: 3px 0; color: var(--muted); font-size: 14px; }
.footer a { transition: color .2s ease; }
.footer a:hover { color: var(--coral); }
.footer h3 { color: var(--green); font-size: 15px; margin: 0 0 14px; }
.footer-logo { width: auto; max-width: 150px; max-height: 102px; height: auto; object-fit: contain; }
.footer-phone { color: var(--coral) !important; font-size: 18px !important; font-weight: 700; }
.footer-credit { margin-top: 28px !important; padding-top: 18px; border-top: 1px solid var(--line); color: var(--green) !important; font-size: 12px !important; }
.footer-meta { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; align-items: center; gap: 18px 32px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--green); font-size: 12px; }
.footer-meta a { margin: 0; color: var(--green); font-size: 12px; font-weight: 600; }
.footer-meta a:nth-child(2) { justify-self: center; text-align: center; }
.footer-meta a:last-child { justify-self: end; text-align: right; }
.footer-in-view .floating-phone { opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none; }

.page-hero { position: relative; min-height: 470px; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream); background: var(--green); }
.page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,35,19,.9) 0%, rgba(0,35,19,.58) 52%, rgba(0,35,19,.2) 100%); }
.page-hero-content { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 68px; }
.page-hero h1 { max-width: 720px; }
.page-hero p { max-width: 590px; margin-top: 20px; color: rgba(255,248,235,.86); font-size: 19px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-photo-credit { position: absolute; right: 18px; bottom: 14px; z-index: 2; color: rgba(255,248,235,.82); font-size: 11px; font-weight: 600; }

.contact-page-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.contact-direct { position: sticky; top: 150px; }
.contact-direct h2 { max-width: 430px; }
.contact-phone-large { display: inline-block; margin-top: 30px; color: var(--coral); font-family: "Cormorant Garamond", Georgia, serif; font-size: 43px; font-weight: 700; line-height: 1; }
.contact-direct-list { display: grid; gap: 18px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-direct-list div { display: grid; gap: 4px; }
.contact-direct-list strong { color: var(--green); font-size: 13px; }
.contact-direct-list span, .contact-direct-list a { color: var(--ink); font-size: 15px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 38px; background: var(--paper); }
.contact-form-intro { grid-column: 1 / -1; margin-bottom: 8px; }
.contact-form-intro p { max-width: 590px; margin-top: 12px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: 13px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid rgba(21,19,17,.22); border-radius: 4px; color: var(--ink); background: var(--cream); outline: 0; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,63,36,.09); }
.form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; padding: 4px 0; color: var(--muted); font-size: 12px; cursor: pointer; }
.form-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.contact-form .btn { justify-self: start; }
.form-status { grid-column: 1 / -1; min-height: 24px; color: var(--green); font-weight: 600; }
.contact-map-section { padding: 0 0 100px; }
.contact-map-head { display: flex; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.contact-map-head p { max-width: 420px; }

.region-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; align-items: start; }
.region-intro > p { color: var(--ink); font-size: 20px; }
.region-stories { display: grid; gap: 0; }
.region-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.region-story:nth-child(even) .region-story-visual { order: 2; }
.region-story-visual { position: relative; min-width: 0; min-height: 0; overflow: hidden; }
.region-story-media { width: 100%; height: 100%; object-fit: cover; }
.region-story-visual figcaption { position: absolute; right: 18px; bottom: 16px; padding: 7px 10px; color: var(--cream); background: rgba(0,35,19,.78); font-size: 11px; font-weight: 600; }
.region-story-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px max(40px, calc((100vw - var(--max)) / 2)); background: var(--paper); }
.region-story-copy > span { color: var(--coral); font-size: 13px; font-weight: 700; }
.region-story-copy h2 { margin-top: 14px; }
.region-story-copy p { max-width: 540px; margin-top: 22px; }
.region-details { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.region-details span { padding: 8px 11px; border: 1px solid var(--line); color: var(--green); font-size: 12px; font-weight: 600; }
.region-guide { padding: 90px 0; color: var(--cream); background: var(--green); }
.region-guide-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 74px; }
.region-guide h2 { color: var(--cream); }
.region-guide-list { display: grid; grid-template-columns: 1fr 1fr; }
.region-guide-list article { padding: 24px 22px; border-top: 1px solid rgba(255,255,255,.2); border-right: 1px solid rgba(255,255,255,.2); }
.region-guide-list article:nth-child(2n) { border-right: 0; }
.region-guide-list h3 { color: var(--cream); font-size: 24px; }
.region-guide-list p { margin-top: 10px; color: rgba(255,248,235,.72); font-size: 14px; }
.region-cta { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.region-cta p { max-width: 620px; margin-top: 18px; }

.about-hero .page-hero-media { object-position: center 58%; animation: aboutHeroDrift 14s ease-out both; }
@keyframes aboutHeroDrift { from { transform: scale(1.06); } to { transform: scale(1); } }
.about-opening-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.about-opening-grid > div { max-width: 650px; }
.about-opening-grid .lead { margin-bottom: 22px; color: var(--ink); }
.memory-band { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 610px; color: var(--cream); background: var(--green); overflow: hidden; }
.memory-photo { position: relative; min-height: 0; overflow: hidden; }
.memory-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.22,.8,.24,1); }
.memory-photo.visible img { transform: scale(1.035); }
.memory-photo figcaption { position: absolute; left: 18px; bottom: 16px; padding: 7px 10px; color: var(--cream); background: rgba(0,35,19,.78); font-size: 11px; font-weight: 600; }
.memory-copy { display: flex; flex-direction: column; justify-content: center; padding: 76px max(50px, calc((100vw - var(--max)) / 2)); }
.memory-copy h2 { max-width: 650px; color: var(--cream); }
.memory-copy > p:not(.memory-name) { max-width: 630px; margin-top: 22px; color: rgba(255,248,235,.8); font-size: 17px; }
.memory-name { margin-bottom: 18px; color: var(--coral); font-size: 14px; font-weight: 700; }
.history-section { overflow: hidden; }
.history-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: end; margin-bottom: 70px; }
.history-head p { max-width: 520px; color: var(--ink); font-size: 18px; }
.history-timeline { border-top: 1px solid var(--green); }
.history-row { display: grid; grid-template-columns: .42fr 1.58fr; gap: 58px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.history-row:nth-child(even).reveal { transform: translateX(38px); }
.history-row:nth-child(odd).reveal { transform: translateX(-38px); }
.history-row.visible { transform: translateX(0) !important; }
.history-year { color: var(--coral); font-family: "Cormorant Garamond", Georgia, serif; font-size: 35px; font-weight: 700; line-height: 1; }
.history-copy h3 { color: var(--green); font-size: 29px; }
.history-copy p { max-width: 760px; margin-top: 12px; color: var(--ink); }
.sam-story { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 640px; background: var(--paper); overflow: hidden; }
.sam-copy { display: flex; flex-direction: column; justify-content: center; padding: 76px max(50px, calc((100vw - var(--max)) / 2)); }
.sam-copy p { max-width: 610px; margin-top: 20px; color: var(--ink); }
.sam-copy .btn { align-self: flex-start; margin-top: 30px; }
.sam-photo { min-height: 0; overflow: hidden; }
.sam-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,.8,.24,1); }
.sam-photo.visible img { transform: scale(1.035); }
.about-closing { padding: 96px 0; color: var(--cream); background: var(--coral); }
.about-closing-inner { display: grid; grid-template-columns: .4fr 1.2fr .55fr; gap: 48px; align-items: center; }
.about-closing p { color: rgba(255,248,235,.78); font-size: 14px; font-weight: 600; }
.about-closing h2 { color: var(--cream); }
.about-closing-inner > div { display: grid; gap: 10px; }
.btn-outline-light { color: var(--cream); border: 1px solid rgba(255,255,255,.58); background: transparent; }

.legal-hero { padding: 106px 0 76px; color: var(--cream); background: var(--green); }
.legal-hero h1 { max-width: 800px; margin-top: 10px; }
.legal-hero p { max-width: 650px; margin-top: 18px; color: rgba(255,248,235,.78); }
.legal-hero p:first-child { margin-top: 0; color: var(--coral); font-size: 13px; font-weight: 700; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 84px; align-items: start; }
.legal-nav { position: sticky; top: 142px; display: grid; border-top: 1px solid var(--green); }
.legal-nav strong { padding: 18px 0 14px; color: var(--green); }
.legal-nav a { padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 14px; }
.legal-nav a:hover { color: var(--coral); }
.legal-content { max-width: 770px; }
.legal-block { padding: 0 0 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line); scroll-margin-top: 150px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 { font-size: 39px; }
.legal-block p { margin-top: 18px; color: var(--ink); }
.legal-block a { color: var(--green); }
.legal-block dl { display: grid; gap: 12px; margin: 26px 0 0; }
.legal-block dl div { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding-top: 12px; border-top: 1px solid var(--line); }
.legal-block dt { color: var(--green); font-weight: 600; }
.legal-block dd { margin: 0; }
.legal-block address { margin-top: 22px; color: var(--ink); font-style: normal; line-height: 1.75; }
.legal-external { display: inline-block; margin-top: 14px; font-weight: 600; }

.zanko-gallery-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: end; margin-top: 86px; padding-top: 36px; border-top: 1px solid var(--line); }
.zanko-gallery-head h3 { max-width: 380px; font-size: 36px; }
.zanko-gallery-head p { max-width: 580px; color: var(--ink); }
.atmosphere .zanko-gallery-head { border-top-color: rgba(255,255,255,.22); }
.atmosphere .zanko-gallery-head p { color: rgba(255,248,235,.8); }
.atmosphere .photo-credit { color: var(--cream); }
.zanko-carousel { min-width: 0; overflow: hidden; margin-top: 34px; }
.zanko-gallery { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
.zanko-gallery::-webkit-scrollbar { display: none; }
.zanko-gallery figure { position: relative; flex: 0 0 calc((100% - 24px) / 3); height: 390px; overflow: hidden; scroll-snap-align: start; background: var(--paper); }
.zanko-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.8,.24,1); }
.zanko-gallery figure:nth-child(2) img, .zanko-gallery figure:nth-child(9) img { object-position: center 42%; }
.zanko-gallery figure:nth-child(6) img, .zanko-gallery figure:nth-child(11) img { object-position: center 65%; }
.zanko-gallery figure:hover img { transform: scale(1.04); }
.lightbox-trigger { cursor: zoom-in; }
.lightbox-trigger:focus-visible { outline: 3px solid var(--coral); outline-offset: -5px; }
.gallery-controls { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
.gallery-dots { display: flex; align-items: center; gap: 7px; }
.gallery-dots button { position: relative; flex: 0 0 20px; width: 20px; height: 32px; padding: 0; border: 0; background: transparent; transition: flex-basis .2s ease, width .2s ease; }
.gallery-dots button::after { content: ""; position: absolute; top: 50%; right: 0; left: 0; height: 3px; transform: translateY(-50%); background: rgba(255,248,235,.28); }
.gallery-dots button.active { flex-basis: 32px; width: 32px; }
.gallery-dots button.active::after { background: var(--coral); }
.gallery-arrows { display: flex; gap: 8px; }
.gallery-arrows button { width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,248,235,.7); color: var(--cream); background: transparent; font-size: 21px; line-height: 1; transition: color .2s ease, background .2s ease; }
.gallery-arrows button:hover, .gallery-arrows button:focus-visible { color: var(--green); background: var(--cream); }
.photo-credit { margin-top: 14px; color: var(--green); font-size: 12px; font-weight: 600; text-align: right; }

body.lightbox-open { overflow: hidden; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 22px;
  padding: 72px 30px 30px;
  visibility: hidden;
  opacity: 0;
  color: var(--cream);
  background: rgba(8, 19, 14, .94);
  transition: opacity .25s ease, visibility .25s ease;
}
.image-lightbox.open { visibility: visible; opacity: 1; }
.lightbox-figure { min-width: 0; max-width: 1220px; max-height: calc(100vh - 102px); display: grid; justify-self: center; gap: 12px; margin: 0; }
.lightbox-figure img { max-width: 100%; max-height: calc(100vh - 140px); justify-self: center; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.34); }
.lightbox-figure figcaption { min-height: 20px; color: rgba(255,248,235,.76); font-size: 13px; text-align: center; }
.lightbox-close, .lightbox-arrow { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,248,235,.52); border-radius: 50%; color: var(--cream); background: rgba(0,63,36,.4); font-size: 25px; line-height: 1; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.lightbox-close:hover, .lightbox-arrow:hover { color: var(--green); background: var(--cream); border-color: var(--cream); }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 32px; }
.lightbox-previous { justify-self: end; }
.lightbox-next { justify-self: start; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .52s ease, transform .52s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1020px) {
  .section { padding: 86px 0; }
  h2 { font-size: 42px; }
  .experience-head h2, .atmosphere > .container > h2, .section-head h2 { white-space: normal; }
  .section-head { display: block; }
  .section-head .menu-toolbar { margin-top: 24px; }
  .nav-links, .header-phone { display: none; }
  .mobile-menu { display: inline-flex; }
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    border: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(21,19,17,.42);
    backdrop-filter: blur(4px);
    transition: opacity .3s ease, visibility .3s ease;
  }
  .mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 90;
    display: flex;
    flex-direction: column;
    width: min(430px, 100vw);
    min-height: 100dvh;
    color: var(--ink);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.22,.8,.24,1);
  }
  body.drawer-open { overflow: hidden; }
  body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
  body.drawer-open .mobile-drawer { transform: translateX(0); }
  .drawer-header {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-header img { width: auto; max-width: 100px; max-height: 68px; height: auto; object-fit: contain; }
  .drawer-close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--green);
    background: transparent;
  }
  .drawer-panel { display: none; flex: 1; padding: 28px 22px max(28px, env(safe-area-inset-bottom)); }
  .drawer-panel.active { display: flex; flex-direction: column; animation: drawerPanelIn .28s ease both; }
  @keyframes drawerPanelIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
  .drawer-nav { display: grid; }
  .drawer-nav a, .drawer-nav button {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 31px;
    font-weight: 600;
    text-align: left;
  }
  .drawer-nav button span { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 28px; font-weight: 400; }
  .drawer-reserve {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 999px;
    color: var(--cream);
    background: var(--green);
    font-weight: 600;
  }
  .drawer-details { margin-top: 18px; color: var(--ink); font-size: 13px; line-height: 1.6; }
  .drawer-socials { display: flex; gap: 8px; margin-top: 12px; }
  .drawer-socials a { min-height: 38px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--green); font-size: 12px; font-weight: 700; }
  .drawer-back { align-self: flex-start; padding: 8px 0; border: 0; color: var(--green); background: transparent; font-weight: 600; }
  .drawer-panel h2 { margin-top: 28px; margin-bottom: 18px; }
  .drawer-nav-secondary a { font-size: 27px; }
  .intro-grid, .heritage-grid, .events-grid, .commitments-grid, .reviews-layout, .menu-note, .contact-grid, .local-links-grid, .contact-page-grid, .region-intro, .region-guide-grid, .about-opening-grid, .history-head { grid-template-columns: 1fr; }
  .intro-grid { gap: 42px; }
  .artist-feature { width: min(100%, 520px); justify-self: center; }
  .artist-feature-frame { height: auto; min-height: 0; aspect-ratio: 3 / 4; }
  .heritage-grid, .events-grid, .commitments-grid { gap: 38px; }
  .menu-items { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floating-phone { right: 18px; width: 54px; min-height: 54px; justify-content: center; padding: 0; }
  .floating-phone span { display: none; }
  .contact-direct { position: static; }
  .region-story { min-height: 480px; }
  .region-story-copy { padding: 54px 38px; }
  .about-opening-grid, .history-head { gap: 30px; }
  .memory-copy, .sam-copy { padding: 62px 42px; }
  .about-closing-inner { grid-template-columns: 1fr 1.4fr; }
  .about-closing-inner > div { grid-column: 1 / -1; display: flex; }
  .legal-layout { grid-template-columns: 1fr; gap: 46px; }
  .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
  .legal-nav a { padding-right: 12px; }
}
@media (max-width: 720px) {
  html { scroll-padding-top: 122px; }
  body { padding-top: 108px; }
  main [id] { scroll-margin-top: 122px; }
  .container { width: auto; min-width: 0; max-width: none; margin-left: 14px; margin-right: 14px; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; color: var(--cream); background: var(--green); }
  .hero-bg { inset: 0; opacity: .33; }
  .hero-bg::after { display: none; }
  .hero-slide-dots, .hero-photo-credit { display: none; }
  .hero-content { width: calc(100vw - 28px); max-width: 362px; padding: 72px 0 78px; }
  h1 { max-width: 330px; font-size: 39px; line-height: 1.04; overflow-wrap: normal; }
  .hero .lead { max-width: 330px; }
  .hero .lead { color: rgba(255,248,235,.84); }
  .intro-grid, .intro-copy { width: calc(100vw - 28px); min-width: 0; max-width: calc(100vw - 28px); }
  .intro-copy h2, .intro-copy p { max-width: 100%; }
  h2 { font-size: 34px; line-height: 1.08; }
  .lead { font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-actions .btn, .reservation-bar .btn { width: 100%; min-width: 0; }
  .floating-hours { display: none; }
  .preheader-inner { min-height: 38px; gap: 12px; }
  .preheader-address { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .preheader-links { display: none; }
  .preheader-phone { margin-left: auto; padding: 0 10px; font-size: 13px; }
  .nav { min-height: 70px; }
  .brand { height: 72px; }
  .brand-logo-frame { width: 90px; height: 66px; }
  .brand-logo { width: auto; max-height: 56px; }
  .nav > .mobile-menu { position: static; z-index: 1; display: inline-flex !important; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; color: var(--cream); background: var(--green); border-color: var(--green); }
  .story-points, .menu-items, .footer-grid { grid-template-columns: 1fr; }
  .artist-feature { width: min(100%, 430px); }
  .artist-feature-frame span { top: 14px; left: 14px; }
  .heritage-section, .commitments-section { padding: 72px 0; }
  .heritage-grid { gap: 24px; }
  .heritage-mark { font-size: 92px; }
  .heritage-section p:not(.heritage-mark), .events-copy p { font-size: 17px; }
  .offer-strip { padding: 34px 0; }
  .offer-strip-grid, .experience-grid { grid-template-columns: 1fr; }
  .offer-strip-grid { gap: 20px; }
  .offer-strip span { padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.48); border-left: 0; }
  .experience-grid { border-top: 0; }
  .experience-item, .experience-item:first-child { min-height: auto; padding: 26px 0; border-top: 1px solid var(--line); border-right: 0; }
  .experience-item h3 { margin-top: 20px; font-size: 28px; }
  .event-types { grid-template-columns: 1fr; }
  .event-types span { min-height: 76px; }
  .reviews-layout { gap: 34px; }
  .review-item { flex-basis: 88%; min-height: 248px; padding: 20px; }
  .review-item blockquote { padding: 20px 0; font-size: 21px; }
  .review-item figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .reviews-controls { margin-top: 16px; }
  .local-links-section { padding: 70px 0; }
  .local-links-grid { gap: 34px; }
  .local-links { grid-template-columns: 1fr; }
  .local-links a, .local-links a:nth-child(2n) { min-height: 92px; border-right: 0; }
  .page-hero { min-height: 440px; }
  .page-hero::after { background: linear-gradient(180deg, rgba(0,35,19,.4), rgba(0,35,19,.9)); }
  .page-hero-content { padding-top: 100px; padding-bottom: 50px; }
  .page-hero p { font-size: 17px; }
  .page-hero-actions { display: grid; }
  .page-hero-actions .btn { width: 100%; }
  .about-hero .page-hero-content { flex: 1 1 auto; width: auto; min-width: 0; max-width: none; margin-right: 20px; margin-left: 20px; }
  .about-hero h1 { max-width: 100%; font-size: 36px; overflow-wrap: anywhere; }
  .about-hero .page-hero-actions, .about-hero .page-hero-actions .btn { max-width: 100%; }
  .about-hero .page-hero-actions .btn { padding-right: 14px; padding-left: 14px; white-space: normal; text-align: center; }
  .contact-page-grid { gap: 44px; }
  .contact-phone-large { font-size: 36px; }
  .contact-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .contact-form-intro, .field-full, .form-consent, .form-status { grid-column: auto; }
  .contact-map-head { display: grid; }
  .region-intro { gap: 24px; }
  .region-story { grid-template-columns: 1fr; min-height: auto; }
  .region-story:nth-child(even) .region-story-visual { order: 0; }
  .region-story-visual { height: 340px; }
  .region-story-media { height: 100%; }
  .region-story-copy { padding: 44px 20px; }
  .region-guide { padding: 70px 0; }
  .region-guide-grid { gap: 34px; }
  .region-guide-list { grid-template-columns: 1fr; }
  .region-guide-list article, .region-guide-list article:nth-child(2n) { border-right: 0; }
  .region-cta { grid-template-columns: 1fr; gap: 28px; }
  .memory-band, .sam-story { grid-template-columns: 1fr; min-height: auto; }
  .memory-photo, .sam-photo { height: 360px; }
  .memory-copy, .sam-copy { padding: 48px 20px; }
  .history-head { margin-bottom: 44px; }
  .history-row { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .history-year { font-size: 31px; }
  .history-copy h3 { font-size: 26px; }
  .history-row:nth-child(even).reveal, .history-row:nth-child(odd).reveal { transform: translateY(24px); }
  .about-closing { padding: 72px 0 110px; }
  .about-closing-inner { grid-template-columns: 1fr; gap: 22px; }
  .about-closing-inner > div { grid-column: auto; display: grid; }
  .zanko-gallery-head { grid-template-columns: 1fr; gap: 16px; margin-top: 62px; }
  .zanko-gallery-head h3 { font-size: 30px; }
  .zanko-carousel { margin-top: 26px; overflow: visible; }
  .zanko-gallery { margin-right: -20px; padding-right: 20px; }
  .zanko-gallery figure { flex-basis: 86%; height: 430px; }
  .gallery-controls { margin-top: 16px; }
  .gallery-dots { max-width: calc(100% - 105px); overflow: hidden; }
  .gallery-dots button { flex-basis: 20px; }
  .gallery-dots button.active { flex-basis: 32px; }
  .photo-credit { text-align: left; }
  .image-lightbox { grid-template-columns: 48px minmax(0, 1fr) 48px; gap: 8px; padding: 70px 10px 20px; }
  .lightbox-close, .lightbox-arrow { width: 42px; height: 42px; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-figure img { max-height: calc(100vh - 130px); }
  .lightbox-figure figcaption { padding: 0 8px; font-size: 12px; }
  .footer-meta { grid-template-columns: 1fr; gap: 10px; }
  .footer-meta a:nth-child(2), .footer-meta a:last-child { justify-self: start; text-align: left; }
  .legal-hero { padding: 74px 0 58px; }
  .legal-hero h1 { max-width: 100%; font-size: 38px; overflow-wrap: anywhere; }
  .legal-nav { grid-template-columns: 1fr 1fr; }
  .legal-block { padding-bottom: 38px; margin-bottom: 38px; }
  .legal-block h2 { font-size: 32px; }
  .legal-block dl div { grid-template-columns: 1fr; gap: 4px; }
  .section-head { display: block; }
  .menu-toolbar { margin-top: 24px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .menu-filter { white-space: nowrap; }
  .place-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 180px 180px; }
  .place-gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .place-gallery-bar { grid-column: 1 / 3; grid-row: 2; }
  .place-gallery-room, .place-gallery-detail { grid-row: 3; }
  .reservation-bar {
    left: 12px;
    right: 12px;
    transform: none;
    border-radius: 22px;
    display: flex;
    padding: 6px;
  }
  .reservation-bar .btn { width: calc(50% - 5px); min-height: 46px; padding: 10px 8px; }
  .floating-phone {
    right: 18px;
    bottom: 86px;
    width: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }
  .floating-phone span { display: none; }
  body { padding-bottom: 88px; }
  .footer { padding-bottom: 110px; }
  .reservation-bar, .floating-phone { display: none; }
  .mobile-app-nav {
    position: fixed;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 68px;
    padding: 6px 5px;
    border: 1px solid rgba(0,63,36,.14);
    border-radius: 8px;
    background: rgba(255,248,235,.96);
    box-shadow: 0 16px 48px rgba(17,38,26,.22);
    backdrop-filter: blur(18px);
  }
  .mobile-app-nav > a, .mobile-app-nav > button {
    position: relative;
    min-width: 0;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 2px;
    border: 0;
    color: #5f695f;
    background: transparent;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
  }
  .mobile-app-nav svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-app-nav > .active { color: var(--green); }
  .mobile-app-nav > .active::after { content: ""; position: absolute; right: 18px; bottom: 1px; left: 18px; height: 2px; background: var(--coral); }
  .mobile-app-nav .mobile-app-call { color: var(--green); font-weight: 700; }
  .mobile-app-call-icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; margin-top: -24px; border: 4px solid var(--cream); border-radius: 50%; color: var(--cream); background: var(--coral); box-shadow: 0 8px 22px rgba(255,78,69,.32); }
  .mobile-app-nav .mobile-app-call svg { width: 20px; height: 20px; }
}
