:root {
  color-scheme: light;
  --paper: #f4eff1;
  --paper-warm: #ead7dc;
  --pink: #e4a59c;
  --berry: #861a3b;
  --berry-deep: #5c1029;
  --ink: #242120;
  --muted: #6f6662;
  --white: #fffaf6;
  --line: rgba(36, 33, 32, 0.18);
  --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);
  --header-height: 72px;
  --content: min(1180px, calc(100% - 40px));
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

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

body.is-locked {
  position: fixed;
  width: 100%;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #302e2d;
  color: #fff;
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(228, 165, 156, 0.34);
  box-shadow: 0 14px 34px rgba(20, 14, 16, 0.18);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--pink), #ffe4dc 52%, var(--pink));
  will-change: transform;
}

.brand-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-link img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  object-fit: cover;
}

.brand-link span {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 38px);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.desktop-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-social a,
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 160ms var(--ease-out);
}

.desktop-social svg,
.footer-social svg,
.mobile-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: none;
  padding: 10px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 160ms var(--ease-out);
}

.menu-toggle span {
  height: 2px;
  display: block;
  margin: 4px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 200ms var(--ease-drawer), opacity 120ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 auto;
  padding: 26px 20px 30px;
  transform: translateY(-14px) scale(0.985);
  transform-origin: top right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #302e2d;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms var(--ease-drawer), opacity 160ms ease, visibility 0s linear 220ms;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-decoration: none;
  transform: translateY(-7px);
  opacity: 0;
  transition: transform 220ms var(--ease-out), opacity 160ms ease, color 160ms ease;
}

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

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 35ms;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 70ms;
}

.mobile-menu.is-open nav a:nth-child(4) {
  transition-delay: 105ms;
}

.mobile-menu.is-open nav a:nth-child(5) {
  transition-delay: 140ms;
}

.mobile-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.mobile-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  place-items: end start;
  background: #38312f;
  color: #fff;
}

.hero-image,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  transform: scale(1.01);
  object-fit: cover;
  object-position: 50% 54%;
  animation: hero-cinemagraph 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero::before {
  z-index: 1;
  content: "";
  transform: translate3d(-5%, -2%, 0) scale(1.08);
  background:
    radial-gradient(circle at 18% 70%, rgba(255, 218, 203, 0.28), transparent 26%),
    radial-gradient(circle at 78% 26%, rgba(255, 242, 219, 0.2), transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: hero-light-drift 11s var(--ease-in-out) infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero::after {
  z-index: 1;
  content: "";
  background: linear-gradient(150deg, rgba(15, 13, 12, 0.08) 5%, rgba(15, 13, 12, 0.15) 52%, rgba(15, 13, 12, 0.28) 100%);
  pointer-events: none;
}

.hero-orbit-shell {
  position: absolute;
  z-index: 2;
  top: clamp(106px, 14vh, 164px);
  right: clamp(28px, 6vw, 92px);
  width: clamp(230px, 27vw, 390px);
  aspect-ratio: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-orbit-float {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  animation: hero-orbit-float 6.8s var(--ease-in-out) infinite alternate;
}

.hero-orbit-art {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 16px 26px rgba(32, 14, 20, 0.22));
  opacity: 0.92;
  will-change: filter, opacity;
}

.hero-orbit-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero-orbit-rotor {
  transform-box: fill-box;
  transform-origin: center;
  animation: hero-orbit-spin 28s linear infinite;
  will-change: transform;
}

.hero-orbit-stroke,
.hero-orbit-dash {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-linecap: round;
  stroke-width: 1.25;
}

.hero-orbit-stroke-inner {
  stroke-dasharray: 1 7;
  opacity: 0.68;
}

.hero-orbit-dash {
  stroke-width: 2;
  opacity: 0.76;
}

.hero-orbit-text {
  fill: rgba(255, 255, 255, 0.86);
  font-family: Arial, sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.9px;
}

.hero-orbit-text-small {
  font-size: 7.2px;
  letter-spacing: 1.7px;
  opacity: 0.74;
}

.hero-orbit-cup {
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.86;
}

.hero-orbit-label {
  position: absolute;
  width: 39%;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(35, 28, 28, 0.42);
  color: #fff;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.hero-orbit-label strong,
.hero-orbit-label small {
  display: block;
}

.hero-orbit-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 0.9;
}

.hero-orbit-label small {
  margin-top: 8px;
  font-size: clamp(0.52rem, 0.82vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(780px, calc(100% - 40px));
  margin: 0 0 clamp(42px, 8vh, 82px) max(20px, calc((100vw - 1180px) / 2));
  padding-top: 92px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 730px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.035em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.2);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 17px;
  color: var(--berry);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-kicker {
  color: #ffe0da;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 500px;
  margin: 0 0 27px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  text-shadow: 0 2px 13px rgba(0, 0, 0, 0.3);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon,
.glance-icon,
.service-icon,
.menu-icon,
.gallery-open-icon,
.visit-icon,
.footer-link-icon,
.footer-heading-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
  transition: transform 180ms var(--ease-out), opacity 180ms ease;
}

.icon-arrow-up-right { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNNyA3aDEwdjEwIiAvPgogIDxwYXRoIGQ9Ik03IDE3IDE3IDciIC8+Cjwvc3ZnPgo="); }
.icon-map-pin { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMjAgMTBjMCA0Ljk5My01LjUzOSAxMC4xOTMtNy4zOTkgMTEuNzk5YTEgMSAwIDAgMS0xLjIwMiAwQzkuNTM5IDIwLjE5MyA0IDE0Ljk5MyA0IDEwYTggOCAwIDAgMSAxNiAwIiAvPgogIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTAiIHI9IjMiIC8+Cjwvc3ZnPgo="); }
.icon-clock { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgLz4KICA8cGF0aCBkPSJNMTIgNnY2bDQgMiIgLz4KPC9zdmc+Cg=="); }
.icon-coffee { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTAgMnYyIiAvPgogIDxwYXRoIGQ9Ik0xNCAydjIiIC8+CiAgPHBhdGggZD0iTTE2IDhhMSAxIDAgMCAxIDEgMXY4YTQgNCAwIDAgMS00IDRIN2E0IDQgMCAwIDEtNC00VjlhMSAxIDAgMCAxIDEtMWgxNGE0IDQgMCAxIDEgMCA4aC0xIiAvPgogIDxwYXRoIGQ9Ik02IDJ2MiIgLz4KPC9zdmc+Cg=="); }
.icon-egg-fried { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxMS41IiBjeT0iMTIuNSIgcj0iMy41IiAvPgogIDxwYXRoIGQ9Ik0zIDhjMC0zLjUgMi41LTYgNi41LTYgNSAwIDQuODMgMyA3LjUgNXM1IDIgNSA2YzAgNC41LTIuNSA2LjUtNyA2LjUtMi41IDAtMi41IDIuNS02IDIuNXMtNy0yLTctNS41YzAtMyAxLjUtMyAxLjUtNUMzLjUgMTAgMyA5IDMgOFoiIC8+Cjwvc3ZnPgo="); }
.icon-sandwich { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJtMi4zNyAxMS4yMjMgOC4zNzItNi43NzdhMiAyIDAgMCAxIDIuNTE2IDBsOC4zNzEgNi43NzciIC8+CiAgPHBhdGggZD0iTTIxIDE1YTEgMSAwIDAgMSAxIDF2MmExIDEgMCAwIDEtMSAxaC01LjI1IiAvPgogIDxwYXRoIGQ9Ik0zIDE1YTEgMSAwIDAgMC0xIDF2MmExIDEgMCAwIDAgMSAxaDkiIC8+CiAgPHBhdGggZD0ibTYuNjcgMTUgNi4xMyA0LjZhMiAyIDAgMCAwIDIuOC0uNGwzLjE1LTQuMiIgLz4KICA8cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iNCIgeD0iMiIgeT0iMTEiIHJ4PSIxIiAvPgo8L3N2Zz4K"); }
.icon-cake-slice { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTYgMTNIMyIgLz4KICA8cGF0aCBkPSJNMTYgMTdIMyIgLz4KICA8cGF0aCBkPSJtNy4yIDcuOS0zLjM4OCAyLjVBMiAyIDAgMCAwIDMgMTIuMDFWMjBhMSAxIDAgMCAwIDEgMWgxNmExIDEgMCAwIDAgMS0xdi04LjY1NGMwLTItMi40NC02LjAyNi02LjQ0LTguMDI2YTEgMSAwIDAgMC0xLjA4Mi4wNTdMMTAuNCA1LjYiIC8+CiAgPGNpcmNsZSBjeD0iOSIgY3k9IjciIHI9IjIiIC8+Cjwvc3ZnPgo="); }
.icon-accessibility { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8Y2lyY2xlIGN4PSIxNiIgY3k9IjQiIHI9IjEiIC8+CiAgPHBhdGggZD0ibTE4IDE5IDEtNy02IDEiIC8+CiAgPHBhdGggZD0ibTUgOCAzLTMgNS41IDMtMi4zNiAzLjUiIC8+CiAgPHBhdGggZD0iTTQuMjQgMTQuNWE1IDUgMCAwIDAgNi44OCA2IiAvPgogIDxwYXRoIGQ9Ik0xMy43NiAxNy41YTUgNSAwIDAgMC02Ljg4LTYiIC8+Cjwvc3ZnPgo="); }
.icon-mail { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJtMjIgNy04Ljk5MSA1LjcyN2EyIDIgMCAwIDEtMi4wMDkgMEwyIDciIC8+CiAgPHJlY3QgeD0iMiIgeT0iNCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjE2IiByeD0iMiIgLz4KPC9zdmc+Cg=="); }
.icon-phone { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTMuODMyIDE2LjU2OGExIDEgMCAwIDAgMS4yMTMtLjMwM2wuMzU1LS40NjVBMiAyIDAgMCAxIDE3IDE1aDNhMiAyIDAgMCAxIDIgMnYzYTIgMiAwIDAgMS0yIDJBMTggMTggMCAwIDEgMiA0YTIgMiAwIDAgMSAyLTJoM2EyIDIgMCAwIDEgMiAydjNhMiAyIDAgMCAxLS44IDEuNmwtLjQ2OC4zNTFhMSAxIDAgMCAwLS4yOTIgMS4yMzMgMTQgMTQgMCAwIDAgNi4zOTIgNi4zODQiIC8+Cjwvc3ZnPgo="); }
.icon-sparkles { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTEuMDE3IDIuODE0YTEgMSAwIDAgMSAxLjk2NiAwbDEuMDUxIDUuNTU4YTIgMiAwIDAgMCAxLjU5NCAxLjU5NGw1LjU1OCAxLjA1MWExIDEgMCAwIDEgMCAxLjk2NmwtNS41NTggMS4wNTFhMiAyIDAgMCAwLTEuNTk0IDEuNTk0bC0xLjA1MSA1LjU1OGExIDEgMCAwIDEtMS45NjYgMGwtMS4wNTEtNS41NThhMiAyIDAgMCAwLTEuNTk0LTEuNTk0bC01LjU1OC0xLjA1MWExIDEgMCAwIDEgMC0xLjk2Nmw1LjU1OC0xLjA1MWEyIDIgMCAwIDAgMS41OTQtMS41OTR6IiAvPgogIDxwYXRoIGQ9Ik0yMCAydjQiIC8+CiAgPHBhdGggZD0iTTIyIDRoLTQiIC8+CiAgPGNpcmNsZSBjeD0iNCIgY3k9IjIwIiByPSIyIiAvPgo8L3N2Zz4K"); }
.icon-maximize-2 { --icon-url: url("data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTUgM2g2djYiIC8+CiAgPHBhdGggZD0ibTIxIDMtNyA3IiAvPgogIDxwYXRoIGQ9Im0zIDIxIDctNyIgLz4KICA8cGF0aCBkPSJNOSAyMUgzdi02IiAvPgo8L3N2Zz4K"); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid var(--berry);
  background: var(--berry);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 150ms var(--ease-out), box-shadow 180ms ease;
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(26, 23, 22, 0.18);
  color: #fff;
}

.button-outline {
  background: transparent;
  color: var(--berry);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--berry);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration-color: rgba(134, 26, 59, 0.34);
  text-transform: uppercase;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.button .icon {
  width: 1.05em;
  height: 1.05em;
}

.text-link .icon {
  width: 14px;
  height: 14px;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--berry);
  color: #fff;
}

.experience-strip > * {
  position: relative;
  min-width: 0;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(20px, 3.2vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-strip .glance-icon {
  position: absolute;
  top: 20px;
  right: 46px;
  width: 18px;
  height: 18px;
  color: #ffd9d2;
  opacity: 0.94;
}

.experience-strip > *::after {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #ffd9d2;
  box-shadow: 0 0 0 5px rgba(255, 217, 210, 0.09);
  animation: experience-pulse 2.8s ease-out infinite;
}

.experience-strip > *:nth-child(2)::after {
  animation-delay: -0.7s;
}

.experience-strip > *:nth-child(3)::after {
  animation-delay: -1.4s;
}

.experience-strip > *:nth-child(4)::after {
  animation-delay: -2.1s;
}

.experience-strip > *:last-child {
  border-right: 0;
}

.experience-strip a {
  text-decoration: none;
}

.experience-strip .glance-label {
  margin-bottom: 3px;
  color: #f2c9d4;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 400;
  line-height: 1.2;
}

.motion-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--pink);
}

.motion-marquee-track {
  width: max-content;
  display: flex;
  transform: translate3d(0, 0, 0);
  animation: marquee-flow 28s linear infinite;
  will-change: transform;
}

.motion-marquee-group {
  margin: 0;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: 16px clamp(28px, 4vw, 64px) 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1;
  white-space: nowrap;
}

.motion-marquee-group i {
  color: #fff6f0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.58em;
  font-style: normal;
}

.section-shell {
  width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.about {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(76px, 10vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 8vw, 112px);
}

.about-copy {
  max-width: 570px;
}

.about-copy > p:not(.section-kicker) {
  margin-bottom: 24px;
  color: #4e4744;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  text-wrap: pretty;
}

.service-notes {
  margin: 30px 0 31px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.service-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px 11px 0;
  color: var(--berry-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-icon {
  width: 17px;
  height: 17px;
  color: var(--berry);
  opacity: 0.9;
}

.service-notes li:not(:last-child)::after {
  margin-left: 17px;
  color: var(--pink);
  content: "•";
}

.ratio-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  background: var(--paper-warm);
}

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

.about-visual {
  position: relative;
  width: min(100%, 590px);
  min-height: 700px;
  justify-self: end;
}

.about-media {
  width: min(82%, 500px);
  margin: 0;
  justify-self: end;
  margin-left: auto;
  box-shadow: 12px 14px 0 rgba(134, 26, 59, 0.12);
  animation: about-main-float 9s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.about-detail {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: min(43%, 230px);
  margin: 0;
  background: var(--ink);
  color: #fff;
  animation: about-detail-float 6.5s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.about-detail img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-detail figcaption {
  padding: 13px 15px 15px;
  color: #f3dde3;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-section,
.gallery-section,
.reviews-section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.menu-section {
  position: relative;
  overflow: hidden;
  background: var(--pink);
}

.menu-section::before,
.menu-section::after {
  position: absolute;
  width: clamp(240px, 34vw, 520px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.36;
  will-change: transform, opacity;
}

.menu-section::before {
  top: -19%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 244, 234, 0.78), rgba(255, 244, 234, 0) 68%);
  animation: menu-orb-a 10s var(--ease-in-out) infinite alternate;
}

.menu-section::after {
  bottom: -27%;
  left: -10%;
  background: radial-gradient(circle, rgba(134, 26, 59, 0.32), rgba(134, 26, 59, 0) 70%);
  animation: menu-orb-b 13s var(--ease-in-out) infinite alternate;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5.5vw, 64px);
}

.section-heading p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.menu-section .section-heading p {
  color: var(--berry-deep);
}

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

.menu-card {
  min-width: 0;
  border: 1px solid rgba(92, 16, 41, 0.2);
  background: rgba(255, 250, 246, 0.84);
  box-shadow: 0 0 0 rgba(74, 21, 38, 0);
}

.menu-media img {
  transform: scale(1.025);
  animation: menu-image-drift 13s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.menu-card:nth-child(2) .menu-media img {
  animation-delay: -4.2s;
  animation-direction: alternate-reverse;
}

.menu-card:nth-child(3) .menu-media img {
  animation-delay: -8.4s;
}

.menu-card-body {
  padding: 27px 24px 29px;
}

.menu-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
}

.menu-icon {
  width: 23px;
  height: 23px;
  color: var(--berry);
  opacity: 0.9;
}

.menu-intro {
  min-height: 3.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.menu-items {
  margin: 20px 0 0;
}

.menu-items > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.menu-items dt,
.menu-items dd {
  margin: 0;
}

.menu-items dt {
  font-weight: 700;
}

.menu-items dd {
  font-weight: 800;
  white-space: nowrap;
}

.menu-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-footer p {
  margin: 0;
  color: var(--berry-deep);
  font-size: 0.8rem;
}

.feature-dish {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: stretch;
  gap: 0;
  background: var(--berry-deep);
  color: #fff;
}

.feature-media {
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.feature-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.daybook-card picture {
  display: block;
  width: 100%;
  height: auto;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
  transform: scale(1.035);
  animation: feature-image-drift 16s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.feature-copy-wrap {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(58px, 8vw, 116px) clamp(34px, 7vw, 104px);
}

.feature-copy-wrap::before {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 218, 214, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(228, 165, 156, 0.26), rgba(228, 165, 156, 0) 62%);
  opacity: 0.78;
  animation: feature-glow-orbit 12s var(--ease-in-out) infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}

.feature-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.feature-copy p:not(.feature-price) {
  color: #eadbe0;
  font-size: 1.05rem;
  text-wrap: pretty;
}

.feature-label {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pink) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-label .icon {
  width: 16px;
  height: 16px;
}

.feature-details {
  margin: 31px 0 33px;
}

.feature-details > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-details dt,
.feature-details dd {
  margin: 0;
}

.feature-details dt {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-details dd {
  color: #fff;
}

.feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.feature-price {
  margin: 0;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.daybook-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 146px) 0;
  background: var(--paper);
}

.daybook-section::before {
  position: absolute;
  top: 8%;
  right: -8%;
  width: clamp(220px, 28vw, 440px);
  aspect-ratio: 1;
  content: "";
  border: clamp(28px, 4vw, 58px) solid rgba(228, 165, 156, 0.22);
  border-radius: 50%;
  animation: daybook-ring-drift 14s var(--ease-in-out) infinite alternate;
  pointer-events: none;
  will-change: transform;
}

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

.daybook-heading {
  max-width: 780px;
  margin: 0 0 clamp(42px, 6vw, 72px);
}

.daybook-heading p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.daybook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(16px, 2.2vw, 28px);
}

.daybook-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
  color: #fff;
}

.daybook-card::after {
  position: absolute;
  z-index: 1;
  inset: -35%;
  content: "";
  transform: translate3d(-72%, 0, 0) rotate(18deg);
  background: linear-gradient(90deg, transparent 42%, rgba(255, 240, 229, 0.2) 50%, transparent 58%);
  animation: card-light-sweep 9s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.daybook-card:nth-child(2)::after {
  animation-delay: -3s;
}

.daybook-card:nth-child(3)::after {
  animation-delay: -6s;
}

.daybook-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.daybook-card-tall img {
  aspect-ratio: 4 / 5;
}

.gallery-section {
  background: var(--ink);
  color: var(--white);
}

.gallery-section .section-heading p {
  color: #cfc3be;
}

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

.gallery-trigger {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--paper-warm);
  cursor: zoom-in;
  transition: transform 180ms var(--ease-out), box-shadow 220ms ease;
}

.gallery-trigger::before {
  position: absolute;
  z-index: 1;
  inset: -36%;
  content: "";
  transform: translate3d(-76%, 0, 0) rotate(17deg);
  background: linear-gradient(90deg, transparent 43%, rgba(255, 246, 237, 0.22) 50%, transparent 57%);
  animation: gallery-light-sweep 11s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.gallery-trigger:nth-child(2)::before,
.gallery-trigger:nth-child(5)::before {
  animation-delay: -3.6s;
}

.gallery-trigger:nth-child(3)::before,
.gallery-trigger:nth-child(6)::before {
  animation-delay: -7.2s;
}

.gallery-trigger::after {
  position: absolute;
  right: 13px;
  top: 13px;
  bottom: auto;
  width: 37px;
  height: 37px;
  display: grid;
  content: "";
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(30, 27, 26, 0.58);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  z-index: 3;
  transition: background-color 180ms ease, transform 180ms var(--ease-out);
}

.gallery-open-icon {
  position: absolute;
  z-index: 4;
  top: 23px;
  right: 23px;
  width: 15px;
  height: 15px;
  color: #fff;
  pointer-events: none;
  transition: transform 180ms var(--ease-out);
}

.gallery-trigger .ratio-portrait img {
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}

.reviews-section::before,
.reviews-section::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.reviews-section::before {
  top: 12%;
  right: 6%;
  width: clamp(90px, 11vw, 160px);
  aspect-ratio: 1;
  border: 1px solid rgba(134, 26, 59, 0.22);
  box-shadow: 0 0 0 18px rgba(134, 26, 59, 0.05), 0 0 0 42px rgba(134, 26, 59, 0.035);
  animation: review-ring-float 8s var(--ease-in-out) infinite alternate;
}

.reviews-section::after {
  bottom: 4%;
  left: 7%;
  width: 14px;
  aspect-ratio: 1;
  background: var(--berry);
  box-shadow: 28px 11px 0 rgba(134, 26, 59, 0.34), 54px -13px 0 rgba(228, 165, 156, 0.9);
  animation: review-dots-float 5s var(--ease-in-out) infinite alternate;
}

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

.reviews-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.reviews-heading h2 {
  margin-bottom: 18px;
}

.rating-summary {
  margin: 0;
  color: var(--muted);
}

.rating-summary strong {
  margin-right: 8px;
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
}

.review-stack {
  display: grid;
  gap: 16px;
}

.review {
  position: relative;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.75);
}

.review-featured {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: var(--berry);
  background: var(--berry);
  color: #fff;
}

.review-featured::before {
  position: absolute;
  top: -42px;
  right: 12px;
  content: "“";
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10rem, 18vw, 17rem);
  line-height: 1;
  animation: review-quote-float 7s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}

.review-featured > * {
  position: relative;
  z-index: 1;
}

.review-featured .stars,
.review-featured .text-link {
  color: #ffd6df;
}

.review-featured .review-author img {
  border-color: rgba(255, 255, 255, 0.4);
}

.review-author {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(134, 26, 59, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.review-author h3 {
  margin: 0 0 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.stars {
  color: var(--berry);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.review blockquote {
  margin: 28px 0 23px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.48rem);
  line-height: 1.45;
}

.visit-section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: stretch;
  gap: clamp(38px, 7vw, 94px);
}

.visit-details {
  align-self: center;
}

.visit-details address {
  margin: 0 0 26px;
  color: #4e4744;
  font-style: normal;
}

.hours {
  margin-bottom: 30px;
}

.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.hours strong {
  text-align: right;
  white-space: nowrap;
}

.visit-services {
  margin: 0 0 31px;
}

.visit-services > div {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.visit-services dt,
.visit-services dd {
  margin: 0;
}

.visit-services dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  opacity: 0.9;
}

.visit-services dd {
  color: #4e4744;
  font-size: 0.9rem;
}

.map-wrap {
  min-height: 540px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

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

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(130px, 0.45fr) minmax(200px, 0.65fr) auto;
  align-items: center;
  gap: 40px;
  background: var(--ink);
  color: var(--white);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 3px;
  content: "";
  transform: translate3d(-120%, 0, 0);
  background: linear-gradient(90deg, transparent, var(--pink) 38%, #fff7ef 62%, transparent);
  animation: footer-light-flow 8s linear infinite;
  pointer-events: none;
  will-change: transform;
}

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

.footer-brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-brand span {
  color: #bbb0ac;
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a,
.footer-hours span {
  color: #e8ded9;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-link-icon {
  width: 14px;
  height: 14px;
  color: var(--pink);
  opacity: 0.9;
}

.footer-links strong,
.footer-hours strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--pink);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-heading-icon {
  width: 14px;
  height: 14px;
  color: var(--pink);
}

.footer-hours {
  display: grid;
  gap: 7px;
}

.footer-hours span {
  font-size: 0.86rem;
}

.lightbox {
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #171413;
  color: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: opacity 180ms ease, transform 240ms var(--ease-out), display 180ms allow-discrete, overlay 180ms allow-discrete;
  transition-behavior: allow-discrete;
}

.lightbox[open] {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@starting-style {
  .lightbox[open] {
    transform: translateY(8px) scale(0.985);
    opacity: 0;
  }
}

.lightbox::backdrop {
  background: rgba(15, 12, 12, 0.88);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 180ms ease, display 180ms allow-discrete, overlay 180ms allow-discrete;
}

.lightbox[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .lightbox[open]::backdrop {
    opacity: 0;
  }
}

.lightbox-controls {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
}

.lightbox-close,
.lightbox-nav {
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(23, 20, 19, 0.76);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  padding: 0 13px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-stage {
  position: relative;
  touch-action: none;
  min-height: min(780px, calc(100vh - 30px));
  display: grid;
  place-items: center;
  padding: 58px 70px 28px;
}

.lightbox-stage figure {
  max-width: 100%;
  margin: 0;
  text-align: center;
}

#lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  margin: 0 auto;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 170ms var(--ease-out), opacity 140ms ease;
  will-change: transform;
}

#lightbox-caption {
  margin-top: 16px;
  color: #e9ddd8;
}

.lightbox-count {
  margin: 8px 0 0;
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  overflow: hidden;
  transform: translateY(-50%);
  color: transparent;
  font-size: 0;
}

.lightbox-nav::before {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-prev::before {
  content: "‹";
}

.lightbox-next {
  right: 10px;
}

.lightbox-next::before {
  content: "›";
}

.js .reveal {
  transform: none;
  opacity: 1;
  filter: none;
  transition: opacity 660ms ease, transform 760ms var(--ease-out), filter 660ms ease, box-shadow 220ms ease;
}

.js .reveal:not(.is-visible) {
  transform: translateY(28px) scale(0.985);
  opacity: 0;
  filter: blur(4px) saturate(0.86);
}

.js .menu-card:nth-child(2),
.js .review-stack .review:nth-child(1),
.js .gallery-trigger:nth-child(2),
.js .daybook-card:nth-child(2) {
  transition-delay: 60ms;
}

.js .menu-card:nth-child(3),
.js .review-stack .review:nth-child(2),
.js .gallery-trigger:nth-child(3),
.js .daybook-card:nth-child(3) {
  transition-delay: 120ms;
}

.js .gallery-trigger:nth-child(4) {
  transition-delay: 180ms;
}

.js .gallery-trigger:nth-child(5) {
  transition-delay: 240ms;
}

.js .gallery-trigger:nth-child(6) {
  transition-delay: 300ms;
}

.hero-content {
  animation: hero-arrival 900ms var(--ease-out) both;
}

@keyframes hero-arrival {
  from {
    transform: translateY(26px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes hero-cinemagraph {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.7%, -0.45%, 0); }
}

@keyframes hero-light-drift {
  from { transform: translate3d(-5%, -2%, 0) scale(1.08); opacity: 0.48; }
  to { transform: translate3d(5%, 3%, 0) scale(1.14); opacity: 0.86; }
}

@keyframes hero-orbit-float {
  from { transform: translate3d(0, -7px, 0) rotate(-1.2deg); }
  to { transform: translate3d(0, 9px, 0) rotate(1.2deg); }
}

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

@keyframes experience-pulse {
  0%, 38%, 100% { transform: scale(0.72); opacity: 0.46; }
  58% { transform: scale(1.22); opacity: 1; }
}

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

@keyframes about-main-float {
  from { transform: translate3d(0, -4px, 0); }
  to { transform: translate3d(0, 6px, 0); }
}

@keyframes about-detail-float {
  from { transform: translate3d(-2px, 5px, 0) rotate(-0.8deg); }
  to { transform: translate3d(4px, -8px, 0) rotate(0.7deg); }
}

@keyframes menu-orb-a {
  from { transform: translate3d(-4%, 2%, 0) scale(0.92); opacity: 0.25; }
  to { transform: translate3d(8%, 10%, 0) scale(1.1); opacity: 0.48; }
}

@keyframes menu-orb-b {
  from { transform: translate3d(0, 4%, 0) scale(0.9); opacity: 0.24; }
  to { transform: translate3d(14%, -8%, 0) scale(1.08); opacity: 0.44; }
}

@keyframes menu-image-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-1%, -0.8%, 0); }
}

@keyframes feature-image-drift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(1%, -0.65%, 0); }
}

@keyframes feature-glow-orbit {
  from { transform: translate3d(55%, -42%, 0) scale(0.82); opacity: 0.45; }
  to { transform: translate3d(-9%, 43%, 0) scale(1.12); opacity: 0.9; }
}

@keyframes daybook-ring-drift {
  from { transform: translate3d(0, -5%, 0) rotate(-8deg) scale(0.9); }
  to { transform: translate3d(-18%, 18%, 0) rotate(18deg) scale(1.08); }
}

@keyframes card-light-sweep {
  0%, 16% { transform: translate3d(-76%, 0, 0) rotate(18deg); opacity: 0; }
  27% { opacity: 1; }
  42%, 100% { transform: translate3d(76%, 0, 0) rotate(18deg); opacity: 0; }
}

@keyframes gallery-light-sweep {
  0%, 23% { transform: translate3d(-78%, 0, 0) rotate(17deg); opacity: 0; }
  31% { opacity: 0.9; }
  44%, 100% { transform: translate3d(78%, 0, 0) rotate(17deg); opacity: 0; }
}

@keyframes review-ring-float {
  from { transform: translate3d(0, -7px, 0) rotate(0deg) scale(0.94); opacity: 0.52; }
  to { transform: translate3d(-24px, 18px, 0) rotate(34deg) scale(1.08); opacity: 0.92; }
}

@keyframes review-dots-float {
  from { transform: translate3d(-8px, 5px, 0) rotate(-8deg); }
  to { transform: translate3d(15px, -12px, 0) rotate(12deg); }
}

@keyframes review-quote-float {
  from { transform: translate3d(0, -5px, 0) rotate(-2deg); }
  to { transform: translate3d(-9px, 11px, 0) rotate(3deg); }
}

@keyframes footer-light-flow {
  0%, 10% { transform: translate3d(-120%, 0, 0); opacity: 0; }
  24% { opacity: 1; }
  60%, 100% { transform: translate3d(340%, 0, 0); opacity: 0; }
}

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

  .desktop-social a:hover,
  .footer-social a:hover {
    transform: translateY(-2px);
    border-color: var(--pink);
    background: rgba(228, 165, 156, 0.15);
  }

  .menu-toggle:hover {
    border-color: var(--pink);
    background: rgba(228, 165, 156, 0.12);
  }

  .button:hover {
    transform: translateY(-2px);
    border-color: var(--berry-deep);
    background: var(--berry-deep);
    box-shadow: 0 10px 22px rgba(92, 16, 41, 0.18);
  }

  .button:hover .icon-arrow-up-right,
  .text-link:hover .icon-arrow-up-right {
    transform: translate(2px, -2px);
  }

  .button-light:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--ink);
  }

  .button-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .button-outline:hover {
    color: #fff;
  }

  .text-link:hover {
    color: var(--berry-deep);
    text-decoration-color: currentColor;
  }

  .menu-card.is-visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(82, 20, 39, 0.15);
  }

  .gallery-trigger.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  }

  .gallery-trigger:hover .ratio-portrait img {
    transform: scale(1.045);
    filter: saturate(1.08);
  }

  .gallery-trigger:hover::after {
    transform: translateY(-3px);
    background: var(--berry);
  }

  .gallery-trigger:hover .gallery-open-icon {
    transform: translateY(-3px) rotate(90deg);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    border-color: var(--pink);
    background: var(--berry);
  }
}

.button:active,
.menu-toggle:active,
.desktop-social a:active,
.footer-social a:active,
.js .gallery-trigger.is-visible:active,
.lightbox-close:active {
  transform: scale(0.97);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.97);
}

.motion-zone:not(.is-motion-active),
.motion-zone:not(.is-motion-active)::before,
.motion-zone:not(.is-motion-active)::after,
.motion-zone:not(.is-motion-active) *,
.motion-zone:not(.is-motion-active) *::before,
.motion-zone:not(.is-motion-active) *::after,
body.is-page-hidden *,
body.is-page-hidden *::before,
body.is-page-hidden *::after {
  animation-play-state: paused !important;
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 34px, 760px);
  }

  .desktop-nav,
  .desktop-social {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-orbit-shell {
    right: clamp(-24px, 1vw, 12px);
    width: clamp(210px, 34vw, 290px);
  }

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

  .experience-strip > *:nth-child(2) {
    border-right: 0;
  }

  .experience-strip > *:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .feature-dish,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: clamp(500px, 72vw, 700px);
  }

  .feature-copy-wrap {
    padding: 68px max(34px, calc((100vw - 760px) / 2));
  }

  .feature-copy {
    max-width: 630px;
  }

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

  .site-footer {
    grid-template-columns: minmax(240px, 1.2fr) minmax(150px, 0.8fr) auto;
    align-items: start;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-social {
    justify-self: end;
  }

  .footer-hours {
    grid-column: 2 / 3;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
    --content: calc(100% - 32px);
  }

  .site-header {
    gap: 8px;
    padding-right: 28px;
    padding-left: 28px;
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(16, 14, 13, 0.52), rgba(16, 14, 13, 0));
    box-shadow: none;
  }

  .site-header.is-scrolled {
    border-bottom-color: rgba(228, 165, 156, 0.32);
    background: rgba(48, 46, 45, 0.94);
    box-shadow: 0 14px 34px rgba(20, 14, 16, 0.18);
  }

  .scroll-progress {
    display: none;
  }

  .brand-link {
    flex: 1 1 auto;
    gap: 12px;
  }

  .brand-link img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(20, 14, 16, 0.28);
  }

  .brand-link span {
    min-width: 0;
    flex: 1 1 auto;
    color: #fff;
    font-size: clamp(0.68rem, 3.1vw, 0.88rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .desktop-social {
    margin-left: auto;
    display: flex;
    flex: 0 0 auto;
    gap: 2px;
  }

  .desktop-social a {
    width: 24px;
    height: 38px;
    border-color: transparent;
    background: transparent;
  }

  .desktop-social svg {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    width: 40px;
    height: 44px;
    margin-left: 0;
    border-color: rgba(255, 255, 255, 0.64);
    background: rgba(15, 13, 12, 0.1);
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-image {
    object-position: 56% 48%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(15, 13, 12, 0.05) 0%, rgba(15, 13, 12, 0.03) 34%, rgba(15, 13, 12, 0.3) 58%, rgba(15, 13, 12, 0.82) 100%),
      linear-gradient(150deg, rgba(15, 13, 12, 0.08) 5%, rgba(15, 13, 12, 0.15) 52%, rgba(15, 13, 12, 0.28) 100%);
  }

  .hero-orbit-shell {
    top: clamp(106px, 17vw, 144px);
    right: clamp(-34px, -2vw, -12px);
    width: clamp(176px, 42vw, 224px);
    opacity: 0.72;
  }

  .hero-orbit-art {
    filter: drop-shadow(0 12px 20px rgba(32, 14, 20, 0.18));
    opacity: 0.86;
  }

  .hero-orbit-label {
    width: 42%;
    border-color: rgba(255, 255, 255, 0.66);
    background: rgba(35, 28, 28, 0.18);
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-orbit-label strong {
    font-size: 1.75rem;
  }

  .hero-orbit-label small {
    margin-top: 5px;
    font-size: 0.5rem;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 28px calc(54px + env(safe-area-inset-bottom));
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.19em;
  }

  h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(3.1rem, 15.6vw, 5rem);
    letter-spacing: -0.025em;
    line-height: 0.91;
  }

  .hero-content h1 span {
    display: block;
  }

  .hero-copy {
    max-width: 350px;
    margin-bottom: 30px;
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    line-height: 1.46;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    justify-content: space-between;
    padding: 16px 17px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-actions .button .icon {
    width: 18px;
    height: 18px;
  }

  .experience-strip > * {
    min-height: 92px;
    padding: 17px 16px;
  }

  .experience-strip .glance-icon {
    top: 17px;
    right: 42px;
  }

  .experience-strip strong {
    font-size: clamp(0.92rem, 4vw, 1.08rem);
  }

  .motion-marquee-group {
    gap: 26px;
    padding: 13px 26px 13px 0;
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .about,
  .visit-section,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .about,
  .visit-section {
    gap: 38px;
  }

  .about-visual {
    width: 100%;
    min-height: 540px;
    justify-self: stretch;
  }

  .about-media {
    width: 88%;
    justify-self: stretch;
  }

  .about-detail {
    bottom: 0;
    width: min(47%, 180px);
  }

  .about-detail figcaption {
    padding: 11px 12px 13px;
    font-size: 0.69rem;
  }

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

  .menu-card-body {
    padding: 25px 21px 27px;
  }

  .menu-intro {
    min-height: 0;
  }

  .menu-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-footer .button {
    width: 100%;
  }

  .feature-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .feature-copy-wrap {
    padding: 58px 16px 64px;
  }

  .feature-copy-wrap::before {
    width: 105%;
  }

  .feature-copy {
    width: 100%;
    max-width: none;
  }

  .feature-details > div {
    grid-template-columns: 74px 1fr;
  }

  .feature-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-footer .button {
    width: 100%;
  }

  .daybook-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
  }

  .daybook-card img,
  .daybook-card-tall img {
    aspect-ratio: 4 / 3;
  }

  .daybook-section::before {
    top: 4%;
    right: -36%;
    width: 300px;
  }

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

  .reviews-layout {
    gap: 16px;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-actions .button {
    width: 100%;
  }

  .visit-services > div {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .visit-services dt {
    align-items: flex-start;
  }

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

  .site-footer {
    padding: 48px 16px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .footer-links,
  .footer-hours,
  .footer-social {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .lightbox-stage {
    padding: 58px 14px 82px;
  }

  #lightbox-image {
    max-height: calc(100vh - 210px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .lightbox-nav:active {
    transform: scale(0.97);
  }
}

@media (max-width: 410px) {
  .hero-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: 100%;
    padding-right: 13px;
    padding-left: 13px;
  }

  .hero-orbit-shell {
    top: 106px;
    right: -48px;
    width: 180px;
  }

  .hours > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hours strong {
    text-align: left;
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .experience-strip > * {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .experience-strip .glance-icon {
    top: 15px;
    right: 42px;
  }

  .experience-strip > *:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-link {
    gap: 8px;
  }

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

  .brand-link span {
    max-width: 112px;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
  }

  .desktop-social {
    gap: 2px;
  }

  .desktop-social a {
    width: 22px;
  }

  .desktop-social svg {
    width: 19px;
    height: 19px;
  }

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

  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-actions .button {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 0.67rem;
    letter-spacing: 0.06em;
  }
}

@media (min-width: 901px) {
  .site-header {
    transform: translateY(0);
    border-bottom-color: rgba(255, 255, 255, 0.18);
    background: rgba(48, 46, 45, 0.78);
    box-shadow: none;
    pointer-events: auto;
    transition: transform 360ms var(--ease-out), background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  }

  .site-header.is-scrolled {
    transform: translateY(0);
    border-bottom-color: rgba(228, 165, 156, 0.34);
    background: rgba(48, 46, 45, 0.96);
    box-shadow: 0 14px 34px rgba(20, 14, 16, 0.18);
    pointer-events: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 50% 48%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(15, 13, 12, 0.2) 0%, rgba(15, 13, 12, 0.08) 38%, rgba(15, 13, 12, 0.16) 58%, rgba(15, 13, 12, 0.72) 100%),
      linear-gradient(90deg, rgba(15, 13, 12, 0.22) 0%, rgba(15, 13, 12, 0.02) 55%, rgba(15, 13, 12, 0.16) 100%);
  }

  .hero-orbit-shell {
    top: clamp(76px, 10vh, 106px);
    right: clamp(34px, 4.2vw, 72px);
    width: clamp(220px, 17vw, 290px);
    opacity: 0.7;
  }

  .hero-orbit-art {
    filter: drop-shadow(0 14px 24px rgba(32, 14, 20, 0.18));
    opacity: 0.84;
  }

  .hero-orbit-label {
    background: rgba(35, 28, 28, 0.24);
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-content {
    width: calc(100% - clamp(192px, 13.5vw, 224px));
    max-width: none;
    min-height: clamp(190px, 25vh, 260px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 auto clamp(52px, 8.2vh, 78px);
    padding-top: 0;
  }

  .hero-kicker {
    margin-bottom: clamp(30px, 3vw, 50px);
    color: #fff0ea;
    letter-spacing: 0.2em;
  }

  .hero-content h1 {
    max-width: min(74vw, calc(100% - 420px), 1120px);
    margin-bottom: 0;
    font-size: clamp(4rem, 6.15vw, 7.4rem);
    line-height: 0.86;
    letter-spacing: -0.028em;
  }

  .hero-content h1 span {
    display: inline;
  }

  .hero-copy {
    position: absolute;
    right: 0;
    bottom: clamp(96px, 10.2vh, 112px);
    width: min(420px, 32vw);
    max-width: none;
    margin: 0;
    font-size: clamp(1.05rem, 1.55vw, 1.34rem);
    line-height: 1.45;
    text-align: right;
  }

  .hero-actions {
    position: absolute;
    right: 0;
    bottom: 0;
    justify-content: flex-end;
    gap: 14px;
  }

  .hero-actions .button {
    min-width: 190px;
    min-height: 60px;
    padding: 18px 22px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .desktop-nav,
  .desktop-social {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-content {
    width: calc(100% - 192px);
  }

  .hero-content h1 {
    max-width: calc(100% - 420px);
    font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  }

  .hero-copy {
    width: min(360px, 34vw);
    font-size: clamp(0.94rem, 1.5vw, 1.08rem);
  }

  .hero-actions .button {
    min-width: 160px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-orbit-shell {
    right: 28px;
    width: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }

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

  .scroll-progress {
    display: none;
  }

  .hero-image,
  .hero::before,
  .hero-content,
  .hero-orbit-shell,
  .hero-orbit-float,
  .hero-orbit-art,
  .hero-orbit-rotor,
  .about-media,
  .about-detail,
  .menu-media img,
  .feature-media img,
  .feature-copy-wrap::before,
  .daybook-section::before,
  .daybook-card::after,
  .gallery-trigger::before,
  .reviews-section::before,
  .reviews-section::after,
  .review-featured::before,
  .site-footer::before,
  .motion-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .motion-marquee-group:nth-child(2) {
    display: none;
  }
}
