:root {
  --bg: #f3f4ee;
  --surface: #e8ebe4;
  --surface-strong: #dfe3db;
  --ink: #16202b;
  --muted: #5c655f;
  --line: #c7cdc4;
  --accent: #d8aa45;
  --accent-dark: #76520d;
  --hero-text: #f7f5ed;
  --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);
  --header-height: 72px;
  --section-space: clamp(5.25rem, 11vw, 10rem);
  --shell: min(100% - 2rem, 1320px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

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

body.modal-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

img,
svg {
  display: block;
}

.ui-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: .75rem 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--hero-text);
}

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

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

.section {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
.brand,
.rating-summary strong {
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-stretch: condensed;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 13vw, 6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .92;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .96;
}

h3 {
  margin-bottom: .35rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.section-heading p,
.services-intro p,
.reviews-heading p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  color: var(--hero-text);
  transition: background-color 240ms ease, color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(243, 244, 238, .96);
  box-shadow: 0 1px 0 rgba(22, 32, 43, .12);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand img,
.footer-brand img {
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

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

.brand span {
  display: none;
  font-size: 1.15rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.social-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transition: transform 160ms var(--ease-out), color 160ms ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: currentColor;
}

.social-link rect,
.social-link circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-link .social-dot {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  margin-left: .15rem;
  padding: .55rem .75rem;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.menu-lines {
  display: grid;
  width: 18px;
  gap: 5px;
}

.menu-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--hero-text);
}

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

.hero > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 48%;
  animation: hero-in 1s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-scrim {
  z-index: 0;
  background: linear-gradient(to top, rgba(12, 16, 21, .28), rgba(12, 16, 21, .10) 66%, rgba(12, 16, 21, .10));
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-ambient i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 69, .38), rgba(216, 170, 69, 0) 68%);
  opacity: .55;
  will-change: transform, opacity;
}

.hero-ambient i:nth-child(1) {
  top: 4%;
  left: -18%;
  width: min(68vw, 46rem);
  aspect-ratio: 1;
  animation: ambient-drift-one 9s var(--ease-in-out) infinite alternate;
}

.hero-ambient i:nth-child(2) {
  right: -24%;
  bottom: -8%;
  width: min(76vw, 54rem);
  aspect-ratio: 1;
  animation: ambient-drift-two 12s var(--ease-in-out) -3s infinite alternate;
}

.hero-ambient i:nth-child(3) {
  top: 38%;
  right: 18%;
  width: min(24vw, 15rem);
  aspect-ratio: 1;
  opacity: .28;
  animation: ambient-pulse 6s var(--ease-in-out) -1s infinite alternate;
}

.hero-orbit {
  position: absolute;
  top: 15%;
  right: -2.7rem;
  z-index: 2;
  width: clamp(9.5rem, 40vw, 13rem);
  aspect-ratio: 1;
  color: var(--hero-text);
  pointer-events: none;
  will-change: transform;
}

.hero-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: orbit-spin 22s linear infinite;
}

.hero-orbit circle {
  fill: rgba(22, 32, 43, .18);
  stroke: rgba(247, 245, 237, .56);
  stroke-width: 1;
}

.hero-orbit text {
  fill: currentColor;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.hero-orbit > span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 3.7rem;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(247, 245, 237, .72);
  border-radius: 50%;
  background: rgba(22, 32, 43, .46);
  color: var(--accent);
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  width: var(--shell);
  margin-inline: auto;
  padding-top: min(24vh, 9rem);
  padding-bottom: clamp(2rem, 7vh, 5rem);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-content > * {
  animation: hero-copy-in 850ms var(--ease-out) both;
}

.hero-content > :nth-child(1) { animation-delay: 120ms; }
.hero-content > :nth-child(2) { animation-delay: 190ms; }
.hero-content > :nth-child(3) { animation-delay: 260ms; }
.hero-content > :nth-child(4) { animation-delay: 330ms; }

.hero-title-mobile {
  display: none;
}

.hero-copy-mobile {
  display: none;
}

.hero-title-wide,
.hero-copy-wide {
  display: none;
}

.eyebrow {
  margin-bottom: 1.1rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-content > p:not(.eyebrow) {
  max-width: 37ch;
  margin-bottom: 1.7rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  width: 100%;
  max-width: 29rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0;
  overflow: hidden;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active,
.menu-toggle:active,
.social-link:active,
.gallery-item:active,
.text-link:active,
.icon-button:active,
.lightbox-nav:active {
  transform: scale(.97);
}

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

.button-accent .ui-icon,
.footer-nav a .ui-icon {
  transition: transform 180ms var(--ease-out);
}

.button-accent:hover {
  background: #e5b957;
}

.button-ghost {
  border-color: rgba(255, 255, 255, .82);
  background: rgba(15, 20, 25, .18);
  color: var(--hero-text);
}

.button-ghost:hover {
  background: rgba(15, 20, 25, .28);
}

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

.button-dark:hover {
  background: #273342;
}

.quick-facts {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--hero-text);
}

.quick-facts::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 2px;
  transform: translate3d(-120%, 0, 0);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
  animation: facts-flow 6.5s linear infinite;
  pointer-events: none;
}

.quick-facts-grid {
  display: grid;
}

.quick-facts-grid > * {
  display: flex;
  min-width: 0;
  padding-block: 1.15rem;
  flex-direction: column;
  border-bottom: 1px solid rgba(247, 245, 237, .2);
}

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

.quick-facts-grid span,
.visit-now span {
  color: #c7cdc4;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fact-label,
.detail-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.fact-icon {
  width: .98rem;
  height: .98rem;
  color: var(--accent);
}

.quick-facts-grid strong {
  margin-top: .2rem;
  font-size: 1rem;
}

.quick-facts-grid a strong {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: .25rem;
  transition: text-decoration-color .2s ease;
}

.quick-facts-grid a:hover strong {
  text-decoration-color: var(--accent);
}

.about {
  background: var(--bg);
}

.about-feature {
  display: grid;
  gap: clamp(3.25rem, 8vw, 7rem);
}

.about-feature-copy {
  min-width: 0;
}

.about-kicker {
  margin-bottom: 1.25rem;
  color: var(--accent-dark);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-feature-copy h2 {
  max-width: 10ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  font-size: clamp(3.25rem, 7vw, 5rem);
  letter-spacing: -.035em;
  line-height: .92;
}

.about-copy p {
  max-width: 74ch;
  color: #3f4844;
}

.about-links {
  display: flex;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.2rem;
  flex-wrap: wrap;
  gap: .75rem 1.75rem;
  border-top: 1px solid var(--line);
}

.about-links a {
  color: var(--accent-dark);
  font-weight: 700;
  transition: color 180ms ease;
}

.about-links a:hover {
  color: var(--ink);
}

.about-feature-visual {
  width: min(100%, 32rem);
  margin: 0;
  justify-self: end;
}

.about-feature-frame {
  position: relative;
  isolation: isolate;
  margin: .7rem .7rem 0 0;
  aspect-ratio: 3 / 4;
  background: var(--surface-strong);
}

.about-feature-frame::before {
  position: absolute;
  z-index: -1;
  inset: -.7rem -.7rem .7rem .7rem;
  border: 1px solid rgba(118, 82, 13, .52);
  content: "";
  transform: rotate(1deg);
  transform-origin: center;
}

.about-feature-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.about-feature-visual figcaption {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.35;
}

.about-feature-visual figcaption span:last-child {
  color: var(--accent-dark);
  text-align: right;
}

.moments {
  display: grid;
  margin-top: clamp(4rem, 10vw, 9rem);
  gap: 4rem;
}

.moment {
  display: grid;
  gap: 1.25rem;
}

.moment figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.moment figure:not(.ratio-three-four) {
  aspect-ratio: 4 / 3;
}

.moment figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--ease-out);
}

.moment h3 {
  margin-bottom: .6rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -.025em;
}

.moment p {
  max-width: 43ch;
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0 .25rem;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, transform 140ms var(--ease-out);
}

.text-link .ui-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms var(--ease-out);
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(.38);
  transform-origin: left;
  background: var(--accent);
  content: "";
  transition: transform 220ms var(--ease-out);
}

.text-link:hover {
  color: var(--accent-dark);
}

.ratio-three-four {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.menu-section {
  overflow: hidden;
  background: var(--surface);
}

.word-marquee {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.word-marquee-track {
  display: flex;
  width: max-content;
  padding-block: .55rem .7rem;
  gap: 2.5rem;
  will-change: transform;
  animation: marquee-forward 20s linear infinite;
}

.word-marquee-track span {
  flex: 0 0 auto;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .95;
  white-space: nowrap;
}

.menu-photo-grid {
  display: grid;
  gap: 2.2rem;
}

.menu-showcase-card {
  min-width: 0;
  margin: 0;
}

.menu-showcase-card figcaption {
  display: flex;
  padding-top: 1rem;
  flex-direction: column;
  gap: .1rem;
}

.menu-showcase-card figcaption strong {
  font-size: 1.15rem;
  transition: color 180ms ease;
}

.menu-showcase-card figcaption span {
  color: var(--muted);
}

.menu-showcase-card .menu-media img {
  will-change: transform;
}

.menu-showcase-card:nth-child(1) .menu-media img {
  animation: image-drift-one 11s var(--ease-in-out) infinite alternate;
}

.menu-showcase-card:nth-child(2) .menu-media img {
  animation: image-drift-two 13s var(--ease-in-out) -4s infinite alternate;
}

.menu-showcase-card:nth-child(3) .menu-media img {
  animation: image-drift-one 12s var(--ease-in-out) -7s infinite alternate-reverse;
}

.menu-browser {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--ink);
  color: var(--hero-text);
}

.menu-tabs {
  display: flex;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid rgba(247, 245, 237, .25);
  scrollbar-width: thin;
}

.menu-tabs button {
  position: relative;
  min-height: 48px;
  flex: 0 0 auto;
  padding: .65rem 1.1rem;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #c7cdc4;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, transform 140ms var(--ease-out);
}

.menu-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform 240ms var(--ease-out);
}

.menu-tabs button:first-child {
  padding-left: 0;
}

.menu-tabs button[aria-selected="true"] {
  border-bottom-color: transparent;
  color: var(--hero-text);
}

.menu-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-tabs button:active {
  transform: scale(.97);
}

.menu-panel:focus {
  outline: none;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel header {
  display: grid;
  margin-bottom: 1.5rem;
  gap: .25rem;
}

.menu-panel header h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.menu-panel header p {
  margin-bottom: 0;
  color: #c7cdc4;
}

.expanded-menu-list {
  margin: 0;
  border-top: 1px solid rgba(247, 245, 237, .25);
}

.expanded-menu-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(247, 245, 237, .18);
}

.expanded-menu-list dt {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .15rem;
}

.expanded-menu-list dt span {
  max-width: 62ch;
  color: #c7cdc4;
  font-size: .9rem;
  line-height: 1.45;
}

.expanded-menu-list dd {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  text-align: right;
}

.menu-document-links {
  display: flex;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.feature-feast {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 76svh, 50rem);
  overflow: hidden;
  place-items: end start;
  background: var(--ink);
  color: var(--hero-text);
}

.feature-feast > picture,
.feature-feast-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-feast > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
  will-change: transform;
  animation: feast-breathe 16s var(--ease-in-out) infinite alternate;
}

.feature-feast-scrim {
  background: linear-gradient(to top, rgba(12, 16, 21, .66), rgba(12, 16, 21, .12) 72%);
}

.feature-feast-notes {
  position: absolute;
  top: 9%;
  right: clamp(1rem, 6vw, 6rem);
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: .55rem;
  color: rgba(247, 245, 237, .76);
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(1.35rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .9;
  pointer-events: none;
}

.feature-feast-notes span {
  animation: note-float 5s var(--ease-in-out) infinite alternate;
}

.feature-feast-notes span:nth-child(2) {
  color: var(--accent);
  animation-delay: -1.7s;
}

.feature-feast-notes span:nth-child(3) {
  animation-delay: -3.4s;
}

.feature-feast-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.feature-feast-content h2 {
  max-width: 11ch;
}

.feature-feast-content p {
  max-width: 35ch;
  margin-bottom: 1.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--surface-strong);
  cursor: zoom-in;
  transition: transform 240ms var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  inset: -10% auto -10% -52%;
  width: 32%;
  transform: translate3d(-160%, 0, 0) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(247, 245, 237, .22), transparent);
  content: "";
  pointer-events: none;
  will-change: transform, opacity;
  animation: gallery-glint 8s linear infinite;
}

.gallery-item:nth-child(2)::after { animation-delay: -5.2s; }
.gallery-item:nth-child(3)::after { animation-delay: -2.5s; }
.gallery-item:nth-child(4)::after { animation-delay: -6.8s; }
.gallery-item:nth-child(5)::after { animation-delay: -3.7s; }
.gallery-item:nth-child(6)::after { animation-delay: -1.1s; }

.gallery-item img {
  transition: transform 280ms var(--ease-out);
}

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

.services-layout {
  display: grid;
  gap: 3rem;
}

.services-photo {
  position: relative;
  margin: 0;
  background: var(--surface-strong);
}

.services-photo::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: clamp(5.5rem, 18vw, 8rem);
  aspect-ratio: 1;
  border: 1px dashed rgba(247, 245, 237, .82);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: orbit-spin 18s linear infinite reverse;
}

.services-stamp {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  display: grid;
  width: clamp(4rem, 14vw, 6.5rem);
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  pointer-events: none;
  will-change: transform;
  animation: stamp-float 4.6s var(--ease-in-out) infinite alternate;
}

.services-stamp strong,
.services-stamp small {
  display: block;
  line-height: .84;
}

.services-stamp strong {
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.services-stamp small {
  margin-top: .3rem;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.services-photo img {
  object-position: center 52%;
}

.services-content {
  display: grid;
  align-content: center;
  gap: 2.5rem;
}

.services-intro h2 {
  max-width: 8ch;
}

.service-list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.service-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: .2rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.service-list dt {
  font-weight: 700;
}

.service-list dd {
  margin: 0;
  color: var(--muted);
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--hero-text);
}

.reviews-section > .section-shell {
  position: relative;
  z-index: 1;
}

.reviews-atmosphere {
  position: absolute;
  inset: 3% -8% auto;
  display: flex;
  justify-content: space-between;
  color: var(--accent);
  font-size: clamp(6rem, 24vw, 22rem);
  letter-spacing: .05em;
  line-height: 1;
  opacity: .055;
  pointer-events: none;
}

.reviews-atmosphere span {
  display: block;
  will-change: transform, opacity;
  animation: reviews-drift 14s var(--ease-in-out) infinite alternate;
}

.reviews-atmosphere span:last-child {
  animation-delay: -7s;
  animation-direction: alternate-reverse;
}

.reviews-heading {
  display: flex;
  margin-bottom: 3.25rem;
  flex-direction: column;
  gap: 2rem;
}

.reviews-heading h2 {
  margin-bottom: .45rem;
}

.rating-summary {
  display: flex;
  align-items: baseline;
  gap: .8rem;
}

.rating-summary:hover strong {
  color: var(--accent);
}

.rating-summary strong {
  font-size: clamp(3.6rem, 9vw, 6.2rem);
  line-height: .85;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.rating-summary span {
  color: #c7cdc4;
}

.review-grid {
  display: grid;
  gap: 2.5rem;
}

.review {
  display: flex;
  min-width: 0;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(247, 245, 237, .45);
  flex-direction: column;
}

.review-top {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.review-top img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top h3 {
  margin-bottom: .05rem;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 1rem;
}

.review-top p {
  margin-bottom: 0;
  color: var(--accent);
  font-size: .86rem;
  letter-spacing: .08em;
}

.review blockquote {
  margin: 1.35rem 0 1.2rem;
  color: var(--hero-text);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  line-height: 1.45;
}

.review .text-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--hero-text);
}

.review .text-link:hover {
  color: var(--accent);
}

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

.visit-layout {
  display: grid;
  gap: 3rem;
}

.visit-details h2 {
  max-width: 8ch;
}

.visit-now {
  display: flex;
  margin-bottom: 2rem;
  padding-block: .9rem;
  flex-direction: column;
  border-block: 1px solid var(--line);
}

.visit-now span {
  color: var(--muted);
}

.visit-now .ui-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent-dark);
}

.visit-now strong {
  margin-top: .15rem;
  font-size: 1.1rem;
}

.visit-details address {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1rem;
  font-style: normal;
}

.visit-details address .ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  color: var(--accent-dark);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.phone-link .ui-icon,
.footer-phone .ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent-dark);
}

.phone-link:hover,
.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--accent-dark);
}

.hours {
  max-width: 35rem;
  margin: 0 0 2rem;
}

.hours div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-block: .55rem;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 0;
  text-align: right;
}

.map-wrap {
  min-height: 420px;
  background: #d1d6cf;
}

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

.social-band {
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--accent);
  color: var(--ink);
}

.social-marquee {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-block: 1px solid rgba(22, 32, 43, .4);
}

.social-marquee-track {
  display: flex;
  width: max-content;
  padding-block: .4rem .55rem;
  gap: 2.2rem;
  opacity: .72;
  will-change: transform;
  animation: marquee-reverse 17s linear infinite;
}

.social-marquee-track span {
  flex: 0 0 auto;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .92;
  white-space: nowrap;
}

.social-band-inner {
  display: grid;
  gap: 2rem;
}

.social-band h2 {
  margin-bottom: .5rem;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.social-band p {
  max-width: 46ch;
  margin-bottom: 0;
}

.social-band-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.social-band-links a {
  display: inline-flex;
  min-height: 50px;
  padding: .7rem 1rem;
  align-items: center;
  gap: .65rem;
  border: 1px solid var(--ink);
  font-weight: 700;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.social-band-links a:hover {
  background: var(--ink);
  color: var(--hero-text);
}

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

.social-band-links rect,
.social-band-links circle:not(:last-child) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.mobile-actions {
  display: none;
}

.site-footer {
  padding-block: 3rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-brand strong {
  font-size: 1.35rem;
}

.footer-brand span,
.footer-contact p {
  color: var(--muted);
}

.footer-contact p {
  margin-bottom: .2rem;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.footer-contact-line .ui-icon {
  width: 1rem;
  height: 1rem;
  margin-top: .28rem;
  color: var(--accent-dark);
}

.footer-contact a,
.footer-nav a {
  font-weight: 700;
}

.footer-phone,
.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-nav a .ui-icon {
  width: 1rem;
  height: 1rem;
}

.footer-nav,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-dialog,
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--bg);
  color: var(--ink);
}

.nav-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(11, 15, 20, .72);
}

.nav-dialog-inner {
  display: flex;
  min-height: 100%;
  padding: 1.25rem;
  flex-direction: column;
}

.nav-dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dialog-top p {
  margin: 0;
  font-weight: 700;
}

.icon-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem .8rem;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.icon-button .ui-icon {
  width: 1rem;
  height: 1rem;
}

.nav-dialog nav {
  display: flex;
  margin-block: auto;
  flex-direction: column;
}

.nav-dialog nav a {
  padding-block: .25rem;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(2.5rem, 11vw, 6rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.nav-dialog nav a:hover {
  color: var(--accent-dark);
}

.nav-dialog-contact {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  color: var(--muted);
}

.lightbox {
  overflow: hidden;
  background: #101720;
  color: var(--hero-text);
}

.lightbox-toolbar {
  position: absolute;
  inset: 1rem 1rem auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-stage {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  padding: 4.5rem 1rem 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: .75rem;
  place-items: center;
}

.lightbox-stage img {
  grid-column: 1;
  grid-row: 1;
  max-width: 100%;
  max-height: calc(100svh - 8.5rem);
  object-fit: contain;
}

.lightbox-nav {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 0;
  background: rgba(16, 23, 32, .78);
  color: var(--hero-text);
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.lightbox-nav .ui-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms var(--ease-out);
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.lightbox-next {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

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

.motion-ready .reveal {
  opacity: .01;
  transform: translateY(26px);
  transition: opacity 600ms var(--ease-out), transform 820ms var(--ease-out);
}

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

body[data-input-method="keyboard"] .button,
body[data-input-method="keyboard"] .menu-toggle,
body[data-input-method="keyboard"] .menu-tabs button,
body[data-input-method="keyboard"] .social-link,
body[data-input-method="keyboard"] .text-link,
body[data-input-method="keyboard"] .social-band-links a,
body[data-input-method="keyboard"] .menu-tabs button::after {
  transition-duration: 0ms;
}

body[data-input-method="keyboard"] .button,
body[data-input-method="keyboard"] .menu-toggle,
body[data-input-method="keyboard"] .social-link,
body[data-input-method="keyboard"] .text-link,
body[data-input-method="keyboard"] .menu-tabs button,
body[data-input-method="keyboard"] .social-band-links a,
body[data-input-method="keyboard"] .mobile-actions,
body[data-input-method="keyboard"] .menu-tabs button::after {
  transition-duration: 0ms;
}

.motion-ready .gallery-item:nth-child(2),
.motion-ready .menu-showcase-card:nth-child(2) { transition-delay: 55ms; }

.motion-ready .gallery-item:nth-child(3),
.motion-ready .menu-showcase-card:nth-child(3) { transition-delay: 110ms; }

.motion-ready .gallery-item:nth-child(4) { transition-delay: 45ms; }
.motion-ready .gallery-item:nth-child(5) { transition-delay: 100ms; }
.motion-ready .gallery-item:nth-child(6) { transition-delay: 155ms; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes ambient-drift-one {
  from { opacity: .34; transform: translate3d(-7%, -5%, 0) scale(.9); }
  to { opacity: .72; transform: translate3d(18%, 11%, 0) scale(1.12); }
}

@keyframes ambient-drift-two {
  from { opacity: .25; transform: translate3d(10%, 8%, 0) scale(.88); }
  to { opacity: .64; transform: translate3d(-14%, -12%, 0) scale(1.1); }
}

@keyframes ambient-pulse {
  from { opacity: .12; transform: translate3d(-8%, 5%, 0) scale(.82); }
  to { opacity: .42; transform: translate3d(8%, -7%, 0) scale(1.18); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes facts-flow {
  to { transform: translate3d(395%, 0, 0); }
}

@keyframes marquee-forward {
  to { transform: translate3d(calc(-33.333% - .833rem), 0, 0); }
}

@keyframes marquee-reverse {
  from { transform: translate3d(calc(-33.333% - .733rem), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes image-drift-one {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.055); }
  to { transform: translate3d(1.8%, 1.5%, 0) scale(1.085); }
}

@keyframes image-drift-two {
  from { transform: translate3d(1.5%, -1.6%, 0) scale(1.06); }
  to { transform: translate3d(-1.7%, 1.2%, 0) scale(1.09); }
}

@keyframes feast-breathe {
  from { transform: translate3d(-1%, 0, 0) scale(1.045); }
  to { transform: translate3d(1.4%, -1%, 0) scale(1.095); }
}

@keyframes note-float {
  from { transform: translate3d(-8px, -2px, 0) rotate(-2deg); }
  to { transform: translate3d(8px, 2px, 0) rotate(2deg); }
}

@keyframes gallery-glint {
  0%, 58% { opacity: 0; transform: translate3d(-160%, 0, 0) skewX(-12deg); }
  64% { opacity: .8; }
  82% { opacity: .55; transform: translate3d(520%, 0, 0) skewX(-12deg); }
  100% { opacity: 0; transform: translate3d(520%, 0, 0) skewX(-12deg); }
}

@keyframes stamp-float {
  from { transform: translate3d(0, -5px, 0) rotate(-3deg); }
  to { transform: translate3d(0, 8px, 0) rotate(3deg); }
}

@keyframes reviews-drift {
  from { opacity: .7; transform: translate3d(-3%, -5%, 0) rotate(-2deg); }
  to { opacity: 1; transform: translate3d(4%, 6%, 0) rotate(2deg); }
}

@keyframes hero-in {
  from { opacity: .55; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px);
  }

  .social-link:hover {
    transform: translateY(-2px) rotate(5deg);
  }

  .menu-toggle:hover .menu-lines i:first-child {
    transform: translateX(3px);
  }

  .menu-toggle:hover .menu-lines i:last-child {
    transform: translateX(-3px);
  }

  .moment:hover figure img {
    transform: scale(1.028);
  }

  .about-feature-visual:hover .about-feature-frame img {
    transform: scale(1.025);
  }

  .text-link:hover::after {
    transform: scaleX(1);
  }

  .button-accent:hover .ui-icon,
  .text-link:hover .ui-icon,
  .footer-nav a:hover .ui-icon {
    transform: translateX(3px);
  }

  .lightbox-prev:hover .ui-icon {
    transform: translateX(-3px);
  }

  .lightbox-next:hover .ui-icon {
    transform: translateX(3px);
  }

  .menu-showcase-card:hover figcaption strong {
    color: var(--accent-dark);
  }

  .rating-summary:hover strong {
    transform: translateY(-3px) rotate(-1deg);
  }

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

  .gallery-item:hover {
    transform: translateY(-7px);
  }

  .gallery-item:hover img {
    transform: scale(1.035);
  }
}

@media (min-width: 560px) {
  .brand span {
    display: inline;
  }

  .quick-facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-facts-grid > * {
    padding: 1.35rem;
    border-right: 1px solid rgba(247, 245, 237, .2);
    border-bottom: 0;
  }

  .quick-facts-grid > *:first-child {
    padding-left: 0;
  }

  .quick-facts-grid > *:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .service-list div {
    grid-template-columns: minmax(9rem, .55fr) 1fr;
    gap: 2rem;
  }

  .reviews-heading {
    align-items: end;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (max-width: 719px) {
  .site-header {
    padding-inline: 1.1rem;
  }

  .brand {
    gap: .6rem;
  }

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

  .brand span {
    display: inline;
    font-family: "Times New Roman", Georgia, serif;
    font-size: clamp(.96rem, 4.8vw, 1.2rem);
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .header-actions {
    gap: .1rem;
  }

  .social-link {
    width: 36px;
  }

  .menu-toggle {
    min-height: 44px;
    margin-left: .1rem;
    padding: .5rem 0 .5rem .35rem;
    border: 0;
  }

  .menu-toggle > span:first-child {
    display: none;
  }

  .menu-lines {
    width: 28px;
    gap: 7px;
  }

  .menu-lines i {
    height: 1px;
  }

  .hero-scrim {
    background: linear-gradient(to top, rgba(12, 16, 21, .62), rgba(12, 16, 21, .28) 48%, rgba(12, 16, 21, .16));
  }

  .hero-orbit {
    top: 16%;
    right: -2.4rem;
    width: min(44vw, 11.5rem);
  }

  .hero-content {
    width: min(100% - 2.5rem, 1320px);
    padding-top: 6rem;
    padding-bottom: clamp(3.8rem, 9vh, 5.5rem);
  }

  .hero-title-default {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero-copy-default {
    display: none;
  }

  .hero-copy-mobile {
    display: inline;
  }

  .hero-content h1 {
    max-width: none;
    margin-bottom: 1.25rem;
    font-family: "Times New Roman", Georgia, serif;
    font-size: clamp(3rem, 14vw, 5rem);
    font-weight: 400;
    letter-spacing: .045em;
    line-height: .92;
    text-transform: uppercase;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 34ch;
    margin-bottom: 1.9rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    max-width: none;
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 64px;
    flex: 1 1 0;
    justify-content: space-between;
    padding-inline: 1rem;
  }

  .hero-actions .button-accent {
    border-color: var(--hero-text);
    background: var(--hero-text);
    color: var(--ink);
  }

  .hero-actions .button-ghost {
    background: rgba(22, 32, 43, .16);
  }

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

  body {
    padding-bottom: 64px;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 18;
    display: grid;
    min-height: 64px;
    grid-template-columns: repeat(3, 1fr);
    transform: translateY(105%);
    background: var(--ink);
    color: var(--hero-text);
    box-shadow: 0 -8px 28px rgba(10, 15, 20, .18);
    visibility: hidden;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), visibility .3s;
  }

  .mobile-actions.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-actions a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    flex-direction: column;
    border-right: 1px solid rgba(247, 245, 237, .2);
    font-size: .88rem;
    font-weight: 700;
  }

  .mobile-actions .ui-icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .mobile-actions a:last-child {
    border-right: 0;
    background: var(--accent);
    color: var(--ink);
  }
}

@media (max-width: 559px) {
  .menu-tabs button {
    flex: 1 0 auto;
    padding-inline: .55rem;
    font-size: .82rem;
  }

  .menu-tabs button:first-child {
    padding-left: 0;
  }
}

@media (max-width: 359px) {
  .menu-tabs button {
    padding-inline: .3rem;
  }
}

@media (min-width: 720px) {
  .menu-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 2rem);
  }

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

  .review-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .review:nth-child(1) {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
    padding-right: clamp(1rem, 4vw, 4rem);
  }

  .review:nth-child(1) blockquote {
    font-size: clamp(1.5rem, 3.2vw, 2.35rem);
    line-height: 1.35;
  }

  .review:nth-child(2) { grid-column: 9 / -1; }
  .review:nth-child(3) { grid-column: 9 / -1; }

  .footer-grid {
    grid-template-columns: minmax(15rem, 1.2fr) minmax(14rem, 1fr) auto;
    align-items: center;
  }

  .footer-nav {
    justify-content: flex-end;
  }

  .footer-socials {
    grid-column: 3;
    justify-content: flex-end;
  }

  .lightbox-stage {
    padding: 4.5rem 5rem 2rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
  }

  .lightbox-stage img {
    grid-column: 2;
    grid-row: 1;
    max-height: calc(100svh - 6.5rem);
  }

  .lightbox-prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .lightbox-next {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 76px;
    --shell: min(100% - 5rem, 1320px);
  }

  .about {
    padding-top: clamp(3rem, 5vw, 4rem);
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(12, 16, 21, .28), rgba(12, 16, 21, .10) 62%, rgba(12, 16, 21, .10));
  }

  .hero-content {
    padding-top: 6rem;
  }

  .hero-actions .button {
    min-width: 9.5rem;
  }

  .word-marquee-track span {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  }

  .about-feature {
    grid-template-columns: minmax(0, .96fr) minmax(24rem, .72fr);
    align-items: start;
    gap: clamp(4rem, 9vw, 8rem);
  }

  .about-feature-copy {
    padding-top: clamp(1rem, 4vw, 3rem);
  }

  .about-feature-visual {
    width: min(100%, 31rem);
  }

  .moments {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 6rem 1.5rem;
  }

  .moment-coffee {
    grid-column: 1 / span 7;
  }

  .moment-cabinet {
    grid-column: 9 / -1;
    margin-top: 8rem;
  }

  .moment-together {
    grid-column: 2 / span 10;
    grid-template-columns: minmax(17rem, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .moment-together figure {
    width: min(100%, 27rem);
  }

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

  .services-layout {
    grid-template-columns: minmax(20rem, .82fr) minmax(26rem, 1.18fr);
    align-items: center;
    gap: clamp(4rem, 9vw, 8rem);
  }

  .services-photo {
    width: min(100%, 34rem);
  }

  .visit-layout {
    grid-template-columns: minmax(21rem, .72fr) minmax(0, 1.28fr);
    align-items: stretch;
    gap: clamp(3rem, 7vw, 6rem);
  }

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

  .social-band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 4rem;
  }

  .nav-dialog-inner {
    padding: 2rem 3rem;
  }
}

@media (min-width: 1200px) {
  .about > .section-shell {
    width: min(100% - 3.5rem, 1480px);
  }

  .about-feature {
    grid-template-columns: minmax(0, 74ch) minmax(30rem, .8fr);
    gap: clamp(4rem, 7vw, 7rem);
  }

  .about-feature-visual {
    width: min(100%, 34rem);
  }
}

@media (min-width: 1100px) {
  .hero-scrim {
    background: linear-gradient(to top, rgba(12, 16, 21, .72), rgba(12, 16, 21, .34) 38%, rgba(12, 16, 21, .12) 74%, rgba(12, 16, 21, .2)), linear-gradient(90deg, rgba(12, 16, 21, .16), rgba(12, 16, 21, 0) 70%, rgba(12, 16, 21, .18));
  }

  .hero-orbit {
    top: 4%;
    right: 3vw;
    width: clamp(12rem, 15vw, 16rem);
  }

  .hero-content {
    display: grid;
    width: min(100% - 8rem, 1440px);
    grid-template-columns: minmax(0, 1fr) minmax(26rem, .72fr);
    grid-template-rows: auto auto;
    column-gap: clamp(3rem, 7vw, 7rem);
    align-content: end;
    align-items: end;
    padding-top: 8rem;
    padding-bottom: clamp(4rem, 8vh, 6rem);
  }

  .hero-content > :nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin-bottom: 1.1rem;
  }

  .hero-content > :nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin-bottom: 0;
  }

  .hero-content > :nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    max-width: 32ch;
    margin-bottom: 1.7rem;
    justify-self: end;
    align-self: end;
    text-align: right;
  }

  .hero-content > :nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    max-width: 24rem;
    justify-self: end;
  }

  .hero-title-default,
  .hero-title-mobile,
  .hero-copy-default,
  .hero-copy-mobile {
    display: none;
  }

  .hero-title-wide,
  .hero-copy-wide {
    display: inline;
  }

  .hero-content h1 {
    font-family: "Times New Roman", Georgia, serif;
    font-size: clamp(4.25rem, 6.6vw, 6rem);
    font-weight: 400;
    letter-spacing: .03em;
    line-height: .88;
    text-transform: uppercase;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 32ch;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.45;
  }

  .hero-actions {
    max-width: 24rem;
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 64px;
    flex: 1 1 0;
    justify-content: space-between;
    padding-inline: 1rem;
  }

  .hero-actions .button-accent {
    border-color: var(--hero-text);
    background: var(--hero-text);
    color: var(--ink);
  }

  .hero-actions .button-ghost {
    background: rgba(22, 32, 43, .16);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

  .motion-ready .reveal,
  .hero-content > *,
  .menu-showcase-card .menu-media img,
  .feature-feast > picture img,
  .feature-feast-notes span,
  .services-stamp,
  .reviews-atmosphere span,
  .word-marquee-track,
  .social-marquee-track {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-ambient {
    display: none;
  }

  .hero-orbit svg,
  .services-photo::after {
    animation: none !important;
  }

  .gallery-item::after {
    display: none;
  }

  .word-marquee-track,
  .social-marquee-track {
    width: auto;
  }

  .word-marquee-track span:not(:first-child),
  .social-marquee-track span:not(:first-child),
  .reviews-atmosphere span:last-child {
    display: none;
  }
}
