:root {
  --navy: #113060;
  --navy-deep: #091f3d;
  --blue: #9fc4ce;
  --blue-pale: #edf6f8;
  --ink: #1e2a38;
  --muted: #63707f;
  --paper: #ffffff;
  --cream: #f7f6f2;
  --line: rgba(17, 48, 96, 0.14);
  --shadow: 0 24px 70px rgba(9, 31, 61, 0.13);
  --radius: 4px;
  --serif: "Lora", Georgia, serif;
  --sans: "Work Sans", Arial, sans-serif;
}

* {
  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.72;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f1c453;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  color: var(--navy-deep);
  background: var(--paper);
  font-weight: 700;
}

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

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(9, 31, 61, 0.97), rgba(9, 31, 61, 0.79));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(9, 31, 61, 0.98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: 164px;
  flex: 0 0 164px;
}

.brand img {
  max-height: 64px;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 1.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav .nav-book {
  padding: 0.62rem 1rem;
  color: var(--navy-deep);
  background: var(--blue);
  border: 1px solid var(--blue);
}

.site-nav .nav-book:hover,
.site-nav .nav-book[aria-current="page"] {
  color: var(--paper);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  color: var(--paper);
  background: var(--navy-deep) url("images/hero.jpg") center 44% / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 31, 61, 0.83) 0%, rgba(9, 31, 61, 0.45) 48%, rgba(9, 31, 61, 0.08) 78%),
    linear-gradient(0deg, rgba(9, 31, 61, 0.68), transparent 48%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 13rem 7rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.13;
  font-weight: 500;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.045em;
}

.hero h1 {
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 610px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  color: var(--navy-deep);
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.button-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.button-outline:hover {
  color: var(--navy-deep);
  background: var(--paper);
  border-color: var(--paper);
}

.button-dark {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.button-dark:hover {
  color: var(--navy);
  background: transparent;
}

.scroll-cue {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.52);
  content: "";
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-soft {
  background: var(--cream);
}

.section-blue {
  color: var(--paper);
  background: var(--navy);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading h2,
.editorial h2,
.split-copy h2,
.feature-intro h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.3rem);
  letter-spacing: -0.035em;
}

.section-heading p,
.lead {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section-blue .section-heading p,
.section-blue .lead {
  color: rgba(255, 255, 255, 0.75);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.editorial-copy p:first-child {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.78rem);
  line-height: 1.5;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.split-reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media::after {
  position: absolute;
  z-index: -1;
  right: -1.6rem;
  bottom: -1.6rem;
  width: 54%;
  height: 54%;
  background: var(--blue);
  content: "";
}

.split-media img {
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-copy p {
  color: var(--muted);
}

.signature {
  margin: 1.8rem 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-deep);
  text-decoration: none;
}

.card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(9, 31, 61, 0.92), rgba(9, 31, 61, 0.07) 68%);
  content: "";
}

.card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.card:hover img {
  transform: scale(1.045);
}

.card-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
}

.card-copy h3 {
  font-size: 2rem;
}

.card-copy p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0;
  border-block: 1px solid var(--line);
}

.price {
  padding: 1.3rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.price:last-child {
  border: 0;
}

.price strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.price span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  height: min(56vw, 620px);
  min-height: 420px;
}

.gallery-strip img {
  height: 100%;
  object-fit: cover;
}

.gallery-strip img:nth-child(2) {
  border-inline: 8px solid var(--paper);
}

.quote-banner {
  padding: 4rem 0;
  color: var(--navy-deep);
  background: var(--blue-pale);
  text-align: center;
}

.quote-banner blockquote {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  line-height: 1.45;
}

.quote-banner cite {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awards-section {
  color: var(--paper);
  background: var(--navy-deep);
}

.awards-heading {
  margin-inline: auto;
  text-align: center;
}

.awards-heading .eyebrow {
  justify-content: center;
}

.awards-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.award-card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--ink);
  background: var(--paper);
  border-top: 4px solid var(--blue);
  text-align: center;
}

.award-visual {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  overflow: hidden;
}

.award-visual img {
  width: min(190px, 100%);
  height: 190px;
  object-fit: contain;
}

.award-visual-gault img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: right center;
}

.award-card h3 {
  color: var(--navy);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.award-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  color: var(--paper);
  background: var(--navy-deep);
}

.cta::after {
  position: absolute;
  top: -140px;
  right: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(159, 196, 206, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(159, 196, 206, 0.04), 0 0 0 140px rgba(159, 196, 206, 0.025);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.cta h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  letter-spacing: -0.035em;
}

.cta p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  padding-block: 11rem 5rem;
  color: var(--paper);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, rgba(9, 31, 61, 0.93), rgba(9, 31, 61, 0.34) 68%, rgba(9, 31, 61, 0.14));
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-midi { background-image: url("images/dish-1.jpg"); }
.hero-soir { background-image: url("images/dining.jpg"); }
.hero-cave { background-image: url("images/cave.jpg"); }
.hero-traiteur { background-image: url("images/amarelle-hero.jpg"); }
.hero-lieu { background-image: url("images/place.png"); }
.hero-reserver { background-image: url("images/portrait.jpg"); }
.hero-legal { background-image: linear-gradient(120deg, var(--navy-deep), var(--navy)); }

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.content-grid + .content-grid {
  margin-top: clamp(5rem, 10vw, 9rem);
}

.feature-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.feature-intro .eyebrow,
.section-heading .eyebrow,
.editorial .eyebrow,
.split-copy .eyebrow {
  color: #568594;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature {
  padding: 2rem;
  background: var(--cream);
  border-top: 3px solid var(--blue);
}

.feature h3 {
  color: var(--navy-deep);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.feature p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.feature strong {
  color: var(--navy);
}

.feature .button-row {
  margin-top: 1.4rem;
}

.image-card {
  margin-top: 1rem;
  overflow: hidden;
  background: var(--navy);
}

.image-card img {
  max-height: 540px;
  object-fit: cover;
}

.weekly-menu-caption {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

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

.weekly-menu-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.weekly-menu-copy h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.3rem);
  letter-spacing: -0.035em;
}

.weekly-menu-frame {
  padding: clamp(0.6rem, 1.5vw, 1rem);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.weekly-menu-frame img,
.image-card img[src$="ardoise.png"] {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream);
}

.schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.schedule-item {
  padding: 1.6rem;
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
}

.schedule-item strong {
  display: block;
  color: var(--navy);
}

.schedule-item span {
  color: var(--muted);
}

.reservation-box {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 520px;
  color: var(--paper);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.reservation-copy {
  padding: clamp(2.5rem, 6vw, 5.5rem);
  align-self: center;
}

.reservation-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.reservation-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.contact-card {
  padding: 1.8rem;
  background: var(--cream);
  border-top: 2px solid var(--blue);
}

.contact-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.legal-copy h2 {
  margin-top: 2.7rem;
  color: var(--navy);
  font-size: 1.7rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.notice {
  margin-block: 2rem;
  padding: 1.25rem 1.4rem;
  color: var(--navy-deep);
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: 4.5rem;
}

.footer-logo {
  width: 185px;
  margin-bottom: 1.4rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a:hover {
  color: var(--blue);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-awards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-award {
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.7rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.footer-award > img,
.footer-gault-visual {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  background: var(--paper);
}

.footer-award > img {
  object-fit: contain;
}

.footer-gault-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.footer-award > span:last-child {
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.footer-award small {
  display: block;
  margin-top: 0.15rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

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

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 84px 0 0;
    display: none;
    padding: 2rem 1.5rem 4rem;
    overflow-y: auto;
    background: var(--navy-deep);
  }

  .nav-open .site-nav {
    display: block;
  }

  .site-nav ul {
    width: min(520px, 100%);
    margin-inline: auto;
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a {
    padding: 1rem 0;
    font-size: 1rem;
  }

  .site-nav .nav-book {
    margin-top: 1.2rem;
    padding-inline: 1rem;
    text-align: center;
  }

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

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

  .award-card:last-child {
    grid-column: 1 / -1;
  }

  .cards .card:last-child {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 2rem, 1180px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    width: 138px;
    flex-basis: 138px;
  }

  .site-nav {
    inset-block-start: 74px;
  }

  .hero {
    min-height: 86svh;
    background-position: 58% center;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(9, 31, 61, 0.94), rgba(9, 31, 61, 0.3) 78%);
  }

  .hero-content {
    padding-block: 10rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .scroll-cue {
    display: none;
  }

  .editorial,
  .split,
  .content-grid,
  .weekly-menu-layout,
  .reservation-box,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-intro {
    position: static;
  }

  .split-reverse .split-media {
    order: initial;
  }

  .split-media img {
    min-height: 390px;
  }

  .cards,
  .awards-grid,
  .contact-cards,
  .schedule {
    grid-template-columns: 1fr;
  }

  .cards .card:last-child {
    grid-column: auto;
  }

  .award-card:last-child {
    grid-column: auto;
  }

  .footer-awards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 430px;
  }

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

  .price {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: 640px;
  }

  .gallery-strip img:nth-child(2) {
    border-inline: 5px solid var(--paper);
  }

  .gallery-strip img:nth-child(3) {
    display: none;
  }

  .cta-inner .button {
    justify-self: start;
  }

  .page-hero {
    min-height: 55svh;
    padding-block: 9rem 3.5rem;
  }

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

  .footer-grid {
    padding-block: 3.5rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    height: 520px;
  }

  .gallery-strip img:nth-child(2) {
    display: none;
  }
}
