:root {
  color-scheme: light;
  --brand-light: #3d8795;
  --brand-dark: #0f3843;
  --brand-gold: #ebe8c4;
  --brand-gold-deep: #c9bd7d;
  --ink: var(--brand-dark);
  --ink-soft: #365f68;
  --paper: #d5e7eb;
  --surface: #ffffff;
  --surface-soft: #e8f2f4;
  --aqua: var(--brand-light);
  --aqua-dark: var(--brand-dark);
  --line: #9fc6cf;
  --line-strong: #6fa5b2;
  --radius: 12px;
  --shadow: 0 20px 60px rgba(15, 56, 67, 0.12);
  --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);
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

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

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

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

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

h1,
h2,
h3,
.footer-name,
.brand {
  font-family: Georgia, "Times New Roman", serif;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 40;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(235, 232, 196, 0.58);
  border-radius: var(--radius);
  background: rgba(15, 56, 67, 0.88);
  color: #f8fbf9;
  box-shadow: 0 10px 30px rgba(9, 25, 26, 0.16);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header__progress {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-gold);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-scrolled {
  border-color: rgba(158, 199, 195, 0.9);
  background: rgba(237, 245, 243, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  box-shadow: 0 0 0 2px var(--brand-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta):not(.social-link) {
  position: relative;
}

.site-nav > a:not(.nav-cta):not(.social-link)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.social-link,
.footer-social {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.social-link svg,
.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 18px;
  border-radius: var(--radius);
  background: var(--brand-gold);
  color: var(--brand-dark);
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--brand-gold-deep);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(61, 135, 149, 0.22);
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms var(--ease-out), opacity 140ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #f8fbf9;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  overflow: hidden;
}

.hero__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
  will-change: transform;
}

.hero__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.58) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.hero__orbit {
  position: absolute;
  right: clamp(32px, 7vw, 110px);
  bottom: clamp(84px, 12vw, 150px);
  z-index: 0;
  width: clamp(190px, 24vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(235, 232, 196, 0.52);
  border-radius: 50%;
  opacity: 0.68;
  pointer-events: none;
  will-change: transform;
}

.hero__orbit::before,
.hero__orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero__orbit::before {
  inset: 14%;
  border: 1px solid rgba(61, 135, 149, 0.62);
}

.hero__orbit::after {
  top: 7%;
  left: 50%;
  width: 11px;
  height: 11px;
  background: var(--brand-gold);
  box-shadow: 0 0 0 8px rgba(235, 232, 196, 0.12);
  transform: translateX(-50%);
}

.hero__orbit span {
  position: absolute;
  inset: 40%;
  border: 1px solid rgba(235, 232, 196, 0.72);
  border-radius: 50%;
  background: rgba(15, 56, 67, 0.18);
}

.brand-loop {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--brand-gold-deep);
  border-bottom: 1px solid var(--brand-gold-deep);
  background: var(--brand-dark);
  color: var(--brand-gold);
}

.brand-loop__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.brand-loop__group {
  display: flex;
  min-width: max-content;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: 15px clamp(24px, 3vw, 48px) 15px 0;
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-loop__group b {
  color: var(--brand-light);
  font-size: 0.78em;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--brand-gold);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 16px;
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 600;
  line-height: 0.88;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.hero__content > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 26px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero__actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.97);
}

.social-link:active,
.footer-social:active,
.menu-toggle:active {
  transform: scale(0.94);
}

.button--primary {
  background: var(--brand-dark);
  color: #f8fbf9;
}

.button--primary:hover {
  background: #082933;
}

.button--glass {
  border-color: rgba(235, 232, 196, 0.84);
  background: rgba(15, 56, 67, 0.42);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.button--outline {
  border-color: var(--brand-dark);
  background: var(--surface-soft);
  color: var(--aqua-dark);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 9vw, 120px);
  align-items: center;
}

.intro__copy p:not(.section-kicker) {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-kicker {
  color: var(--aqua-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--aqua-dark);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 160ms var(--ease-out);
}

.portrait-media,
.ratio-media,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

.portrait-media {
  position: relative;
  margin: 0;
  box-shadow: var(--shadow);
}

.portrait-media__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 16ch;
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(15, 56, 67, 0.18);
  will-change: transform;
}

.portrait-media img,
.ratio-media img,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-media img {
  object-position: 50% 50%;
}

.menu-section {
  border-top: 1px solid var(--brand-gold-deep);
  border-bottom: 1px solid var(--line-strong);
  background: #c7dfe4;
}

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

.section-heading p {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

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

.menu-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transform-style: preserve-3d;
  transition: transform 240ms var(--ease-out), border-color 180ms ease;
  will-change: transform;
}

.menu-card:nth-child(2) {
  border-color: #d8d5b3;
  background: #fbfaef;
}

.menu-card:nth-child(3) {
  background: #eef7f8;
}

.menu-card .ratio-media {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.menu-card .ratio-media img {
  transition: transform 700ms var(--ease-out);
}

.menu-card__copy {
  padding: clamp(22px, 3vw, 32px);
}

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

.menu-card p {
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.menu-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.menu-callout {
  margin: 38px 0 0;
  color: var(--ink-soft);
  text-align: center;
}

.menu-callout a {
  color: var(--aqua-dark);
  font-weight: 750;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.feature__image {
  aspect-ratio: 14 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.feature__copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.feature__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feature__facts span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.gallery-section {
  background: #d0e4e8;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--paper);
  box-shadow: none;
  cursor: zoom-in;
  transition: transform 160ms var(--ease-out);
}

.gallery-item::before {
  position: absolute;
  top: -20%;
  left: -42%;
  z-index: 1;
  width: 34%;
  height: 140%;
  background: linear-gradient(90deg, rgba(235, 232, 196, 0), rgba(235, 232, 196, 0.28), rgba(235, 232, 196, 0));
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) rotate(10deg);
  will-change: transform, opacity;
}

.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(15, 56, 67, 0.82);
  color: #ffffff;
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 2;
}

.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-item img {
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reviews-section {
  border-top: 1px solid var(--line);
  background: #cfe2e7;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 46px;
}

.reviews-heading h2,
.reviews-heading p {
  margin-bottom: 0;
}

.reviews-heading p {
  color: var(--ink-soft);
}

.reviews-heading strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}

.review {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.review:first-child {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #f5f9fa;
}

.review:first-child .stars {
  color: var(--brand-gold);
}

.review:first-child .review__author,
.review:first-child a {
  color: #f5faf8;
}

.review:first-child .review__avatar {
  background: #082933;
}

.stars {
  margin-bottom: 24px;
  color: var(--brand-dark);
  letter-spacing: 0.16em;
}

.review blockquote {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.35;
}

.review__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.review__author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  text-decoration: none;
}

.review__author:hover cite {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.review__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
}

.review cite {
  font-style: normal;
  font-weight: 750;
}

.review a {
  color: var(--aqua-dark);
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.visit-section {
  border-top: 1px solid var(--line);
  background: #dbeaf0;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: stretch;
}

.visit-details address,
.site-footer address {
  color: var(--ink-soft);
  font-style: normal;
}

.site-footer address {
  color: #b9d4d0;
}

.visit-actions {
  margin-block: 28px 42px;
}

.hours h3 {
  margin-bottom: 16px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
  border-top: 1px solid var(--line);
}

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

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dcece8;
  box-shadow: var(--shadow);
}

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

.site-footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--brand-light);
  background: var(--brand-dark);
  color: #f5f9fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.2fr 0.7fr 0.5fr;
  gap: 42px;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand img {
  flex: 0 0 auto;
  border-radius: var(--radius);
}

.footer-name {
  margin-bottom: 4px;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p:last-child {
  max-width: 26ch;
  color: #b9d4d0;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--brand-gold);
  font-weight: 800;
}

.footer-grid > div:not(.footer-brand) > a:not(.footer-social) {
  display: block;
  margin-top: 8px;
  color: #c8e1dc;
}

.footer-social {
  border: 1px solid var(--brand-gold-deep);
  color: var(--brand-gold);
}

.footer-bottom {
  width: var(--shell);
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid #3d6f70;
  color: #b9d4d0;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 20, 21, 0.92);
  color: #f8fbf9;
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  display: flex;
  max-width: min(900px, calc(100vw - 150px));
  max-height: calc(100vh - 70px);
  margin: 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

.lightbox figcaption {
  max-width: 60ch;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.lightbox__close {
  top: 18px;
  right: 18px;
  font-size: 2rem;
}

.lightbox__nav {
  top: 50%;
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 18px;
}

.lightbox__nav--next {
  right: 18px;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero__image > img {
    animation: hero-drift 18s var(--ease-in-out) infinite alternate;
  }

  .hero__orbit {
    animation: hero-orbit 28s linear infinite;
  }

  .hero__orbit span {
    animation: orbit-pulse 4.8s var(--ease-in-out) infinite;
  }

  .brand-loop__track {
    animation: brand-marquee 24s linear infinite;
  }

  .portrait-media__note {
    animation: note-float 5.5s var(--ease-in-out) infinite;
  }

  .gallery-item::before {
    animation: gallery-sheen 9s linear infinite;
  }

  .gallery-item:nth-child(2n)::before {
    animation-delay: -4.5s;
  }

  .gallery-item:nth-child(3n)::before {
    animation-delay: -7s;
  }

  .footer-brand img {
    animation: footer-logo-float 6s var(--ease-in-out) infinite;
  }

  .hero__content > * {
    animation: hero-enter 700ms both var(--ease-out);
  }

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

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

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

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

  .reveal {
    transition: opacity 560ms ease, filter 480ms ease, transform 640ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .menu-card.reveal.is-settled {
    transition: transform 240ms var(--ease-out), border-color 180ms ease;
  }

  .gallery-item.reveal.is-settled {
    transition: transform 160ms var(--ease-out);
  }

  .lightbox.is-open {
    animation: lightbox-backdrop-in 180ms var(--ease-out) both;
  }

  .lightbox.is-open figure {
    animation: lightbox-content-in 260ms var(--ease-out) both;
  }

  .site-nav.is-open {
    animation: nav-enter 190ms var(--ease-drawer) both;
    transform-origin: top right;
  }

  @keyframes hero-enter {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-drift {
    from {
      transform: scale(1.015) translate3d(-0.25%, 0, 0);
    }
    to {
      transform: scale(1.055) translate3d(0.5%, -0.5%, 0);
    }
  }

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

  @keyframes orbit-pulse {
    0%,
    100% {
      opacity: 0.46;
      transform: scale(0.82);
    }
    50% {
      opacity: 1;
      transform: scale(1.08);
    }
  }

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

  @keyframes note-float {
    0%,
    100% {
      transform: translate3d(0, 0, 0) rotate(-1deg);
    }
    50% {
      transform: translate3d(0, -7px, 0) rotate(1deg);
    }
  }

  @keyframes gallery-sheen {
    0%,
    62% {
      opacity: 0;
      transform: translate3d(0, 0, 0) rotate(10deg);
    }
    70% {
      opacity: 0.6;
    }
    82% {
      opacity: 0;
      transform: translate3d(430%, 0, 0) rotate(10deg);
    }
    100% {
      opacity: 0;
      transform: translate3d(430%, 0, 0) rotate(10deg);
    }
  }

  @keyframes footer-logo-float {
    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, -5px, 0);
    }
  }

  @keyframes lightbox-backdrop-in {
    from {
      opacity: 0;
    }
  }

  @keyframes lightbox-content-in {
    from {
      opacity: 0;
      transform: translateY(14px) scale(0.97);
    }
  }

  @keyframes nav-enter {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(0.98);
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav > a:not(.nav-cta):not(.social-link):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

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

  .social-link:hover,
  .footer-social:hover {
    transform: translateY(-2px) scale(1.03);
  }

  .text-link:hover::after {
    transform: translateX(5px);
  }

  .menu-card:hover {
    border-color: var(--brand-light);
    transform: translateY(-8px);
  }

  .menu-card:hover .ratio-media img {
    transform: scale(1.04);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: translateY(-2px);
  }

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

  .brand-loop:hover .brand-loop__track {
    animation-play-state: paused;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100svh - 108px);
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(237, 245, 243, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero__orbit {
    right: -34px;
    bottom: 132px;
    width: 230px;
    opacity: 0.48;
  }

  .site-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius);
  }

  .site-nav .social-link {
    width: 48px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    color: var(--brand-dark);
  }

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

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

  .feature__copy {
    max-width: 660px;
  }

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

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

  .review:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.7fr;
  }

  .footer-grid > div:last-child {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 76px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    font-size: 1rem;
  }

  .hero__content {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .hero__orbit {
    right: -72px;
    bottom: 158px;
    width: 200px;
    opacity: 0.4;
  }

  .brand-loop__group {
    gap: 22px;
    padding-block: 12px;
    padding-right: 22px;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6.4rem);
  }

  .hero__content > p:not(.eyebrow) {
    max-width: 29rem;
    font-size: 1.05rem;
  }

  .hero__actions,
  .visit-actions {
    width: 100%;
  }

  .hero__actions .button,
  .visit-actions .button {
    flex: 1 1 145px;
  }

  .intro {
    gap: 42px;
  }

  .portrait-media {
    width: 100%;
  }

  .portrait-media__note {
    right: 12px;
    bottom: 12px;
    padding: 9px 11px;
    font-size: 0.66rem;
  }

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

  .gallery-grid {
    gap: 14px;
  }

  .review:first-child {
    grid-column: auto;
  }

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

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review {
    min-height: 250px;
  }

  .review__footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .lightbox {
    padding: 70px 16px 86px;
  }

  .lightbox figure {
    max-width: 100%;
    max-height: 100%;
  }

  .lightbox figure img {
    max-height: calc(100vh - 190px);
  }

  .lightbox__nav {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: calc(50% - 60px);
  }

  .lightbox__nav--next {
    right: calc(50% - 60px);
  }
}

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

  .hero__image > img,
  .hero__orbit,
  .hero__orbit span,
  .brand-loop__track,
  .portrait-media__note,
  .footer-brand img,
  .reveal {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

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

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