:root {
  --navy: #082f57;
  --navy-deep: #061f39;
  --blue: #1b6c9e;
  --sky: #cfe9f3;
  --sky-soft: #eaf5f8;
  --gold: #f1b83f;
  --gold-deep: #d49a20;
  --ink: #10212e;
  --ink-soft: #53616a;
  --paper: #f6f7f3;
  --white: #ffffff;
  --line: rgba(16, 33, 46, 0.18);
  --shell: 1220px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.section-kicker,
.eyebrow,
.service-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 26px rgba(6, 31, 57, 0.08);
  color: var(--navy);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  line-height: 1;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 3px;
  object-fit: cover;
}

.site-header.is-scrolled .brand img,
.site-header.nav-active .brand img {
  border-color: var(--line);
}

.brand-name {
  font-size: 16px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 750;
}

.primary-nav a,
.site-footer nav a {
  position: relative;
}

.primary-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  padding-inline: 18px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-action:hover {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: min(880px, 88svh);
  min-height: 680px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(3, 24, 43, 0.68) 0%,
    rgba(3, 24, 43, 0.48) 48%,
    rgba(3, 24, 43, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 118px;
}

.eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 500;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding-inline: 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-gold:hover {
  background: var(--white);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(6, 31, 57, 0.16);
  color: var(--white);
}

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

.button-navy {
  background: var(--navy);
  color: var(--white);
}

.button-navy:hover {
  background: var(--blue);
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 750;
}

.hero-note span {
  padding-inline: 8px;
  color: var(--gold);
}

.proof-band {
  background: var(--gold);
  color: var(--ink);
}

.proof-grid {
  display: grid;
  min-height: 112px;
  grid-template-columns: 0.65fr 0.8fr 0.9fr 1.65fr;
  align-items: stretch;
}

.proof-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px 18px 0;
  border-right: 1px solid rgba(16, 33, 46, 0.28);
}

.proof-grid > div:not(:first-child) {
  padding-left: 28px;
}

.proof-grid strong {
  font-size: 27px;
  line-height: 1;
}

.proof-grid span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 750;
}

.proof-grid > p {
  align-self: center;
  margin: 0;
  padding-left: 34px;
  font-size: 17px;
  font-weight: 750;
}

.ways {
  background: var(--white);
}

.ways-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  column-gap: 88px;
  align-items: end;
}

.ways-intro .section-kicker {
  grid-column: 1 / -1;
}

.ways-intro h2,
.food-intro h2,
.character-copy h2,
.review-quotes h2,
.visit-copy h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: 0;
}

.ways-intro > p:last-child,
.food-intro > p,
.character-copy > p:not(.section-kicker),
.visit-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.service-row {
  display: grid;
  width: min(calc(100% - 56px), 1420px);
  min-height: 590px;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  margin: 84px auto 0;
  overflow: hidden;
  background: var(--sky-soft);
}

.service-row-restaurant {
  grid-template-columns: minmax(380px, 0.65fr) minmax(0, 1.35fr);
  margin-top: 24px;
  background: var(--navy);
  color: var(--white);
}

.service-media {
  min-width: 0;
  min-height: 590px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-restaurant img {
  object-position: center center;
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.service-row-restaurant .service-label {
  color: var(--gold);
}

.service-copy h3 {
  margin: 0 0 20px;
  font-size: 43px;
  line-height: 1;
}

.service-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-row-restaurant .service-copy > p,
.service-row-restaurant .service-list {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid currentColor;
  color: var(--ink-soft);
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 7px 0 7px 20px;
}

.service-list li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold-deep);
  font-size: 14px;
  font-weight: 850;
  transition:
    gap 180ms ease,
    color 180ms ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--blue);
}

.service-row-restaurant .text-link:hover {
  color: var(--gold);
}

.food {
  background: var(--paper);
}

.food-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.food-gallery {
  display: grid;
  height: 690px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 70px;
}

.food-photo {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  cursor: zoom-in;
}

.food-photo-wide {
  grid-column: 1;
  grid-row: 1;
}

.food-photo-small {
  grid-column: 1;
  grid-row: 2;
}

.food-photo-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.food-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.food-photo-wide img {
  object-position: center 61%;
}

.food-photo-tall img {
  object-position: center center;
}

.food-photo:hover img,
.food-photo:focus-visible img {
  transform: scale(1.025);
}

.food-photo > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  background: rgba(6, 31, 57, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

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

.food-notes > div {
  min-height: 220px;
  padding: 32px 36px 34px 0;
  border-right: 1px solid var(--line);
}

.food-notes > div:not(:first-child) {
  padding-left: 36px;
}

.food-notes > div:last-child {
  border-right: 0;
}

.food-notes span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.food-notes h3 {
  margin: 28px 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.food-notes p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.character {
  background: var(--navy-deep);
  color: var(--white);
}

.character-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 96px;
  align-items: center;
}

.character-art {
  aspect-ratio: 1;
  overflow: hidden;
}

.character-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-copy {
  max-width: 520px;
}

.character-copy .section-kicker {
  color: var(--gold);
}

.character-copy > p:not(.section-kicker) {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.specials-detail {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: end;
  margin: 46px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.specials-detail img {
  width: 130px;
  height: 178px;
  object-fit: cover;
  object-position: center 20%;
}

.specials-detail figcaption {
  max-width: 270px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.reviews {
  background: var(--sky);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
}

.rating-block {
  padding-right: 52px;
  border-right: 1px solid rgba(16, 33, 46, 0.28);
}

.rating-number {
  font-size: 100px;
  font-weight: 800;
  line-height: 0.9;
}

.rating-stars {
  margin-top: 18px;
  color: var(--gold-deep);
  font-size: 23px;
  line-height: 1;
}

.half-star {
  position: relative;
  display: inline-block;
  width: 1em;
  color: rgba(16, 33, 46, 0.24);
}

.half-star::before {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold-deep);
  content: "\2605";
}

.rating-block > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.rating-block > p strong {
  color: var(--ink);
  font-size: 17px;
}

.hygiene-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(16, 33, 46, 0.28);
}

.hygiene-note strong {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 24px;
}

.hygiene-note span {
  max-width: 110px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.review-quotes h2 {
  max-width: 700px;
}

.review-quotes figure {
  margin: 46px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 33, 46, 0.28);
}

.review-quotes blockquote {
  max-width: 760px;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.review-quotes figcaption {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.evening-image {
  position: relative;
  height: min(760px, 75svh);
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-deep);
}

.evening-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.8;
}

.evening-image::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 57, 0.18);
  content: "";
}

.evening-image p {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 26px 34px;
  background: var(--gold);
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 98px;
  align-items: center;
}

.visit-images {
  position: relative;
  min-height: 670px;
}

.visit-lighthouse {
  width: 58%;
  height: 620px;
  object-fit: cover;
  object-position: center 40%;
}

.visit-building {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 400px;
  border: 9px solid var(--white);
  object-fit: cover;
  object-position: center center;
}

.visit-copy {
  max-width: 570px;
}

.visit-lead {
  margin-top: 24px;
}

.visit-details {
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
}

.visit-details > div {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.visit-details dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.visit-details dd {
  margin: 0;
  color: var(--ink-soft);
}

.visit-details a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.visit-actions .text-link {
  margin-top: 0;
}

.site-footer {
  padding: 64px 0 52px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 54px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 3px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.site-footer nav,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13px;
}

.site-footer nav {
  font-weight: 750;
}

.footer-links {
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

.footer-links a:hover {
  color: var(--gold);
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(92vw, 1080px);
  max-height: 92vh;
  padding: 46px 18px 18px;
  border: 0;
  background: rgba(6, 31, 57, 0.98);
}

.lightbox::backdrop {
  background: rgba(3, 16, 28, 0.84);
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 64px);
  margin: auto;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 25px;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

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

  .primary-nav {
    gap: 20px;
  }

  .service-copy {
    padding: 48px;
  }

  .service-row {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  }

  .service-row-restaurant {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  }

  .character-grid,
  .visit-grid {
    gap: 64px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .section {
    padding-block: 88px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .ways-intro,
  .food-intro,
  .character-grid,
  .reviews-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .ways-intro,
  .food-intro {
    gap: 30px;
  }

  .service-row,
  .service-row-restaurant {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-media,
  .service-media-restaurant {
    min-height: 480px;
    order: 1;
  }

  .service-copy {
    min-height: 450px;
    order: 2;
    padding: 60px;
  }

  .food-gallery {
    height: 610px;
  }

  .character-grid {
    gap: 56px;
  }

  .character-art {
    width: min(100%, 680px);
  }

  .character-copy {
    max-width: 680px;
  }

  .reviews-grid {
    gap: 62px;
  }

  .rating-block {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 26px;
    padding: 0 0 44px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 33, 46, 0.28);
  }

  .rating-block .section-kicker {
    grid-column: 1 / -1;
  }

  .rating-stars {
    align-self: end;
  }

  .rating-block > p:not(.section-kicker) {
    grid-column: 2;
    margin-top: 8px;
  }

  .hygiene-note {
    grid-column: 1 / -1;
  }

  .visit-grid {
    gap: 58px;
  }

  .visit-images {
    width: min(100%, 660px);
  }

  .visit-copy {
    max-width: 680px;
  }

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

  .footer-links {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding-inline: 17px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    max-width: 168px;
    font-size: 14px;
  }

  .hero {
    height: calc(100svh - 150px);
    min-height: 650px;
    max-height: 760px;
  }

  .hero-media img {
    object-position: center 46%;
  }

  .hero-overlay {
    background: rgba(3, 24, 43, 0.58);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 96px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 50px;
    line-height: 1;
  }

  .hero h1 span {
    display: block;
  }

  .hero-lead {
    max-width: 300px;
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    width: min(100%, 310px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 25px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    right: 17px;
    bottom: 18px;
    left: 17px;
    font-size: 11px;
  }

  .proof-grid {
    min-height: 88px;
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-grid > div,
  .proof-grid > div:not(:first-child) {
    min-width: 0;
    padding: 13px 10px;
    text-align: center;
  }

  .proof-grid > div:first-child {
    padding-left: 0;
  }

  .proof-grid strong {
    font-size: 24px;
  }

  .proof-grid span {
    font-size: 11px;
    line-height: 1.2;
  }

  .proof-grid > p {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .ways-intro h2,
  .food-intro h2,
  .character-copy h2,
  .review-quotes h2,
  .visit-copy h2 {
    font-size: 36px;
  }

  .ways-intro > p:last-child,
  .food-intro > p,
  .character-copy > p:not(.section-kicker),
  .visit-lead {
    font-size: 16px;
  }

  .service-row,
  .service-row-restaurant {
    width: 100%;
    margin-top: 58px;
  }

  .service-row-restaurant {
    margin-top: 14px;
  }

  .service-media,
  .service-media-restaurant {
    min-height: 280px;
  }

  .service-copy {
    min-height: 0;
    padding: 46px 22px 52px;
  }

  .service-copy h3 {
    font-size: 36px;
  }

  .service-copy > p {
    font-size: 15px;
  }

  .service-list {
    font-size: 14px;
  }

  .food-gallery {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 300px;
    gap: 7px;
    margin-top: 48px;
  }

  .food-photo-wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .food-photo-small {
    grid-column: 1;
    grid-row: 2;
  }

  .food-photo-tall {
    grid-column: 2;
    grid-row: 2;
  }

  .food-photo > span {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 9px 10px;
    font-size: 11px;
  }

  .food-notes {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .food-notes > div,
  .food-notes > div:not(:first-child) {
    min-height: 0;
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .food-notes > div:last-child {
    border-bottom: 0;
  }

  .food-notes h3 {
    margin-top: 14px;
  }

  .character-grid {
    gap: 44px;
  }

  .specials-detail {
    grid-template-columns: 108px 1fr;
  }

  .specials-detail img {
    width: 108px;
    height: 148px;
  }

  .reviews-grid {
    gap: 48px;
  }

  .rating-block {
    grid-template-columns: 125px 1fr;
  }

  .rating-number {
    font-size: 82px;
  }

  .rating-stars {
    font-size: 18px;
  }

  .review-quotes figure {
    margin-top: 34px;
    padding-top: 24px;
  }

  .review-quotes blockquote {
    font-size: 18px;
  }

  .evening-image {
    height: 520px;
    min-height: 0;
  }

  .evening-image img {
    object-position: 58% center;
  }

  .evening-image p {
    right: 17px;
    bottom: 17px;
    left: 17px;
    padding: 18px 20px;
    font-size: 16px;
    text-align: center;
  }

  .visit-images {
    min-height: 520px;
  }

  .visit-lighthouse {
    width: 61%;
    height: 500px;
  }

  .visit-building {
    width: 58%;
    height: 320px;
    border-width: 6px;
  }

  .visit-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 0;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-actions .text-link {
    align-self: flex-start;
  }

  .site-footer {
    padding: 50px 0 44px;
  }

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

  .footer-links {
    align-items: flex-start;
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    height: 62px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: 0 -8px 24px rgba(6, 31, 57, 0.18);
  }

  .mobile-actions a {
    display: grid;
    min-width: 0;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 850;
  }

  .mobile-actions a:first-child {
    background: var(--gold);
    color: var(--ink);
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }
}

@media (max-width: 380px) {
  .brand-name {
    max-width: 125px;
  }

  .hero h1 {
    max-width: 290px;
    font-size: 44px;
  }

  .hero-content {
    padding-bottom: 88px;
  }

  .proof-grid > div,
  .proof-grid > div:not(:first-child) {
    padding-inline: 6px;
  }

  .service-copy {
    padding-inline: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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