:root {
  color-scheme: light;
  --ink: #141918;
  --ink-soft: #22302d;
  --muted: #53625e;
  --paper: #f4f7f5;
  --surface: #e7eeeb;
  --accent: #5fd1c8;
  --accent-light: #a4e7e1;
  --accent-dark: #0f514d;
  --line: #c5d2cd;
  --white: #f8faf8;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius: 16px;
  --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);
  --z-header: 40;
  --z-menu: 35;
  --z-dialog: 70;
  --z-lightbox: 80;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
.icon {
  display: block;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
a { color: inherit; text-underline-offset: 0.2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.wrap { width: min(100% - 2rem, 1240px); margin-inline: auto; }
.section { padding-block: clamp(5.5rem, 10vw, 9.5rem); }
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

h1, h2, h3 { text-wrap: balance; }
h2 {
  margin: 0;
  font: 900 clamp(2.6rem, 5.3vw, 5.2rem) / 0.95 var(--display);
  letter-spacing: -0.035em;
}
h3 {
  margin: 0;
  font: 900 clamp(1.4rem, 2.2vw, 2rem) / 1 var(--display);
  letter-spacing: -0.025em;
}
p { text-wrap: pretty; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgb(248 250 248 / 0.14);
  background: rgb(20 25 24 / 0.86);
  color: var(--white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-brand img { width: 44px; height: 44px; border-radius: 50%; }
.desktop-nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.7vw, 1.5rem); }
.desktop-nav > a:not(.button, .social-link) { font-weight: 750; text-decoration: none; }
.social-link, .footer-social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(248 250 248 / 0.34);
  border-radius: 50%;
}
.social-link svg, .footer-social svg { width: 24px; height: 24px; fill: currentColor; }
.mobile-header-social { display: none; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: var(--z-menu);
  padding: 2rem 1rem;
  overflow-y: auto;
  background: var(--ink);
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms var(--ease-drawer), transform 220ms var(--ease-drawer), display 220ms allow-discrete;
}
.mobile-menu[hidden] { display: none; opacity: 0; transform: translateY(-2%); }
.instant-motion, .instant-motion::backdrop { transition: none !important; }
@starting-style {
  .mobile-menu:not([hidden]) { opacity: 0; transform: translateY(-2%); }
}
.mobile-menu nav { display: grid; }
.mobile-menu nav > a:not(.mobile-social) {
  padding-block: 0.72rem;
  border-bottom: 1px solid rgb(248 250 248 / 0.18);
  font: 900 clamp(1.65rem, 8vw, 2.6rem) / 1.1 var(--display);
  letter-spacing: -0.035em;
  text-decoration: none;
}
.mobile-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-top: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
}
.mobile-social svg { width: 1.35rem; height: 1.35rem; fill: var(--ink); }
.mobile-menu .button { width: 100%; margin-top: 1.5rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 0.5rem;
  padding: 0.82rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease;
}
.button:active { transform: scale(0.97); }
.button-small { min-height: 42px; padding: 0.68rem 1.05rem; }
.button-accent { background: var(--accent); color: var(--ink); }
.button-ghost { border-color: rgb(248 250 248 / 0.72); background: rgb(20 25 24 / 0.16); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline { border-color: var(--ink); color: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--white);
}
.hero-media, .hero-media img, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; }
.hero-media { transform-origin: 52% 55%; animation: hero-drift 18s var(--ease-in-out) infinite alternate; }
.hero-media img {
  object-fit: cover;
  object-position: 50% 58%;
  animation: hero-settle 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-scrim {
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 0.30), rgb(0 0 0 / 0.10) 65%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -45%;
  z-index: -1;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent, rgb(248 250 248 / 0.18), transparent);
  filter: blur(12px);
  transform: translateX(-120%) rotate(7deg);
  animation: hero-light 9s 1.4s linear infinite;
}
.hero-content {
  padding-block: 8.5rem clamp(3.6rem, 8vw, 6rem);
  animation: hero-copy-in 760ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-side { display: contents; }
.hero-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 10ch;
  margin: 0;
  font: 900 clamp(3.35rem, 8vw, 6rem) / 0.9 var(--display);
  letter-spacing: -0.035em;
}
.hero-copy { max-width: 34rem; margin: 1.25rem 0 0; font-size: clamp(1.05rem, 2vw, 1.32rem); font-weight: 680; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.hero-scroll {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: clamp(3.6rem, 8vw, 6rem);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}
.hero-scroll span:last-child { font-size: 1.4rem; }
.hero-scroll span:last-child { animation: scroll-nudge 1.8s var(--ease-in-out) infinite; }

.quick-facts { background: var(--ink); color: var(--white); }
.quick-facts-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-facts p {
  display: grid;
  gap: 0.1rem;
  margin: 0;
  padding: 1.35rem clamp(0.75rem, 2.3vw, 2rem);
  border-right: 1px solid rgb(248 250 248 / 0.16);
}
.quick-facts p:first-child { padding-left: 0; }
.quick-facts p:last-child { border-right: 0; }
.quick-facts strong { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; }
.quick-facts strong .icon { width: 1.15rem; height: 1.15rem; color: var(--accent); }
.quick-facts p > span { color: #b9c5c1; font-size: 0.83rem; }
.quick-facts strong span { color: inherit; font-size: inherit; }

.about { background: var(--accent); }
.about-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.section-lead { max-width: 28rem; margin: 0 0 1.25rem; color: var(--accent-dark); font-size: 1.05rem; font-weight: 800; }
.about-copy > p:not(.section-lead) { max-width: 62ch; margin: 1.5rem 0 0; }
.arrow-link { display: inline-flex; gap: 0.65rem; margin-top: 1.6rem; font-weight: 900; text-decoration-thickness: 2px; }
.about-collage { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(8rem, 0.72fr); grid-template-rows: repeat(2, auto); align-items: center; gap: 1rem; }
.about-collage figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.about-main { grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.about-detail { aspect-ratio: 1; }
.about-collage img { width: 100%; height: 100%; object-fit: cover; object-position: var(--position, 50% 50%); transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }
.love-orbit {
  position: absolute;
  left: 43%;
  bottom: -3.7rem;
  z-index: 2;
  display: grid;
  width: 8.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 8px rgb(20 25 24 / 0.1);
}
.love-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; animation: orbit-spin 18s linear infinite; }
.love-orbit text { fill: currentColor; font: 900 10px / 1 var(--body); letter-spacing: 1.4px; }
.love-orbit > span { color: var(--accent-dark); font-size: 2rem; animation: heart-beat 2.4s var(--ease-in-out) infinite; }

.heading-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.55fr); align-items: end; gap: 2.5rem; margin-bottom: clamp(2.8rem, 6vw, 5rem); }
.heading-split > p, .heading-split > div > p { max-width: 60ch; margin: 0; }
.day-section { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); }
.day-section > .wrap { position: relative; z-index: 1; }
.day-ambient { position: absolute; inset: 0; pointer-events: none; }
.day-ambient span { position: absolute; display: block; border-radius: 50%; background: var(--accent); opacity: 0.11; filter: blur(2px); }
.day-ambient span:nth-child(1) { top: 10%; left: -5rem; width: 18rem; height: 18rem; animation: ambient-float-a 13s var(--ease-in-out) infinite alternate; }
.day-ambient span:nth-child(2) { right: 8%; bottom: 4%; width: 7rem; height: 7rem; animation: ambient-float-b 9s var(--ease-in-out) -3s infinite alternate; }
.day-ambient span:nth-child(3) { top: 38%; right: -3rem; width: 12rem; height: 12rem; animation: ambient-float-a 11s var(--ease-in-out) -6s infinite alternate-reverse; }
.day-heading > p { color: #b9c5c1; font-size: 1.05rem; }
.day-scenes { display: grid; grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(0, 0.85fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.day-scene { display: flex; flex-direction: column; min-width: 0; border-top: 1px solid rgb(248 250 248 / 0.28); }
.day-scene figure { aspect-ratio: 4 / 5; margin: 1rem 0 0; overflow: hidden; border-radius: var(--radius); }
.day-scene-wide figure { aspect-ratio: 3 / 2; }
.day-scene img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }
.day-scene-copy { padding-top: 1.35rem; }
.day-scene-copy span { color: var(--accent); font-size: 0.82rem; font-weight: 900; }
.day-scene-copy h3 { margin-top: 0.45rem; }
.day-scene-copy p { max-width: 54ch; margin: 0.85rem 0 0; color: #c5d0cd; }

.menu-section { background: var(--paper); }
.menu-label { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem !important; color: var(--accent-dark); font-weight: 900; }
.menu-label .icon { width: 1.05rem; height: 1.05rem; }
.menu-heading > p { color: var(--muted); font-size: 1.05rem; }
.menu-layout { display: grid; grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr); align-items: start; gap: clamp(1.5rem, 4vw, 4rem); }
.menu-feature { margin: 0; }
.portrait-frame { aspect-ratio: 3 / 4; overflow: hidden; margin: 0; border-radius: var(--radius); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: var(--position, 50% 50%); }
.menu-feature figcaption { display: grid; gap: 0.2rem; padding-top: 1rem; }
.menu-feature figcaption strong { font-size: 1.15rem; }
.menu-feature figcaption span { color: var(--muted); }
.menu-board { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.menu-board::after {
  content: "";
  position: absolute;
  top: -35%;
  right: 0;
  left: 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgb(95 209 200 / 0.12), transparent);
  opacity: 0;
  transform: translateY(0);
  animation: menu-scan 8s 2s linear infinite;
}
.menu-board-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem clamp(1.2rem, 3vw, 2.4rem); background: var(--accent); color: var(--ink); }
.menu-board-top p { margin: 0; font-weight: 900; }
.menu-photo-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}
.menu-group { padding: clamp(1.5rem, 3vw, 2.4rem); border-bottom: 1px solid rgb(248 250 248 / 0.17); }
.menu-group h3 { color: var(--accent); }
.menu-group dl { margin: 1.3rem 0 0; }
.menu-group dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; padding-block: 0.55rem; border-bottom: 1px solid rgb(248 250 248 / 0.12); }
.menu-group dl div:last-child { border-bottom: 0; }
.menu-group dt { min-width: 0; }
.menu-group dd { margin: 0; font-weight: 900; white-space: nowrap; }
.menu-group small { display: block; color: #b9c5c1; font-size: 0.7rem; font-weight: 650; }
.menu-group-with-photo { display: grid; grid-template-columns: 7.5rem minmax(0, 1fr); align-items: start; gap: clamp(1rem, 2.5vw, 2rem); }
.menu-group-with-photo .menu-photo { border-radius: 10px; }
.menu-note { margin: 0; padding: 1.25rem clamp(1.2rem, 3vw, 2.4rem); color: #c5d0cd; font-size: 0.88rem; }

.service-strip { overflow: hidden; padding-inline: clamp(1.25rem, 4vw, 4rem); background: var(--accent); color: var(--ink); }
.service-strip::-webkit-scrollbar { display: none; }
.service-track { display: flex; width: max-content; animation: service-marquee 24s linear infinite; will-change: transform; }
.service-list { display: flex; flex: none; align-items: center; width: max-content; padding-block: 1.3rem; font-weight: 900; }
.service-list > span { display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap; }
.service-list > span > span { display: inline; }
.service-list > .service-divider { margin-inline: clamp(1.25rem, 4vw, 3.5rem); color: var(--accent-dark); }
.service-list > span > .icon { width: 1.05rem; height: 1.05rem; }

.gallery-section { background: var(--surface); }
.gallery-heading > p { color: var(--muted); font-size: 1.05rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: clamp(1rem, 2vw, 1.5rem); }
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: zoom-in;
  transition: scale 130ms var(--ease-out);
}
.gallery-item:active { scale: 0.98; }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { margin-top: 3.5rem; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: var(--position, 50% 50%); transform: translate3d(0, -3px, 0) scale(1.025); transition: scale 500ms var(--ease-out), filter 350ms ease; animation: gallery-image-float var(--float-speed, 8s) var(--ease-in-out) var(--float-delay, 0s) infinite alternate; }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgb(20 25 24 / 0.78), transparent); }
.gallery-item span { position: absolute; right: 1rem; bottom: 0.9rem; left: 1rem; z-index: 1; color: var(--white); font-weight: 900; text-align: left; transition: transform 180ms var(--ease-out); }
  .gallery-item:focus-visible img { scale: 1.035; filter: saturate(1.06); }

.reviews-section { position: relative; isolation: isolate; overflow: hidden; background: var(--accent); }
.reviews-section > .wrap { position: relative; z-index: 1; }
.reviews-ambient { position: absolute; inset: 0; pointer-events: none; }
.reviews-ambient span { position: absolute; display: block; border: 1px solid rgb(20 25 24 / 0.18); border-radius: 50%; opacity: 0.65; }
.reviews-ambient span:first-child { top: -12rem; right: -7rem; width: 31rem; height: 31rem; animation: orbit-wander 16s linear infinite; }
.reviews-ambient span:last-child { bottom: -8rem; left: 18%; width: 15rem; height: 15rem; animation: orbit-wander 11s linear -5s infinite reverse; }
.reviews-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; }
.reviews-heading > div:first-child > p { margin: 0 0 0.6rem; color: var(--accent-dark); font-weight: 900; }
.rating { display: grid; justify-items: end; margin: 0; }
.rating strong { font: 900 clamp(4rem, 8vw, 7rem) / 0.78 var(--display); letter-spacing: -0.035em; }
.rating span { letter-spacing: 0.09em; }
.rating > span { transform-origin: 80% 50%; animation: star-glow 2.6s var(--ease-in-out) infinite; }
.rating small { margin-top: 0.35rem; color: var(--accent-dark); }
.review-themes { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
.review-themes li { padding: 0.45rem 0.85rem; border: 1px solid rgb(20 25 24 / 0.48); border-radius: 999px; font-size: 0.84rem; font-weight: 850; }
.review-stage { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr); gap: clamp(2rem, 6vw, 6rem); margin-top: clamp(3rem, 7vw, 6rem); }
.review { padding-block: 1.5rem; border-top: 1px solid rgb(20 25 24 / 0.38); }
.review-featured { display: flex; flex-direction: column; justify-content: space-between; min-height: 25rem; border-bottom: 1px solid rgb(20 25 24 / 0.38); }
.review-author { display: flex; align-items: center; gap: 0.85rem; }
.review-author img { width: 48px; height: 48px; border-radius: 50%; }
.review-author strong, .review-author span { display: block; }
.review-author span { font-size: 0.78rem; letter-spacing: 0.08em; }
.review blockquote { max-width: 34ch; margin: 1.5rem 0; font-size: clamp(1.25rem, 2.4vw, 2.05rem); font-weight: 850; line-height: 1.22; }
.review-featured blockquote { max-width: 24ch; font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.025em; }
.review a { width: fit-content; color: var(--accent-dark); font-size: 0.84rem; font-weight: 900; }

.visit-section { background: var(--paper); }
.visit-layout { display: grid; grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.visit-label { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0 0 0.8rem; color: var(--accent-dark); font-weight: 900; }
.visit-label .icon { width: 1.05rem; height: 1.05rem; }
.visit-copy address { margin-top: 1.7rem; font-size: 1.05rem; font-style: normal; }
.hours { margin-top: 1.7rem; border-top: 1px solid var(--line); }
.hours div { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.9rem; border-bottom: 1px solid var(--line); }
.hours-label { display: inline-flex; align-items: center; gap: 0.5rem; }
.hours-label .icon { width: 1rem; height: 1rem; color: var(--accent-dark); }
.visit-notes { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.visit-notes li { display: inline-flex; align-items: center; gap: 0.42rem; padding: 0.4rem 0.72rem; border-radius: 999px; background: var(--surface); font-size: 0.82rem; font-weight: 750; }
.visit-notes li .icon { width: 0.95rem; height: 0.95rem; color: var(--accent-dark); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }
.map-frame { min-height: 580px; overflow: hidden; border-radius: var(--radius); background: #e5e2de; box-shadow: 0 8px 8px rgb(20 25 24 / 0.09); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 580px; border: 0; }

.closing-cta { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); background: var(--accent); }
.closing-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2.5rem; }
.closing-ambient { position: absolute; inset: 0; pointer-events: none; }
.closing-ambient span { position: absolute; display: block; border-radius: 50%; background: var(--white); opacity: 0.18; }
.closing-ambient span:first-child { top: -6rem; right: 12%; width: 13rem; height: 13rem; animation: ambient-float-b 8s var(--ease-in-out) infinite alternate; }
.closing-ambient span:last-child { bottom: -7rem; right: -2rem; width: 18rem; height: 18rem; animation: ambient-float-a 12s var(--ease-in-out) -4s infinite alternate-reverse; }
.closing-inner p { margin: 0 0 0.7rem; color: var(--accent-dark); font-weight: 900; }
.closing-inner h2 { max-width: 14ch; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.site-footer { padding-block: 4rem 1.5rem; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.footer-brand { display: flex; align-items: flex-start; gap: 0.85rem; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand strong { max-width: 10rem; }
.site-footer h2 { margin: 0 0 0.8rem; color: var(--accent); font: 900 0.78rem / 1 var(--body); letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer address { font-style: normal; }
.site-footer a { display: block; width: fit-content; margin-top: 0.35rem; color: #c9d3d0; text-decoration: none; }
.site-footer .footer-phone { display: inline-flex; align-items: center; gap: 0.45rem; }
.footer-phone .icon { width: 1rem; height: 1rem; color: var(--accent); }
.footer-social { display: grid !important; width: 44px !important; height: 44px; margin-top: 0.85rem !important; place-items: center; border: 1px solid rgb(248 250 248 / 0.34); border-radius: 50%; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid rgb(248 250 248 / 0.18); font-size: 0.84rem; }
.footer-bottom p, .footer-bottom a { margin: 0; }

.menu-dialog {
  width: min(92vw, 760px);
  max-height: 90dvh;
  padding: clamp(1rem, 3vw, 2rem);
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  opacity: 1;
  transform: scale(1);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete;
}
.menu-dialog:not([open]) { opacity: 0; transform: scale(0.96); }
.menu-dialog::backdrop { background: rgb(20 25 24 / 0.86); opacity: 1; backdrop-filter: blur(5px); transition: opacity 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete; }
.menu-dialog:not([open])::backdrop { opacity: 0; }
@starting-style {
  .menu-dialog[open] { opacity: 0; transform: scale(0.96); }
  .menu-dialog[open]::backdrop { opacity: 0; }
}
.menu-dialog-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.menu-dialog-top p { margin: 0 0 0.35rem; color: var(--accent-dark); font-weight: 900; }
.menu-dialog-top h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
.menu-dialog-close {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}
.menu-dialog-note { max-width: 64ch; margin: 1.2rem 0; color: var(--muted); }
.menu-dialog > img { width: min(100%, 620px); height: auto; margin-inline: auto; border-radius: 10px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgb(20 25 24 / 0.94);
  color: var(--white);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}
.lightbox[hidden] { display: none; }
.lightbox[data-state="open"] { opacity: 1; }
.lightbox figure { grid-column: 2; grid-row: 2; display: grid; min-width: 0; min-height: 0; margin: 0; place-items: center; transform: scale(0.97); transition: transform 220ms var(--ease-out); }
.lightbox[data-state="open"] figure { transform: scale(1); }
.lightbox figure img { display: block; width: auto; height: auto; max-width: min(92vw, 1500px); max-height: calc(100dvh - 7rem); border-radius: 8px; }
.lightbox button { min-height: 48px; padding: 0.75rem 1rem; border: 1px solid rgb(248 250 248 / 0.5); border-radius: 999px; background: rgb(248 250 248 / 0.08); color: inherit; font-weight: 850; cursor: pointer; }
.lightbox-close { grid-column: 3; grid-row: 1; justify-self: end; }
.lightbox-prev { grid-column: 1; grid-row: 2; }
.lightbox-next { grid-column: 3; grid-row: 2; }

[data-reveal] {
  opacity: 1;
  translate: 0 0;
  clip-path: inset(0 0 0 0);
}
.motion-ready [data-reveal] {
  transition: opacity 720ms var(--ease-out), translate 720ms var(--ease-out), clip-path 850ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal]:not(.is-visible) { opacity: 0.35; translate: 0 24px; }
.motion-ready [data-reveal="left"]:not(.is-visible) { translate: 0 18px; clip-path: inset(0 10% 0 0); }
.motion-ready [data-reveal="right"]:not(.is-visible) { translate: 0 18px; clip-path: inset(0 0 0 10%); }
.motion-ready [data-reveal="clip"]:not(.is-visible) { opacity: 0.5; translate: 0 16px; clip-path: inset(0 0 18% 0); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.button-accent:focus-visible { outline-color: var(--white); }

@keyframes hero-settle { from { transform: scale(1.035); } to { transform: scale(1); } }
@keyframes hero-copy-in { from { opacity: 0.3; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-drift { from { transform: scale(1.01) translate3d(0, 0, 0); } to { transform: scale(1.055) translate3d(-0.8%, -0.6%, 0); } }
@keyframes hero-light {
  0%, 18% { opacity: 0; transform: translateX(-120%) rotate(7deg); }
  30%, 46% { opacity: 1; }
  62%, 100% { opacity: 0; transform: translateX(520%) rotate(7deg); }
}
@keyframes scroll-nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes heart-beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }
@keyframes ambient-float-a { from { transform: translate3d(0, 0, 0) scale(0.94); } to { transform: translate3d(42px, 28px, 0) scale(1.08); } }
@keyframes ambient-float-b { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-28px, -36px, 0); } }
@keyframes menu-scan {
  0%, 20% { opacity: 0; transform: translateY(0); }
  28%, 62% { opacity: 1; }
  75%, 100% { opacity: 0; transform: translateY(640%); }
}
@keyframes service-marquee { to { transform: translate3d(-50%, 0, 0); } }
@keyframes gallery-image-float { from { transform: translate3d(0, -4px, 0) scale(1.025); } to { transform: translate3d(0, 4px, 0) scale(1.055); } }
@keyframes orbit-wander { to { transform: rotate(360deg) translateX(12px) rotate(-360deg); } }
@keyframes star-glow { 0%, 100% { opacity: 0.72; transform: scale(0.98); } 50% { opacity: 1; transform: scale(1.05); } }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav > a:not(.button, .social-link):hover { color: var(--accent); }
  .button:hover:not(:active) { transform: translateY(-2px); }
  .button-accent:hover { background: var(--accent-light); }
  .button-ghost:hover { background: rgb(20 25 24 / 0.34); }
  .button-outline:hover { background: var(--ink); color: var(--white); }
  .about-collage figure:hover img, .day-scene:hover img { transform: scale(1.025); }
  .menu-photo-button:hover, .menu-dialog-close:hover { background: var(--ink); color: var(--white); }
  .gallery-item:hover img { scale: 1.035; filter: saturate(1.06); }
  .gallery-item:hover span { transform: translateY(-4px); }
  .lightbox button:hover { background: rgb(248 250 248 / 0.18); }
}

@media (max-width: 1050px) {
  .desktop-nav { gap: 0.9rem; }
  .about-grid { grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr); gap: 3rem; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-scroll { display: none; }
  .quick-facts-inner { grid-template-columns: repeat(2, 1fr); }
  .quick-facts p:nth-child(2) { border-right: 0; }
  .quick-facts p:nth-child(-n+2) { border-bottom: 1px solid rgb(248 250 248 / 0.16); }
  .quick-facts p:nth-child(3) { padding-left: 0; }
  .about-grid, .visit-layout { grid-template-columns: 1fr; }
  .about-copy { max-width: 46rem; }
  .about-collage { width: min(100%, 42rem); }
  .day-scenes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .day-scene-wide { grid-column: 1 / -1; }
  .menu-layout { grid-template-columns: minmax(14rem, 0.62fr) minmax(0, 1.38fr); gap: 1.5rem; }
  .menu-group-with-photo { grid-template-columns: 6rem minmax(0, 1fr); }
  .gallery-item:nth-child(2), .gallery-item:nth-child(5) { margin-top: 2.5rem; }
  .review-stage { grid-template-columns: 1fr; gap: 1.2rem; }
  .review-featured { min-height: 20rem; }
  .review-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .map-frame, .map-frame iframe { min-height: 500px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .section { padding-block: 5.5rem; }
  .site-header {
    height: calc(78px + env(safe-area-inset-top));
    padding-inline: 1rem;
    padding-top: env(safe-area-inset-top);
    border-bottom: 0;
    background: linear-gradient(to bottom, rgb(20 25 24 / 0.42), transparent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-brand { gap: 0.7rem; min-width: 0; }
  .nav-brand img { width: 58px; height: 58px; border: 2px solid rgb(248 250 248 / 0.9); box-shadow: 0 4px 14px rgb(20 25 24 / 0.32); }
  .nav-brand span { max-width: none; overflow: visible; text-overflow: clip; white-space: nowrap; font: 400 1rem / 1 Georgia, "Times New Roman", serif; letter-spacing: 0.075em; text-transform: uppercase; }
  .mobile-header-social { display: grid; width: 40px; height: 40px; margin-left: auto; place-items: center; color: var(--white); text-decoration: none; }
  .mobile-header-social svg { width: 1.45rem; height: 1.45rem; fill: currentColor; }
  .menu-toggle { width: 44px; height: 44px; margin-left: 0.25rem; }
  .mobile-menu { inset: calc(78px + env(safe-area-inset-top)) 0 0; }
  .hero-media img { object-position: 52% 48%; }
  .hero-scrim { background: linear-gradient(to top, rgb(0 0 0 / 0.44), rgb(0 0 0 / 0.08) 68%); }
  .hero-content { padding-top: calc(8.8rem + env(safe-area-inset-top)); padding-bottom: calc(clamp(3.8rem, 10vw, 5rem) + env(safe-area-inset-bottom)); }
  .hero-kicker { margin-bottom: 0.95rem; font-size: 0.7rem; font-weight: 750; letter-spacing: 0.18em; }
  .hero h1 { max-width: 100%; font: 400 clamp(3.1rem, 13.8vw, 5rem) / 0.94 Georgia, "Times New Roman", serif; letter-spacing: 0.01em; text-transform: uppercase; }
  .hero-copy { max-width: 31ch; margin-top: 1.35rem; font-size: 1.05rem; font-weight: 500; line-height: 1.45; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 0.7rem; margin-top: 2rem; }
  .hero-actions .button { min-height: 3.6rem; justify-content: space-between; padding-inline: 0.95rem; border-radius: 0; font-size: 0.86rem; letter-spacing: 0.01em; }
  .hero-actions .button-accent { background: var(--white); color: var(--ink); }
  .hero-actions .button-ghost { background: rgb(20 25 24 / 0.14); border-color: rgb(248 250 248 / 0.84); color: var(--white); }
  .hero-actions .button .icon { width: 1.08rem; height: 1.08rem; }
  .quick-facts p { padding: 1rem 0.85rem; }
  .quick-facts p:nth-child(odd) { padding-left: 0; }
  .heading-split { grid-template-columns: 1fr; align-items: start; gap: 1.2rem; }
  .about-collage { grid-template-columns: minmax(0, 1.35fr) minmax(6.5rem, 0.7fr); gap: 0.65rem; }
  .day-scenes { grid-template-columns: 1fr; gap: 3rem; }
  .day-scene-wide { grid-column: auto; }
  .day-scene-wide figure { aspect-ratio: 3 / 2; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.7fr); align-items: end; gap: 1rem; }
  .menu-feature figcaption { padding: 0 0 0.5rem; }
  .menu-board-top { align-items: flex-start; flex-direction: column; }
  .menu-group-with-photo { grid-template-columns: 6.3rem minmax(0, 1fr); }
  .service-list { padding-block: 1.05rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, auto));
    grid-auto-flow: row;
    gap: 0.75rem;
  }
  .gallery-item:nth-child(2), .gallery-item:nth-child(5) { margin-top: 0; }
  .gallery-item span { right: 0.7rem; bottom: 0.65rem; left: 0.7rem; font-size: 0.78rem; }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; }
  .rating { justify-items: start; }
  .review-pair { grid-template-columns: 1fr; gap: 0; }
  .review-featured { min-height: 17rem; }
  .review-featured blockquote { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .visit-actions { display: grid; }
  .map-frame { width: 100%; min-height: 0; aspect-ratio: 3 / 4; }
  .map-frame iframe { min-height: 0; height: 100%; }
  .closing-inner { grid-template-columns: 1fr; align-items: start; }
  .closing-actions { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.25rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .menu-dialog-top { align-items: flex-end; }
  .menu-dialog-close { flex: 0 0 auto; }
  .lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: auto minmax(0, 1fr) auto; }
  .lightbox-close { grid-column: 2; grid-row: 1; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 2; }
  .lightbox-prev { grid-column: 1; grid-row: 3; justify-self: start; }
  .lightbox-next { grid-column: 2; grid-row: 3; justify-self: end; }
}

@media (max-width: 390px) {
  .nav-brand span { max-width: 10rem; font-size: 0.92rem; }
  .hero h1 { font-size: 3.05rem; }
  .quick-facts strong, .quick-facts span { font-size: 0.78rem; }
  .menu-feature { grid-template-columns: minmax(0, 1.1fr) minmax(7rem, 0.65fr); }
  .menu-group { padding: 1.3rem 1rem; }
  .menu-group-with-photo { grid-template-columns: 5.5rem minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 340px) {
  .nav-brand img { width: 50px; height: 50px; }
  .nav-brand span { max-width: 9.5rem; overflow: hidden; text-overflow: ellipsis; font-size: 0.86rem; }
  .mobile-header-social { width: 34px; }
  .menu-toggle { width: 40px; }
  .hero h1 { font-size: clamp(2.8rem, 13.6vw, 3.45rem); }
  .hero-actions { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
  .site-header {
    border-bottom-color: rgb(248 250 248 / 0.22);
    background: linear-gradient(to bottom, rgb(20 25 24 / 0.74), transparent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-brand span { font: 400 clamp(1rem, 1.6vw, 1.35rem) / 1 Georgia, "Times New Roman", serif; letter-spacing: 0.08em; text-transform: uppercase; }
  .desktop-nav .button { border-radius: 0; background: var(--white); color: var(--ink); }
  .hero-scrim { background: linear-gradient(to bottom, rgb(20 25 24 / 0.32), rgb(20 25 24 / 0.04) 40%, rgb(0 0 0 / 0.46)); }
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    grid-template-areas: "kicker side" "title side";
    align-items: end;
    column-gap: clamp(2rem, 7vw, 8rem);
    padding-top: 10rem;
    padding-bottom: clamp(4.6rem, 8vw, 6.5rem);
  }
  .hero-kicker { grid-area: kicker; margin: 0 0 0.8rem; font-size: 0.76rem; font-weight: 750; letter-spacing: 0.18em; }
  .hero h1 { grid-area: title; max-width: none; margin: 0; font: 400 clamp(4rem, 7.4vw, 6rem) / 0.84 Georgia, "Times New Roman", serif; letter-spacing: 0.01em; text-transform: uppercase; }
  .hero-side { grid-area: side; display: flex; flex-direction: column; align-items: flex-end; align-self: end; justify-self: end; width: min(100%, 31rem); gap: 1.5rem; }
  .hero-copy { max-width: 31rem; margin: 0; font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; line-height: 1.4; text-align: right; }
  .hero-actions { justify-content: flex-end; width: min(100%, 25rem); gap: 0.8rem; margin-top: 0; }
  .hero-actions .button { flex: 1 1 0; min-height: 3.8rem; padding-inline: 1.2rem; border-radius: 0; }
  .hero-actions .button-accent { background: var(--white); color: var(--ink); }
  .hero-actions .button-ghost { background: rgb(20 25 24 / 0.18); border-color: rgb(248 250 248 / 0.82); }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .motion-ready [data-reveal], .motion-ready [data-reveal]:not(.is-visible) { opacity: 1; translate: 0 0; clip-path: inset(0 0 0 0); }
  .gallery-item { transform: none; }
  .service-track { width: 100%; transform: none; }
  .service-list { flex-wrap: wrap; width: 100%; }
  .service-loop-divider { display: none; }
  .service-list[aria-hidden="true"] { display: none; }
}

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