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

:root {
  --cream: #fff6df;
  --paper: #fffaf0;
  --ink: #24130f;
  --muted: #746158;
  --red: #b51612;
  --red-deep: #5a1712;
  --gold: #dda935;
  --yellow: #f4c44e;
  --charcoal: #1c1512;
  --line: rgba(74, 42, 28, 0.18);
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--cream);
}

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

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  min-height: 78px;
  padding: 0 4.2vw;
  color: var(--paper);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: rgba(244, 196, 78, 0.9);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 0.92;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 250, 240, 0.7);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a,
.header-cta,
.button,
.text-link,
.map-link {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 25vh 5vw 9vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(27, 12, 8, 0.82) 0%, rgba(27, 12, 8, 0.45) 45%, rgba(27, 12, 8, 0.05) 80%),
    linear-gradient(0deg, rgba(27, 12, 8, 0.78) 0%, transparent 48%);
}

.hero-copy {
  width: min(780px, 76vw);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.78;
  letter-spacing: -0.025em;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.34);
}

.hero-script {
  margin: 12px 0 24px;
  color: var(--yellow);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4.4vw, 66px);
  font-style: italic;
  line-height: 1;
}

.hero-summary {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 250, 240, 0.68);
}

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

.button-ghost {
  color: var(--paper);
  background: rgba(28, 12, 8, 0.22);
}

.button-red {
  color: var(--paper);
  background: rgba(181, 22, 18, 0.88);
  border-color: rgba(181, 22, 18, 0.9);
}

.scroll-note {
  position: absolute;
  right: 4.2vw;
  bottom: 7vh;
  margin: 0;
  color: rgba(255, 250, 240, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 76px;
  padding: 0 4.2vw;
  color: var(--paper);
  background: var(--red-deep);
}

.quick-facts p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-right: 18px;
  font-size: 11px;
  white-space: nowrap;
}

.quick-facts p + p {
  padding-left: 18px;
  border-left: 1px solid rgba(244, 196, 78, 0.24);
}

.quick-facts span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section {
  padding: clamp(86px, 11vw, 154px) max(5vw, 28px);
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 10vw;
  background: var(--paper);
}

.section-heading h2,
.visit h2,
.atmosphere-intro h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.welcome-copy {
  align-self: end;
}

.welcome-copy .lead {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1.28;
}

.welcome-copy > p:not(.lead),
.visit-copy > p,
.atmosphere-intro > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.story-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-notes div {
  display: grid;
  gap: 4px;
  padding: 20px 12px 20px 0;
}

.story-notes div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.story-notes strong {
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}

.story-notes span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atmosphere {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(68, 19, 14, 0.96), rgba(126, 28, 20, 0.94)),
    var(--red-deep);
}

.atmosphere-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 6vw;
  align-items: end;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 196, 78, 0.24);
}

.atmosphere-intro h2 {
  color: var(--paper);
}

.atmosphere-intro > p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.62);
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: end;
  max-width: 1060px;
  padding-top: 44px;
  margin: 0 auto;
}

.photo-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.photo-card.large {
  min-height: 500px;
}

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

.photo-card.large img {
  object-position: center center;
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 74px 28px 28px;
  color: rgba(255, 250, 240, 0.76);
  background: linear-gradient(0deg, rgba(16, 7, 5, 0.86), transparent);
  font-size: 13px;
  line-height: 1.6;
}

.photo-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.visit {
  display: grid;
  grid-template-columns: 0.92fr minmax(420px, 0.78fr);
  gap: 10vw;
  background: var(--cream);
}

.home-menu {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(68, 19, 14, 0.97), rgba(181, 22, 18, 0.9)),
    var(--red-deep);
}

.home-menu-intro {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.75fr;
  gap: 6vw;
  align-items: end;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(244, 196, 78, 0.24);
}

.home-menu-intro h2 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(50px, 6.2vw, 90px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.home-menu-intro p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(244, 196, 78, 0.24);
}

.home-menu-grid article {
  min-height: 260px;
  padding: 42px 30px 40px 0;
}

.home-menu-grid article + article {
  padding-left: 30px;
  border-left: 1px solid rgba(244, 196, 78, 0.24);
}

.home-menu-grid span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-menu-grid h3 {
  margin: 24px 0 20px;
  color: var(--paper);
  font-size: 34px;
  line-height: 1.02;
}

.home-menu-grid strong {
  color: var(--yellow);
  font-size: 18px;
}

.home-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.visit-copy {
  align-self: center;
}

.visit-copy > p {
  max-width: 510px;
  margin: 34px 0 22px;
}

.text-link {
  display: inline-flex;
  padding-bottom: 7px;
  color: var(--red);
  border-bottom: 1px solid var(--red);
}

.visit-card {
  padding: 42px 46px;
  color: var(--paper);
  background: var(--red);
  box-shadow: 24px 24px 0 rgba(221, 169, 53, 0.22);
}

.visit-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.2);
}

.visit-title span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
}

.visit-title small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-card dl {
  margin: 18px 0 28px;
}

.visit-card dl div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
}

.visit-card dt,
.visit-card dd {
  font-size: 12px;
}

.visit-card dt {
  color: var(--yellow);
  font-weight: 800;
}

.visit-card dd {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.map-link {
  display: inline-flex;
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
}

.reserve-link {
  margin-left: 18px;
}

.booking-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 0.72fr);
  gap: 8vw;
  min-height: 100svh;
  padding: 22vh 5vw 10vh;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(16, 7, 5, 0.92), rgba(90, 23, 18, 0.88)),
    var(--red-deep);
}

.booking-copy {
  align-self: center;
}

.booking-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(62px, 8vw, 116px);
}

.booking-copy > p {
  max-width: 600px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.booking-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 44px;
  border-top: 1px solid rgba(244, 196, 78, 0.24);
  border-bottom: 1px solid rgba(244, 196, 78, 0.24);
}

.booking-highlights p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 22px 18px 22px 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.booking-highlights p + p {
  padding-left: 18px;
  border-left: 1px solid rgba(244, 196, 78, 0.24);
}

.booking-highlights span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.booking-form {
  align-self: center;
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 24px 24px 0 rgba(244, 196, 78, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(74, 42, 28, 0.22);
  border-radius: 0;
  padding: 14px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.booking-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  color: var(--paper);
  background: var(--red);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
  min-height: 100px;
  padding: 0 5vw;
  color: rgba(255, 250, 240, 0.68);
  background: #24100d;
}

.page-hero {
  display: flex;
  align-items: flex-end;
  min-height: 62svh;
  padding: 22vh 5vw 8vh;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(27, 12, 8, 0.88), rgba(80, 19, 13, 0.68)),
    var(--red-deep);
}

.page-hero > div {
  width: min(820px, 86vw);
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 104px);
}

.page-hero p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.menu-board {
  background: var(--paper);
}

.menu-board-heading {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 7vw;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.menu-board-heading h2,
.featured-dish h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.92;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.menu-category {
  min-height: 250px;
  padding: 38px 30px 40px 0;
  border-bottom: 1px solid var(--line);
}

.menu-category:nth-child(3n + 2),
.menu-category:nth-child(3n + 3) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.menu-number {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.menu-category h3 {
  margin-bottom: 28px;
  color: var(--red-deep);
  font-size: 30px;
  line-height: 1.05;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.price-list span {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  line-height: 1.12;
}

.price-list strong {
  color: var(--red);
  font-size: 15px;
}

.menu-source-note {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.dish-showcase {
  background: var(--cream);
}

.featured-dish {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1fr;
  gap: 6vw;
  align-items: center;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.featured-dish img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  color: var(--red);
  background:
    linear-gradient(135deg, rgba(244, 196, 78, 0.28), rgba(181, 22, 18, 0.12)),
    var(--paper);
  border: 1px dashed rgba(181, 22, 18, 0.35);
  font-size: clamp(78px, 12vw, 150px);
}

.placeholder-feature {
  align-items: stretch;
}

.featured-dish p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dish-card {
  min-height: 260px;
  padding: 30px;
  background: var(--paper);
}

.dish-icon {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(244, 196, 78, 0.24), rgba(181, 22, 18, 0.1)),
    #fff3d2;
  border: 1px dashed rgba(181, 22, 18, 0.28);
  font-size: 54px;
}

.dish-card span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dish-card h3 {
  margin: 22px 0 16px;
  color: var(--red-deep);
  font-size: 32px;
  line-height: 1.02;
}

.dish-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.dish-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-size: 17px;
}

footer p,
footer > a:last-child {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--paper);
  font-size: 32px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 0 22px;
  }

  nav {
    justify-content: flex-end;
    gap: 14px;
  }

  nav a[href*="welcome"],
  nav a[href*="atmosphere"],
  nav a[href*="visit"] {
    display: none;
  }

  .hero {
    padding-right: 30px;
    padding-left: 30px;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 28px;
  }

  .quick-facts p {
    min-height: 46px;
  }

  .quick-facts p:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .welcome,
  .visit,
  .booking-page,
  .home-menu-intro,
  .home-menu-grid,
  .atmosphere-intro,
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .atmosphere-intro {
    gap: 22px;
  }

  .photo-card,
  .photo-card.large {
    min-height: 420px;
  }

  .menu-board-heading,
  .menu-columns,
  .featured-dish,
  .booking-highlights,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .booking-highlights p + p {
    padding-left: 0;
    border-top: 1px solid rgba(244, 196, 78, 0.24);
    border-left: 0;
  }

  .home-menu-grid article,
  .home-menu-grid article + article {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
    border-top: 1px solid rgba(244, 196, 78, 0.24);
  }

  .menu-category,
  .menu-category:nth-child(3n + 2),
  .menu-category:nth-child(3n + 3) {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

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

  nav {
    gap: 10px;
  }

  nav a {
    padding: 9px 10px;
    color: var(--paper);
    background: rgba(20, 8, 5, 0.34);
  }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
    padding: 43vh 18px 8vh;
  }

  .hero > img {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(27, 12, 8, 0.95) 0%, rgba(27, 12, 8, 0.56) 62%, rgba(27, 12, 8, 0.12) 100%),
      linear-gradient(90deg, rgba(27, 12, 8, 0.34), transparent);
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 8px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 78px);
    line-height: 0.86;
  }

  .hero-script {
    margin-top: 10px;
    font-size: 32px;
  }

  .hero-summary {
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .scroll-note,
  .quick-facts {
    display: none;
  }

  .section {
    padding: 72px 20px;
  }

  .section-heading h2,
  .visit h2,
  .atmosphere-intro h2 {
    font-size: 50px;
  }

  .welcome {
    gap: 42px;
  }

  .welcome-copy .lead {
    font-size: 24px;
  }

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

  .story-notes div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .photo-grid {
    padding-top: 30px;
  }

  .photo-card,
  .photo-card.large {
    min-height: 340px;
  }

  .photo-card figcaption {
    padding: 60px 20px 22px;
  }

  .visit {
    gap: 38px;
  }

  .visit-card {
    padding: 28px 22px;
    box-shadow: 10px 10px 0 rgba(221, 169, 53, 0.2);
  }

  .visit-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 32px 20px;
  }

  .page-hero {
    min-height: 58svh;
    padding: 20vh 20px 64px;
  }

  .booking-page {
    padding: 18vh 20px 72px;
  }

  .booking-form {
    padding: 24px 20px;
    box-shadow: 10px 10px 0 rgba(244, 196, 78, 0.16);
  }

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

  .page-hero h1 {
    font-size: clamp(54px, 17vw, 74px);
  }

  .dish-card {
    min-height: 220px;
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
