:root {
  --cream: #f7f0e1;
  --cream-deep: #eee2cc;
  --paper: #fffdf8;
  --ink: #251a15;
  --muted: #73665c;
  --caramel: #b9824f;
  --caramel-deep: #93633a;
  --sage: #739087;
  --sage-pale: #cfddd5;
  --line: rgba(37, 26, 21, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --script: "Allura", "Segoe Script", cursive;
  --max: 1280px;
  --header-h: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid transparent;
  transition:
    height 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(255, 253, 248, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(50, 36, 25, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  width: max-content;
  display: grid;
  justify-items: center;
  line-height: 1;
}

.brand::before,
.brand::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 36px;
  height: 1px;
  background: var(--caramel);
  opacity: 0.8;
}

.brand::before {
  right: calc(100% + 9px);
}

.brand::after {
  left: calc(100% + 9px);
}

.brand-dots {
  position: absolute;
  top: -6px;
  color: var(--caramel);
  font-size: 9px;
  letter-spacing: 6px;
  transform: translateX(3px);
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 34px);
  letter-spacing: -1.8px;
}

.brand > span:last-child {
  margin-top: 3px;
  color: var(--caramel);
  font-size: 13px;
  letter-spacing: 4px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% 2px;
  width: 0;
  height: 1px;
  background: var(--caramel);
  transition: 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  inset-inline-start: 0;
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--caramel);
  border-radius: 1px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-cta,
.button-primary {
  color: white;
  background: var(--caramel);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--caramel-deep);
  transform: translateY(-2px);
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: max(780px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  padding: calc(var(--header-h) + 40px) clamp(24px, 6vw, 100px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(120deg, var(--paper) 0 47%, var(--cream) 47% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -16vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(115, 144, 135, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(115, 144, 135, 0.035),
    0 0 0 100px rgba(115, 144, 135, 0.025);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--caramel-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.coast-copy h2,
.reservation-form-wrap h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -2px;
}

.hero h1 {
  font-size: clamp(76px, 7.7vw, 132px);
}

.hero h1 > span {
  display: block;
  margin-top: 14px;
  color: var(--caramel);
  font-family: var(--script);
  font-size: 0.63em;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  transform: rotate(-2deg);
}

.hero-intro {
  max-width: 510px;
  margin: 40px 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.hero-meta {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  content: "•";
  margin-right: 18px;
  color: var(--caramel);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  justify-self: end;
}

.hero-main-photo {
  position: relative;
  width: 82%;
  margin: 0 0 0 auto;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(62, 43, 30, 0.18);
}

.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(37, 26, 21, 0.18));
  pointer-events: none;
}

.hero-main-photo img {
  width: 100%;
  height: clamp(430px, 59vh, 660px);
  object-fit: cover;
  transform: scale(1.02);
}

.hero-side-photo {
  position: absolute;
  left: 0;
  bottom: -48px;
  width: 31%;
  margin: 0;
  border: 10px solid var(--paper);
  box-shadow: 0 18px 50px rgba(62, 43, 30, 0.16);
}

.hero-side-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-seal {
  position: absolute;
  top: 7%;
  left: 4%;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(147, 99, 58, 0.55);
  border-radius: 50%;
  color: var(--caramel-deep);
  background: rgba(255, 253, 248, 0.92);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: rotate(-8deg);
  backdrop-filter: blur(8px);
}

.hero-seal strong {
  font-family: var(--script);
  font-size: 28px;
  font-weight: 400;
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: -8px;
  margin: 0;
  padding: 12px 18px;
  color: white;
  background: var(--sage);
  font-family: var(--script);
  font-size: 27px;
  transform: rotate(-3deg);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 30px;
  background: var(--caramel);
  animation: pulseLine 1.8s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
  }
}

.leaf {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 160px;
  opacity: 0.25;
  pointer-events: none;
  transform: rotate(-30deg);
}

.leaf::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 5px;
  width: 200px;
  height: 2px;
  background: var(--sage);
  transform: rotate(-12deg);
  transform-origin: left;
}

.leaf span {
  position: absolute;
  width: 65px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  background: var(--sage);
  transform: rotate(-20deg);
}

.leaf span:nth-child(1) {
  left: 30px;
  top: 74px;
}

.leaf span:nth-child(2) {
  left: 66px;
  top: 51px;
}

.leaf span:nth-child(3) {
  left: 106px;
  top: 36px;
}

.leaf span:nth-child(4) {
  left: 71px;
  top: 92px;
  transform: rotate(160deg);
}

.leaf span:nth-child(5) {
  left: 118px;
  top: 73px;
  transform: rotate(160deg);
}

.leaf-one {
  top: 88px;
  right: 0;
}

.ticker {
  overflow: hidden;
  color: white;
  background: var(--sage);
}

.ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 48px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ticker b {
  color: var(--cream);
  font-size: 10px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.intro,
.locations {
  max-width: 1520px;
  margin: 0 auto;
}

.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading.centered {
  max-width: 750px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.coast-copy h2,
.reservation-form-wrap h2 {
  font-size: clamp(54px, 6.2vw, 92px);
}

.section-heading h2 em,
.story-copy h2 em,
.coast-copy h2 em,
.reservation-form-wrap h2 em {
  display: inline-block;
  color: var(--caramel);
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 42px 32px 34px;
  border-right: 1px solid var(--line);
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  color: white;
  background: var(--sage);
}

.feature-card svg {
  width: 48px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--caramel-deep);
  stroke-width: 1.3;
  transition: stroke 0.3s ease;
}

.feature-card:hover svg {
  stroke: var(--cream);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--caramel);
  font-family: var(--serif);
  font-size: 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 27px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.menu-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.leaf-menu {
  top: 10px;
  right: 5vw;
  width: 320px;
  transform: rotate(10deg) scale(1.4);
}

.menu-heading {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin: 0 auto 52px;
}

.menu-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.menu-tabs {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto 54px;
  border: 1px solid rgba(37, 26, 21, 0.22);
}

.menu-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 18px 26px;
  border: 0;
  border-right: 1px solid rgba(37, 26, 21, 0.22);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.menu-tab:last-child {
  border-right: 0;
}

.menu-tab.is-active {
  color: white;
  background: var(--ink);
}

.menu-tab > span {
  color: var(--caramel);
  font-family: var(--serif);
  font-size: 18px;
}

.menu-tab strong {
  font-family: var(--serif);
  font-size: 27px;
}

.menu-tab small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-panel {
  max-width: var(--max);
  margin: 0 auto;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 28px;
}

.menu-panel-top .eyebrow {
  margin-bottom: 8px;
}

.menu-panel-top h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.menu-panel-top > a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.menu-pages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 18px;
}

.menu-pages-three {
  grid-template-columns: repeat(3, 1fr);
}

.menu-page {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(57, 41, 30, 0.12);
  cursor: zoom-in;
}

.menu-page::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(37, 26, 21, 0.12);
  pointer-events: none;
}

.menu-page img {
  width: 100%;
  transition: transform 0.45s ease;
}

.menu-page:hover img {
  transform: scale(1.015);
}

.menu-page > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
  color: white;
  background: rgba(37, 26, 21, 0.86);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.25s ease;
}

.menu-page:hover > span,
.menu-page:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.story {
  padding-bottom: 0;
  overflow: hidden;
}

.story-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
  margin: 0 auto;
}

.story-gallery {
  position: relative;
  min-height: 650px;
}

.story-photo {
  margin: 0;
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-main {
  width: 76%;
  height: 550px;
}

.story-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 340px;
  border: 12px solid var(--paper);
  box-shadow: 0 20px 50px rgba(37, 26, 21, 0.14);
}

.story-caption {
  position: absolute;
  top: 65px;
  right: -7px;
  color: var(--caramel);
  font-family: var(--script);
  font-size: 32px;
  transform: rotate(-5deg);
}

.story-copy {
  max-width: 540px;
}

.story-copy h2 {
  line-height: 0.94;
}

.story-lead {
  margin: 34px 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
}

.story-copy > p:not(.eyebrow):not(.story-lead) {
  color: var(--muted);
}

.story-copy .text-link {
  margin-top: 20px;
}

.story-signature {
  display: grid;
  margin-top: 50px;
  color: var(--caramel-deep);
}

.story-signature span {
  font-family: var(--script);
  font-size: 42px;
  line-height: 0.8;
}

.story-signature small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.food-strip {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 100px auto 0;
}

.food-strip figure {
  position: relative;
  aspect-ratio: 1.25 / 1;
  margin: 0;
  overflow: hidden;
}

.food-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.food-strip figure:hover img {
  transform: scale(1.05);
}

.food-strip figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 9px 12px;
  color: white;
  background: rgba(37, 26, 21, 0.72);
  font-family: var(--serif);
  font-size: 18px;
  backdrop-filter: blur(6px);
}

.coast-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
  margin-top: clamp(100px, 12vw, 180px);
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 130px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgba(37, 26, 21, 0.15), rgba(37, 26, 21, 0.15)),
    var(--sage);
}

.coast-copy {
  max-width: 560px;
  justify-self: end;
}

.coast-copy .eyebrow {
  color: var(--cream);
}

.coast-copy h2 {
  line-height: 0.94;
}

.coast-copy h2 em {
  color: var(--cream);
}

.coast-copy > p:last-of-type {
  max-width: 510px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.button-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.video-wrap {
  position: relative;
  width: min(100%, 470px);
  justify-self: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.video-wrap video {
  width: 100%;
  max-height: 650px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #1c2623;
}

.video-label {
  position: absolute;
  right: -50px;
  bottom: 60px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--script);
  font-size: 27px;
  transform: rotate(-6deg);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.location-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(37, 26, 21, 0.06);
}

.location-card figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.location-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 26, 21, 0.25), transparent 50%);
}

.location-card figure img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover figure img {
  transform: scale(1.04);
}

.location-card figure span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 12px;
  color: white;
  font-family: var(--serif);
  font-size: 46px;
}

.location-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}

.location-body .eyebrow {
  margin-bottom: 8px;
}

.location-body h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.95;
}

.location-body address {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.location-phone {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 24px;
}

.location-actions {
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.location-actions a,
.location-actions button {
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.reservation {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(600px, 1.18fr);
  max-width: 1520px;
  margin: 0 auto;
  padding-top: 20px;
}

.reservation-photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.reservation-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 26, 21, 0.68), transparent 58%);
}

.reservation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-photo > div {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 36px;
  left: 40px;
  color: white;
}

.reservation-photo p {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
}

.reservation-photo span {
  color: var(--cream);
  font-family: var(--script);
  font-size: 50px;
}

.reservation-form-wrap {
  padding: clamp(50px, 6vw, 90px);
  background: var(--cream);
}

.reservation-form-wrap h2 {
  line-height: 0.95;
}

.reservation-form-wrap > p:not(.eyebrow):not(.form-note) {
  max-width: 600px;
  margin: 28px 0 38px;
  color: var(--muted);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.reservation-form label {
  display: grid;
  gap: 8px;
}

.reservation-form label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.reservation-form label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(37, 26, 21, 0.18);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.78);
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(185, 130, 79, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.reservation-form button {
  width: 100%;
  margin-top: 5px;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding: 70px clamp(24px, 6vw, 96px) 24px;
  color: white;
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 70px;
  padding-bottom: 55px;
}

.brand-footer::before,
.brand-footer::after {
  background: var(--cream);
}

.brand-footer > span:last-child {
  color: var(--cream);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 20px;
}

.social-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-dialog {
  width: min(96vw, 940px);
  max-width: none;
  height: min(94vh, 1120px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.menu-dialog::backdrop {
  background: rgba(28, 20, 16, 0.84);
  backdrop-filter: blur(8px);
}

.dialog-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 0 18px 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.dialog-bar p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.dialog-bar button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.dialog-image-wrap {
  height: calc(100% - 60px);
  overflow: auto;
  padding: 18px;
}

.dialog-image-wrap img {
  width: min(100%, 760px);
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(37, 26, 21, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --header-h: 80px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 28px;
  }

  .site-nav {
    gap: 20px;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 17px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    padding-inline: 40px;
  }

  .hero h1 {
    font-size: clamp(64px, 8vw, 98px);
  }

  .hero-meta {
    flex-wrap: wrap;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .menu-pages {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-pages-three {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card figure,
  .location-card figure img {
    min-height: 280px;
    max-height: 280px;
  }

  .reservation {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: var(--paper);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 21px;
    height: 1px;
    background: var(--ink);
    transition: 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: white;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 34px;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 72px;
    padding: calc(var(--header-h) + 70px) 24px 110px;
    background: var(--cream);
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(63px, 16vw, 110px);
  }

  .hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-main-photo {
    width: 88%;
  }

  .hero-main-photo img {
    height: min(68vw, 520px);
  }

  .hero-side-photo {
    bottom: -42px;
  }

  .hero-seal {
    left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .menu-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .menu-tabs {
    grid-template-columns: 1fr;
  }

  .menu-tab {
    border-right: 0;
    border-bottom: 1px solid rgba(37, 26, 21, 0.22);
  }

  .menu-tab:last-child {
    border-bottom: 0;
  }

  .menu-pages-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-gallery {
    min-height: 560px;
  }

  .story-copy {
    max-width: 650px;
  }

  .food-strip {
    grid-template-columns: 1fr;
  }

  .food-strip figure {
    aspect-ratio: 1.8 / 1;
  }

  .coast-section {
    grid-template-columns: 1fr;
  }

  .coast-copy {
    max-width: 680px;
    justify-self: start;
  }

  .video-wrap {
    justify-self: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .location-card figure,
  .location-card figure img {
    max-height: none;
    min-height: 430px;
  }

  .reservation {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .reservation-photo {
    min-height: 520px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 18px;
  }

  .site-header .brand::before,
  .site-header .brand::after {
    display: none;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 88px);
  }

  .hero h1 > span {
    margin-top: 20px;
    font-size: 0.57em;
  }

  .hero-intro {
    margin-top: 32px;
    font-size: 20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-meta span + span::before {
    content: none;
  }

  .hero-main-photo {
    width: 94%;
  }

  .hero-main-photo img {
    height: 78vw;
  }

  .hero-side-photo {
    width: 36%;
    border-width: 7px;
  }

  .hero-seal {
    top: -42px;
    width: 105px;
    height: 105px;
    font-size: 10px;
  }

  .hero-note {
    right: 0;
    bottom: -16px;
    font-size: 22px;
  }

  .section {
    padding: 80px 18px;
  }

  .section-heading.centered {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .story-copy h2,
  .coast-copy h2,
  .reservation-form-wrap h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .menu-section {
    padding-inline: 14px;
  }

  .menu-tab {
    grid-template-columns: auto 1fr;
  }

  .menu-tab small {
    display: none;
  }

  .menu-panel-top {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .menu-pages,
  .menu-pages-three {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-page > span {
    opacity: 1;
    transform: none;
  }

  .story-gallery {
    min-height: 450px;
  }

  .story-photo-main {
    height: 390px;
  }

  .story-photo-small {
    height: 250px;
    border-width: 8px;
  }

  .story-caption {
    top: 22px;
    font-size: 24px;
  }

  .food-strip {
    margin-top: 70px;
  }

  .food-strip figure {
    aspect-ratio: 1.25 / 1;
  }

  .coast-section {
    gap: 55px;
    padding: 80px 18px;
  }

  .video-label {
    right: -5px;
    bottom: 35px;
  }

  .locations {
    padding-inline: 18px;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card figure,
  .location-card figure img {
    min-height: 290px;
    max-height: 290px;
  }

  .location-body {
    padding: 32px 24px;
  }

  .reservation {
    padding: 0;
  }

  .reservation-photo {
    min-height: 420px;
  }

  .reservation-form-wrap {
    padding: 60px 20px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-dialog {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
