:root {
  --cream: var(--wp--preset--color--cream, #e8dab4);
  --cream-soft: var(--wp--preset--color--soft-cream, #f2ead2);
  --paper: var(--wp--preset--color--paper, #fffef9);
  --ink: var(--wp--preset--color--ink, #24231f);
  --muted: var(--wp--preset--color--muted, #666258);
  --blue: var(--wp--preset--color--blue, #176d7d);
  --blue-deep: var(--wp--preset--color--deep-blue, #105260);
  --line: rgba(36, 35, 31, .18);
  --serif: var(--wp--preset--font-family--display, Georgia, serif);
  --sans: var(--wp--preset--font-family--body, Arial, sans-serif);
  --content: min(1220px, calc(100vw - 3rem));
  --shadow: 0 25px 70px rgba(24, 40, 40, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, video { display: block; width: 100%; }
a { color: inherit; }
button { color: inherit; font: inherit; }
::selection { background: var(--blue); color: var(--paper); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .8rem;
  left: .8rem;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--blue-deep);
  color: white;
}
.skip-link:focus { transform: none; }
.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;
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(36, 35, 31, .12);
}
.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(36, 35, 31, .08);
}
.header-inner {
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 2rem;
  width: var(--content);
  min-height: 118px;
  margin: auto;
}
.brand {
  display: flex;
  width: 195px;
  height: 104px;
  align-items: center;
  justify-content: center;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(1.1rem, 2.4vw, 2.3rem); }
.main-nav a, .footer-nav a {
  position: relative;
  padding: .25rem 0;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.25rem;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-current::after { transform: scaleX(1); }
.menu-toggle { display: none; }
.mobile-book { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--blue { background: var(--blue); color: white; }
.button--blue:hover, .button--blue:focus-visible { background: var(--blue-deep); }
.button--cream { background: var(--cream); color: var(--ink); }
.button--cream:hover, .button--cream:focus-visible { background: var(--paper); }
.button--ghost { border-color: rgba(255, 255, 255, .62); color: white; }
.button--ghost:hover, .button--ghost:focus-visible { background: rgba(255, 255, 255, .12); border-color: white; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(.25rem); }

.hero { position: relative; min-height: min(820px, calc(100svh - 106px)); background: #223034; overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity .75s ease, visibility .75s;
}
.hero-slide.is-active { visibility: visible; opacity: 1; }
.hero-media { height: 100%; object-fit: cover; }
.hero-slide:first-child .hero-media { object-position: center 58%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 24, 26, .79) 0%, rgba(13, 24, 26, .48) 46%, rgba(13, 24, 26, .08) 76%);
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(1.5rem, calc((100vw - 1220px) / 2));
  width: min(680px, calc(100vw - 3rem));
  transform: translateY(-50%);
  color: white;
}
.eyebrow {
  margin: 0 0 1.5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 42px; height: 1px; margin: 0 .8rem .22rem 0; background: currentColor; }
.hero h1, .hero h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .82;
}
.hero h1 em, .hero h2 em { color: var(--cream); font-weight: 500; }
.hero-content > p:not(.eyebrow) { max-width: 600px; margin: 2rem 0; font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.media-credit { position: absolute; z-index: 3; right: 1rem; bottom: 1rem; color: rgba(255,255,255,.72); font-size: .65rem; letter-spacing: .06em; }
.carousel-controls {
  position: absolute;
  z-index: 5;
  right: max(1.5rem, calc((100vw - 1220px) / 2));
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}
.carousel-controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  cursor: pointer;
}
.carousel-controls > button:hover { background: rgba(255,255,255,.16); }
.carousel-dots { display: flex; gap: .45rem; }
.carousel-dots button { width: 22px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.carousel-dots button.is-active { background: white; }

.section { position: relative; padding: clamp(5rem, 9vw, 9rem) max(1.5rem, calc((100vw - 1220px) / 2)); }
.section--paper { background: var(--paper); }
.pattern { position: absolute; pointer-events: none; background: url("../images/pattern-food.png") center / contain no-repeat; opacity: .045; }
.pattern--right { top: 1rem; right: 0; width: min(42vw, 560px); height: min(56vw, 680px); }
.pattern--left { bottom: -4rem; left: -4rem; width: 480px; height: 540px; transform: rotate(18deg); opacity: .035; }
.section-label {
  position: absolute;
  top: clamp(5rem, 9vw, 9rem);
  left: max(1.5rem, calc((100vw - 1220px) / 2));
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.intro-script { margin: 0 0 .6rem; color: var(--blue); font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-style: italic; line-height: 1; }
.welcome { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); padding-left: max(4rem, calc((100vw - 1120px) / 2)); }
.welcome-copy { position: relative; z-index: 2; }
.welcome h2, .menu-preview h2, .story-panel h2, .section-heading h2, .booking h2, .menu-hero h1, .menu-section-heading h2, .menu-photo-break h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .95;
}
.welcome h2 { max-width: 10ch; font-size: clamp(3.6rem, 6vw, 6rem); }
.welcome-copy .lead { margin: 2rem 0 1rem; font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.32; }
.welcome-copy > p:not(.intro-script):not(.lead) { max-width: 560px; color: var(--muted); }
.welcome-copy .text-link { margin-top: 1.2rem; }
.welcome-image { position: relative; z-index: 2; align-self: center; width: 100%; margin: 0; }
.welcome-image img { width: 100%; height: clamp(320px, 32vw, 430px); object-fit: cover; object-position: 48% 52%; box-shadow: var(--shadow); }
.welcome-image figcaption { margin-top: .8rem; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.menu-preview { background: var(--cream); }
.menu-preview-heading, .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.menu-preview-heading h2 { font-size: clamp(3.8rem, 7vw, 6.8rem); }
.menu-preview-heading > p, .section-heading > p { margin: 0; color: var(--muted); }
.menu-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 7vw, 7rem); }
.menu-list { min-width: 0; }
.menu-item { padding: 1.35rem 0 1.2rem; border-bottom: 1px solid var(--line); }
.menu-item:first-child { border-top: 1px solid var(--line); }
.menu-item > div { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 1.85rem); font-weight: 600; line-height: 1.1; }
.menu-item h3 small { display: inline; color: var(--blue-deep); font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.menu-item .heat { display: inline-block; margin-left: .15rem; font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif; font-size: .78rem; letter-spacing: -.2em; white-space: nowrap; }
.menu-item .price-options { flex: 1 0 100%; margin-top: .1rem; color: var(--blue-deep); font-size: .7rem; text-align: right; }
.menu-item > div > span { min-width: 20px; flex: 1; border-bottom: 1px dotted rgba(36,35,31,.35); }
.menu-item strong { flex: 0 0 auto; font-size: .82rem; }
.menu-item p { max-width: 90%; margin: .35rem 0 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }
.center-action { margin-top: 3rem; text-align: center; }

.story-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); min-height: 720px; background: var(--blue); color: white; }
.story-image { min-height: 620px; }
.story-image img { height: 100%; object-fit: cover; }
.story-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.story-panel .intro-script { color: var(--cream); }
.story-panel h2 { max-width: 9ch; font-size: clamp(3.8rem, 6vw, 6rem); }
.story-panel p:not(.intro-script) { max-width: 540px; color: rgba(255,255,255,.79); }
.story-panel .text-link { margin-top: 1rem; align-self: flex-start; }

.section-heading h2 { font-size: clamp(3.8rem, 7vw, 6.5rem); }
.section-heading--compact { margin-bottom: 3rem; }
.event-row { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-date { display: flex; flex-direction: column; color: var(--blue); text-transform: uppercase; }
.event-date span { font-size: .65rem; font-weight: 700; letter-spacing: .15em; }
.event-date strong { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; line-height: 1; }
.event-copy h3 { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.event-copy p { margin: .2rem 0 0; color: var(--muted); }
.event-tag { display: inline-block; margin-bottom: .35rem; color: var(--blue); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.gallery { background: var(--cream-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-grid figure { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #d5ccb2; }
.gallery-grid img, .gallery-grid video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-tall { grid-row: auto; }
.gallery-wide { grid-column: auto; }
.gallery-grid .video-tile { grid-column: auto; }
.video-tile button { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 1rem; border: 0; background: rgba(12,37,42,.36); color: white; cursor: pointer; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.video-tile button span { display: grid; width: 58px; height: 58px; place-items: center; padding-left: 3px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; }
.video-tile.is-playing button { opacity: 0; }
.video-tile.is-playing:hover button, .video-tile.is-playing button:focus { opacity: 1; }

.booking { position: relative; padding: clamp(5rem, 9vw, 8rem) 1.5rem; background: var(--blue); color: white; text-align: center; overflow: hidden; }
.booking-pattern { position: absolute; width: clamp(220px, 29vw, 430px); aspect-ratio: 1; background-position: center; background-repeat: no-repeat; background-size: contain; filter: invert(1); opacity: .08; pointer-events: none; }
.booking-pattern--thai { top: -3.5rem; left: -3rem; background-image: url("../images/pattern-food.png"); transform: rotate(-8deg); }
.booking-pattern--caribbean { right: -3rem; bottom: -4.5rem; background-image: url("../images/pattern-food-2.png"); transform: rotate(172deg); }
.booking-inner { position: relative; z-index: 2; width: min(820px, 100%); margin: auto; }
.booking .intro-script { color: var(--cream); }
.booking h2 { font-size: clamp(4rem, 8vw, 7rem); }
.booking p:not(.intro-script) { max-width: 620px; margin: 1.4rem auto 2rem; color: rgba(255,255,255,.78); }

.visit-grid { display: grid; grid-template-columns: 1.05fr 1.15fr 1fr; border: 1px solid var(--line); background: white; box-shadow: 0 20px 55px rgba(30, 45, 44, .06); }
.visit-grid > div { min-height: 330px; padding: 2.4rem; border-right: 1px solid var(--line); }
.visit-grid > div:last-child { border-right: 0; }
.visit-grid > div > span { color: var(--blue); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.visit-grid p { margin: 1.4rem 0 1.5rem; font-family: var(--serif); font-size: clamp(1.5rem, 2.7vw, 2.25rem); line-height: 1.2; }
.visit-address { position: relative; overflow: hidden; background: var(--cream-soft); }
.map-pin { position: absolute; top: 2rem; right: 2rem; width: 44px; color: var(--blue); opacity: .9; }
.map-pin svg, .footer-social svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.visit-contact { display: flex; flex-direction: column; }
.contact-line { padding: 1.3rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.2; text-decoration: none; overflow-wrap: anywhere; }
.contact-line:first-of-type { margin-top: 1rem; }
.contact-line small { display: block; margin-bottom: .35rem; color: var(--muted); font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-line:hover, .contact-line:focus-visible { color: var(--blue); }
.visit-hours dl { margin: 1rem 0 0; }
.visit-hours dl div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.visit-hours dt, .visit-hours dd { margin: 0; font-size: .84rem; }
.visit-hours dd { color: var(--blue-deep); font-weight: 700; text-align: right; white-space: nowrap; }

.site-footer { padding: 4.5rem 1.5rem 1.5rem; background: var(--blue-deep); color: var(--cream); }
.footer-inner { width: var(--content); margin: auto; }
.footer-signup { display: grid; grid-template-columns: 1fr minmax(390px, .8fr); align-items: end; gap: 3rem; margin-bottom: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(232,218,180,.25); }
.footer-kicker { margin: 0 0 .35rem; color: rgba(232,218,180,.75); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-signup h2 { margin: 0; color: var(--cream); font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 500; line-height: 1; }
.signup-form { position: relative; display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--cream); }
.signup-form input, .signup-form button { min-height: 54px; border: 0; border-radius: 0; background: transparent; color: var(--cream); font: inherit; }
.signup-form input { min-width: 0; padding: .8rem .3rem; font-size: 1rem; outline: none; }
.signup-form input::placeholder { color: rgba(232,218,180,.55); }
.signup-form button { padding: .8rem .2rem .8rem 1.5rem; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.signup-form button:hover, .signup-form button:focus-visible { color: white; }
.form-status { position: absolute; top: calc(100% + .45rem); left: 0; margin: 0; color: rgba(232,218,180,.75); font-size: .7rem; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .75fr 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.footer-logo { display: block; width: 190px; height: auto; margin-bottom: 1.5rem; filter: invert(94%) sepia(19%) saturate(461%) hue-rotate(345deg) brightness(106%); }
.footer-logo img { display: block; width: 190px; height: auto; aspect-ratio: 1254 / 1128; object-fit: contain; }
.footer-intro > p { max-width: 330px; margin: 0; color: rgba(232,218,180,.75); font-size: .84rem; }
.footer-column h2 { margin: .35rem 0 1.2rem; color: var(--cream); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-column nav { display: flex; align-items: flex-start; flex-direction: column; gap: .55rem; }
.footer-column a { display: block; color: var(--cream); font-size: .8rem; text-decoration: none; overflow-wrap: anywhere; }
.footer-column a:hover, .footer-column a:focus-visible { text-decoration: underline; text-underline-offset: .22rem; }
.footer-column p { margin: 0 0 1rem; color: rgba(232,218,180,.78); font-size: .82rem; line-height: 1.8; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; flex-wrap: wrap; }
.footer-social a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(232,218,180,.35); border-radius: 50%; }
.footer-social a:hover, .footer-social a:focus-visible { border-color: var(--cream); background: rgba(232,218,180,.08); text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; }
.footer-social a:nth-child(2) svg, .footer-social a:nth-child(3) svg { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(232,218,180,.25); }
.footer-bottom p { margin: 0; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom > div { display: flex; gap: 1.3rem; }
.footer-bottom a { color: inherit; font-size: .66rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

/* Menu page */
.menu-hero { position: relative; display: grid; min-height: 500px; place-items: center; background: #1d2d31; color: white; text-align: center; overflow: hidden; }
.menu-hero > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.menu-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,25,29,.8), rgba(9,25,29,.34)); }
.menu-hero-inner { position: relative; z-index: 2; width: min(920px, calc(100vw - 3rem)); padding: 4rem 0 3rem; }
.menu-hero .intro-script { color: var(--cream); }
.menu-hero h1 { font-size: clamp(5rem, 11vw, 8.5rem); }
.menu-hero-inner > p:not(.intro-script) { width: min(670px, 100%); margin: 1.2rem auto 2rem; color: rgba(255,255,255,.82); }
.menu-jump { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; }
.menu-jump a { padding: .65rem .85rem; border: 1px solid rgba(255,255,255,.5); background: rgba(9,25,29,.28); color: white; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.menu-jump a:hover, .menu-jump a:focus-visible { border-color: var(--cream); background: rgba(255,255,255,.12); }
.full-menu { scroll-margin-top: 6rem; }
.menu-section-heading { display: grid; grid-template-columns: 90px 1fr; align-items: start; gap: 1.5rem; margin-bottom: 3rem; }
.menu-section-heading > span { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font-family: var(--serif); font-size: 1.5rem; }
.menu-section-heading h2 { font-size: clamp(4rem, 8vw, 7rem); }
.price-note { margin: 1rem 0 0; color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .05em; }
.menu-columns--full { padding-left: 105px; }
.menu-photo-break { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 540px; background: var(--blue); color: white; }
.menu-photo-break img { height: 100%; min-height: 540px; object-fit: cover; }
.menu-photo-break > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 6rem); }
.menu-photo-break .intro-script { color: var(--cream); }
.menu-photo-break h2 { font-size: clamp(3.5rem, 6vw, 5.8rem); }
.menu-photo-break--reverse img { order: 2; }
.menu-photo-break--reverse > div { order: 1; }
.menu-legend { display: flex; gap: 1rem 2rem; margin: 4rem 0 1rem 105px; padding: 1.3rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.menu-legend strong { color: var(--blue); }
.menu-disclaimer { max-width: 900px; margin: 1.5rem 0 0 105px; color: var(--muted); font-size: .72rem; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 165px 1fr auto; gap: 1rem; }
  .brand { width: 160px; }
  .main-nav { gap: 1rem; }
  .main-nav a { font-size: .65rem; }
  .welcome { gap: 3.5rem; }
  .story-split { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  html { scroll-padding-top: 5.5rem; }
  .header-inner { grid-template-columns: 110px 1fr auto; min-height: 84px; }
  .brand { width: 105px; height: 72px; }
  .brand img { max-height: 70px; }
  .header-book { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-self: end; gap: .7rem; padding: .7rem 0; border: 0; background: none; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 28px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before { content: ""; position: absolute; top: -6px; }
  .menu-toggle i::after { content: ""; position: absolute; top: 6px; }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(90deg); }
  .menu-toggle[aria-expanded="true"] i::after { opacity: 0; }
  .main-nav { position: fixed; top: 84px; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: 1.4rem 1.5rem; background: var(--cream); opacity: 0; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav::after { content: ""; width: min(220px, 52vw); min-height: 170px; margin: auto auto 1rem; align-self: center; background: url("../images/logo-transparent.png") center / contain no-repeat; opacity: .12; pointer-events: none; }
  .main-nav a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 2rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .main-nav a::after { display: none; }
  .main-nav .mobile-book { display: flex; min-height: 52px; align-items: center; justify-content: center; margin-top: 1.25rem; padding: .8rem 1rem; border: 0; background: var(--blue); color: white; font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .hero { min-height: calc(100svh - 84px); }
  .hero-content { top: 48%; }
  .hero h1, .hero h2 { font-size: clamp(3.8rem, 13vw, 6.2rem); }
  .hero-shade { background: linear-gradient(90deg, rgba(13,24,26,.78), rgba(13,24,26,.36)); }
  .carousel-controls { right: 1.5rem; bottom: 1.3rem; }
  .media-credit { display: none; }
  .welcome { grid-template-columns: 1fr; padding-left: 3.5rem; }
  .welcome-image { width: min(620px, 100%); }
  .menu-preview-heading, .section-heading { grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
  .menu-columns { gap: 2.5rem; }
  .story-split { grid-template-columns: 1fr; }
  .story-image { min-height: 480px; }
  .story-panel { padding: 5rem 1.5rem; }
  .event-row { grid-template-columns: 110px 1fr; }
  .event-row .text-link { grid-column: 2; justify-self: start; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-tall { grid-row: auto; }
  .gallery-wide, .gallery-grid .video-tile { grid-column: span 1; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-grid > div { min-height: auto; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .visit-grid > div:last-child { border-bottom: 0; }
  .visit-grid p { margin: 1.2rem 0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-signup { grid-template-columns: 1fr; align-items: start; gap: 2rem; }
  .menu-columns--full { padding-left: 0; }
  .menu-legend, .menu-disclaimer { margin-left: 0; }
  .menu-photo-break { grid-template-columns: 1fr; }
  .menu-photo-break img { min-height: 420px; }
  .menu-photo-break--reverse img { order: 1; }
  .menu-photo-break--reverse > div { order: 2; }
}

@media (max-width: 620px) {
  :root { --content: calc(100vw - 2rem); }
  .header-inner { grid-template-columns: 112px 1fr; width: calc(100vw - 2rem); min-height: 82px; gap: .75rem; }
  .brand { width: 112px; height: 74px; }
  .brand img { max-height: 72px; }
  .main-nav { top: 82px; padding: 1rem; }
  .main-nav a { padding: .75rem 0; font-size: 1.72rem; }
  .main-nav .mobile-book { margin-top: 1rem; font-size: .72rem; }
  .hero { min-height: min(690px, calc(100svh - 82px)); }
  .hero-slide:first-child .hero-media { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(13,24,26,.84) 0%, rgba(13,24,26,.46) 68%, rgba(13,24,26,.18)); }
  .hero-content { top: auto; bottom: 5.7rem; left: 1rem; width: calc(100vw - 2rem); transform: none; }
  .eyebrow { margin-bottom: .9rem; font-size: .64rem; letter-spacing: .15em; }
  .eyebrow::before { width: 28px; }
  .hero h1, .hero h2 { font-size: clamp(2.95rem, 14vw, 4.15rem); line-height: .88; }
  .hero-content > p:not(.eyebrow) { max-width: 34rem; margin: 1.1rem 0 1.25rem; font-size: .9rem; line-height: 1.5; }
  .hero-actions { align-items: stretch; gap: .55rem; }
  .hero-actions .button { min-height: 46px; padding: .75rem 1rem; }
  .carousel-controls { right: 1rem; bottom: 1rem; left: 1rem; justify-content: space-between; }
  .carousel-controls > button { width: 38px; height: 38px; }
  .section { padding: 4.25rem 1rem; }
  .section-label { display: none; }
  .welcome { padding-left: 1rem; }
  .welcome { gap: 2.5rem; }
  .welcome h2, .menu-preview h2, .story-panel h2, .section-heading h2 { max-width: none; font-size: clamp(2.85rem, 13vw, 3.8rem); line-height: .92; }
  .welcome-copy .lead { margin-top: 1.4rem; font-size: 1.28rem; }
  .welcome-image img { height: 250px; }
  .intro-script { font-size: 1.5rem; }
  .menu-preview-heading, .section-heading { margin-bottom: 2.5rem; }
  .menu-columns { grid-template-columns: 1fr; gap: 0; }
  .menu-list + .menu-list .menu-item:first-child { border-top: 0; }
  .menu-item p { max-width: 100%; }
  .story-image { min-height: 300px; }
  .story-panel { padding: 4rem 1rem; }
  .event-row { grid-template-columns: 1fr; gap: 1rem; }
  .event-row .text-link { grid-column: auto; }
  .event-date { flex-direction: row; align-items: baseline; gap: .6rem; }
  .event-date strong { font-size: 2rem; }
  .event-copy h3 { font-size: 1.72rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: .65rem; }
  .gallery-tall, .gallery-wide { grid-column: auto; grid-row: auto; }
  .gallery-grid .video-tile { grid-column: auto; }
  .booking { padding: 5rem 1rem; }
  .booking h2 { font-size: clamp(3.1rem, 15vw, 4.2rem); line-height: .9; }
  .booking-pattern { width: 210px; opacity: .065; }
  .booking-pattern--thai { top: -2rem; left: -5.5rem; }
  .booking-pattern--caribbean { right: -5rem; bottom: -3rem; }
  .visit-grid { border-right: 0; border-left: 0; box-shadow: none; }
  .visit-grid > div { min-height: auto; padding: 2rem 1rem; }
  .contact-line { font-size: 1.35rem; }
  .map-pin { top: 1.7rem; right: 1rem; width: 36px; }
  .site-footer { padding: 2.6rem 1rem 1rem; }
  .footer-signup { gap: .9rem; margin-bottom: 2rem; padding-bottom: 2rem; }
  .footer-kicker { margin-bottom: .2rem; font-size: .61rem; }
  .footer-signup h2 { max-width: none; font-size: 2.05rem; }
  .signup-form { grid-template-columns: minmax(0, 1fr) auto; border-bottom: 1px solid var(--cream); }
  .signup-form input { min-height: 46px; padding: .55rem 0; border-bottom: 0; font-size: .88rem; }
  .signup-form button { min-height: 46px; justify-self: auto; padding: .55rem 0 .55rem .8rem; white-space: nowrap; }
  .form-status { position: absolute; grid-column: auto; margin-top: 0; }
  .footer-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 1.7rem 1rem; }
  .footer-intro { display: grid; grid-column: 1 / -1; grid-template-columns: 135px minmax(0, 1fr); align-items: center; gap: .9rem; }
  .footer-logo { width: 135px; margin: 0; }
  .footer-logo img { width: 135px; }
  .footer-intro > p { max-width: 24ch; font-size: .72rem; line-height: 1.5; }
  .footer-column h2 { margin: 0 0 .65rem; font-size: .62rem; }
  .footer-column p { margin-bottom: .6rem; font-size: .74rem; line-height: 1.65; }
  .footer-column a { font-size: .74rem; }
  .footer-column nav { gap: .28rem; }
  .footer-column:last-child { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(0, 1fr) auto; column-gap: 1rem; padding-top: 1.35rem; border-top: 1px solid rgba(232,218,180,.22); }
  .footer-column:last-child h2 { grid-column: 1 / -1; }
  .footer-column:last-child p { margin: 0; }
  .footer-social { align-self: start; margin: 0; gap: .45rem; }
  .footer-social a { width: 34px; height: 34px; }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-bottom { align-items: center; flex-direction: row; justify-content: space-between; margin-top: 1.8rem; padding-top: 1rem; }
  .footer-bottom p, .footer-bottom a { font-size: .58rem; }
  .footer-bottom > div { gap: .8rem; }
  .menu-hero { min-height: 520px; padding: 0; }
  .menu-hero-inner { width: calc(100vw - 2rem); padding: 3rem 0 2rem; }
  .menu-hero h1 { font-size: clamp(4.2rem, 23vw, 6rem); }
  .menu-hero-inner > p:not(.intro-script) { margin: .8rem auto 1.3rem; font-size: .9rem; }
  .menu-jump { gap: .4rem; }
  .menu-jump a { padding: .55rem .65rem; font-size: .6rem; }
  .menu-section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .menu-section-heading > span { width: 46px; height: 46px; }
  .menu-section-heading h2 { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .menu-photo-break img { min-height: 340px; }
  .menu-photo-break > div { padding: 3.5rem 1rem; }
  .menu-photo-break h2 { font-size: 3.5rem; }
  .price-note { line-height: 1.5; }
  .menu-item .price-options { text-align: left; }
  .menu-legend { gap: .65rem 1.2rem; margin-top: 2.5rem; }
}

@media (max-width: 380px) {
  .hero { min-height: 650px; }
  .hero h1, .hero h2 { font-size: 2.75rem; }
  .hero-content > p:not(.eyebrow) { font-size: .84rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .welcome h2, .menu-preview h2, .story-panel h2, .section-heading h2 { font-size: 2.65rem; }
  .visit-hours dl div { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .visit-hours dd { text-align: left; }
}

@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; }
}
