:root {
  color-scheme: light;
  --ink: #171716;
  --forest: #244132;
  --sage: #cfdfd3;
  --paper: #f3f3ef;
  --surface: #e7e8df;
  --surface-strong: #d9dad0;
  --muted: #5c5f55;
  --line: #c7c9bd;
  --accent: #f5c76d;
  --white: #fdfdf9;
  --shell: min(1180px, calc(100vw - 40px));
  --nav-height: 68px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }

a { color: inherit; }

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

h1, h2, h3 {
  font-family: "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
}

h2 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.shell { width: var(--shell); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--nav-height);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .24s var(--ease-out), border-color .24s var(--ease-out), box-shadow .24s var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--ink);
  border-bottom-color: var(--ink);
  box-shadow: 0 12px 34px rgb(0 0 0 / .18);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.site-nav {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark,
.footer-wordmark {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  line-height: 1;
}

.nav-panel,
.nav-links,
.social-links {
  display: flex;
  align-items: center;
}

.nav-panel { gap: 28px; }
.nav-links { gap: 24px; }

.nav-links a,
.footer-links a {
  text-decoration: none;
  font-size: .91rem;
  font-weight: 700;
}

.nav-links a { color: var(--white); }

.nav-links a { position: relative; }

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .2s var(--ease-out);
}

.social-links { gap: 8px; }

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transition: transform .16s var(--ease-out), background-color .16s ease;
}

.social-links a:active { transform: scale(.92); }

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background: currentColor;
  transition: transform .18s var(--ease-out);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #767872;
}

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

.hero-media img {
  display: block;
  object-fit: cover;
  object-position: 56% 58%;
}

.hero-overlay {
  background: linear-gradient(180deg, rgb(0 0 0 / .10) 0%, rgb(0 0 0 / .06) 46%, rgb(0 0 0 / .28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 32px);
  padding-bottom: clamp(40px, 8vh, 88px);
}

.hero-eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  text-shadow: 0 2px 24px rgb(0 0 0 / .28);
}

.hero-content > p:not(.hero-eyebrow) {
  max-width: 46ch;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 650;
  text-shadow: 0 2px 14px rgb(0 0 0 / .35);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 850;
  line-height: 1;
  transform-origin: center bottom;
  transition: transform .16s var(--ease-out), background-color .18s ease, color .18s ease, box-shadow .18s var(--ease-out);
}

.button:active { transform: translateY(1px) scale(.96); }

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

.button-secondary {
  background: rgb(253 253 249 / .93);
  border-color: rgb(255 255 255 / .65);
  color: var(--ink);
}

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

.section { padding-block: clamp(72px, 10vw, 128px); }

.about-grid,
.pause-grid,
.visit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.about-grid > .ratio-frame { grid-column: 1 / span 5; }
.about-copy { grid-column: 7 / -1; }

.about-copy > p {
  max-width: 62ch;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.about-facts span {
  padding: 16px 10px 0 0;
  font-size: .88rem;
  font-weight: 800;
}

.ratio-frame {
  overflow: hidden;
  background: var(--surface-strong);
}

.ratio-frame-portrait { aspect-ratio: 3 / 4; }

.ratio-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--object-position, 50% 50%);
}

.menu-section {
  background: var(--forest);
  color: var(--white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(42px, 7vw, 72px);
}

.section-heading h2 { max-width: 10ch; }
.section-heading p { max-width: 48ch; color: var(--muted); font-size: 1.08rem; }
.menu-section .section-heading p,
.menu-section .menu-card-copy p { color: rgb(253 253 249 / .76); }

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

.menu-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  transform-origin: center bottom;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.menu-card .ratio-frame img { transition: transform .65s var(--ease-out), filter .3s ease; }

.menu-card-copy {
  flex: 1;
  min-height: 146px;
  padding: 22px 18px 26px;
  border-top: 5px solid var(--accent);
  background: var(--ink);
  color: var(--white);
}

.menu-card-copy h3 { min-height: 2em; }

.menu-card-copy p { max-width: 34ch; margin: 0; color: var(--muted); }

.menu-card:nth-child(2) .menu-card-copy {
  border-top-color: var(--ink);
  background: var(--accent);
  color: var(--ink);
}

.menu-card:nth-child(2) .menu-card-copy p { color: rgb(23 23 22 / .72); }

.pause-grid { align-items: stretch; }
.pause-section { background: var(--sage); }
.pause-image { grid-column: 1 / span 7; min-height: 520px; overflow: hidden; }
.pause-image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.pause-copy {
  grid-column: 8 / -1;
  padding: clamp(28px, 5vw, 64px);
  background: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pause-copy h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.pause-copy > p { max-width: 36ch; margin-bottom: 34px; font-weight: 650; }

.service-list { margin: 0; }
.service-list > div { padding: 13px 0; display: grid; grid-template-columns: 90px 1fr; gap: 14px; border-top: 1px solid rgb(23 24 19 / .42); }
.service-list dt { font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.service-list dd { margin: 0; font-weight: 650; }

.gallery-section {
  padding-top: clamp(48px, 6vw, 80px);
  background: var(--forest);
  color: var(--white);
}

.gallery-section .section-heading p { color: rgb(253 253 249 / .76); }

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

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  color: inherit;
  transform-origin: center bottom;
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}

.gallery-item .ratio-frame { display: block; }

.gallery-item img {
  transition: transform .65s var(--ease-out), filter .3s ease;
}

.gallery-item::after {
  content: "View image ↗";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  background: var(--accent);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px) scale(.94);
  transform-origin: right bottom;
  transition: opacity .16s ease, transform .2s var(--ease-out);
  pointer-events: none;
}

.gallery-item.reveal.is-visible:active { transform: scale(.98); }
.gallery-item:focus-visible::after { opacity: 1; transform: translateY(0) scale(1); }

.reviews-section { background: var(--sage); }

.reviews-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.reviews-heading h2 { margin-bottom: 10px; }
.rating-summary { margin: 0; color: var(--muted); }
.rating-summary strong { color: var(--ink); font-size: 1.4rem; }

.text-link,
.review a {
  font-weight: 800;
  text-underline-offset: 5px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 22px;
}

.review {
  padding: clamp(26px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-origin: center bottom;
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out), border-color .18s ease;
}

.review-featured { min-height: 430px; background: var(--accent); border-color: var(--accent); }
.review-stack { display: grid; gap: 22px; }
.stars { margin-bottom: 24px; letter-spacing: .1em; font-size: 1rem; }

.review blockquote {
  max-width: 28ch;
  margin: 0 0 34px;
  font-family: "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.review:not(.review-featured) blockquote { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.review-footer { display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; min-width: 0; }
.review-avatar { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; object-fit: cover; background: var(--surface-strong); transition: transform .24s var(--ease-out); }
.review cite { font-style: normal; font-weight: 800; }
.review a { font-size: .84rem; }

.visit-grid { align-items: stretch; }
.map-wrap { grid-column: 1 / span 7; min-height: 600px; background: var(--surface-strong); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 600px; display: block; border: 0; }

.visit-copy {
  grid-column: 8 / -1;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
}

.visit-copy h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
.visit-copy address { margin-bottom: 18px; color: var(--muted); font-style: normal; font-size: 1.08rem; }

.phone-link {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 1.35rem;
  font-weight: 850;
}

.hours { margin-bottom: 34px; border-top: 1px solid var(--line); }
.hours > div { padding: 14px 0; display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.hours span { font-weight: 750; }
.hours time { text-align: right; color: var(--muted); }

.site-footer {
  padding-block: 52px;
  border-top: 1px solid rgb(253 253 249 / .24);
  background: var(--forest);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  align-items: end;
  gap: 32px;
}

.footer-wordmark { display: inline-block; margin-bottom: 20px; font-size: 1.3rem; }
.site-footer p { margin: 0; color: rgb(253 253 249 / .76); }
.site-footer > a, .site-footer p + a { font-weight: 750; }
.footer-links { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-social a { color: var(--white); }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 18px;
  border: 0;
  background: rgb(18 19 16 / .96);
  color: var(--white);
  opacity: 0;
  transition: opacity .2s ease;
}

.lightbox[open] { opacity: 1; }

.lightbox::backdrop {
  background: rgb(0 0 0 / .72);
  transition: background-color .2s ease;
}

.lightbox-toolbar {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-count { margin: 0; font-weight: 750; }

.lightbox-close,
.lightbox-nav {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / .35);
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .14s var(--ease-out), background-color .14s ease, border-color .14s ease;
}

.lightbox-close:active,
.lightbox-nav:active { transform: scale(.9); }

.lightbox-stage {
  height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .24s ease, transform .28s var(--ease-out);
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
}

.lightbox figcaption { text-align: center; font-size: .92rem; }

@starting-style {
  .lightbox[open] { opacity: 0; }
  .lightbox[open]::backdrop { background: rgb(0 0 0 / 0); }
  .lightbox[open] figure { opacity: 0; transform: translateY(18px) scale(.94); }
}

@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover,
  .text-link:hover,
  .review a:hover { text-decoration: underline; text-underline-offset: 5px; }

  .nav-links a:hover { text-decoration: none; }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }

  .social-links a:hover { background: rgb(253 253 249 / .1); transform: translateY(-2px) rotate(-4deg) scale(1.06); }

  .button:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 14px 30px rgb(0 0 0 / .2);
  }

  .button-primary:hover { background: #e4b453; }
  .button-dark:hover { background: #30322b; }

  .menu-card.reveal.is-visible:hover {
    z-index: 1;
    transform: translateY(-12px) rotate(-.45deg);
    box-shadow: 0 24px 54px rgb(0 0 0 / .26);
  }

  .menu-card.reveal.is-visible:nth-child(2):hover { transform: translateY(-12px) rotate(.45deg); }
  .menu-card.reveal.is-visible:hover .ratio-frame img { transform: scale(1.07); filter: saturate(1.08); }

  .gallery-item.reveal.is-visible:hover {
    z-index: 1;
    transform: translateY(-10px) rotate(-.55deg);
    box-shadow: 0 22px 46px rgb(0 0 0 / .3);
  }

  .gallery-item.reveal.is-visible:nth-child(even):hover { transform: translateY(-10px) rotate(.55deg); }
  .gallery-item.reveal.is-visible:hover img { transform: scale(1.075); filter: saturate(1.08) contrast(1.03); }
  .gallery-item.reveal.is-visible:hover::after { opacity: 1; transform: translateY(0) scale(1); }

  .review.reveal.is-visible:hover {
    z-index: 1;
    transform: translateY(-8px) rotate(-.25deg);
    box-shadow: 0 20px 42px rgb(36 65 50 / .18);
    border-color: rgb(36 65 50 / .34);
  }

  .review.reveal.is-visible:nth-child(even):hover { transform: translateY(-8px) rotate(.25deg); }
  .review.reveal.is-visible:hover .review-avatar { transform: scale(1.1) rotate(-5deg); }

  .lightbox-close:hover,
  .lightbox-nav:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: scale(1.06); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img { animation: hero-settle 1.7s var(--ease-out) both; }

  .hero-content > * {
    opacity: 0;
    transform: translateY(40px) skewY(1deg);
    animation: hero-copy-in .86s var(--ease-out) forwards;
  }

  .hero-content > :nth-child(1) { animation-delay: .14s; }
  .hero-content > :nth-child(2) { animation-delay: .24s; }
  .hero-content > :nth-child(3) { animation-delay: .34s; }
  .hero-content > :nth-child(4) { animation-delay: .44s; }

  .reveal {
    opacity: 0;
    transform: translateY(48px) scale(.985);
    transition: opacity .72s ease, transform .86s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

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

  .about-grid .reveal:nth-child(2),
  .pause-grid .reveal:nth-child(2),
  .visit-grid .reveal:nth-child(2),
  .menu-grid .reveal:nth-child(2),
  .gallery-grid .reveal:nth-child(2),
  .review-stack .reveal:nth-child(2) { --reveal-delay: 80ms; }

  .menu-grid .reveal:nth-child(3),
  .gallery-grid .reveal:nth-child(3) { --reveal-delay: 160ms; }

  .gallery-grid .reveal:nth-child(4) { --reveal-delay: 40ms; }
  .gallery-grid .reveal:nth-child(5) { --reveal-delay: 120ms; }
  .gallery-grid .reveal:nth-child(6) { --reveal-delay: 200ms; }

  .menu-card.reveal .ratio-frame,
  .gallery-item.reveal .ratio-frame {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1s var(--ease-in-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .menu-card.reveal.is-visible .ratio-frame,
  .gallery-item.reveal.is-visible .ratio-frame { clip-path: inset(0); }

  .ratio-frame.reveal img,
  .pause-image.reveal img {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1s var(--ease-in-out), transform 1.15s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .ratio-frame.reveal.is-visible img,
  .pause-image.reveal.is-visible img { clip-path: inset(0); }

  .ratio-frame.reveal:not(.is-visible) img,
  .menu-card.reveal:not(.is-visible) .ratio-frame img,
  .gallery-item.reveal:not(.is-visible) .ratio-frame img,
  .pause-image.reveal:not(.is-visible) img { transform: scale(1.08); }

}

@keyframes hero-settle {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }

  .wordmark { position: relative; z-index: 2; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav.is-open .menu-toggle > span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .site-nav.is-open .menu-toggle > span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 1;
    padding: calc(var(--nav-height) + 42px) 24px 34px;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: circle(0 at calc(100% - 46px) 34px);
    transition: clip-path .28s var(--ease-drawer), opacity .14s ease, visibility .28s;
  }

  .site-nav.is-open .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; clip-path: circle(150vmax at calc(100% - 46px) 34px); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgb(255 255 255 / .18);
    font-size: 1.8rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .18s ease, transform .22s var(--ease-out);
  }

  .nav-panel .social-links {
    align-self: start;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .22s var(--ease-out);
  }

  .site-nav.is-open .nav-links a,
  .site-nav.is-open .nav-panel .social-links { opacity: 1; transform: translateY(0); }

  .site-nav.is-open .nav-links a:nth-child(1) { transition-delay: 70ms; }
  .site-nav.is-open .nav-links a:nth-child(2) { transition-delay: 105ms; }
  .site-nav.is-open .nav-links a:nth-child(3) { transition-delay: 140ms; }
  .site-nav.is-open .nav-links a:nth-child(4) { transition-delay: 175ms; }
  .site-nav.is-open .nav-panel .social-links { transition-delay: 205ms; }

  .about-grid,
  .pause-grid,
  .visit-grid { grid-template-columns: 1fr; gap: 30px; }

  .about-grid > .ratio-frame,
  .about-copy,
  .pause-image,
  .pause-copy,
  .map-wrap,
  .visit-copy { grid-column: 1; }

  .about-grid > .ratio-frame { width: min(82vw, 480px); }

  .pause-image { min-height: 430px; }
  .pause-copy { padding: 34px 28px; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-featured { min-height: 360px; }

  .map-wrap,
  .map-wrap iframe { min-height: 460px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 28px); }

  .hero-media img { object-position: 36% 58%; }
  .hero h1 { max-width: 12ch; font-size: clamp(2.75rem, 11vw, 3.6rem); }
  .hero-content { padding-bottom: 34px; }

  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 145px; }

  .section { padding-block: 72px; }

  h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }

  .about-grid > .ratio-frame { width: 100%; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts span { padding-bottom: 12px; border-bottom: 1px solid var(--line); }

  .menu-grid,
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .menu-grid { gap: 48px; }

  .pause-image { min-height: auto; aspect-ratio: 4 / 3; }
  .pause-copy h2 { font-size: clamp(2.4rem, 11vw, 3.5rem); }

  .gallery-section { padding-top: 48px; }

  .reviews-heading { align-items: start; flex-direction: column; }
  .review-featured { min-height: 340px; }
  .review-footer { align-items: start; flex-direction: column; }

  .map-wrap,
  .map-wrap iframe { min-height: 390px; }
  .visit-copy { padding: 26px 20px; }
  .visit-actions { align-items: start; flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-social { margin-left: -10px; }

  .lightbox { padding: 10px; }
  .lightbox-stage { grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 4px; }
  .lightbox-nav, .lightbox-close { width: 44px; height: 44px; }
}

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

@media print {
  .site-header, .hero-actions, .gallery-section, .lightbox { display: none !important; }
  .hero { min-height: 480px; }
  .section { padding-block: 36px; }
}
