:root {
  color-scheme: light;
  --ink: #142033;
  --ink-soft: #4f5d6e;
  --navy: #71adc3;
  --blue: #1c63c7;
  --blue-deep: #11458f;
  --sky: #71adc3;
  --pink: #f1d7e3;
  --saffron: #d79924;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --line: #ccd7e2;
  --header-height: 72px;
  --radius: 14px;
  --shell: min(1180px, calc(100% - 40px));
  --z-header: 20;
  --z-mobile-actions: 30;
  --z-modal: 50;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.is-locked { position: fixed; width: 100%; overflow: hidden; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, blockquote, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { font-family: "Trebuchet MS", "Avenir Next", Arial, sans-serif; line-height: 1.02; letter-spacing: -0.035em; text-wrap: balance; }
h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 6.5vw, 5.2rem); }
h3 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
p { color: var(--ink-soft); text-wrap: pretty; }

.page-shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 16px; border-radius: 8px; color: var(--ink); background: var(--surface); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: var(--z-header); top: 0; left: 0; width: 100%; height: var(--header-height); color: #fff; background: rgba(12, 24, 39, 0.18); border-bottom: 1px solid rgba(255, 255, 255, 0.22); transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease; }
.site-header.is-scrolled, .site-header.is-open { color: var(--ink); background: rgba(255, 255, 255, 0.97); border-color: var(--line); }
.nav-shell { position: relative; display: flex; align-items: center; justify-content: space-between; width: var(--shell); height: 100%; margin-inline: auto; }
.wordmark { display: inline-flex; align-items: baseline; gap: 5px; font-size: 0.95rem; letter-spacing: -0.02em; text-decoration: none; }
.wordmark strong { font-size: 1.42rem; font-weight: 850; }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu > a { position: relative; font-size: 0.8rem; font-weight: 750; text-decoration: none; }
.nav-menu > a[data-nav-link]::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease-out; }
.nav-menu > a:hover::after, .nav-menu > a:focus-visible::after, .nav-menu > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.instagram-link { display: grid; width: 28px; height: 28px; place-items: center; }
.instagram-link svg { width: 18px; height: 18px; fill: currentColor; }
.menu-toggle { display: none; }

.hero { position: relative; display: grid; min-height: 100svh; overflow: hidden; color: #fff; place-items: end start; }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 50% 52%; transform: scale(1.015); animation: hero-settle 1.4s cubic-bezier(.22,.8,.25,1) both; }
.hero-shade { background: rgba(7, 15, 24, 0.17); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(108px, 14vh, 154px); }
.hero-label { margin-bottom: 16px; color: #fff; font-size: 0.78rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; animation: hero-copy 700ms 120ms ease-out both; }
.hero h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(3.3rem, 7.4vw, 5.8rem); font-weight: 850; text-shadow: 0 2px 18px rgba(0,0,0,.24); animation: hero-copy 700ms 180ms ease-out both; }
.hero-content > p:not(.hero-label) { max-width: 620px; margin-bottom: 30px; color: rgba(255,255,255,.96); font-size: clamp(1rem, 2vw, 1.2rem); text-shadow: 0 1px 12px rgba(0,0,0,.3); animation: hero-copy 700ms 240ms ease-out both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: hero-copy 700ms 300ms ease-out both; }
@keyframes hero-settle { from { transform: scale(1.06); } to { transform: scale(1.015); } }
@keyframes hero-copy { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 23px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 850; line-height: 1.2; text-decoration: none; transition: transform 180ms ease-out, color 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { background: var(--blue-deep); }
.button-quiet { color: #fff; background: rgba(9,18,28,.36); border-color: rgba(255,255,255,.8); }
.button-quiet:hover { color: var(--ink); background: #fff; }
.button-outline { color: var(--blue-deep); background: transparent; border-color: var(--blue); }
.button-outline:hover { color: #fff; background: var(--blue); }
.arrow-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-deep); font-weight: 850; text-underline-offset: 4px; }
.arrow-link span { transition: transform 180ms ease-out; }
.arrow-link:hover span { transform: translateX(5px); }

.visit-strip { position: relative; z-index: 3; color: var(--ink); background: var(--navy); }
.visit-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.visit-strip-grid > div { display: grid; gap: 2px; padding: 23px 26px; border-right: 1px solid rgba(20,32,51,.18); }
.visit-strip-grid > div:first-child { padding-left: 0; }
.visit-strip-grid > div:last-child { border-right: 0; }
.visit-strip strong { font-size: 1rem; }
.visit-strip span { color: rgba(20,32,51,.72); font-size: 0.78rem; }

.story-section { padding-block: clamp(92px, 11vw, 150px); background: var(--surface); }
.story-layout { display: grid; grid-template-columns: minmax(280px,.92fr) minmax(0,1.08fr); align-items: center; gap: clamp(44px,6vw,76px); max-width: 1140px; }
.story-image { width: 100%; max-width: 480px; aspect-ratio: 3/4; margin: 0; overflow: hidden; border-radius: var(--radius); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding: 0; background: transparent; }
.story-intro { margin-bottom: 20px; color: var(--blue-deep); font-size: .82rem; font-weight: 850; }
.story-copy h2 { max-width: 650px; font-size: clamp(2.8rem,5vw,4.5rem); }
.story-copy > p:not(.story-intro) { max-width: 62ch; font-size: .98rem; }
.story-facts { display: grid; margin: 30px 0 0; border-top: 1px solid var(--line); }
.story-facts div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.story-facts dt { color: var(--ink-soft); font-size: .78rem; }
.story-facts dd { font-size: .8rem; font-weight: 800; }

.signatures-section { padding-block: clamp(92px, 10vw, 136px); color: var(--ink); background: var(--sky); }
.signature-heading { display: flex; align-items: end; justify-content: space-between; gap: 44px; margin-bottom: 48px; }
.signature-heading > div { max-width: 760px; }
.signature-heading p { margin-bottom: 12px; color: var(--blue-deep); font-weight: 800; }
.signature-heading > p { max-width: 320px; margin-bottom: 8px; color: var(--ink-soft); font-size: .88rem; font-weight: 400; }
.signature-heading h2 { margin-bottom: 0; }
.signature-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.signature { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border-radius: var(--radius); color: var(--ink); background: #fff; box-shadow: 0 6px 8px rgba(20,32,51,.08); }
.signature:nth-child(even) { grid-template-columns: none; }
.signature:nth-child(even) figure { order: 0; }
.signature figure { width: 100%; aspect-ratio: 3/4; margin: 0; overflow: hidden; }
.signature figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.75,.25,1); }
.signature:hover figure img { transform: scale(1.025); }
.signature-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 24px 24px 28px; }
.signature-copy span { margin-bottom: 10px; color: var(--blue-deep); font-size: .78rem; font-weight: 800; }
.signature-copy h3 { max-width: none; margin-bottom: 12px; font-size: clamp(1.45rem,2.4vw,2rem); }
.signature-copy p { max-width: 54ch; margin-bottom: 18px; font-size: .9rem; }
.signature-copy > strong { margin-top: auto; color: var(--blue-deep); font-size: 1.05rem; }
.signature-copy .arrow-link { margin-top: auto; }
.signature-blue, .signature-pink, .signature-saffron { background: #fff; }

.menu-section { padding-block: clamp(80px,7vw,100px); background: var(--pink); }
.menu-shell { display: grid; grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr); grid-template-rows: auto 1fr; column-gap: clamp(54px,7vw,92px); max-width: 1180px; }
.menu-heading { grid-row: 1 / span 2; margin: 0; padding-right: 8px; }
.menu-heading > div > p { margin-bottom: 14px; color: var(--blue-deep); font-weight: 850; }
.menu-heading h2 { margin-bottom: 26px; font-size: clamp(3.5rem,5.5vw,5.1rem); }
.menu-heading .menu-note { max-width: 32ch; margin-bottom: 28px; color: var(--ink-soft); font-size: .88rem; font-weight: 400; }
.menu-tabs { display: flex; overflow-x: auto; gap: 4px; padding-bottom: 2px; border-bottom: 1px solid rgba(20,32,51,.22); scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button { flex: 0 0 auto; padding: 17px 20px; border: 0; border-bottom: 3px solid transparent; background: transparent; cursor: pointer; font-size: 1.05rem; font-weight: 800; }
.menu-tabs button[aria-selected="true"] { color: var(--blue-deep); border-bottom-color: var(--blue); }
.menu-panels { min-height: 380px; padding-top: 20px; }
.menu-panel { animation: panel-in 280ms ease-out both; }
@keyframes panel-in { from { opacity: .25; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.menu-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 52px; }
.menu-panel article { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: start; min-height: 120px; padding: 20px 0; border-bottom: 1px solid rgba(20,32,51,.22); }
.menu-panel h3 { margin-bottom: 8px; font-family: inherit; font-size: 1.15rem; letter-spacing: -0.015em; }
.menu-panel p { margin-bottom: 0; font-size: .94rem; line-height: 1.55; }
.menu-panel strong { color: var(--blue-deep); font-size: 1.04rem; }

.tea-break { position: relative; display: grid; min-height: 90svh; overflow: hidden; color: #fff; place-items: center start; }
.tea-break > img, .tea-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.tea-break > img { object-fit: cover; object-position: 50% 50%; }
.tea-shade { background: rgba(7,15,24,.27); }
.tea-copy { position: relative; z-index: 2; }
.tea-copy > p { margin-bottom: 18px; color: #fff; font-weight: 850; }
.tea-copy h2 { max-width: 850px; margin-bottom: 34px; font-size: clamp(3rem, 7vw, 5.7rem); text-shadow: 0 2px 20px rgba(0,0,0,.25); }

.gallery-section { padding-block: clamp(100px, 13vw, 172px); overflow: hidden; background: var(--surface); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.gallery-heading h2 { max-width: 780px; margin-bottom: 0; }
.gallery-heading p { max-width: 330px; margin-bottom: 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: start; padding-bottom: 48px; }
.gallery-item { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: var(--sky); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.75,.25,1); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); }
.gallery-a, .gallery-d { grid-column: 1 / span 4; }
.gallery-b, .gallery-e { grid-column: 5 / span 4; }
.gallery-c, .gallery-f { grid-column: 9 / span 4; }
.gallery-b, .gallery-e { transform: translateY(48px); }

.reviews-section { padding-block: clamp(76px, 7vw, 100px); color: var(--ink); background: var(--navy); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.reviews-heading > div { max-width: 760px; }
.reviews-heading h2 { margin-bottom: 0; font-size: clamp(2.8rem,4.5vw,4rem); }
.reviews-heading > div > p { margin-bottom: 14px; color: #fff; font-size: 1.3rem; font-weight: 850; }
.reviews-heading span, .reviewer p { color: #f1bd48; letter-spacing: .05em; }
.reviews-heading > p { margin-bottom: 8px; color: rgba(255,255,255,.65); }
.reviews-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.review-featured { display: flex; min-height: 500px; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3.5vw, 48px); border-radius: var(--radius); color: var(--ink); background: var(--pink); }
.review-supporting { display: grid; gap: 24px; }
.review-supporting article { display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviewer h3 { margin: 0 0 4px; font-family: inherit; font-size: 1rem; letter-spacing: 0; }
.reviewer p { margin: 0; font-size: .8rem; }
.review-featured blockquote { max-width: 23ch; margin: 24px 0; font-family: "Trebuchet MS", Arial, sans-serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 750; line-height: 1.18; letter-spacing: -.03em; }
.review-supporting blockquote { margin: 24px 0; color: rgba(255,255,255,.84); font-size: .95rem; }
.review-featured a, .review-supporting a { width: fit-content; margin-top: auto; font-size: .84rem; font-weight: 800; text-underline-offset: 4px; }

.visit-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--surface); }
.visit-details { display: grid; align-items: center; padding: clamp(32px,3vw,40px) max(24px,calc((100vw - 1180px)/2)); padding-right: clamp(34px,7vw,96px); }
.visit-inner { width: 100%; max-width: 580px; }
.visit-lead { margin-bottom: 18px; color: var(--blue-deep); font-weight: 850; }
.visit-inner h2 { font-size: clamp(2.55rem,3.8vw,3.4rem); }
.visit-inner address { margin: 20px 0; color: var(--ink-soft); font-style: normal; }
.visit-inner address strong { color: var(--ink); font-size: 1.1rem; }
.visit-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 28px; }
.text-link { color: var(--blue-deep); font-weight: 850; text-underline-offset: 4px; }
.hours-block { padding-top: 20px; border-top: 1px solid var(--line); }
.hours-block h3 { margin-bottom: 10px; font-family: inherit; font-size: 1.25rem; letter-spacing: -.02em; }
.hours-list { display: grid; gap: 6px; margin-bottom: 10px; }
.hours-list div { display: flex; justify-content: space-between; gap: 18px; }
.hours-list dd { font-weight: 750; text-align: right; }
.hours-block > p { margin: 0; font-size: .8rem; }
.amenities { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.amenities li { padding: 7px 11px; border-radius: 999px; color: var(--blue-deep); background: var(--sky); font-size: .75rem; font-weight: 750; }
.map-wrap { min-height: 760px; background: var(--sky); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 760px; border: 0; }

@media (min-width: 981px) {
  .menu-section { padding-block: 158px; }
  .menu-heading { align-self: stretch; }
  .menu-heading > div { display: flex; height: 100%; flex-direction: column; align-items: flex-start; }
  .menu-heading .button { margin-top: auto; }
  .menu-panel-grid { min-height: 360px; grid-auto-rows: 1fr; }
  .menu-panel article { min-height: 0; }
  #panel-lunch .menu-panel-grid article { padding-block: 10px; }
  .visit-details { padding-right: clamp(32px,3vw,48px); }
  .visit-inner { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 32px; }
  .visit-lead, .visit-inner h2, .visit-inner address, .visit-actions { grid-column: 1 / -1; }
  .amenities { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: start; gap: 6px; margin: 0; padding-top: 20px; border-top: 1px solid var(--line); }
  .amenities li { padding: 6px 8px; font-size: .7rem; }
}

.site-footer { padding-block: 56px 36px; color: rgba(255,255,255,.8); background: #0d1825; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: start; }
.footer-brand { color: #fff; font-size: 1.5rem; font-weight: 850; text-decoration: none; }
.site-footer p { margin: 7px 0 0; color: rgba(255,255,255,.58); font-size: .86rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-links a { font-size: .84rem; font-weight: 750; text-underline-offset: 4px; }
.copyright { grid-column: 1/-1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.mobile-actions { display: none; }

.lightbox { z-index: var(--z-modal); width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; color: #fff; background: rgba(4,8,12,.96); }
.lightbox::backdrop { background: rgba(4,8,12,.96); }
.lightbox-panel { position: relative; display: grid; width: 100%; height: 100%; place-items: center; }
.lightbox figure { display: grid; max-width: min(90vw,1100px); max-height: 88dvh; margin: 0; place-items: center; }
.lightbox figure img { max-width: 100%; max-height: 80dvh; object-fit: contain; }
.lightbox figcaption { max-width: 720px; margin-top: 10px; color: rgba(255,255,255,.74); font-size: .85rem; text-align: center; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; display: grid; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: rgba(0,0,0,.3); cursor: pointer; font-size: 2rem; line-height: 1; place-items: center; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }
.lightbox-count { position: absolute; bottom: 18px; left: 50%; margin: 0; color: rgba(255,255,255,.74); font-size: .78rem; transform: translateX(-50%); }
.lightbox-nav[hidden] { display: none; }
:focus-visible { outline: 3px solid #7daef4; outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .menu-toggle { display: grid; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; cursor: pointer; place-content: center; gap: 6px; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; background: currentColor; transition: transform 180ms ease-out; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .nav-menu { position: absolute; top: var(--header-height); right: -16px; left: -16px; display: grid; max-height: 0; overflow: hidden; gap: 0; color: var(--ink); background: rgba(255,255,255,.99); transition: max-height 260ms ease-out; }
  .nav-menu.is-open { max-height: 500px; }
  .nav-menu > a { min-height: 50px; padding: 14px 22px; border-bottom: 1px solid var(--line); }
  .instagram-link { display: flex; width: auto; height: 50px; justify-content: flex-start; }
  .instagram-link::after { margin-left: 12px; content: "Instagram"; }
  .visit-strip-grid { grid-template-columns: repeat(2,1fr); }
  .visit-strip-grid > div { padding-left: 20px; }
  .visit-strip-grid > div:nth-child(2) { border-right: 0; }
  .visit-strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(20,32,51,.18); }
  .story-layout { grid-template-columns: 1fr; }
  .story-image { max-width: 460px; }
  .story-copy { max-width: 650px; }
  .signature-heading { align-items: start; flex-direction: column; gap: 10px; }
  .signature-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .menu-shell { display: block; max-width: 760px; }
  .menu-heading { margin-bottom: 34px; padding-right: 0; }
  .menu-panel-grid { column-gap: 34px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-featured { min-height: 470px; }
  .review-supporting { grid-template-columns: repeat(2,1fr); }
  .visit-section { grid-template-columns: 1fr; min-height: 0; }
  .visit-details { padding: 96px max(16px,calc((100vw - 760px)/2)); }
  .map-wrap, .map-wrap iframe { min-height: 540px; }
}

@media (max-width: 680px) {
  :root { --header-height: 66px; --shell: calc(100% - 32px); }
  body { padding-bottom: 64px; }
  h2 { font-size: clamp(2.4rem,11.5vw,3.7rem); }
  .wordmark { font-size: .82rem; }
  .wordmark strong { font-size: 1.28rem; }
  .hero-media img { object-position: 52% 55%; }
  .hero-content { padding-bottom: 88px; }
  .hero h1 { max-width: 360px; font-size: clamp(3.15rem,15vw,4.2rem); }
  .hero-content > p:not(.hero-label) { max-width: 355px; font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; padding-inline: 14px; }
  .visit-strip-grid { width: 100%; }
  .visit-strip-grid > div { padding: 17px 16px; }
  .visit-strip-grid > div:first-child { padding-left: 16px; }
  .story-section, .signatures-section, .menu-section, .gallery-section, .reviews-section { padding-block: 84px; }
  .story-copy { padding: 0; }
  .story-copy h2 { font-size: clamp(2.55rem,12vw,3.7rem); }
  .story-image { max-width: none; }
  .story-facts div { grid-template-columns: 96px 1fr; }
  .signature-heading { margin-bottom: 38px; }
  .signature-list { grid-template-columns: 1fr; }
  .signature { grid-template-columns: 1fr; min-height: 0; }
  .signature:nth-child(even) { grid-template-columns: 1fr; }
  .signature:nth-child(even) figure { order: 0; }
  .signature figure { width: 100%; aspect-ratio: 3/4; }
  .signature-copy { padding: 34px 26px 40px; }
  .signature-copy h3 { font-size: clamp(2.35rem,11vw,3.4rem); }
  .menu-heading { margin-bottom: 30px; }
  .menu-heading h2 { font-size: 3.2rem; }
  .menu-tabs { margin-right: -16px; }
  .menu-tabs button { padding-inline: 15px; font-size: 1rem; }
  .menu-panels { min-height: 610px; }
  .menu-panel-grid { grid-template-columns: 1fr; }
  .menu-panel article { min-height: 0; padding-block: 20px; }
  .menu-panel h3 { font-size: 1.07rem; }
  .menu-panel p { font-size: .88rem; }
  .menu-panel strong { font-size: 1rem; }
  .tea-break { min-height: 78svh; }
  .tea-break > img { object-position: 50% 50%; }
  .tea-copy h2 { font-size: clamp(2.75rem,12.5vw,4rem); }
  .gallery-heading, .reviews-heading { align-items: start; flex-direction: column; gap: 16px; margin-bottom: 38px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; padding-bottom: 28px; }
  .gallery-a, .gallery-b, .gallery-c, .gallery-d, .gallery-e, .gallery-f { grid-column: auto; margin-top: 0; transform: none; }
  .gallery-b, .gallery-d, .gallery-f { transform: translateY(28px); }
  .gallery-item { border-radius: 10px; }
  .reviews-heading > p { margin: 0; }
  .review-featured { min-height: 500px; padding: 28px; }
  .review-featured blockquote { font-size: clamp(1.75rem,7.5vw,2.35rem); }
  .review-supporting { grid-template-columns: 1fr; }
  .review-supporting article { padding: 26px; }
  .visit-details { padding-block: 84px; }
  .hours-list div { align-items: baseline; }
  .map-wrap, .map-wrap iframe { min-height: 470px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; }
  .mobile-actions { position: fixed; z-index: var(--z-mobile-actions); right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; height: 64px; padding: 8px 12px; color: #fff; background: rgba(13,24,37,.97); border-top: 1px solid rgba(255,255,255,.16); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(100%); transition: transform 220ms cubic-bezier(.23,1,.32,1), opacity 180ms ease-out, visibility 220ms; }
  .mobile-actions.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .mobile-actions a { display: grid; place-items: center; font-weight: 850; text-decoration: none; }
  .mobile-actions a:first-child { border-right: 1px solid rgba(255,255,255,.2); }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-nav { top: auto; bottom: 24px; width: 44px; height: 44px; transform: none; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-count { bottom: 36px; }
  .lightbox figure { max-width: 94vw; max-height: 82dvh; }
  .lightbox figure img { max-height: 75dvh; }
}

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