:root {
  --night: #050816;
  --night-soft: #0b1330;
  --night-mid: #111f46;
  --paper: #f5f2ea;
  --paper-strong: #fffdf8;
  --ink: #0a1226;
  --ink-soft: rgba(10, 18, 38, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(10, 18, 38, 0.12);
  --electric: #3669ff;
  --electric-soft: #6c8dff;
  --orange: #f2a13b;
  --orange-soft: #f3be79;
  --glow: 0 0 30px rgba(54, 105, 255, 0.35);
  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.22);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 14%, rgba(54, 105, 255, 0.18), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(242, 161, 59, 0.16), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(54, 105, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #040714 0%, #08112a 48%, #050816 100%);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

.site-orbits {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 56% 72%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.5px);
  background-size: 220px 220px, 300px 300px, 260px 260px;
  opacity: 0.9;
}

.site-header,
.page-shell,
.site-footer {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.58);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(5, 8, 22, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--glow);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-copy span:last-child {
  color: rgba(245, 242, 234, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.header-chip,
.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.header-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.header-link {
  background: linear-gradient(135deg, var(--electric), var(--electric-soft));
  color: white;
  box-shadow: 0 12px 28px rgba(54, 105, 255, 0.3);
}

.page-shell {
  padding: 2.75rem 0 5rem;
}

.hero,
.story,
.menu-section,
.panel-light {
  margin-top: 2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.story h2,
.section-heading h2,
.panel-light h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.92;
}

.hero h1 span {
  color: var(--orange);
}

.lead,
.story p,
.menu-card-copy p,
.detail-card p,
.visit-copy p,
.route-copy p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  color: rgba(245, 242, 234, 0.8);
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 760px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-link:focus-visible,
.header-chip:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--electric), #1b4ce0);
  color: white;
  box-shadow: 0 14px 30px rgba(54, 105, 255, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.fact-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.fact-card span,
.menu-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: rgba(245, 242, 234, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-frame {
  height: 100%;
  min-height: 620px;
  padding: 1rem;
  border-radius: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(54, 105, 255, 0.28), rgba(242, 161, 59, 0.12));
  box-shadow: var(--shadow-xl);
}

.hero-frame img {
  height: 100%;
  min-height: 588px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 0.6rem);
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 19, 48, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.floating-logo {
  top: -0.4rem;
  left: -0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem 0.8rem 0.8rem;
}

.floating-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}

.floating-logo span,
.floating-coordinates span {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-quote {
  right: -0.6rem;
  bottom: 3rem;
  padding: 1rem 1.25rem;
  max-width: 16rem;
  border-radius: 1.5rem;
}

.floating-quote p {
  margin: 0;
  color: white;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.floating-coordinates {
  left: 3rem;
  bottom: -1rem;
  display: flex;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: stretch;
}

.story-copy,
.story-gallery {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.story-copy h2,
.section-heading h2,
.panel-light h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.97;
}

.story-copy p {
  color: rgba(245, 242, 234, 0.78);
}

.story-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.story-image {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.45rem);
  min-height: 100%;
}

.story-image-large {
  grid-row: 1 / -1;
  min-height: 420px;
}

.story-image img,
.panel-photo img,
.menu-card img {
  height: 100%;
  object-fit: cover;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

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

.menu-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(5, 8, 22, 0.86) 76%);
}

.menu-card img {
  position: absolute;
  inset: 0;
}

.menu-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.4rem;
}

.menu-card-copy h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
}

.menu-card-copy p {
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.82);
}

.panel-light {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  color: var(--ink);
  border-radius: clamp(2rem, 3vw, 2.8rem);
  background:
    radial-gradient(circle at top right, rgba(54, 105, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(240, 244, 252, 0.94));
  box-shadow: var(--shadow-xl);
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.panel-copy {
  display: grid;
  gap: 1rem;
}

.detail-card,
.route-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.detail-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.66);
}

.detail-card h3,
.visit-copy h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.detail-card p,
.visit-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.panel-photo {
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius-md);
}

.panel-photo-wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 18, 38, 0.12);
}

.visit-copy address {
  margin: 1rem 0 0;
  font-style: normal;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
}

.visit-copy .button-secondary {
  color: var(--ink);
  border-color: rgba(10, 18, 38, 0.12);
  background: rgba(10, 18, 38, 0.04);
}

.catering-line {
  font-weight: 600;
  margin-top: 1rem;
}

.catering-line a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .catering-line {
    font-size: 0.95rem;
  }
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  overflow: hidden;
  padding: 1.5rem;
  color: white;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(140deg, #08122d 0%, #17377c 58%, #f2a13b 145%);
}

.route-card::before,
.route-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.route-card::before {
  width: 360px;
  height: 360px;
  top: -140px;
  right: -90px;
}

.route-card::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -80px;
}

.route-badge {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
}

.route-copy strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.route-copy p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 0 2.2rem;
  color: rgba(245, 242, 234, 0.58);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  animation: rise-in 760ms cubic-bezier(0.18, 0.8, 0.24, 1) both;
}

.story.reveal {
  animation-delay: 120ms;
}

.menu-section.reveal {
  animation-delay: 220ms;
}

.menu-card.reveal:nth-child(1) {
  animation-delay: 280ms;
}

.menu-card.reveal:nth-child(2) {
  animation-delay: 340ms;
}

.menu-card.reveal:nth-child(3) {
  animation-delay: 400ms;
}

.panel-light.reveal {
  animation-delay: 300ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 1100px) {
  .hero,
  .story,
  .panel-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 500px;
  }

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

  .floating-coordinates {
    left: 1.5rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.9rem 1rem;
    border-radius: 1.8rem;
  }

  .header-actions {
    display: none;
  }

  .page-shell {
    padding-top: 1.6rem;
  }

  .hero-frame,
  .hero-frame img,
  .menu-card,
  .panel-photo-wide {
    min-height: unset;
  }

  .hero-frame {
    height: auto;
  }

  .hero-frame img {
    aspect-ratio: 4 / 5;
  }

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

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

  .menu-card {
    min-height: 500px;
  }

  .story-image-large {
    min-height: auto;
    grid-row: auto;
  }

  .story-image img,
  .panel-photo img {
    aspect-ratio: 4 / 5;
  }

  .floating-logo {
    top: 1rem;
    left: 1rem;
  }

  .floating-quote {
    right: 1rem;
    bottom: 4.4rem;
    max-width: 12rem;
  }

  .floating-coordinates {
    left: 1rem;
    bottom: 1rem;
    flex-direction: column;
    gap: 0.35rem;
    border-radius: 1.4rem;
  }

  .site-footer {
    padding-bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .reveal,
  .button,
  .header-link,
  .site-header {
    animation: none;
    transition: none;
  }
}
