:root {
  --paper: #f3f0e8;
  --paper-bright: #faf8f2;
  --ink: #151515;
  --muted: #686760;
  --line: rgba(21, 21, 21, 0.22);
  --blue: #1246d8;
  --white: #ffffff;
  --header-height: 70px;
  --page-pad: clamp(1rem, 4vw, 4rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --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);
}

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

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

.icon {
  display: inline-block;
  flex: none;
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3,
.wordmark,
.footer-wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom-color: rgba(21, 21, 21, 0.13);
  background: rgba(243, 240, 232, 0.985);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 32px rgba(21, 21, 21, 0.08);
}

.site-header > .wordmark .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0, 0, 0, 0.32));
}

.site-header.is-scrolled > .wordmark .brand-logo {
  filter: none;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(7.5rem, 9vw, 8.75rem);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.4rem);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.45rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 150ms var(--ease-out);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .fill-icon {
  fill: currentColor;
  stroke: none;
}

.header-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0 1rem;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 150ms var(--ease-out);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle .icon {
  width: 26px;
  height: 26px;
  margin: auto;
}

.mobile-menu {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 1.3rem var(--page-pad) 1.75rem;
  color: var(--white);
  background: var(--blue);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms var(--ease-drawer);
}

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

.mobile-menu.is-instant,
.mobile-menu.is-instant nav a,
.lightbox.is-instant,
.lightbox.is-instant figure {
  transition-duration: 0s !important;
}

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

.mobile-menu .brand-logo {
  filter: brightness(0) invert(1);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0 0.25rem;
  color: inherit;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  margin: auto 0;
}

.mobile-menu nav a {
  padding: 0.15rem 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 16vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

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

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

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

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

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

.mobile-menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.mobile-menu-bottom p {
  font-size: 0.8rem;
  text-align: right;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #5e5e5e;
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: hero-drift 16s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-mask {
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.30));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-height) + 3rem) var(--page-pad) clamp(9.5rem, 17vh, 11.5rem);
}

.solar-seal-shell {
  position: absolute;
  z-index: 2;
  top: clamp(8rem, 19vh, 13rem);
  right: clamp(1rem, 6vw, 6rem);
  width: clamp(8.5rem, 15vw, 12rem);
  aspect-ratio: 1;
  pointer-events: none;
  perspective: 700px;
  transform-style: preserve-3d;
  will-change: transform;
}

.solar-seal {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.08);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05), inset 0 0 30px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  animation: seal-float 5.8s var(--ease-in-out) infinite;
}

.solar-seal-ring {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
  animation: orbit-spin 20s linear infinite;
}

.solar-seal-ring text {
  fill: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8.3px;
  font-weight: 700;
  letter-spacing: 1.45px;
}

.solar-seal-core {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1;
  animation: core-breathe 3.2s var(--ease-in-out) infinite;
}

.solar-seal-orbit {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  animation: orbit-spin 7s linear infinite reverse;
}

.solar-seal-orbit::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: inherit;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(4.25rem, 13vw, 6rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 34rem;
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  line-height: 1.35;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--ink);
  background: rgba(243, 240, 232, 0.96);
  backdrop-filter: blur(14px);
}

.hero-meta p {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  padding: 1rem var(--page-pad);
  border-right: 1px solid var(--line);
}

.hero-meta p:last-child {
  border-right: 0;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta .icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--blue);
}

.hero-meta strong {
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 150ms var(--ease-out);
}

.button:active,
.header-directions:active,
.social-links a:active,
.mobile-menu-close:active,
.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.97);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
}

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

.brand-marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-flow 22s linear infinite;
  will-change: transform;
}

.brand-marquee p {
  flex: none;
  padding: 0.8rem 1.1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
}

.brand-marquee span {
  display: inline-block;
  margin: 0 0.8rem;
  color: #8eabff;
  animation: sparkle-turn 4s linear infinite;
}

.section {
  position: relative;
  padding: var(--section-space) var(--page-pad);
}

.about {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-copy {
  max-width: 47rem;
}

.about-copy .lead {
  max-width: 34ch;
  margin-top: 2rem;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.35;
}

.about-copy > p:not(.lead) {
  max-width: 42ch;
  margin-top: 1.25rem;
  color: var(--muted);
}

.about-facts {
  display: grid;
  gap: 0;
  max-width: 36rem;
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.about-facts p {
  display: grid;
  grid-template-columns: 1.1rem minmax(5.5rem, 0.45fr) 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.about-facts strong {
  color: var(--blue);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.about-facts .icon {
  width: 1rem;
  height: 1rem;
  color: var(--blue);
}

.about-facts span {
  color: var(--muted);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  min-height: 44px;
  margin-top: 1.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 150ms var(--ease-out);
}

.text-link > span {
  transition: transform 180ms var(--ease-out);
}

.text-link .icon {
  width: 0.9rem;
  height: 0.9rem;
}

.text-link:active {
  transform: scale(0.98);
}

.portrait-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d9d7d0;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-figure {
  grid-row: 1 / 3;
  width: 100%;
}

.about-visuals {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(120px, 0.68fr);
  grid-template-rows: auto auto;
  gap: clamp(0.65rem, 1.3vw, 1.1rem);
  align-items: start;
}

.about-detail {
  overflow: hidden;
  background: #d9d7d0;
}

.about-detail-square {
  aspect-ratio: 1;
}

.about-detail-tall {
  aspect-ratio: 4 / 5;
}

.about-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-detail-square {
  animation: detail-float-a 6.5s var(--ease-in-out) infinite;
}

.about-detail-tall {
  animation: detail-float-b 7.4s var(--ease-in-out) 0.8s infinite;
}

.about-float-mark {
  position: absolute;
  right: 7%;
  bottom: 6%;
  width: clamp(5.5rem, 9vw, 7.5rem);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.08rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(18, 70, 216, 0.26);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(-8deg);
  animation: badge-float 5s var(--ease-in-out) infinite;
}

.about-float-mark span:nth-child(2) {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.menu-section {
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.menu-section > :not(.menu-atmosphere) {
  position: relative;
  z-index: 1;
}

.menu-atmosphere {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -12%;
  width: min(68vw, 58rem);
  aspect-ratio: 1;
  color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.72;
  letter-spacing: -0.06em;
  transform: rotate(-12deg);
  animation: atmosphere-orbit 24s linear infinite;
}

.menu-atmosphere::before,
.menu-atmosphere::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.menu-atmosphere::before {
  inset: 14%;
}

.menu-atmosphere::after {
  inset: 31%;
  background: rgba(255, 255, 255, 0.035);
}

.menu-atmosphere span {
  position: absolute;
  top: 30%;
  left: -7%;
  white-space: nowrap;
}

.menu-atmosphere span:last-child {
  top: 55%;
  left: 28%;
}

.menu-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.menu-heading-copy {
  display: grid;
  gap: 0.8rem;
  align-self: end;
}

.menu-heading-copy p {
  max-width: 37ch;
  color: rgba(255, 255, 255, 0.78);
}

.menu-grid {
  display: grid;
  gap: 2.5rem 1rem;
}

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

.menu-visual {
  background: #b8b8b8;
}

.menu-visual img {
  transform: scale(1.015);
  transition: transform 650ms var(--ease-out), filter 280ms ease;
}

.menu-item-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.menu-item-copy > span {
  padding-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu-item-copy p {
  grid-column: 2;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.menu-scenes {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.menu-scene {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.menu-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.menu-scene-wide img {
  aspect-ratio: 3 / 2;
}

.menu-scene-tall img {
  aspect-ratio: 4 / 5;
}

.menu-scene figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-scene figcaption span:last-child {
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

.menu-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 3rem;
}

.menu-action p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.day-section {
  overflow: hidden;
  padding-block: 4rem;
  background: var(--paper);
}

.day-section > :not(.day-sun) {
  position: relative;
  z-index: 1;
}

.day-sun {
  position: absolute;
  z-index: 0;
  top: 4rem;
  left: -42vw;
  width: min(100vw, 26rem);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 70, 216, 0.22);
  border-radius: 50%;
  animation: orbit-spin 34s linear infinite;
}

.day-sun::before,
.day-sun::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.day-sun::before {
  inset: 12%;
  border: 1px dashed rgba(18, 70, 216, 0.24);
}

.day-sun::after {
  inset: 38%;
  background: var(--blue);
  opacity: 0.92;
  animation: core-breathe 4.6s var(--ease-in-out) infinite;
}

.day-sun span {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(18, 70, 216, 0.12);
}

.day-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
}

.day-heading p {
  max-width: 41ch;
  color: var(--muted);
  text-wrap: pretty;
}

.day-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    'bar bar'
    'table takeaway';
  gap: 1rem 0.75rem;
  align-items: start;
}

.day-photo {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  transition: transform 300ms var(--ease-out);
}

.day-photo-bar {
  grid-area: bar;
}

.day-photo-table {
  grid-area: table;
}

.day-photo-takeaway {
  grid-area: takeaway;
}

.day-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: filter 240ms ease;
}

.day-photo picture {
  display: block;
  width: 100%;
  min-height: 0;
}

.day-photo-bar img {
  aspect-ratio: 16 / 9;
}

.day-photo-table img,
.day-photo-takeaway img {
  aspect-ratio: 4 / 3;
}

.day-photo figcaption {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.gallery-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-heading > p:last-child {
  color: var(--muted);
  align-self: end;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  transition: transform 220ms var(--ease-out);
}

.gallery-open-icon {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.92;
  transform: scale(0.96);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
  pointer-events: none;
}

.gallery-open-icon .icon {
  width: 1rem;
  height: 1rem;
}

.gallery-media {
  display: block;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

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

.gallery-item:nth-child(3n + 1) .gallery-media img {
  animation: photo-drift-a 11s var(--ease-in-out) infinite alternate;
}

.gallery-item:nth-child(3n + 2) .gallery-media img {
  animation: photo-drift-b 13s var(--ease-in-out) 0.7s infinite alternate;
}

.gallery-item:nth-child(3n) .gallery-media img {
  animation: photo-drift-c 12s var(--ease-in-out) 1.4s infinite alternate;
}

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

.gallery-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.reviews-section > :not(.reviews-orbit) {
  position: relative;
  z-index: 1;
}

.reviews-orbit {
  position: absolute;
  z-index: 0;
  right: -12rem;
  bottom: -17rem;
  width: min(48rem, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(142, 171, 255, 0.24);
  border-radius: 50%;
  animation: orbit-spin 30s linear infinite reverse;
}

.reviews-orbit::before,
.reviews-orbit::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(142, 171, 255, 0.18);
  border-radius: 50%;
}

.reviews-orbit::before {
  inset: 18%;
}

.reviews-orbit::after {
  inset: 38%;
  background: rgba(18, 70, 216, 0.32);
  box-shadow: 0 0 80px rgba(18, 70, 216, 0.24);
}

.reviews-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #8eabff;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(142, 171, 255, 0.9);
  animation: star-pulse 2.8s ease-in-out infinite;
}

.reviews-orbit span:nth-child(1) {
  top: 12%;
  left: 28%;
}

.reviews-orbit span:nth-child(2) {
  top: 48%;
  right: -4px;
  animation-delay: 0.8s;
}

.reviews-orbit span:nth-child(3) {
  bottom: 8%;
  left: 26%;
  animation-delay: 1.6s;
}

.reviews-heading {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.rating {
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
}

.rating strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.rating span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  gap: 3.5rem;
}

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

.review {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 180ms ease, transform 240ms var(--ease-out);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-meta img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.review-meta h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.review-meta p {
  margin-top: 0.2rem;
  color: #a9bfff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.empty-star {
  color: rgba(255, 255, 255, 0.32);
}

.review blockquote {
  margin-top: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
  transition: transform 240ms var(--ease-out);
}

.review-featured blockquote {
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.review-featured .review-meta img {
  width: 58px;
  height: 58px;
}

.review .text-link {
  color: rgba(255, 255, 255, 0.78);
}

.visit-section {
  display: grid;
  gap: 3rem;
  align-items: stretch;
}

.visit-copy {
  align-self: start;
}

.visit-copy address {
  margin-top: 2rem;
  font-style: normal;
  font-size: 1.05rem;
}

.hours {
  max-width: 34rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.hours div {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.hours span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--blue);
}

.hours strong {
  font-size: 0.92rem;
}

.visit-notes {
  display: grid;
  gap: 0.35rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.88rem;
}

.visit-notes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.visit-notes .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.16rem;
  color: var(--blue);
}

.map-wrap {
  min-height: 500px;
  overflow: hidden;
  background: #d7d7d7;
}

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

.visit-visuals {
  display: grid;
  min-height: 500px;
}

.menu-scene-wide::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: -42%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translate3d(-180%, 0, 0) rotate(12deg);
  animation: light-sweep 8.5s var(--ease-in-out) infinite;
  pointer-events: none;
}

.menu-scene-wide::after {
  animation-delay: 3.5s;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: clamp(3rem, 7vw, 6rem) var(--page-pad) 2rem;
  color: var(--white);
  background: var(--blue);
  isolation: isolate;
  overflow: hidden;
}

.site-footer > :not(.footer-orbit) {
  position: relative;
  z-index: 1;
}

.footer-orbit {
  position: absolute;
  z-index: 0;
  right: -10rem;
  bottom: -17rem;
  width: min(38rem, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: orbit-spin 26s linear infinite;
}

.footer-orbit::before,
.footer-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.footer-orbit::before {
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.24);
}

.footer-orbit::after {
  inset: 39%;
  background: rgba(255, 255, 255, 0.12);
}

.footer-orbit span {
  position: absolute;
  top: 16%;
  right: 9%;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-wordmark .brand-logo {
  width: clamp(12rem, 22vw, 19rem);
  filter: brightness(0) invert(1);
}

.site-footer > div:first-child p {
  max-width: 34ch;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  width: max-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links .icon {
  width: 0.85rem;
  height: 0.85rem;
}

.footer-contact p {
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
}

.footer-contact p + p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.6;
}

.copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  grid-template-rows: 70px minmax(0, 1fr) 30px;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(12, 12, 12, 0.96);
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.lightbox-close,
.lightbox-nav {
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  grid-column: 3;
  justify-self: end;
  min-width: 82px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox figure {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  transform: scale(0.975);
  transition: opacity 220ms ease, transform 240ms var(--ease-out);
  transform-origin: center;
}

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

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
}

.lightbox-count {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lightbox-nav {
  grid-row: 2;
  align-self: center;
  width: 48px;
  height: 54px;
  font-size: 1.2rem;
}

.lightbox-nav .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes section-reveal {
  from {
    opacity: 0.28;
    transform: translateY(42px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@supports (animation-timeline: view()) {
  [data-reveal] {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
  }
}

@supports not (animation-timeline: view()) {
  html.motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 520ms ease, transform 650ms var(--ease-out);
  }

  html.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-drift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes seal-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(3deg);
  }
}

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

@keyframes core-breathe {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

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

@keyframes sparkle-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes detail-float-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.7deg);
  }

  50% {
    transform: translate3d(0, -9px, 0) rotate(0.8deg);
  }
}

@keyframes detail-float-b {
  0%,
  100% {
    transform: translate3d(0, 5px, 0) rotate(0.6deg);
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(-0.7deg);
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(-5px, -12px, 0) rotate(5deg);
  }
}

@keyframes atmosphere-orbit {
  from {
    transform: rotate(-12deg);
  }

  to {
    transform: rotate(348deg);
  }
}

@keyframes photo-drift-a {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes photo-drift-b {
  from {
    transform: scale(1.025) translate3d(-0.8%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.8%, -1%, 0);
  }
}

@keyframes photo-drift-c {
  from {
    transform: scale(1.02) translate3d(0, -0.7%, 0);
  }

  to {
    transform: scale(1.07) translate3d(-0.5%, 0.8%, 0);
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.72);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes light-sweep {
  0%,
  62% {
    opacity: 0;
    transform: translate3d(-180%, 0, 0) rotate(12deg);
  }

  70% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
    transform: translate3d(720%, 0, 0) rotate(12deg);
  }
}

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

  .social-links a:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
  }

  .header-directions:hover,
  .button-primary:hover,
  .button-dark:hover {
    color: var(--ink);
    background: var(--paper-bright);
    border-color: var(--paper-bright);
    transform: translateY(-2px);
  }

  .button-ghost:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .text-link:hover > span {
    transform: translate3d(4px, -4px, 0);
  }

  .menu-item:hover .menu-visual img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.06);
  }

  .menu-scene:hover img {
    transform: scale(1.035);
  }

  .day-photo:hover img {
    filter: saturate(1.1) contrast(1.025);
  }

  .gallery-item:hover .gallery-media {
    box-shadow: 0 18px 38px rgba(21, 21, 21, 0.14);
    transform: translateY(-8px) scale(0.992);
  }

  .gallery-item:hover .gallery-caption {
    color: var(--blue);
  }

  .gallery-item:hover .gallery-open-icon {
    color: var(--blue);
    background: var(--white);
    transform: scale(1) rotate(5deg);
  }

  .review:hover {
    border-color: #8eabff;
  }

  .review:hover blockquote {
    transform: translateX(6px);
  }

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

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

  .menu-item:last-child {
    grid-column: 2;
  }

  .menu-scenes {
    grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
  }

  .day-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: 'bar table takeaway';
    grid-template-rows: auto;
    gap: 1rem;
    align-items: start;
  }

  .day-photo-bar {
    grid-area: bar;
  }

  .day-photo-table {
    grid-area: table;
  }

  .day-photo-takeaway {
    grid-area: takeaway;
  }

  .day-section {
    padding-block: clamp(4rem, 8vw, 5rem);
  }

  .day-photo img {
    aspect-ratio: 4 / 3;
  }

  .hours div {
    grid-template-columns: 1fr auto;
    align-items: baseline;
  }

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

  .footer-contact {
    grid-column: 2;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .day-heading {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.8fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 850px) {
  .about {
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.76fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .menu-heading,
  .gallery-heading,
  .reviews-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  }

  .gallery-heading > p:last-child,
  .reviews-heading > p:last-child {
    justify-self: end;
  }

  .site-footer {
    grid-template-columns: 1.5fr 0.55fr 0.75fr;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (min-width: 980px) {
  .hero-mask {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.68) 100%);
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.62fr);
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: end;
    padding: 0 var(--page-pad) clamp(3rem, 7vh, 5rem);
  }

  .hero-identity,
  .hero-message {
    min-width: 0;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.82rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  }

  .hero h1 {
    font-size: clamp(5.5rem, 7.5vw, 6rem);
    line-height: 0.84;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
  }

  .hero-message {
    justify-self: end;
    width: min(100%, 32rem);
  }

  .hero-copy {
    max-width: 27ch;
    margin-top: 0;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    line-height: 1.45;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.52);
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.8rem;
  }

  .hero .button {
    min-height: 58px;
    padding-inline: 1rem;
  }

  .hero .button-primary {
    color: var(--ink);
    background: var(--paper-bright);
    border-color: var(--paper-bright);
  }

  .hero .button-ghost {
    color: var(--white);
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.82);
  }

  .hero-meta {
    display: none;
  }

  .solar-seal-shell {
    top: calc(var(--header-height) + 1rem);
    right: clamp(2rem, 5.5vw, 7rem);
    width: clamp(11rem, 14vw, 14rem);
  }
}

@media (min-width: 1000px) {
  .day-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    grid-template-areas: 'heading collage';
    column-gap: clamp(2.5rem, 4vw, 4rem);
    align-items: center;
    padding-block: clamp(4rem, 6vw, 5.5rem);
  }

  .day-heading {
    grid-area: heading;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-self: center;
    margin-bottom: 0;
  }

  .day-collage {
    grid-area: collage;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    grid-template-areas:
      'bar table'
      'bar takeaway';
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .day-photo {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .day-photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .day-photo picture {
    height: 100%;
  }

  .day-photo-bar img {
    aspect-ratio: 4 / 5;
  }

  .day-photo-table img,
  .day-photo-takeaway img {
    aspect-ratio: 16 / 9;
  }

  .day-sun {
    top: calc(50% - 19rem);
    left: clamp(-22rem, -22vw, -14rem);
    width: min(42vw, 38rem);
  }

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

  .menu-item:last-child {
    grid-column: auto;
  }

  .visit-section {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .review-featured {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .review-featured .text-link {
    margin-top: auto;
    padding-top: 1.5rem;
  }

}

@media (max-width: 979px) {
  .desktop-nav,
  .desktop-social,
  .header-directions {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    padding: env(safe-area-inset-top) max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
    color: var(--white);
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(243, 240, 232, 0.985);
    border-bottom-color: rgba(21, 21, 21, 0.13);
    backdrop-filter: blur(16px);
  }

  .site-header > .wordmark {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .site-header > .wordmark .brand-logo {
    width: clamp(7.1rem, 32vw, 8rem);
    filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0, 0, 0, 0.32));
  }

  .site-header.is-scrolled > .wordmark .brand-logo {
    filter: none;
  }

  .header-actions {
    gap: 0.15rem;
  }

  .site-header .desktop-social {
    display: flex;
    gap: 0;
  }

  .site-header .social-links a {
    width: 34px;
    height: 44px;
    border: 0;
    border-radius: 0;
  }

  .site-header .social-links svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 7px rgba(0, 0, 0, 0.3));
  }

  .site-header.is-scrolled .social-links svg {
    filter: none;
  }

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

  .menu-toggle .icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 7px rgba(0, 0, 0, 0.3));
  }

  .site-header.is-scrolled .menu-toggle .icon {
    filter: none;
  }

  .hero-mask {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.03) 34%, rgba(0, 0, 0, 0.34) 66%, rgba(0, 0, 0, 0.72) 100%);
  }

  .hero-content {
    padding: calc(var(--header-height) + env(safe-area-inset-top) + 3rem) clamp(1rem, 5.6vw, 1.75rem) max(1.35rem, env(safe-area-inset-bottom));
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.17em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 5.5rem);
    line-height: 0.88;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  }

  .hero-copy {
    max-width: 31ch;
    margin-top: 1.1rem;
    font-size: clamp(1rem, 4.25vw, 1.18rem);
    line-height: 1.42;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.65rem;
  }

  .hero .button {
    min-height: 58px;
    padding-inline: 0.7rem;
    letter-spacing: 0.06em;
  }

  .hero .button-primary {
    color: var(--ink);
    background: var(--paper-bright);
    border-color: var(--paper-bright);
  }

  .hero .button-ghost {
    color: var(--white);
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.82);
  }

  .hero-meta {
    display: none;
  }

  .solar-seal-shell {
    top: calc(var(--header-height) + env(safe-area-inset-top) + 4.25rem);
    right: -0.75rem;
    width: clamp(7.5rem, 31vw, 9.25rem);
  }

  .solar-seal-ring text {
    font-size: 8px;
  }
}

@media (max-width: 767px) and (max-height: 620px) {
  .solar-seal-shell {
    display: none;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 1.25rem);
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .hero-eyebrow {
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 12vw, 4.5rem);
  }

  .hero-copy {
    margin-top: 0.55rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero-cta {
    margin-top: 0.8rem;
  }

  .hero .button {
    min-height: 48px;
  }
}

@media (max-width: 559px) {
  :root {
    --header-height: 64px;
  }

  h2 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .about-visuals {
    width: calc(100% + (2 * var(--page-pad)));
    margin-left: calc(-1 * var(--page-pad));
    grid-template-columns: 1fr 1fr;
  }

  .about-float-mark {
    right: 8%;
    bottom: 10%;
    width: 5.8rem;
  }

  .menu-atmosphere {
    top: 12%;
    right: -42%;
    width: 110vw;
    font-size: 5.5rem;
  }

  .about-figure {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .menu-scene-tall {
    width: 78%;
    margin-left: auto;
  }

  .day-photo-table {
    width: auto;
    margin-left: 0;
  }

  .day-photo-takeaway {
    width: auto;
  }

  .day-sun {
    top: 4rem;
    left: -58vw;
    width: min(100vw, 26rem);
  }

  .gallery-section {
    padding-inline: 0;
  }

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

  .gallery-heading {
    padding-inline: var(--page-pad);
  }

  .gallery-caption {
    margin-inline: var(--page-pad);
  }

  .reviews-heading {
    gap: 3rem;
  }

  .reviews-orbit {
    right: -72vw;
    bottom: -36vw;
    width: 126vw;
  }

  .footer-orbit {
    right: -58vw;
    bottom: -45vw;
    width: 110vw;
  }

  .map-wrap {
    width: calc(100% + (2 * var(--page-pad)));
    min-height: 500px;
    margin-left: calc(-1 * var(--page-pad));
  }

  .map-wrap iframe {
    width: 100%;
    height: 500px;
    min-height: 500px;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-rows: 58px minmax(0, 1fr) 30px;
    padding: 0.75rem;
  }

  .lightbox-close {
    width: 64px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
