:root {
  --sand: #efe1d5;
  --sand-deep: #dfc9b7;
  --foam: #fbf8f3;
  --ink: #020200;
  --sea: #527e78;
  --sea-dark: #315d59;
  --ocean: #6f9eb2;
  --ocean-dark: #386f85;
  --coral: #cc7963;
  --line: rgba(2, 2, 0, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1200px;
  --gutter: 28px;
  --demo-height: 34px;
  --header-height: 82px;
  --section-space: 112px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sand);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; border: 0; background: none; cursor: pointer; }
img, video, iframe { display: block; max-width: 100%; }
address { font-style: normal; }
::selection { color: var(--foam); background: var(--sea-dark); }

.skip-link {
  position: fixed; z-index: 2000; top: 8px; left: 8px;
  padding: 10px 16px; color: var(--foam); background: var(--ink);
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-space); }

.demo-banner {
  position: relative; z-index: 1001; height: var(--demo-height); padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--foam); background: var(--sea-dark);
  font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.demo-banner span { opacity: .72; }
.demo-banner a { border-bottom: 1px solid rgba(255,255,255,.55); }

.site-header {
  position: absolute; z-index: 1000; top: var(--demo-height); left: 0; width: 100%; height: var(--header-height);
  color: var(--foam); transition: color .3s ease, background .3s ease, box-shadow .3s ease, position .3s ease;
}
.site-header.scrolled, .site-header.menu-active {
  position: fixed; top: 0; color: var(--ink); background: rgba(239,225,213,.94);
  box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.header-brand {
  width: 64px; height: 64px; flex: 0 0 auto; overflow: hidden; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55); background: var(--sand); transition: transform .25s ease, border-color .25s ease;
}
.scrolled .header-brand, .menu-active .header-brand { border-color: var(--line); }
.header-brand:hover { transform: rotate(-4deg) scale(1.03); }
.header-brand img { width: 100%; height: 100%; object-fit: cover; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.desktop-nav a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--ocean); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 13px; }
.icon-link { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: color .2s ease, background .2s ease; }
.icon-link:hover { color: var(--ink); background: var(--foam); }
.scrolled .icon-link:hover { color: var(--foam); background: var(--sea-dark); }
.icon-link svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.icon-link .fill-dot { fill: currentColor; stroke: none; }

.btn {
  min-height: 50px; padding: 13px 24px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 999px; font-size: .76rem; font-weight: 800;
  letter-spacing: .08em; line-height: 1; text-align: center; text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; }
.btn-small { min-height: 42px; padding: 11px 19px; font-size: .69rem; }
.btn-ink { color: var(--foam); background: var(--ink); }
.btn-ink:hover { color: var(--ink); background: var(--ocean); }
.btn-foam { color: var(--ink); background: var(--foam); }
.btn-foam:hover { background: var(--ocean); }
.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { color: var(--foam); background: var(--sea-dark); border-color: var(--sea-dark); }
.text-link { width: fit-content; display: inline-flex; align-items: center; gap: 12px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: var(--ocean-dark); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: var(--foam); }
.light-link span { color: var(--foam); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px 8px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; }
.menu-toggle span { width: 25px; height: 1.5px; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
.mobile-menu { display: none; }

.eyebrow { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; color: var(--sea-dark); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--ocean); }
.eyebrow.light { color: var(--foam); }
.eyebrow.light::before { background: var(--foam); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(4.3rem, 9vw, 8.2rem); }
h2 { font-size: clamp(3rem, 5.7vw, 5.5rem); }
h3 { font-size: 1.6rem; }
h1 em, h2 em { color: var(--ocean); font-weight: 500; }
.lead { font-family: var(--font-display); font-size: clamp(1.35rem, 2.1vw, 1.8rem); line-height: 1.35; }

.hero { position: relative; min-height: calc(80svh - var(--demo-height)); height: 720px; display: flex; align-items: flex-end; overflow: hidden; color: var(--foam); background: var(--ink); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 45%; }
.hero-shade { background: linear-gradient(90deg, rgba(2,2,0,.64) 0%, rgba(2,2,0,.28) 52%, rgba(2,2,0,.12) 100%), linear-gradient(0deg, rgba(2,2,0,.46), transparent 55%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 108px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.hero-copy { max-width: 760px; }
.hero-copy h1 em { color: var(--foam); font-style: italic; }
.hero-lead { max-width: 610px; margin-top: 24px; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.4; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.hero-note { min-width: 245px; margin-bottom: 8px; padding: 22px; display: flex; gap: 15px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; background: rgba(2,2,0,.22); backdrop-filter: blur(12px); }
.hero-note-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: var(--ink); background: var(--ocean); border-radius: 50%; font-size: 1.2rem; }
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { margin-bottom: 4px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-note span { font-size: .77rem; line-height: 1.5; opacity: .86; }
.wave { position: absolute; left: 0; width: 100%; pointer-events: none; line-height: 0; }
.wave svg { width: 100%; height: 100%; }
.wave-hero { z-index: 3; bottom: -1px; height: 65px; }
.wave-hero path { fill: var(--sand); }

.welcome { overflow: hidden; padding-top: 130px; }
.welcome::after { content: ""; position: absolute; z-index: -1; right: -100px; top: 180px; width: 300px; height: 300px; border: 1px solid rgba(82,126,120,.27); border-radius: 47% 53% 61% 39%; transform: rotate(20deg); }
.welcome-grid { display: grid; grid-template-columns: 1.1fr .8fr; gap: clamp(70px, 11vw, 150px); align-items: end; }
.welcome-heading h2 em { color: var(--sea); font-style: italic; }
.welcome-copy { padding-bottom: 6px; }
.welcome-copy .lead { margin-bottom: 24px; }
.welcome-copy > p:not(.lead) { max-width: 540px; margin-bottom: 30px; }
.welcome-cards { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.welcome-card { position: relative; min-height: 310px; height: 100%; padding: 34px 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(251,248,243,.45); transition: transform .3s ease, background .3s ease; }
.welcome-card:hover { transform: translateY(-7px); background: var(--foam); }
.welcome-card::after { content: ""; position: absolute; right: -34px; bottom: -42px; width: 118px; height: 118px; border: 1px solid rgba(82,126,120,.18); border-radius: 50%; pointer-events: none; }
.welcome-card:nth-child(2)::after { border-color: rgba(111,158,178,.28); }
.welcome-card svg { width: 58px; height: 58px; margin: 26px 0 34px; fill: none; stroke: var(--sea-dark); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.welcome-card.accent-blue svg { stroke: var(--ocean-dark); }
.card-number { position: absolute; top: 26px; right: 30px; color: var(--ocean-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.welcome-card h3 { margin-bottom: 12px; }
.welcome-card p { max-width: 300px; font-size: .88rem; }

.menu-section { background: var(--foam); }
.menu-section::before { content: ""; position: absolute; left: 4%; top: 8%; width: 10px; height: 10px; border: 2px solid var(--ocean); border-radius: 50%; box-shadow: 18px 22px 0 -2px var(--sea); }
.menu-layout { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(65px, 10vw, 140px); }
.menu-intro { position: sticky; top: 120px; align-self: start; }
.menu-intro h2 em { color: var(--ocean-dark); font-style: italic; }
.menu-intro > p:not(.eyebrow) { max-width: 440px; margin: 28px 0 34px; }
.menu-list { border-top: 1px solid var(--line); }
.menu-row { min-height: 133px; padding: 28px 5px; display: grid; grid-template-columns: 45px 1fr 40px; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.menu-row:hover { padding-inline: 16px; background: rgba(111,158,178,.1); }
.menu-index { color: var(--sea-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.menu-row h3 { margin-bottom: 8px; font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
.menu-row p { color: rgba(2,2,0,.66); font-size: .86rem; }
.menu-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--foam); background: var(--sea); border-radius: 50%; }
.menu-row:nth-child(even) .menu-mark { background: var(--ocean-dark); }
.full-menu-wrap { margin-top: 90px; }
.full-menu-placeholder { position: relative; min-height: 460px; padding: clamp(35px, 6vw, 75px); display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: clamp(50px, 9vw, 120px); overflow: hidden; color: var(--foam); background: var(--ink); border-radius: 32px; }
.full-menu-placeholder::before { content: ""; position: absolute; right: 25%; bottom: -170px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.full-menu-copy { position: relative; z-index: 1; max-width: 580px; }
.full-menu-copy h3 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.full-menu-copy h3 em { color: var(--ocean); font-weight: 500; }
.full-menu-copy > p:last-child { max-width: 550px; margin-top: 25px; color: rgba(251,248,243,.72); }
.full-menu-preview { position: relative; z-index: 1; min-height: 310px; padding: 38px 34px; display: flex; align-items: center; flex-direction: column; justify-content: center; color: var(--ink); background: var(--sand); border-radius: 160px 160px 22px 22px; text-align: center; transform: rotate(2deg); }
.preview-kicker { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.full-menu-preview strong { margin: 7px 0 22px; font-family: var(--font-display); font-size: 3.2rem; font-style: italic; font-weight: 600; line-height: 1; }
.preview-lines { width: min(100%, 210px); display: grid; gap: 10px; }
.preview-lines i { height: 1px; background: var(--line); }
.preview-lines i:nth-child(2), .preview-lines i:nth-child(4) { width: 78%; margin-inline: auto; }
.preview-note { margin-top: 22px; color: var(--sea-dark); font-family: var(--font-display); font-size: .85rem; font-style: italic; }

.story-section { overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: clamp(70px, 10vw, 145px); align-items: center; }
.story-photos { position: relative; min-height: 730px; }
.story-photo { position: absolute; overflow: hidden; background: var(--sand-deep); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo-main { inset: 0 20% 5% 0; border-radius: 180px 180px 28px 28px; }
.story-photo-small { z-index: 2; right: 0; bottom: 0; width: 39%; height: 52%; border: 9px solid var(--sand); border-radius: 120px 120px 18px 18px; }
.photo-stamp { position: absolute; z-index: 3; top: 6%; right: 3%; width: 118px; height: 118px; display: grid; place-items: center; color: var(--foam); background: var(--sea-dark); border-radius: 50%; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.15; text-align: center; transform: rotate(8deg); }
.photo-stamp-year { display: block; margin-top: 5px; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .82; }
.story-copy h2 em { color: var(--sea); font-style: italic; }
.story-copy .lead { margin: 30px 0 22px; }
.story-copy > p:not(.eyebrow):not(.lead) { margin-bottom: 26px; }
.story-copy blockquote { margin-top: 32px; padding: 24px 0 24px 28px; border-left: 3px solid var(--ocean); font-family: var(--font-display); font-size: 1.2rem; line-height: 1.45; }
.signature { display: block; margin: 15px 0 0 30px; color: var(--sea-dark); font-family: var(--font-display); font-size: 1.05rem; font-style: italic; }

.local-section { min-height: 750px; overflow: hidden; display: flex; align-items: center; color: var(--foam); background: var(--sea-dark); }
.local-section::before, .local-section::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.local-section::before { width: 600px; height: 600px; right: -170px; top: -220px; }
.local-section::after { width: 360px; height: 360px; right: -30px; top: -80px; }
.local-inner { position: relative; z-index: 2; }
.local-inner h2 { max-width: 800px; font-size: clamp(4rem, 8vw, 7.7rem); }
.local-inner h2 em { color: var(--sand); font-style: italic; }
.local-inner > p:not(.eyebrow) { max-width: 480px; margin-top: 28px; font-family: var(--font-display); font-size: 1.3rem; }
.local-features { max-width: 680px; margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.local-features li { min-height: 120px; padding: 23px 16px; display: flex; align-items: flex-start; flex-direction: column; justify-content: center; gap: 13px; border-right: 1px solid rgba(255,255,255,.2); }
.local-features li:last-child { border-right: 0; }
.local-features span { width: 27px; height: 27px; display: grid; place-items: center; color: var(--ink); background: var(--ocean); border-radius: 50%; font-size: .75rem; font-weight: 800; }
.local-features strong { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.local-orb { position: absolute; z-index: 1; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 230px; height: 230px; right: 12%; bottom: 11%; background: var(--ocean); opacity: .35; }
.orb-two { width: 90px; height: 90px; right: 35%; top: 15%; background: var(--coral); opacity: .55; }

.reviews-section { background: var(--sand); }
.reviews-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.reviews-heading h2 em { color: var(--ocean-dark); font-style: italic; }
.review-sun { width: 120px; height: 120px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); border: 1px solid var(--ink); border-radius: 50%; font-size: 2rem; }
.review-sun span { width: 90px; height: 90px; display: grid; place-items: center; border: 1px dashed var(--sea-dark); border-radius: 50%; }
.review-grid { margin-top: 65px; display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 17px; }
.review-card { min-height: 315px; padding: 36px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(251,248,243,.55); }
.review-card.featured { grid-row: span 2; min-height: 647px; justify-content: center; color: var(--foam); background: var(--sea-dark); border-radius: 28px; }
.review-card.sea-card { background: rgba(111,158,178,.25); }
.review-card.wide-card { grid-column: span 2; min-height: 315px; }
.stars { margin-bottom: 26px; color: var(--coral); font-size: .9rem; letter-spacing: .18em; }
.featured .stars { color: var(--sand); }
.review-card blockquote { max-width: 590px; font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.4; }
.featured blockquote { font-size: clamp(1.55rem, 2.5vw, 2.15rem); text-align: left; }
.review-card figcaption { margin-top: auto; padding-top: 34px; display: flex; flex-direction: column; }
.featured figcaption { align-items: flex-start; text-align: left; }
.review-card figcaption strong { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.review-card figcaption span { margin-top: 2px; font-size: .72rem; opacity: .63; }

.visit-section { padding-bottom: 150px; background: var(--foam); }
.visit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 120px); align-items: center; }
.visit-info h2 em { color: var(--sea); font-style: italic; }
.visit-info address { margin: 30px 0 18px; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.5; }
.status-badge { width: fit-content; margin-bottom: 34px; padding: 9px 14px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #a35e50; box-shadow: 0 0 0 4px rgba(163,94,80,.12); }
.status-badge.open .status-dot { background: var(--sea); box-shadow: 0 0 0 4px rgba(82,126,120,.14); }
.hours-list { max-width: 520px; border-top: 1px solid var(--line); }
.hours-list div { padding: 16px 0; display: flex; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--line); font-size: .78rem; }
.hours-list span { color: rgba(2,2,0,.68); }
.visit-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.map-wrap { position: relative; height: 650px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--sand); }
.map-wrap iframe { width: 100%; height: 100%; filter: saturate(.72) sepia(.08); }
.map-label { position: absolute; left: 28px; bottom: 28px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; color: var(--foam); background: var(--ink); border-radius: 999px; font-size: .75rem; font-weight: 700; }
.map-label span { width: 35px; height: 35px; display: grid; place-items: center; color: var(--ink); background: var(--ocean); border-radius: 50%; font-size: .63rem; }

.footer { position: relative; padding: 115px 0 26px; color: var(--foam); background: var(--ink); }
.wave-footer { top: -1px; height: 70px; }
.wave-footer path { fill: var(--foam); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 45px; padding-bottom: 70px; }
.footer-brand img { width: 105px; height: 105px; object-fit: cover; border-radius: 50%; }
.footer-brand p { margin-top: 14px; color: var(--sand); font-family: var(--font-display); font-size: 1.15rem; }
.footer-column { padding-top: 15px; }
.footer-column > span { display: block; margin-bottom: 16px; color: var(--ocean); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-column p, .footer-links a { color: rgba(251,248,243,.72); font-size: .78rem; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a:hover { color: var(--ocean); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(251,248,243,.45); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom a { color: var(--sand); }

.reveal.reveal-pending { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.reveal-pending.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  :root { --section-space: 90px; }
  .desktop-nav { display: none; }
  .header-actions .icon-link { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { position: fixed; inset: var(--header-height) 0 0; z-index: 999; padding: 45px var(--gutter); display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); background: var(--sand); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .25s ease, visibility 0s linear .25s, transform .25s ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .mobile-nav { display: flex; flex-direction: column; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: clamp(2rem, 7vw, 3.2rem); line-height: 1.15; }
  .mobile-menu p { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .hero-note { display: none; }
  .welcome-grid, .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .welcome-grid { gap: 45px; }
  .welcome-cards { grid-template-columns: repeat(3, 1fr); }
  .welcome-card { padding-inline: 22px; }
  .menu-layout { grid-template-columns: .82fr 1.1fr; gap: 60px; }
  .story-grid { gap: 75px; }
  .story-photos { max-width: 700px; width: 100%; }
  .story-copy { max-width: 700px; }
  .visit-grid { gap: 75px; }
  .map-wrap { height: 550px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card.featured { grid-row: auto; min-height: 450px; }
  .review-card.wide-card { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-links { grid-column: 2; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --header-height: 70px; --section-space: 72px; }
  .demo-banner { padding-inline: 12px; gap: 8px; font-size: .56rem; letter-spacing: .07em; }
  .demo-banner span { display: none; }
  .header-brand { width: 53px; height: 53px; }
  .header-cta { display: none; }
  .site-header.scrolled, .site-header.menu-active { height: var(--header-height); }
  .hero { min-height: 790px; height: 100svh; }
  .hero-media video { object-position: 53% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,2,0,.63), rgba(2,2,0,.16)), linear-gradient(0deg, rgba(2,2,0,.62), transparent 60%); }
  .hero-inner { padding-bottom: 86px; }
  .hero-copy h1 { font-size: clamp(4.1rem, 20vw, 6.1rem); }
  .hero-lead { max-width: 470px; margin-top: 18px; font-size: 1.12rem; }
  .hero-actions { margin-top: 27px; align-items: flex-start; flex-direction: column; gap: 21px; }
  .wave-hero { height: 42px; }
  .welcome { padding-top: 95px; }
  .welcome-cards { margin-top: 55px; grid-template-columns: 1fr; }
  .welcome-card { min-height: 275px; border-radius: 24px; }
  .menu-layout { grid-template-columns: 1fr; gap: 58px; }
  .menu-intro { position: static; }
  .menu-row { grid-template-columns: 34px 1fr 32px; gap: 10px; }
  .menu-mark { width: 31px; height: 31px; font-size: .8rem; }
  .full-menu-wrap { margin-top: 60px; }
  .full-menu-placeholder { min-height: auto; padding: 38px 25px 28px; grid-template-columns: 1fr; gap: 42px; border-radius: 24px; }
  .full-menu-copy h3 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .full-menu-preview { width: min(100%, 310px); min-height: 300px; margin-inline: auto; }
  .story-photos { min-height: 535px; }
  .story-photo-main { right: 16%; border-radius: 120px 120px 22px 22px; }
  .story-photo-small { width: 43%; height: 50%; border-width: 6px; }
  .photo-stamp { width: 88px; height: 88px; right: 0; font-size: .82rem; }
  .local-section { min-height: 680px; }
  .local-inner h2 { font-size: clamp(3.4rem, 17vw, 5.7rem); }
  .local-features { margin-top: 40px; grid-template-columns: repeat(3, 1fr); }
  .local-features li { min-height: 106px; padding: 18px 12px; }
  .reviews-heading { align-items: flex-start; }
  .review-sun { display: none; }
  .review-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .review-card, .review-card.wide-card { grid-column: auto; min-height: 280px; }
  .review-card.featured { min-height: 360px; border-radius: 24px; }
  .hours-list div { flex-direction: column; gap: 2px; }
  .visit-actions { flex-direction: column; align-items: stretch; }
  .map-wrap { height: 480px; border-radius: 24px; }
  .footer { padding-top: 95px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: span 2; }
  .footer-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

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