@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d3453;
  --navy-deep: #08263d;
  --sea: #2f7189;
  --sky: #9bc9d7;
  --foam: #f6f4ee;
  --sand: #e8dfd1;
  --white: #ffffff;
  --ink: #17232d;
  --muted: #6d7a82;
  --line: rgba(13, 52, 83, 0.17);
  --shadow: 0 24px 70px rgba(8, 38, 61, 0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--sky); color: var(--navy-deep); }

.container { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.container.narrow { width: min(920px, calc(100% - 64px)); }
.section { padding: 130px 0; position: relative; }
.section--tight { padding: 90px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--white { background: var(--white); }
.section--sand { background: #eee7dc; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--sea);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 42px; height: 1px; background: currentColor; }
.section--navy .eyebrow { color: var(--sky); }
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 7vw, 110px);
  line-height: .92;
  letter-spacing: -.03em;
  margin: 0;
}
.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 6.3vw, 96px);
  line-height: .96;
  letter-spacing: -.025em;
  margin: 0;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0 0 28px;
}
.h3 {
  font-family: var(--serif);
  font-size: clamp(29px, 2.7vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 16px;
}
.lead { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.55; font-weight: 300; color: var(--muted); }
.section--navy .lead { color: rgba(255,255,255,.72); }
.copy { color: var(--muted); max-width: 700px; }
.copy p:first-child { margin-top: 0; }
.copy p:last-child { margin-bottom: 0; }

/* intro */
.intro-screen {
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: var(--navy-deep);
  display: grid;
  place-items: center;
  transition: opacity .75s var(--ease), visibility .75s;
}
.intro-screen.is-hidden { opacity: 0; visibility: hidden; }
.intro-screen__inner { width: min(420px, 68vw); text-align: center; }
.intro-screen img { width: 100%; }
.intro-line { width: 100%; height: 1px; background: rgba(255,255,255,.18); margin-top: 28px; overflow: hidden; }
.intro-line span { display: block; height: 100%; background: var(--white); animation: introLine 1.15s var(--ease) forwards; transform-origin: left; }
@keyframes introLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background .45s var(--ease), color .45s var(--ease), height .45s var(--ease), box-shadow .45s var(--ease);
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(246,244,238,.95);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(8,38,61,.08);
  backdrop-filter: blur(12px);
}
.header-inner { width: min(1440px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { position: relative; display: block; width: 205px; height: 44px; z-index: 3; }
.brand img { width: 205px; position: absolute; top: 50%; left: 0; transform: translateY(-50%); transition: opacity .35s; }
.brand .logo-blue { opacity: 0; }
.site-header.is-scrolled .logo-white { opacity: 0; }
.site-header.is-scrolled .logo-blue { opacity: 1; }
.nav { display: flex; gap: 34px; align-items: center; justify-content: center; }
.nav a { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; position: relative; white-space: nowrap; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 22px; }
.lang { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.lang__item { color: inherit; }
.lang__item--active { opacity: 1; }
a.lang__item { opacity: .55; transition: opacity .3s var(--ease); }
a.lang__item:hover { opacity: 1; }
.reserve-link { padding: 13px 22px; border: 1px solid rgba(255,255,255,.55); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; transition: .3s; }
.reserve-link:hover { background: var(--white); color: var(--navy); }
.site-header.is-scrolled .reserve-link { border-color: var(--navy); }
.site-header.is-scrolled .reserve-link:hover { background: var(--navy); color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; padding: 10px; color: currentColor; }
.menu-toggle span { display: block; height: 1px; background: currentColor; margin: 7px 0; transition: .35s var(--ease); }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: .35s var(--ease);
}
.btn::after { content: '↗'; font-size: 16px; font-weight: 300; }
.btn:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--light { color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--light:hover { background: var(--white); color: var(--navy); }
.btn--fill { background: var(--navy); color: var(--white); }
.btn--fill:hover { background: var(--sea); border-color: var(--sea); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}
.hero__media { position: absolute; inset: -4%; background-size: cover; background-position: center; transform: scale(1.06); will-change: transform; }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,27,44,.25) 10%, rgba(5,27,44,.08) 45%, rgba(5,27,44,.74) 100%); }
.hero__content { position: relative; z-index: 2; padding-bottom: 80px; width: 100%; }
.hero__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.55fr); align-items: end; gap: 90px; }
.hero__kicker { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 22px; }
.hero .h1 { max-width: 900px; }
.hero__side { border-left: 1px solid rgba(255,255,255,.45); padding-left: 35px; padding-bottom: 8px; }
.hero__side p { margin: 0 0 28px; color: rgba(255,255,255,.78); font-weight: 300; }
.hero-scroll { position: absolute; right: 38px; bottom: 64px; z-index: 2; writing-mode: vertical-rl; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; display: flex; align-items: center; gap: 14px; }
.hero-scroll::after { content: ''; width: 1px; height: 54px; background: rgba(255,255,255,.55); }
.page-hero { min-height: 72svh; align-items: flex-end; }
.page-hero .hero__content { padding-bottom: 74px; }
.page-hero .hero__grid { grid-template-columns: 1fr; }
.page-hero .h1 { max-width: 780px; }
.page-hero__meta { display: flex; gap: 28px; margin-top: 26px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }

/* home story */
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(60px, 8vw, 130px); align-items: center; }
.story-media { position: relative; }
.story-media__main { aspect-ratio: 4/5; width: 86%; object-fit: cover; box-shadow: var(--shadow); }
.story-media__small { width: 48%; aspect-ratio: 4/3; object-fit: cover; position: absolute; right: 0; bottom: -11%; border: 12px solid var(--foam); }
.story-copy .lead { margin-bottom: 28px; }
.fact-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }
.fact strong { display: block; font-family: var(--serif); color: var(--navy); font-size: 34px; font-weight: 500; line-height: 1; }
.fact span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* marquee */
.marquee { overflow: hidden; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); padding: 26px 0; }
.marquee__track { width: max-content; display: flex; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: 38px; padding-right: 44px; white-space: nowrap; }
.marquee__track span::after { content: '✦'; font-family: var(--sans); font-size: 12px; margin-left: 44px; color: var(--sky); vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { min-height: 570px; position: relative; overflow: hidden; color: var(--white); display: flex; align-items: flex-end; }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,27,44,.82) 100%); }
.feature-card__content { position: relative; z-index: 2; padding: 36px; }
.feature-card__number { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.feature-card h3 { font-family: var(--serif); font-size: 42px; font-weight: 400; margin: 8px 0 10px; }
.feature-card p { color: rgba(255,255,255,.76); margin: 0; font-size: 14px; }
.feature-card:hover img { transform: scale(1.06); }

/* menu teaser */
.menu-teaser { display: grid; grid-template-columns: .55fr 1fr; gap: 90px; align-items: start; }
.menu-list { border-top: 1px solid var(--line); }
.menu-preview-item { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.menu-preview-item h4 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0 0 3px; }
.menu-preview-item p { margin: 0; color: var(--muted); font-size: 13px; }
.menu-preview-item span { font-family: var(--serif); font-size: 23px; }

/* mosaic */
.mosaic { display: grid; grid-template-columns: 1.05fr .65fr; gap: 24px; }
.mosaic__large { min-height: 720px; }
.mosaic__stack { display: grid; gap: 24px; grid-template-rows: 1fr 1fr; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }

/* reviews */
.review-wrap { display: grid; grid-template-columns: .42fr 1fr; gap: 90px; }
.review-score { border-top: 1px solid rgba(255,255,255,.24); padding-top: 24px; }
.review-score strong { display: block; font-family: var(--serif); font-size: 86px; font-weight: 400; line-height: 1; }
.review-score span { color: rgba(255,255,255,.65); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.review-quote { font-family: var(--serif); font-size: clamp(38px, 4vw, 65px); line-height: 1.12; margin: 0 0 35px; }
.review-author { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); }

/* full CTA */
.full-cta { min-height: 660px; position: relative; color: var(--white); display: grid; place-items: center; text-align: center; overflow: hidden; }
.full-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.full-cta::after { content: ''; position: absolute; inset: 0; background: rgba(5,27,44,.58); }
.full-cta__inner { position: relative; z-index: 2; width: min(800px, calc(100% - 48px)); }
.full-cta .h2 { margin-bottom: 24px; }
.full-cta p { color: rgba(255,255,255,.76); max-width: 600px; margin: 0 auto; }

/* restaurant */
.editorial-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 100px; align-items: start; }
.editorial-aside { position: sticky; top: 130px; }
.editorial-copy p { color: var(--muted); margin: 0 0 26px; }
.dropcap::first-letter { float: left; font-family: var(--serif); font-size: 94px; line-height: .72; padding: 15px 12px 0 0; color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid .g1 { grid-column: span 7; aspect-ratio: 7/5; }
.gallery-grid .g2 { grid-column: span 5; aspect-ratio: 5/6; }
.gallery-grid .g3 { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid .g4 { grid-column: span 8; aspect-ratio: 8/5; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.22); }
.timeline-item { padding: 38px 28px 10px 0; border-right: 1px solid rgba(255,255,255,.17); }
.timeline-item + .timeline-item { padding-left: 28px; }
.timeline-item:last-child { border-right: 0; }
.timeline-item time { font-family: var(--serif); font-size: 34px; color: var(--sky); }
.timeline-item h3 { font-family: var(--serif); font-size: 30px; margin: 18px 0 12px; }
.timeline-item p { color: rgba(255,255,255,.63); font-size: 14px; margin: 0; }

/* menu page */
.menu-hero { background: var(--navy); color: var(--white); padding: 190px 0 90px; }
.menu-hero__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.menu-hero p { max-width: 440px; color: rgba(255,255,255,.65); margin: 0 0 10px; }
.menu-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 70px; align-items: start; }
.menu-sidebar { position: sticky; top: 105px; padding-top: 8px; max-height: calc(100vh - 130px); overflow-y: auto; scrollbar-width: thin; }
.menu-sidebar button { display: block; width: 100%; text-align: left; border: 0; background: none; padding: 11px 18px; color: var(--ink); font-size: 14px; transition: .25s; }
.menu-sidebar button:hover { color: var(--sea); }
.menu-sidebar button.active { background: var(--navy); color: var(--white); }
.menu-content { border-top: 1px solid var(--line); }
.menu-section { padding: 14px 0 90px; scroll-margin-top: 105px; }
.menu-section + .menu-section { border-top: 1px solid var(--line); padding-top: 42px; }
.menu-section__title { font-family: var(--serif); font-size: clamp(42px, 4.2vw, 66px); font-weight: 400; margin: 0 0 42px; }
.menu-subtitle { font-family: var(--serif); font-size: 34px; font-weight: 500; margin: 36px 0 22px; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 68px; }
.menu-item { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: start; }
.menu-item h3 { font-family: var(--serif); font-size: 29px; line-height: 1.1; font-weight: 500; margin: 0 0 7px; }
.menu-item p { margin: 0; color: #8a8f91; font-size: 14px; line-height: 1.55; }
.menu-item .price { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.menu-note { padding: 30px; background: var(--white); border: 1px solid var(--line); margin-top: 40px; font-size: 13px; color: var(--muted); }
.menu-mobile-select { display: none; }

/* location */
.location-intro { display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: end; }
.coordinates { border-left: 1px solid var(--line); padding-left: 34px; }
.coordinates span { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.coordinates strong { display: block; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.map-wrap { min-height: 620px; position: relative; overflow: hidden; }
.map-wrap iframe { border: 0; width: 100%; height: 100%; position: absolute; inset: 0; filter: saturate(.6) contrast(.92); }
.map-card { position: absolute; z-index: 2; left: 7%; top: 50%; transform: translateY(-50%); width: min(390px, 86%); background: var(--navy); color: var(--white); padding: 42px; box-shadow: var(--shadow); }
.map-card p { color: rgba(255,255,255,.66); }
.direction-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.direction-card { background: var(--foam); padding: 40px 34px; }
.direction-card .number { font-family: var(--serif); font-size: 44px; color: var(--sea); }
.direction-card h3 { font-family: var(--serif); font-size: 28px; margin: 16px 0 10px; }
.direction-card p { color: var(--muted); font-size: 14px; margin: 0; }
.beach-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.beach-grid img { width: 100%; height: 100%; object-fit: cover; min-height: 620px; }
.beach-copy { background: var(--navy); color: var(--white); padding: clamp(50px, 7vw, 95px); display: flex; flex-direction: column; justify-content: center; }
.beach-copy p { color: rgba(255,255,255,.67); }

/* contact */
.contact-grid { display: grid; grid-template-columns: .62fr 1fr; gap: 90px; align-items: start; }
.contact-panel { position: sticky; top: 120px; }
.contact-details { margin-top: 42px; border-top: 1px solid var(--line); }
.contact-row { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 20px; }
.contact-row span { font-size: 10px; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); }
.contact-row strong { font-weight: 500; }
.form-card { background: var(--white); padding: clamp(34px, 5vw, 70px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.form-field { position: relative; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); padding: 10px 0 14px; outline: none; transition: border-color .25s; border-radius: 0; }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sea); }
.form-privacy { font-size: 12px; color: var(--muted); margin-top: 24px; }
.form-success { display: none; margin-top: 24px; padding: 16px 20px; background: #edf5f3; color: #244e45; font-size: 14px; }
.form-success.show { display: block; }
.quick-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.quick-contact a { border: 1px solid var(--line); padding: 24px; background: var(--foam); transition: .3s; }
.quick-contact a:hover { background: var(--navy); color: var(--white); }
.quick-contact span { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; opacity: .7; margin-bottom: 4px; }
.quick-contact strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }

/* footer */
.footer { background: var(--navy-deep); color: var(--white); padding: 90px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.1fr .7fr .7fr; gap: 80px; padding-bottom: 70px; }
.footer-brand img { width: 250px; margin-bottom: 28px; }
.footer-brand p { color: rgba(255,255,255,.55); max-width: 420px; }
.footer h4 { margin: 0 0 22px; font-size: 10px; letter-spacing: .19em; text-transform: uppercase; color: var(--sky); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .25s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.44); font-size: 11px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.image-reveal { overflow: hidden; }
.image-reveal img { transform: scale(1.08); transition: transform 1.3s var(--ease); }
.image-reveal.is-visible img { transform: scale(1); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav, .header-actions .reserve-link { display: none; }
  .header-actions { display: flex; align-items: center; gap: 16px; }
  .header-actions .lang { display: inline-flex; }
  .menu-toggle { display: block; }
  .mobile-nav { display: flex; position: fixed; z-index: 999; inset: 0; background: var(--navy-deep); color: var(--white); padding: 120px 40px 45px; flex-direction: column; transform: translateY(-100%); transition: transform .6s var(--ease); }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { font-family: var(--serif); font-size: clamp(38px,8vw,64px); line-height: 1.18; }
  .mobile-nav__bottom { margin-top: auto; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: rgba(255,255,255,.6); }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__side { max-width: 500px; }
  .story-grid, .editorial-grid, .contact-grid { gap: 60px; }
  .feature-card { min-height: 480px; }
  .menu-layout { grid-template-columns: 210px 1fr; gap: 38px; }
  .menu-items { gap: 30px 36px; }
}

@media (max-width: 820px) {
  .container, .container.narrow { width: min(100% - 36px, 1280px); }
  .header-inner { width: calc(100% - 36px); }
  .site-header { height: 76px; }
  .brand, .brand img { width: 170px; }
  .section { padding: 90px 0; }
  .section--tight { padding: 70px 0; }
  .hero__content { padding-bottom: 54px; }
  .hero-scroll { display: none; }
  .hero__side { border-left: 0; border-top: 1px solid rgba(255,255,255,.4); padding: 22px 0 0; }
  .story-grid, .menu-teaser, .review-wrap, .editorial-grid, .location-intro, .contact-grid, .beach-grid { grid-template-columns: 1fr; }
  .story-media { margin-bottom: 50px; }
  .story-media__main { width: 90%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 520px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__large { min-height: 520px; }
  .mosaic__stack { grid-template-columns: 1fr 1fr; grid-template-rows: 360px; }
  .review-wrap { gap: 45px; }
  .review-score { display: flex; align-items: end; gap: 16px; }
  .gallery-grid .g1, .gallery-grid .g2, .gallery-grid .g3, .gallery-grid .g4 { grid-column: span 12; aspect-ratio: 4/3; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-item:nth-child(2) { border-right: 0; }
  .timeline-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.17); }
  .timeline-item:nth-child(3) { padding-left: 0; }
  .menu-hero { padding-top: 140px; }
  .menu-hero__top { display: block; }
  .menu-hero p { margin-top: 20px; }
  .menu-layout { grid-template-columns: 1fr; gap: 30px; }
  .menu-sidebar { display: none; }
  .menu-mobile-select { display: block; position: sticky; top: 76px; z-index: 20; background: var(--foam); padding: 12px 0; }
  .menu-mobile-select select { width: 100%; border: 1px solid var(--line); background: var(--white); padding: 14px; color: var(--ink); }
  .menu-items { grid-template-columns: 1fr; }
  .map-card { position: relative; left: auto; top: auto; transform: none; width: 100%; }
  .map-wrap { min-height: auto; background: var(--navy); }
  .map-wrap iframe { position: relative; height: 500px; display: block; }
  .direction-grid { grid-template-columns: 1fr; }
  .beach-grid img { min-height: 460px; }
  .contact-panel, .editorial-aside { position: relative; top: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 540px) {
  .display { font-size: 54px; }
  .h1 { font-size: 52px; }
  .h2 { font-size: 44px; }
  .lead { font-size: 18px; }
  .hero { min-height: 90svh; }
  .page-hero { min-height: 68svh; }
  .page-hero__meta { flex-direction: column; gap: 8px; }
  .fact-row { grid-template-columns: 1fr; }
  .feature-card { min-height: 460px; }
  .feature-card__content { padding: 28px; }
  .mosaic__stack { grid-template-columns: 1fr; grid-template-rows: 320px 320px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item, .timeline-item + .timeline-item { padding: 26px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.17); }
  .timeline-item:first-child { border-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .quick-contact { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 5px; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-nav { padding-inline: 22px; }
  .mobile-nav__bottom { flex-direction: column; }
}

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