:root {
  --ink: #332722;
  --ink-soft: #5d453e;
  --paper: #e3d7b5;
  --surface: #fbf7eb;
  --surface-alt: #f3ead7;
  --blue: #1e6274;
  --blue-dark: #1c5262;
  --blue-soft: #bfd9d3;
  --blue-pale: #e2eee9;
  --line: #bcae95;
  --focus: #eacb55;
  --radius: 14px;
  --shadow: 0 18px 44px rgba(29, 44, 41, 0.12);
  --shell: min(1180px, calc(100% - 40px));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

.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;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

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

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

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

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.5vw, 6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

h3 {
  font-size: 1.45rem;
}

.eyebrow,
.hero-kicker {
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 14px 16px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(248, 247, 241, 0.91);
  box-shadow: 0 8px 30px rgba(29, 44, 41, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  animation: header-enter 680ms 80ms backwards var(--ease-out);
  transition: transform 220ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(251, 247, 235, 0.97);
  box-shadow: 0 12px 32px rgba(29, 44, 41, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-link img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav > a {
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms var(--ease-out);
}

.site-nav > a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease-out);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-current {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-current::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 7px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--blue-soft);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

.menu-toggle:active,
.social-links a:active {
  transform: scale(0.92);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease-drawer), opacity 160ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: end start;
  color: #fffdf6;
}

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

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 44%;
  animation: hero-settle 1500ms 40ms both var(--ease-out);
  will-change: transform;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 8%, rgba(0, 0, 0, 0.30) 44%, rgba(0, 0, 0, 0.48) 100%);
  animation: shade-settle 900ms 80ms both ease-out;
}

.hero-content {
  padding-top: 110px;
  padding-bottom: clamp(48px, 8vh, 86px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.hero-content > * {
  animation: hero-rise 760ms both var(--ease-out);
}

.hero-content > :nth-child(1) { animation-delay: 180ms; }
.hero-content > :nth-child(2) { animation-delay: 250ms; }
.hero-content > :nth-child(3) { animation-delay: 330ms; }
.hero-content > :nth-child(4) { animation-delay: 410ms; }

.hero-content > p:not(.hero-kicker) {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 650;
  line-height: 1.45;
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -42%;
  z-index: 0;
  width: 24%;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(18deg) translateX(-280%);
  transition: transform 480ms var(--ease-out);
  pointer-events: none;
}

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

.button-primary {
  --button-tilt: -0.7deg;
  background: var(--blue);
  color: #ffffff;
}

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

.button-ghost {
  --button-tilt: 0.7deg;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(20, 28, 26, 0.2);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: #ffffff;
  color: var(--ink);
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--blue-pale);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > * {
  display: grid;
  min-height: 126px;
  align-content: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.trust-grid a {
  transition: transform 220ms var(--ease-out), background-color 180ms ease;
}

.trust-grid > *:last-child {
  border-right: 0;
}

.trust-grid a:hover strong {
  color: var(--blue);
}

.trust-grid strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.story-copy > p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.ratio-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.ratio-portrait > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-image {
  box-shadow: var(--shadow);
}

.story-image img {
  object-position: 54% 52%;
}

.menu-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.section-heading p {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
  transform: translateZ(0);
  transition: transform 420ms var(--ease-out);
}

.menu-card figure {
  border-radius: 0;
}

.menu-card figure img {
  transition: transform 720ms var(--ease-out);
  will-change: transform;
}

.menu-card:nth-child(1) img {
  object-position: 50% 54%;
}

.menu-card:nth-child(2) img {
  object-position: 50% 46%;
}

.menu-card:nth-child(3) img {
  object-position: 50% 50%;
}

.menu-card-copy {
  min-height: 240px;
  padding: 28px;
}

.menu-card-copy h3 {
  margin-bottom: 10px;
}

.menu-card-copy p {
  color: var(--ink-soft);
}

.menu-card-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.menu-card-copy li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.menu-card-copy li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--blue);
}

.outdoor-section {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(76svh, 780px);
  overflow: hidden;
  place-items: end start;
  color: #fffdf6;
}

.outdoor-section > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  transform: scale(1.06);
  will-change: transform;
}

.outdoor-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.outdoor-copy {
  padding-block: 68px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.outdoor-copy h2 {
  max-width: 690px;
  margin-bottom: 14px;
}

.outdoor-copy p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 650;
}

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

.gallery-item {
  position: relative;
  isolation: isolate;
  padding: 0;
  border: 0;
  background: var(--surface);
  box-shadow: none;
  cursor: zoom-in;
  transform: translateZ(0);
  transition: transform 420ms var(--ease-out);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(28, 82, 98, 0.88);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.9);
  transition: opacity 180ms ease, transform 300ms var(--ease-out);
  pointer-events: none;
}

.gallery-item img {
  transition: transform 700ms var(--ease-out), opacity 180ms ease;
  will-change: transform;
}

.gallery-item:active {
  transform: scale(0.98);
}

.gallery-item:nth-child(1) img { object-position: 50% 55%; }
.gallery-item:nth-child(2) img { object-position: 50% 48%; }
.gallery-item:nth-child(3) img { object-position: 50% 52%; }
.gallery-item:nth-child(4) img { object-position: 52% 48%; }
.gallery-item:nth-child(5) img { object-position: 50% 48%; }
.gallery-item:nth-child(6) img { object-position: 50% 48%; }

.reviews-section {
  border-top: 1px solid var(--line);
  background: var(--blue-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.review {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(7, 82, 126, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 360ms var(--ease-out);
}

.review:first-child {
  grid-row: span 2;
  display: grid;
  align-content: space-between;
}

.stars {
  margin-bottom: 26px;
  color: var(--blue-dark);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.review blockquote {
  margin: 0 0 32px;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.review:not(:first-child) blockquote {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 82, 126, 0.2);
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
}

.review-meta cite {
  font-style: normal;
  font-weight: 850;
}

.review-meta a {
  color: var(--blue-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.visit-section {
  background: var(--surface);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: stretch;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-copy address {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-style: normal;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.visit-details h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

.map-wrap {
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--blue-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 46px;
}

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

.footer-brand img {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
}

.footer-brand p,
.site-footer p {
  color: var(--ink-soft);
}

.footer-grid h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: var(--ink-soft);
  text-underline-offset: 4px;
}

.social-links-footer {
  margin: 0;
}

.social-links-footer a {
  border: 1px solid var(--line);
  background: var(--surface);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  padding: 68px 20px 24px;
  background: rgba(12, 18, 17, 0.94);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease-out, visibility 0s linear 180ms;
}

.lightbox[hidden] {
  display: none;
}

.lightbox:not([hidden]) {
  visibility: visible;
  transition-delay: 0s;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  max-width: 1200px;
  max-height: calc(100svh - 100px);
  justify-self: center;
  margin: 0;
  touch-action: pan-y;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 220ms ease-out, transform 320ms var(--ease-out);
}

.lightbox.is-open figure {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - 140px);
  margin: auto;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 12px;
  color: #e8eeeb;
  text-align: center;
}

.lightbox button {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 160ms ease, transform 220ms var(--ease-out), background-color 160ms ease;
  place-items: center;
}

.lightbox.is-open button {
  opacity: 1;
  transform: scale(1);
}

.lightbox button:active {
  transform: scale(0.9);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-next {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 560ms ease-out var(--reveal-delay, 0ms), transform 760ms var(--ease-out) var(--reveal-delay, 0ms), clip-path 900ms var(--ease-in-out) var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

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

.story-image.reveal,
.gallery-item.reveal {
  clip-path: inset(0 0 18% 0 round var(--radius));
}

.story-image.reveal.is-visible,
.gallery-item.reveal.is-visible {
  clip-path: inset(0 0 0 0 round var(--radius));
}

.story-image { --reveal-delay: 90ms; }
.menu-card:nth-child(2) { --reveal-delay: 70ms; }
.menu-card:nth-child(3) { --reveal-delay: 140ms; }
.gallery-item:nth-child(2) { --reveal-delay: 45ms; }
.gallery-item:nth-child(3) { --reveal-delay: 90ms; }
.gallery-item:nth-child(4) { --reveal-delay: 135ms; }
.gallery-item:nth-child(5) { --reveal-delay: 180ms; }
.gallery-item:nth-child(6) { --reveal-delay: 225ms; }
.review:nth-child(2) { --reveal-delay: 80ms; }
.review:nth-child(3) { --reveal-delay: 160ms; }
.map-wrap { --reveal-delay: 100ms; }

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

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 96px 16px auto;
    display: grid;
    max-height: calc(100svh - 112px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.97);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 240ms var(--ease-drawer), visibility 0s linear 240ms;
    pointer-events: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
    pointer-events: auto;
  }

  .site-nav.skip-motion,
  .site-nav.skip-motion > a,
  .site-nav.skip-motion .social-links {
    transition: none !important;
  }

  .site-nav > a {
    padding: 13px 10px;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 140ms ease, transform 200ms var(--ease-out), color 160ms ease, background-color 160ms ease;
  }

  .site-nav.is-open > a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open > a:nth-child(1) { transition-delay: 30ms; }
  .site-nav.is-open > a:nth-child(2) { transition-delay: 60ms; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: 90ms; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: 120ms; }

  .site-nav > a::after {
    right: 10px;
    bottom: 7px;
    left: 10px;
  }

  .site-nav .social-links {
    margin: 10px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 140ms ease, transform 200ms var(--ease-out);
  }

  .site-nav.is-open .social-links {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 150ms;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 20;
    background: rgba(28, 39, 36, 0.42);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
  }

  body.nav-open::before {
    opacity: 1;
  }

  body.skip-menu-motion::before {
    transition-duration: 0ms !important;
  }

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

  .story-copy {
    order: 1;
  }

  .story-image {
    order: 2;
    width: min(100%, 520px);
  }

  .menu-grid {
    gap: 16px;
  }

  .menu-card-copy {
    min-height: 260px;
    padding: 22px;
  }

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

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

  .review:first-child {
    grid-row: auto;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  html {
    scroll-padding-top: 76px;
  }

  .section {
    padding-block: 72px;
  }

  .site-header {
    inset: 10px 10px auto;
    min-height: 62px;
    padding: 6px 7px 6px 9px;
  }

  .brand-link img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-link span {
    font-size: 0.96rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    inset: 82px 10px auto;
    max-height: calc(100svh - 92px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    object-position: 35% 50%;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .hero-kicker {
    max-width: 260px;
    margin-bottom: 14px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: 1.04rem;
  }

  .hero-actions {
    gap: 9px;
  }

  .button {
    min-height: 48px;
    padding-inline: 17px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-grid > * {
    min-height: 94px;
    padding: 16px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > *:last-child {
    border-bottom: 0;
  }

  .story {
    gap: 34px;
  }

  .story-image {
    width: 100%;
  }

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

  .menu-grid {
    gap: 26px;
  }

  .menu-card-copy {
    min-height: 0;
    padding: 24px;
  }

  .outdoor-section {
    min-height: 72svh;
  }

  .outdoor-copy {
    padding-block: 44px;
  }

  .gallery-grid {
    gap: 14px;
  }

  .review {
    padding: 27px 22px;
  }

  .review blockquote,
  .review:not(:first-child) blockquote {
    font-size: 1.12rem;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visit-actions {
    align-items: flex-start;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .lightbox {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    padding-inline: 8px;
  }

  .lightbox button {
    width: 44px;
    height: 44px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand-link:hover img {
    transform: rotate(-8deg) scale(1.08);
  }

  .site-nav > a:hover {
    transform: translateY(-2px);
  }

  .social-links a:hover {
    transform: translateY(-3px) rotate(6deg);
  }

  .menu-toggle:hover {
    transform: rotate(5deg) scale(1.06);
    background: var(--blue-dark);
  }

  .button:hover {
    transform: translateY(-4px) rotate(var(--button-tilt, 0deg));
  }

  .button:hover::after {
    transform: rotate(18deg) translateX(760%);
  }

  .trust-grid a:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.28);
  }

  .menu-card:nth-child(1):hover {
    transform: translateY(-9px) rotate(-0.65deg);
  }

  .menu-card:nth-child(2):hover {
    transform: translateY(-11px) rotate(0.55deg);
  }

  .menu-card:nth-child(3):hover {
    transform: translateY(-9px) rotate(-0.4deg);
  }

  .menu-card:hover figure img {
    transform: scale(1.055);
  }

  .gallery-item:nth-child(odd):hover,
  .gallery-item:nth-child(odd):focus-visible {
    transform: translateY(-9px) rotate(-0.8deg);
  }

  .gallery-item:nth-child(even):hover,
  .gallery-item:nth-child(even):focus-visible {
    transform: translateY(-9px) rotate(0.8deg);
  }

  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: scale(1.085);
    opacity: 0.82;
  }

  .gallery-item:hover::after,
  .gallery-item:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .lightbox button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
  }
}

@supports (animation-timeline: view()) {
  .outdoor-section > img {
    animation: outdoor-drift linear both;
    animation-timeline: view();
    animation-range: entry -10% exit 110%;
  }
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes shade-settle {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes outdoor-drift {
  from { transform: translate3d(0, -2.5%, 0) scale(1.1); }
  to { transform: translate3d(0, 2.5%, 0) scale(1.1); }
}

@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;
  }

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }
}
