:root {
  color-scheme: light;
  --ink: #0c1730;
  --ink-soft: #253450;
  --paper: #f5f7f8;
  --paper-strong: #e9eef1;
  --muted: #5f6c7d;
  --line: #cbd4da;
  --accent: #e87322;
  --accent-dark: #a9470a;
  --surface: #f9fafb;
  --radius: 12px;
  --input-radius: 10px;
  --button-radius: 999px;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 18px 50px rgba(12, 23, 48, 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);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 110;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: scroll-progress linear both;
    animation-timeline: scroll(root block);
  }
}

img { max-width: 100%; }
figure { margin: 0; }

a { color: inherit; }

button, input, select, textarea { font: inherit; }

button { color: inherit; }

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

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

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

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

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

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

h1, h2, h3 {
  font-family: "Arial Nova", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  font-weight: 760;
}

h3 { font-size: 1.28rem; }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  background: var(--accent);
  color: var(--ink);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active { transform: scale(0.97); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: 0.9rem; }
.button-wide { width: 100%; }

.button-dark {
  background: var(--ink);
  color: #f6f8fa;
}

.button-ghost {
  border-color: rgba(246, 248, 250, 0.8);
  background: rgba(12, 23, 48, 0.22);
  color: #f6f8fa;
  backdrop-filter: blur(10px);
}

.text-link {
  display: inline-block;
  color: var(--ink);
  font-weight: 760;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-height);
  color: #f6f8fa;
  transition: background-color 220ms var(--ease-out), color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  background: rgba(245, 247, 248, 0.95);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(12, 23, 48, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--shell);
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  width: 156px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.brand-link img { display: block; width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 670;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

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

.social-links { display: flex; align-items: center; gap: 4px; }

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease;
}

.social-links a:active { transform: scale(0.92); }
.social-links svg { width: 22px; height: 22px; fill: currentColor; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

.menu-toggle:active { transform: scale(0.92); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms var(--ease-drawer);
}

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  padding: 28px 20px 34px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: top center;
  transition: opacity 180ms var(--ease-out), transform 240ms var(--ease-drawer), visibility 0s linear 0s;
}

.mobile-menu[data-state="closed"] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px) scale(0.985);
  pointer-events: none;
  transition: opacity 140ms ease, transform 180ms var(--ease-out), visibility 0s linear 180ms;
}

.mobile-menu nav { display: grid; gap: 2px; margin-bottom: 24px; }

.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.35rem;
  font-weight: 740;
  text-decoration: none;
}

.mobile-socials { margin-top: 20px; }

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

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
  will-change: transform;
  animation: hero-enter 900ms var(--ease-out) both, hero-breathe 16s var(--ease-in-out) 900ms infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.10), rgba(8, 8, 8, 0.16) 48%, rgba(8, 8, 8, 0.28));
}

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

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  will-change: transform, opacity;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(232, 115, 34, 0.9);
}

.hero-orbit::before { top: 14%; left: 12%; }
.hero-orbit::after { right: 10%; bottom: 17%; width: 6px; height: 6px; background: #f6f8fa; }
.hero-orbit-outer { top: 13%; right: -7vw; width: clamp(330px, 42vw, 650px); aspect-ratio: 1.08; transform: rotate(-14deg); animation: orbit-turn 22s linear infinite; }
.hero-orbit-inner { top: 24%; right: 4vw; width: clamp(210px, 27vw, 430px); aspect-ratio: 1; border-color: rgba(232, 115, 34, 0.52); transform: rotate(22deg); animation: orbit-turn-reverse 17s linear infinite; }

.hero-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f6f8fa;
  box-shadow: 0 0 22px rgba(246, 248, 250, 0.88);
  animation: spark-float 4.8s var(--ease-in-out) infinite alternate;
}

.hero-spark-one { top: 33%; right: 9%; }
.hero-spark-two { top: 18%; right: 31%; width: 5px; height: 5px; animation-delay: -2.3s; }

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: var(--header-height);
  padding-bottom: clamp(56px, 8svh, 92px);
}

.hero h1,
.hero p,
.hero-buttons {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-copy-in 800ms var(--ease-out) forwards;
}

.hero p { animation-delay: 100ms; }
.hero-buttons { animation-delay: 180ms; }

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 790;
  line-height: 0.91;
  text-shadow: 0 2px 18px rgba(8, 8, 8, 0.28);
}

.hero p {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(8, 8, 8, 0.28);
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 9vw, 132px);
}

.intro-copy p { max-width: 62ch; margin-bottom: 28px; color: var(--muted); }

.ratio-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-strong);
}

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

.intro-image img { object-position: center 50%; animation: image-drift 10s var(--ease-in-out) infinite alternate; }

.facts-strip { position: relative; overflow: hidden; background: var(--ink); color: #f6f8fa; }

.facts-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto auto -35%;
  width: 35%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), #f6f8fa, transparent);
  opacity: 0.9;
  animation: facts-glide 7s linear infinite;
}

.facts-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.4fr;
  gap: 0;
  padding-block: 36px;
}

.facts-grid div { padding: 12px 28px; border-left: 1px solid rgba(246, 248, 250, 0.24); }
.facts-grid div:first-child { padding-left: 0; border-left: 0; }
.facts-grid strong { display: block; margin-bottom: 2px; color: var(--accent); font-size: 1.45rem; }
.facts-grid span { color: #dbe1e7; }

.brand-marquee {
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
  border-block: 1px solid rgba(12, 23, 48, 0.18);
}

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

.brand-marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  padding: 18px clamp(22px, 3vw, 46px) 17px 0;
}

.brand-marquee-group span {
  font-family: "Arial Nova", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 790;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-marquee-group b { font-size: 0.82rem; }

.section-heading { max-width: 720px; margin-bottom: clamp(42px, 6vw, 72px); }
.section-heading p { max-width: 58ch; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

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

.food-panel { min-width: 0; }
.food-panel:nth-child(2) { margin-top: 54px; }
.food-panel .ratio-card { margin-bottom: 24px; will-change: transform; animation: card-float 7s var(--ease-in-out) infinite alternate; }
.food-panel:nth-child(2) .ratio-card { animation-delay: -2.5s; animation-duration: 8.5s; }
.food-panel:nth-child(3) .ratio-card { animation-delay: -4.5s; animation-duration: 7.8s; }
.food-panel:nth-child(1) img { object-position: center 48%; }
.food-panel:nth-child(2) img { object-position: center 47%; }
.food-panel:nth-child(3) img { object-position: center 44%; }
.food-panel h3 { margin-bottom: 10px; font-size: 1.55rem; }
.food-panel p { max-width: 34ch; margin-bottom: 0; color: var(--muted); }
.food-action { margin-top: 42px; }

.service-banner {
  position: relative;
  min-height: min(760px, 82svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #f6f8fa;
  isolation: isolate;
}

.service-banner-image { position: absolute; inset: 0 0 0 52%; z-index: -2; }
.service-banner-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 45%; will-change: transform; animation: service-drift 15s var(--ease-in-out) infinite alternate; }
.service-banner::before {
  content: "";
  position: absolute;
  inset: -25% -12% -25% 36%;
  z-index: 0;
  background: radial-gradient(circle, rgba(232, 115, 34, 0.3), transparent 58%);
  opacity: 0.5;
  transform: translate3d(0, 0, 0) scale(0.9);
  animation: service-glow 6.5s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}
.service-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--ink) 0 48%, rgba(12, 23, 48, 0.94) 58%, rgba(12, 23, 48, 0.18) 100%);
}
.service-banner-content { position: relative; z-index: 1; padding-block: clamp(84px, 10vw, 140px); }
.service-banner-content h2 { max-width: 700px; font-size: clamp(3rem, 6vw, 5.6rem); }
.service-banner-content > p:not(.service-kicker) { max-width: 52ch; color: #dbe1e7; font-size: 1.12rem; }
.service-kicker { margin-bottom: 20px; color: var(--accent); font-weight: 780; }
.service-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.service-actions .button:first-child::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translate3d(-140%, 0, 0) skewX(-20deg);
  animation: mobile-shine 4.6s linear infinite;
  pointer-events: none;
}

.gallery { border-top: 0; }

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

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

.gallery-item img { will-change: transform; animation: gallery-drift 12s var(--ease-in-out) infinite alternate; }
.gallery-item:nth-child(2n) img { animation-direction: alternate-reverse; animation-duration: 14s; }
.gallery-item:nth-child(3n) img { animation-delay: -4s; }
.gallery-item:active { transform: scale(0.985); }
.gallery-item:nth-child(1) img { object-position: center 45%; }
.gallery-item:nth-child(2) img { object-position: center 48%; }
.gallery-item:nth-child(3) img { object-position: center 50%; }

.reviews { background: var(--paper-strong); }

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 74px);
}

.review { padding-top: 24px; border-top: 3px solid var(--ink); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.review-top img { flex: none; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review h3 { margin-bottom: 3px; font-size: 1.05rem; letter-spacing: -0.02em; }
.stars { color: var(--accent-dark); letter-spacing: 0.07em; font-size: 0.92rem; animation: stars-glow 3.2s var(--ease-in-out) infinite alternate; }
.review blockquote { margin: 0 0 20px; font-size: 1.08rem; line-height: 1.55; }
.review-feature blockquote { max-width: 25ch; font-size: clamp(1.65rem, 3vw, 2.75rem); line-height: 1.24; letter-spacing: -0.025em; }
.reviews-secondary { display: grid; gap: 42px; }
.reviews-secondary .review { display: grid; grid-template-columns: 1fr auto; column-gap: 24px; }
.reviews-secondary .review-top,
.reviews-secondary blockquote { grid-column: 1 / 3; }
.reviews-secondary blockquote { max-width: 45ch; }

.visit {
  display: block;
}

.visit-heading { max-width: 900px; margin-bottom: clamp(40px, 6vw, 64px); }
.visit-heading h2 { max-width: none; margin-bottom: 0; }
.visit-details { margin-top: clamp(32px, 5vw, 48px); padding-top: clamp(28px, 4vw, 40px); border-top: 1px solid var(--line); }
.visit-info-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; }
.visit-block { min-width: 0; padding-inline: 32px; }
.visit-block:first-child { padding-left: 0; }
.visit-block + .visit-block { border-left: 1px solid var(--line); }
.visit-block h3 { margin-bottom: 8px; font-size: 1rem; letter-spacing: 0; }
.visit-block p { margin-bottom: 12px; color: var(--muted); }
.phone-link { font-size: 1.55rem; font-weight: 780; text-decoration-color: var(--accent); text-underline-offset: 5px; }
.visit-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.visit-features { display: flex; flex: 1 1 auto; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.visit-features li { padding: 8px 12px; border-radius: var(--button-radius); background: var(--paper-strong); color: var(--ink-soft); font-size: 0.9rem; font-weight: 680; animation: chip-float 5.6s var(--ease-in-out) infinite alternate; }
.visit-features li:nth-child(2n) { animation-delay: -2.2s; }
.visit-features li:nth-child(3n) { animation-delay: -3.7s; }

.map-wrap {
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

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

.site-footer { padding-block: 52px; background: var(--ink); color: #f6f8fa; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr auto;
  align-items: end;
  gap: 42px;
}

.footer-brand img { display: block; width: 170px; margin-bottom: 18px; border-radius: 8px; }
.footer-brand p { margin-bottom: 2px; color: #cbd4da; }
.footer-brand a { color: #f6f8fa; }
.site-footer nav { display: grid; gap: 8px; }
.site-footer nav a { text-decoration: none; }
.site-footer nav a { transition: color 160ms ease, transform 160ms var(--ease-out); }

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, border-color 160ms ease;
}

.icon-button:active { transform: scale(0.92); }

.mobile-action-bar { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  background: rgba(8, 13, 27, 0.94);
  color: #f6f8fa;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.lightbox[hidden] { display: none; }
.lightbox[data-state="open"] { opacity: 1; }
.lightbox figure { max-width: min(1100px, 82vw); max-height: 86svh; margin: auto; text-align: center; opacity: 0; filter: blur(4px); transform: scale(0.965); transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), filter 220ms ease; }
.lightbox[data-state="open"] figure { opacity: 1; filter: blur(0); transform: scale(1); }
.lightbox figure img { max-width: 100%; max-height: 80svh; width: auto; height: auto; border-radius: var(--radius); box-shadow: 0 28px 90px rgba(8, 13, 27, 0.5); }
.lightbox figcaption { margin-top: 12px; color: #dbe1e7; }
.lightbox .icon-button { background: rgba(245, 247, 248, 0.1); border-color: rgba(245, 247, 248, 0.3); color: #f6f8fa; }
.lightbox-close { position: absolute; top: 22px; right: 22px; }
.lightbox-prev { justify-self: start; }
.lightbox-next { justify-self: end; }

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

.motion-ready .reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(28px) scale(0.985);
  transition: opacity 700ms var(--ease-out), transform 800ms var(--ease-out), filter 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.motion-ready .gallery-item.reveal {
  clip-path: inset(0 0 14% 0 round var(--radius));
  transition: opacity 650ms var(--ease-out), transform 750ms var(--ease-out), filter 550ms ease, clip-path 900ms var(--ease-out), box-shadow 220ms ease;
}

.motion-ready .gallery-item.reveal.is-visible { clip-path: inset(0 0 0 0 round var(--radius)); }

@keyframes hero-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-0.7%, -0.35%, 0); }
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbit-turn {
  from { transform: rotate(-14deg); }
  to { transform: rotate(346deg); }
}

@keyframes orbit-turn-reverse {
  from { transform: rotate(22deg); }
  to { transform: rotate(-338deg); }
}

@keyframes spark-float {
  from { opacity: 0.4; transform: translate3d(0, 8px, 0) scale(0.8); }
  to { opacity: 1; transform: translate3d(0, -12px, 0) scale(1.2); }
}

@keyframes image-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-1.2%, -0.8%, 0); }
}

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

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

@keyframes card-float {
  from { transform: translate3d(0, 4px, 0) rotate(-0.25deg); }
  to { transform: translate3d(0, -8px, 0) rotate(0.35deg); }
}

@keyframes service-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.5%, -0.7%, 0); }
}

@keyframes service-glow {
  from { opacity: 0.34; transform: scale(0.88) translate3d(-3%, 0, 0); }
  to { opacity: 0.72; transform: scale(1.08) translate3d(4%, -2%, 0); }
}

@keyframes gallery-drift {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.1%, -0.75%, 0); }
}

@keyframes stars-glow {
  from { opacity: 0.72; transform: translateY(0); text-shadow: 0 0 0 rgba(232, 115, 34, 0); }
  to { opacity: 1; transform: translateY(-1px); text-shadow: 0 0 14px rgba(232, 115, 34, 0.38); }
}

@keyframes chip-float {
  from { transform: translate3d(0, 1px, 0); }
  to { transform: translate3d(0, -3px, 0); }
}

@keyframes mobile-shine {
  from { transform: translate3d(-140%, 0, 0) skewX(-20deg); }
  to { transform: translate3d(360%, 0, 0) skewX(-20deg); }
}

@keyframes mobile-bar-in {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-progress { to { transform: scaleX(1); } }

@media (hover: hover) and (pointer: fine) {
  .button:hover { background: #f08a3f; transform: translateY(-2px); }
  .button-dark:hover { background: var(--ink-soft); }
  .button-ghost:hover { background: rgba(12, 23, 48, 0.34); }
  .text-link:hover { color: var(--accent-dark); text-decoration-color: var(--ink); }
  .brand-link:hover { transform: translateY(-2px) rotate(-0.6deg); box-shadow: 0 8px 20px rgba(12, 23, 48, 0.16); }
  .desktop-nav a:hover { color: var(--accent); }
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left center; }
  .social-links a:hover { color: var(--accent); background: rgba(232, 115, 34, 0.14); transform: translateY(-2px) rotate(4deg); }
  .menu-toggle:hover { background: rgba(232, 115, 34, 0.14); }
  .gallery-item:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 18px 36px rgba(12, 23, 48, 0.16); }
  .motion-ready .gallery-item.reveal.is-visible:hover { transform: translateY(-8px) scale(1.01); }
  .site-footer nav a:hover { color: var(--accent); transform: translateX(3px); }
  .footer-socials a:hover { background: rgba(232, 115, 34, 0.2); }
  .icon-button:hover { transform: scale(1.06); background: rgba(232, 115, 34, 0.22); border-color: var(--accent); }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 32px, 840px); }
  .desktop-nav, .header-book { display: none; }
  .menu-toggle { display: block; }
  .intro { grid-template-columns: 1fr 0.72fr; gap: 48px; }
  .food-grid { gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 54px; }
  .review-feature blockquote { max-width: 32ch; }
  .visit-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-block:nth-child(3) { grid-column: 1 / -1; margin-top: 28px; padding-top: 28px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .map-wrap, .map-wrap iframe { min-height: 440px; height: 440px; }
}

@media (max-width: 767px) {
  :root { --shell: calc(100% - 28px); --header-height: 68px; }
  .section { padding-block: 82px; }
  h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .header-inner { gap: 12px; }
  .brand-link { width: 142px; }
  .header-actions { gap: 4px; }
  .header-actions > .social-links { display: none; }
  .hero-content { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 4.9rem); }
  .hero p { max-width: 340px; margin-bottom: 24px; }
  .hero-buttons { display: none; }
  .hero-image { object-position: 60% 52%; }
  .intro { grid-template-columns: 1fr; gap: 42px; }
  .intro-image { width: 100%; }
  .facts-grid { grid-template-columns: 1fr; padding-block: 18px; }
  .facts-grid div, .facts-grid div:first-child { padding: 18px 0; border-left: 0; border-top: 1px solid rgba(246, 248, 250, 0.22); }
  .facts-grid div:first-child { border-top: 0; }
  .section-heading { margin-bottom: 36px; }
  .food-grid { grid-template-columns: 1fr; gap: 46px; }
  .food-panel:nth-child(2) { margin-top: 0; }
  .food-panel p { max-width: 42ch; }
  .food-action .button { width: 100%; }
  .service-banner { min-height: 720px; align-items: end; }
  .service-banner-image { inset: 0 0 42%; }
  .service-banner::after { background: linear-gradient(to top, var(--ink) 0 55%, rgba(12, 23, 48, 0.88) 67%, rgba(12, 23, 48, 0.08) 100%); }
  .service-banner-content { padding-top: 320px; padding-bottom: 72px; }
  .service-banner-content h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .service-actions .button { flex: 1 1 150px; }
  .hero-orbit-outer { top: 14%; right: -48%; width: 390px; }
  .hero-orbit-inner { top: 25%; right: -13%; width: 250px; }
  .hero-spark-one { top: 34%; right: 8%; }
  .hero-spark-two { top: 20%; right: 24%; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-layout { gap: 42px; }
  .review-feature blockquote { font-size: 1.75rem; }
  .reviews-secondary { gap: 34px; }
  .reviews-secondary .review { display: block; }
  .reviews-secondary .review-top,
  .reviews-secondary blockquote { grid-column: auto; }
  .visit-heading { margin-bottom: 36px; }
  .visit-info-grid { grid-template-columns: 1fr; }
  .visit-block { padding: 24px 0 0; }
  .visit-block:first-child { padding-top: 0; }
  .visit-block + .visit-block,
  .visit-block:nth-child(3) { grid-column: auto; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); border-left: 0; }
  .visit-meta { align-items: stretch; flex-direction: column; gap: 24px; margin-top: 28px; padding-top: 28px; }
  .visit-meta .button { display: none; }
  .map-wrap, .map-wrap iframe { min-height: 350px; height: 350px; }
  .site-footer { padding-bottom: 112px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .site-footer nav { grid-template-columns: repeat(3, auto); justify-content: start; gap: 24px; }
  .mobile-action-bar {
    position: fixed;
    inset: auto 14px 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5px;
    border: 1px solid rgba(246, 248, 250, 0.24);
    border-radius: var(--button-radius);
    background: rgba(12, 23, 48, 0.96);
    box-shadow: 0 8px 24px rgba(12, 23, 48, 0.22);
    animation: mobile-bar-in 520ms var(--ease-drawer) both;
  }
  .mobile-action-bar a { min-height: 48px; display: grid; place-items: center; border-radius: var(--button-radius); color: #f6f8fa; font-weight: 760; text-decoration: none; transition: transform 140ms var(--ease-out), background-color 160ms ease; }
  .mobile-action-bar a:active { transform: scale(0.96); }
  .mobile-action-bar a:first-child { position: relative; overflow: hidden; background: var(--accent); color: var(--ink); }
  .mobile-action-bar a:first-child::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: translate3d(-140%, 0, 0) skewX(-20deg);
    animation: mobile-shine 4s linear infinite;
    pointer-events: none;
  }
  .lightbox { grid-template-columns: 54px minmax(0, 1fr) 54px; padding: 16px 8px; }
  .lightbox figure { max-width: 100%; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 3.35rem; }
  .button { padding-inline: 17px; }
  .lightbox { grid-template-columns: 46px minmax(0, 1fr) 46px; }
  .lightbox .icon-button { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .motion-ready .reveal,
  .reveal { opacity: 1; filter: none; transform: none; clip-path: none; }
  .hero h1,
  .hero p,
  .hero-buttons { opacity: 1; transform: none; }
  .hero-image,
  .hero-orbit,
  .hero-spark,
  .intro-image img,
  .food-panel .ratio-card,
  .service-banner-image img,
  .gallery-item img,
  .stars,
  .visit-features li,
  .brand-marquee-track,
  .mobile-action-bar { animation: none !important; transform: none; }
  .scroll-progress { display: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-solid, .button-ghost, .mobile-action-bar { backdrop-filter: none; }
  .site-header.is-solid { background: var(--paper); }
}
