:root {
  --ink: #15302f;
  --ink-deep: #0d2423;
  --paper: #f4f7f5;
  --white: #ffffff;
  --accent: #1b7775;
  --accent-bright: #52b9b2;
  --accent-soft: #d9ece9;
  --line: rgba(21, 48, 47, 0.18);
  --muted: #5a6c69;
  --radius-card: 16px;
  --radius-button: 999px;
  --shadow: 0 18px 48px rgba(13, 36, 35, 0.16);
  --header-height: 76px;
  --font: "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --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-sticky: 20;
  --z-menu: 30;
  --z-modal: 40;
  --z-skip: 50;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f8e87a;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: var(--radius-button);
  background: var(--white);
  color: var(--ink-deep);
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--white);
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 8ch;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(4rem, 11vw, 6rem);
  font-weight: 800;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 7vw, 5.2rem);
  font-weight: 700;
}

h3 {
  font-size: 1.55rem;
}

.site-header {
  position: fixed;
  z-index: var(--z-sticky);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 12px 20px;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(244, 247, 245, 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

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

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.92;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.menu-toggle,
.text-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 2px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle__icon {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: var(--z-menu);
  inset: 0;
  overflow: auto;
  background: var(--paper);
  padding: calc(var(--header-height) + 40px) 24px 40px;
  animation: menu-panel-in 240ms var(--ease-drawer) both;
}

.mobile-menu nav a {
  animation: menu-link-in 260ms var(--ease-out) both;
}

.mobile-menu nav a:nth-child(2) {
  animation-delay: 45ms;
}

.mobile-menu nav a:nth-child(3) {
  animation-delay: 90ms;
}

.mobile-menu nav a:nth-child(4) {
  animation-delay: 135ms;
}

@keyframes menu-panel-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-link-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu__top,
.mobile-menu__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu__label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  margin-block: 48px;
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line);
  padding-block: 18px;
  font-size: clamp(2.7rem, 13vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.mobile-menu__contact {
  align-items: flex-start;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero__overlay {
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.24) 50%, rgba(0, 0, 0, 0.12) 100%);
}

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

.hero-ambient__parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-orbit {
  position: absolute;
  top: 18%;
  right: -22vw;
  width: min(94vw, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  opacity: 0.86;
  transform-origin: center;
  animation: orbit-spin 18s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.hero-orbit--inner {
  top: 27%;
  right: -8vw;
  width: min(62vw, 390px);
  border-color: rgba(255, 255, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 12s;
}

.hero-spoon {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 70px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
  transform: translateX(-50%) rotate(8deg);
}

.hero-spoon::before {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  transform: translateY(-50%);
}

.hero-spoon--inner {
  right: -4px;
  bottom: 23%;
  top: auto;
  left: auto;
  width: 54px;
  transform: rotate(74deg);
}

.hero-emblem {
  display: none;
}

.hero-light {
  position: absolute;
  inset: -30%;
  background: linear-gradient(104deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  opacity: 0.7;
  transform: translateX(-42%) rotate(-5deg);
  animation: hero-light-sweep 8s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform, opacity;
}

.hero.is-ambient-active .hero-orbit,
.hero.is-ambient-active .hero-light {
  animation-play-state: running;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 64px) 44px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__content > h1 {
  line-height: 0.88;
}

.hero__media {
  animation: hero-settle 1100ms var(--ease-out) both;
}

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

.hero__content > :nth-child(2) {
  animation-delay: 45ms;
}

.hero__content > :nth-child(3) {
  animation-delay: 90ms;
}

.hero__content > :nth-child(4) {
  animation-delay: 135ms;
}

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

@keyframes hero-copy-in {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

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

@keyframes hero-light-sweep {
  0% {
    opacity: 0.22;
    transform: translateX(-42%) rotate(-5deg);
  }
  55% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
    transform: translateX(42%) rotate(5deg);
  }
}

.hero__intro {
  max-width: 34ch;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1rem, 3.8vw, 1.3rem);
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  text-shadow: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button__icon {
  width: 1.12em;
  height: 1.12em;
  margin-left: var(--space-md);
}

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

.button--glass {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button--dark {
  margin-block: 30px 22px;
  background: var(--ink-deep);
  color: var(--white);
}

.quick-facts {
  background: var(--accent-bright);
  color: var(--ink-deep);
}

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

.quick-facts p {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(13, 36, 35, 0.24);
  margin: 0;
  padding-block: 14px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.35;
}

.quick-facts p > .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.quick-facts p:nth-child(odd) {
  border-right: 1px solid rgba(13, 36, 35, 0.24);
  padding-right: 16px;
}

.quick-facts p:nth-child(even) {
  padding-left: 16px;
}

.quick-facts p:nth-child(n + 3) {
  border-bottom: 0;
}

.section-heading--row > p,
.intro__copy,
.intro__aside {
  color: var(--muted);
}

.intro {
  position: relative;
  isolation: isolate;
  padding-block: clamp(104px, 12vw, 176px);
}

.intro::before {
  position: absolute;
  z-index: -1;
  top: 48%;
  left: 0;
  width: min(36vw, 540px);
  height: 34%;
  background: var(--accent-soft);
  content: "";
}

.intro__grid {
  display: grid;
  gap: 32px;
  grid-template-areas:
    "heading"
    "copy"
    "aside"
    "figure";
}

.intro__grid > .section-heading {
  grid-area: heading;
}

.intro__media {
  position: relative;
  z-index: 0;
  grid-area: figure;
  width: 100%;
  max-width: 600px;
  margin: 0;
  isolation: isolate;
}

.intro__copy {
  grid-area: copy;
  max-width: 42rem;
  font-size: 1.06rem;
  line-height: 1.65;
}

.ratio-3x4 {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-3x4 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-figure {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.intro__media::before {
  position: absolute;
  z-index: -1;
  top: -14px;
  right: 0;
  bottom: 58px;
  left: 14px;
  border: 1px solid rgba(27, 119, 117, 0.48);
  content: "";
  pointer-events: none;
  transform: rotate(1.2deg);
}

.about-figure > img {
  animation: about-image-drift 9s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.brand-stamp {
  position: static;
  display: flex;
  width: min(100%, 22rem);
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  padding: 12px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  animation: stamp-float 6.5s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}

.about-figure.is-ambient-active > img,
.about-figure.is-ambient-active + .brand-stamp {
  animation-play-state: running;
}

@keyframes about-image-drift {
  from { transform: scale(1.025) translate3d(-0.7%, -0.5%, 0); }
  to { transform: scale(1.075) translate3d(1.1%, 0.8%, 0); }
}

@keyframes stamp-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

.brand-stamp img {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.intro__aside {
  grid-area: aside;
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.intro__aside-title {
  max-width: 16ch;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.text-link .icon {
  width: 1.05em;
  height: 1.05em;
  transition: transform 160ms ease;
}

.menu {
  background: #dcecea;
  padding-block: clamp(90px, 10vw, 150px);
}

.section-heading--row {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.section-heading--row > p {
  max-width: 37ch;
  margin-bottom: 0;
}

.section-heading--row > p:has(> .icon) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.section-heading--row > p > .icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25em;
  color: var(--accent);
}

.menu-grid {
  display: grid;
  gap: 42px;
}

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

.menu-card__media {
  border-radius: var(--radius-card);
  background: var(--accent-soft);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.menu-card__media img,
.gallery-item img {
  transition: transform 520ms var(--ease-out);
}

.menu-card__media img {
  animation: menu-image-breathe 11s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.menu-card:nth-child(2) .menu-card__media img {
  animation-direction: alternate-reverse;
  animation-duration: 14s;
}

.menu-card:nth-child(3) .menu-card__media img {
  animation-duration: 12.5s;
}

.menu-grid.is-ambient-active .menu-card__media img {
  animation-play-state: running;
}

@keyframes menu-image-breathe {
  from { transform: scale(1.025) translate3d(-0.8%, -0.4%, 0); }
  to { transform: scale(1.09) translate3d(1.1%, 0.7%, 0); }
}

.menu-card__copy {
  padding-top: 18px;
}

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

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-band {
  position: relative;
  display: grid;
  gap: 34px;
  margin-top: clamp(72px, 9vw, 120px);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--ink-deep);
  color: var(--white);
  isolation: isolate;
  padding: clamp(28px, 5vw, 54px);
}

.service-band::before,
.service-band::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation-play-state: paused;
  will-change: transform, opacity;
}

.service-band::before {
  top: -48%;
  left: -10%;
  width: min(82vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(82, 185, 178, 0.5) 0%, rgba(82, 185, 178, 0.16) 35%, transparent 67%);
  opacity: 0.78;
  animation: service-glow-drift 10s ease-in-out infinite alternate;
}

.service-band::after {
  right: -90px;
  bottom: -110px;
  width: 270px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 42px rgba(255, 255, 255, 0.025), inset 0 0 0 43px rgba(255, 255, 255, 0.14);
  opacity: 0.74;
  animation: service-ring-orbit 15s linear infinite;
}

.service-band.is-ambient-active::before,
.service-band.is-ambient-active::after {
  animation-play-state: running;
}

@keyframes service-glow-drift {
  from { transform: translate3d(-7%, -4%, 0) scale(0.9); }
  to { transform: translate3d(18%, 12%, 0) scale(1.18); }
}

@keyframes service-ring-orbit {
  to { transform: rotate(360deg) translate3d(18px, 0, 0) rotate(-360deg); }
}

.service-band h3 {
  max-width: 10ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.service-band__lead p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-band ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-band li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-block: 13px;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-band li > .icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent-bright);
}

.ambient-ribbon {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(13, 36, 35, 0.5);
  margin-block: -16px -18px;
  background: var(--accent-bright);
  clip-path: polygon(0 13%, 100% 0, 100% 87%, 0 100%);
  color: var(--ink-deep);
  padding-block: 28px;
}

.ambient-ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbon-flow 22s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.ambient-ribbon.is-ambient-active .ambient-ribbon__track {
  animation-play-state: running;
}

.ambient-ribbon span {
  flex: 0 0 auto;
  padding-right: 0.7em;
  font-size: clamp(1.35rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ambient-ribbon b {
  display: inline-block;
  margin-inline: 0.22em;
  font-weight: 400;
}

@keyframes ribbon-flow {
  to { transform: translateX(-50%); }
}

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

.gallery {
  padding-block: clamp(112px, 13vw, 184px);
}

.gallery-item {
  border: 0;
  border-radius: var(--radius-card);
  background: var(--accent-soft);
  cursor: zoom-in;
  padding: 0;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  content: "";
  pointer-events: none;
}

.gallery-item__caption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.3;
  pointer-events: none;
  text-align: left;
}

.reviews {
  background: var(--accent-soft);
  padding-block: clamp(96px, 11vw, 160px);
}

.rating-summary strong {
  display: inline-block;
  margin-right: 6px;
  color: var(--ink);
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.review-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 28px;
}

.review-card:first-child {
  overflow: hidden;
  border: 0;
  background: var(--accent);
  color: var(--white);
}

.review-card:first-child > *:not(.review-card__mark) {
  position: relative;
  z-index: 1;
}

.review-card__mark {
  position: absolute;
  right: -0.02em;
  bottom: -0.42em;
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(16rem, 44vw, 34rem);
  font-weight: 800;
  line-height: 0.7;
  pointer-events: none;
  animation: quote-float 7s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform, opacity;
}

.review-card.is-ambient-active .review-card__mark {
  animation-play-state: running;
}

@keyframes quote-float {
  0%, 100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
  50% {
    opacity: 1;
    transform: translate3d(-10px, -16px, 0) rotate(3deg);
  }
}

.review-card:first-child blockquote {
  color: var(--white);
}

.review-card:first-child .text-link {
  color: var(--white);
}

.review-card:first-child .review-card__top p {
  color: #fff0a8;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.review-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.review-card__top p {
  margin-bottom: 0;
  color: #c87f00;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.muted-star {
  color: #d9dedc;
}

.review-card blockquote {
  margin: 28px 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.review-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.visit {
  background: var(--ink-deep);
  color: var(--white);
  padding-bottom: 0;
}

.visit__grid {
  display: grid;
  gap: 58px;
  padding-bottom: 72px;
}

.visit address {
  display: grid;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  font-style: normal;
}

.visit__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.visit__address > .icon {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15em;
  color: var(--accent-bright);
}

.visit__lead {
  max-width: 34ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 1.05rem;
  font-weight: 700;
}

.phone-link > .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.hours {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 26px;
}

.hours h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hours h3 > .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--accent-bright);
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 12px;
  transition: background-color 180ms ease, color 180ms ease;
}

.hours dl div.is-today {
  border-color: transparent;
  border-radius: 10px;
  background: var(--accent-bright);
  color: var(--ink-deep);
}

.hours dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.hours__today {
  border-radius: var(--radius-button);
  background: rgba(13, 36, 35, 0.13);
  padding: 2px 7px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

.hours dl div.is-today dd {
  color: var(--ink-deep);
}

.map-wrap {
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--accent-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: min(68vh, 620px);
  min-height: 430px;
  border: 0;
}

.site-footer {
  background: #071918;
  color: var(--white);
  padding-block: 64px 28px;
}

.footer__grid {
  display: grid;
  gap: 42px;
}

.brand--footer img {
  width: 56px;
  height: 56px;
}

.footer__grid p {
  max-width: 28ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer__grid nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer__contact > p {
  margin: 0 0 8px;
}

.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer__socials .social-link {
  display: grid;
  color: var(--white);
}

.footer__grid nav a,
.footer__contact a {
  width: fit-content;
  transition: color 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  margin-top: 52px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.lightbox {
  z-index: var(--z-modal);
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  border: 0;
  background: rgba(5, 16, 16, 0.96);
  color: var(--white);
  padding: 0;
}

.lightbox[open] {
  animation: lightbox-fade-in 180ms var(--ease-out) both;
}

.lightbox[open] figure {
  animation: lightbox-figure-in 240ms var(--ease-out) both;
}

@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightbox-figure-in {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lightbox::backdrop {
  background: rgba(5, 16, 16, 0.96);
}

.lightbox__bar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button--light {
  color: var(--white);
}

.lightbox__stage {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 6px;
  padding: 66px 8px 18px;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  place-items: center;
  margin: 0;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 128px);
  border-radius: 10px;
  object-fit: contain;
}

.lightbox figcaption {
  align-self: end;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-align: center;
}

.lightbox__nav {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.lightbox__nav > .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.reveal {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 280ms var(--ease-out);
}

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

.menu-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.review-grid .reveal:nth-child(2) {
  transition-delay: 55ms;
}

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

.gallery-grid .reveal:nth-child(4) {
  transition-delay: 55ms;
}

.gallery-grid .reveal:nth-child(5) {
  transition-delay: 110ms;
}

.gallery-grid .reveal:nth-child(6) {
  transition-delay: 165ms;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover {
    background: currentColor;
    transform: translateY(-2px);
  }

  .social-link:hover svg {
    color: var(--ink-deep);
  }

  .site-header.is-scrolled .social-link:hover,
  .site-header.is-menu-open .social-link:hover {
    background: var(--ink);
  }

  .site-header.is-scrolled .social-link:hover svg,
  .site-header.is-menu-open .social-link:hover svg {
    color: var(--white);
  }

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

  .button--solid:hover {
    background: var(--accent-soft);
  }

  .button--glass:hover {
    background: var(--white);
    color: var(--ink-deep);
  }

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

  .visit .button--dark:hover {
    background: var(--accent-bright);
  }

  .text-link:hover .icon {
    transform: translateX(3px);
  }

  .menu-card:hover .menu-card__media {
    box-shadow: 0 22px 45px rgba(13, 36, 35, 0.18);
    transform: translateY(-7px) scale(1.01);
  }

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

  .footer__socials .social-link:hover {
    background: var(--white);
  }

  .footer__socials .social-link:hover svg {
    color: var(--ink-deep);
  }

  .footer__grid nav a:hover,
  .footer__contact a:hover {
    color: #8bd4cd;
  }

  .lightbox__nav:hover {
    background: var(--white);
    color: var(--ink-deep);
  }
}

.button:active,
.social-link:active,
.menu-toggle:active,
.text-button:active,
.lightbox__nav:active {
  transform: scale(0.97);
}

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

.mobile-menu nav a:active {
  opacity: 0.62;
  transform: scale(0.985);
  transform-origin: left;
}

@media (min-width: 640px) {
  .shell,
  .hero__content {
    width: min(100% - 64px, 1200px);
  }

  .hero-orbit--outer {
    top: 13%;
    right: 2%;
    width: min(58vw, 620px);
  }

  .hero-orbit--inner {
    top: 24%;
    right: 12%;
    width: min(36vw, 390px);
  }

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

@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    grid-template-areas:
      "heading figure"
      "copy figure"
      "aside figure";
    column-gap: clamp(52px, 7vw, 108px);
    row-gap: 28px;
    align-items: start;
  }

  .intro__copy {
    align-self: start;
  }

  .intro__media {
    width: min(100%, 560px);
    justify-self: end;
  }

  .intro__aside {
    align-self: start;
  }

  .section-heading--row {
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
    align-items: end;
  }

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

  .service-band {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 54px;
  }

  .service-band ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

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

  .visit__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 90px;
  }

  .hours {
    border-top: 0;
    padding-top: 0;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(140px, 0.6fr) minmax(180px, 0.6fr);
  }
}

@media (min-width: 960px) {
  :root {
    --header-height: 80px;
  }

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

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero__content {
    padding-bottom: 64px;
  }

  .hero-orbit--outer {
    top: 11%;
    right: 7%;
    width: min(47vw, 620px);
  }

  .hero-orbit--inner {
    top: 25%;
    right: 17%;
    width: min(29vw, 390px);
  }

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

  .quick-facts p,
  .quick-facts p:nth-child(n + 3) {
    border-right: 1px solid rgba(13, 36, 35, 0.24);
    border-bottom: 0;
    padding: 20px 24px;
  }

  .quick-facts p:first-child {
    padding-left: 0;
  }

  .quick-facts p:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .menu-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }

  .menu-card:nth-child(1) {
    grid-column: 1 / span 5;
  }

  .menu-card:nth-child(2) {
    grid-column: 6 / span 3;
    margin-top: 112px;
  }

  .menu-card:nth-child(3) {
    grid-column: 9 / span 4;
    margin-top: 34px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 38px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(2).is-visible,
  .gallery-item:nth-child(5).is-visible {
    transform: translateY(38px);
  }

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

  .review-card:first-child {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
    min-height: 580px;
    padding: clamp(38px, 5vw, 62px);
  }

  .review-card:first-child blockquote {
    max-width: 27ch;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.5;
  }

  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    grid-column: 8 / span 5;
    min-height: 280px;
  }

  .lightbox__stage {
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    gap: 20px;
    padding-inline: 28px;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    display: grid;
    width: min(calc(100% - clamp(var(--space-3xl), 8vw, 128px)), 1500px);
    grid-template-areas:
      "kicker intro"
      "title actions";
    grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.9fr);
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
    row-gap: var(--space-lg);
    padding: 0 0 clamp(var(--space-2xl), 5vw, 72px);
  }

  .hero__content > .eyebrow {
    grid-area: kicker;
    align-self: end;
    margin: 0;
  }

  .hero__content > h1 {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: clamp(5rem, 7.5vw, 6rem);
    letter-spacing: -0.04em;
  }

  .hero__intro {
    grid-area: intro;
    width: 100%;
    max-width: 36ch;
    justify-self: end;
    margin: 0;
    font-size: clamp(1.05rem, 1.35vw, 1.3rem);
    line-height: 1.5;
  }

  .hero .button-row {
    display: grid;
    width: 100%;
    grid-area: actions;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: end;
    gap: var(--space-sm);
  }

  .hero .button {
    min-height: 60px;
    justify-content: space-between;
    border-radius: 0;
    padding: var(--space-md) var(--space-lg);
    white-space: nowrap;
  }

  .hero .button::after {
    margin-left: var(--space-md);
    content: none;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1;
  }

  .hero-orbit--outer {
    top: var(--header-height);
    right: calc(clamp(var(--space-xl), 6vw, 112px) - var(--space-xl));
    width: 212px;
  }

  .hero-orbit--inner {
    top: calc(var(--header-height) + 20px);
    right: calc(clamp(var(--space-xl), 6vw, 112px) - var(--space-sm));
    width: 172px;
  }

  .hero-emblem {
    position: absolute;
    top: calc(var(--header-height) + var(--space-xl));
    right: clamp(var(--space-xl), 6vw, 112px);
    display: grid;
    width: 148px;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(13, 36, 35, 0.2);
    padding: var(--space-xs);
    animation: hero-emblem-float 7s ease-in-out infinite;
    animation-play-state: paused;
    will-change: transform;
  }

  .hero-emblem img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

  .hero.is-ambient-active .hero-emblem {
    animation-play-state: running;
  }
}

@media (min-width: 1024px) and (max-height: 780px) {
  .hero__content {
    row-gap: var(--space-md);
    padding-bottom: var(--space-2xl);
  }

  .hero__content > h1 {
    font-size: clamp(4.5rem, 7vw, 5.5rem);
  }

  .hero-emblem {
    top: calc(var(--header-height) + var(--space-lg));
    width: 120px;
  }

  .hero-orbit--outer {
    top: var(--header-height);
    right: calc(clamp(var(--space-xl), 6vw, 112px) - var(--space-lg));
    width: 168px;
  }

  .hero-orbit--inner {
    top: calc(var(--header-height) + var(--space-sm));
    right: calc(clamp(var(--space-xl), 6vw, 112px) - var(--space-sm));
    width: 144px;
  }
}

@keyframes hero-emblem-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

@media (max-width: 959px) {
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle__icon {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: calc(var(--header-height) + env(safe-area-inset-top));
    padding: max(10px, env(safe-area-inset-top)) max(var(--space-md), env(safe-area-inset-right)) 10px max(var(--space-md), env(safe-area-inset-left));
  }

  .brand {
    gap: var(--space-xs);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

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

  .header-actions {
    gap: 0;
  }

  .site-header .social-link,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-header .social-link {
    border-color: transparent;
  }

  .site-header .social-link svg {
    width: 19px;
    height: 19px;
  }

  .hero__content {
    width: calc(100% - clamp(var(--space-xl), 10vw, 40px));
    padding-block: calc(var(--header-height) + var(--space-4xl)) max(var(--space-2xl), calc(env(safe-area-inset-bottom) + var(--space-lg)));
  }

  .hero__content > .eyebrow {
    margin-bottom: var(--space-sm);
  }

  .hero__content > h1 {
    max-width: none;
    margin-bottom: var(--space-lg);
    font-size: clamp(3rem, 14vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 0.88;
  }

  .hero__intro {
    max-width: 34ch;
    margin-bottom: var(--space-lg);
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.5;
  }

  .hero .button-row {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
  }

  .hero .button {
    min-height: 64px;
    justify-content: space-between;
    border-radius: 0;
    padding: var(--space-md) 18px;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
  }

  .hero .button::after {
    margin-left: var(--space-sm);
    content: none;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
  }

  .hero-orbit--outer {
    top: calc(var(--header-height) + env(safe-area-inset-top) + 20px);
    right: -4px;
    width: 168px;
  }

  .hero-orbit--inner {
    top: calc(var(--header-height) + env(safe-area-inset-top) + 36px);
    right: var(--space-sm);
    width: 136px;
  }

  .hero-emblem {
    position: absolute;
    top: calc(var(--header-height) + env(safe-area-inset-top) + var(--space-2xl));
    right: var(--space-lg);
    display: grid;
    width: 112px;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(13, 36, 35, 0.2);
    padding: 6px;
    animation: hero-emblem-float 7s ease-in-out infinite;
    animation-play-state: paused;
    will-change: transform;
  }

  .hero-emblem img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

  .hero.is-ambient-active .hero-emblem {
    animation-play-state: running;
  }
}

@media (max-width: 1023px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    display: grid;
    width: min(calc(100% - 64px), 900px);
    grid-template-areas:
      "kicker intro"
      "title actions";
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.78fr);
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: var(--space-xl);
    row-gap: var(--space-sm);
    padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-lg);
  }

  .hero__content > .eyebrow {
    grid-area: kicker;
    margin: 0;
  }

  .hero__content > h1 {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 3rem);
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
  }

  .hero__content > h1 br {
    display: none;
  }

  .hero__intro {
    grid-area: intro;
    max-width: 32ch;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero .button-row {
    display: grid;
    width: 100%;
    grid-area: actions;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xs);
  }

  .hero .button {
    min-height: 48px;
    justify-content: space-between;
    border-radius: 0;
    padding: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
  }

  .hero .button::after {
    margin-left: var(--space-xs);
    content: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
  }

  .hero-emblem,
  .hero-orbit {
    display: none;
  }
}

@media (max-width: 380px) {
  .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding-inline: 14px;
  }
}

@media (max-width: 359px) {
  .site-header .brand span {
    display: none;
  }
}

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

  .hero-orbit,
  .hero-light,
  .hero-emblem,
  .about-figure > img,
  .brand-stamp,
  .menu-card__media img,
  .service-band::before,
  .service-band::after,
  .ambient-ribbon__track,
  .review-card__mark {
    animation: none !important;
  }

  .hero-ambient__parallax {
    transform: none !important;
  }

  .hero-light {
    opacity: 0.16;
    transform: none;
  }
}
