:root {
  --navy-950: #09111d;
  --navy-900: #0e1c30;
  --navy-800: #142942;
  --navy-700: #1a3554;
  --red-700: #9f2437;
  --red-600: #bb3047;
  --red-500: #d84c61;
  --cream-100: #f8f4ee;
  --cream-200: #f0e7dc;
  --stone-300: #d9c9b6;
  --ink-900: #142033;
  --ink-700: #44536a;
  --white: #ffffff;
  --line: rgba(18, 31, 49, 0.1);
  --shadow-xl: 0 32px 90px rgba(7, 14, 24, 0.3);
  --shadow-lg: 0 24px 60px rgba(9, 17, 29, 0.16);
  --shadow-md: 0 14px 32px rgba(9, 17, 29, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(216, 76, 97, 0.18), transparent 32%),
    linear-gradient(180deg, #08111c 0%, #13243a 28%, #f5f0e8 28%, #f7f2eb 100%);
  line-height: 1.6;
}

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

figure {
  margin: 0;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 17, 28, 0.32);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 17, 28, 0.86);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 88px;
}

.brand {
  display: grid;
  gap: 0.12rem;
}

.brand-mark,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-mark {
  font-size: clamp(1.9rem, 2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffd7dc;
  transform: translateY(-1px);
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.flag-badge {
  width: 48px;
  height: auto;
  border-radius: 0.7rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 0 2.5rem;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(8, 17, 28, 0.88) 0%, rgba(8, 17, 28, 0.52) 48%, rgba(8, 17, 28, 0.38) 100%),
    url("Images/storefront.png") center center / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 76, 97, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(8, 17, 28, 0.12) 0%, rgba(8, 17, 28, 0.72) 78%, rgba(8, 17, 28, 0.96) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, rgba(8, 17, 28, 0) 0%, #f5f0e8 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-width: 0;
  width: min(100%, 36rem);
  justify-self: center;
}

.hero-copy,
.hero-stack,
.story-panel,
.story-visuals,
.section-head,
.experience-card,
.signature-copy,
.signature-lead,
.signature-grid,
.menu-board,
.order-shell,
.review-card,
.contact-panel,
.contact-map,
.contact-video {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow,
.section-kicker,
.hero-pills span,
.story-details span,
.experience-copy span,
.food-future span,
.order-card span,
.service-strip span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.section-kicker {
  color: #ff9baa;
  margin: 0 0 0.9rem;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4.1rem, 10vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 8.6ch;
  font-size: clamp(3.5rem, 6.6vw, 5.9rem);
}

.hero-title-bubble {
  display: none;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.95rem 0 0;
}

.hero-pills,
.hero-actions,
.story-details,
.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-pills {
  margin-top: 1.6rem;
}

.hero-pills span,
.service-strip span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.hero-card:hover,
.experience-card:hover,
.review-card:hover,
.order-card:hover,
.food-future:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, #d84c61, #ad2439);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(159, 36, 55, 0.35);
}

.button-secondary {
  background: linear-gradient(135deg, #f1e5d6, #e5d4bd);
  color: var(--ink-900);
  box-shadow: 0 18px 34px rgba(10, 16, 27, 0.16);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-stack {
  display: grid;
  gap: 1rem;
  align-self: center;
  justify-self: center;
  width: min(100%, 29rem);
}

.hero-card,
.story-panel,
.portrait-card,
.landscape-card,
.experience-card,
.signature-feature,
.food-future,
.menu-board,
.order-shell,
.review-card,
.contact-panel,
.media-card,
.map-frame {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-primary {
  min-height: 340px;
  position: relative;
}

.hero-card-primary::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 17, 28, 0.96));
}

.hero-card-copy {
  position: absolute;
  inset: auto 1.4rem 1.35rem;
  z-index: 1;
}

.hero-card-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-card-copy strong {
  display: block;
  font-size: 1.15rem;
}

.hero-card-accent {
  min-height: 155px;
}

.section {
  position: relative;
  padding: 5.5rem 0;
  color: var(--ink-900);
}

.story,
.experience,
.signature,
.menu,
.reviews,
.contact {
  background: #f5f0e8;
}

.experience,
.reviews,
.contact {
  background: #f1ebe2;
}

.order {
  background: linear-gradient(180deg, #f5f0e8 0%, #e8e0d6 100%);
}

.story-layout,
.signature-layout,
.contact-layout {
  display: grid;
  gap: 1.4rem;
}

.story-panel,
.contact-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 236, 0.96));
}

.story-panel h2,
.section-head h2,
.signature-copy h2,
.contact-panel h2,
.order-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.story-panel p,
.section-head p,
.signature-copy p,
.experience-copy p,
.review-card p,
.order-copy p,
.contact-panel p {
  color: var(--ink-700);
}

.story-details {
  margin-top: 1.6rem;
}

.story-details div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(16, 28, 46, 0.04);
  border: 1px solid rgba(16, 28, 46, 0.08);
}

.story-details a {
  display: block;
  font-weight: 600;
  color: var(--ink-900);
}

.story-visuals {
  display: grid;
  gap: 1rem;
}

.portrait-card,
.landscape-card,
.signature-feature,
.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.portrait-card img,
.landscape-card img,
.signature-feature img,
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-card img {
  min-height: 420px;
}

.landscape-card img {
  min-height: 280px;
}

.section-head {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.experience-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.experience-card {
  display: grid;
  grid-template-rows: minmax(280px, 320px) 1fr;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
}

.experience-card img {
  min-height: 100%;
  transition: transform 0.35s ease;
}

.experience-copy {
  position: relative;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 233, 0.98));
  border-top: 1px solid rgba(20, 32, 51, 0.08);
  z-index: 1;
}

.experience-copy span,
.food-future span,
.order-card span {
  color: var(--red-600);
}

.experience-copy h3,
.review-card strong,
.footer-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
  line-height: 1;
}

.signature-copy {
  align-content: start;
}

.signature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.signature-meta span {
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(9, 17, 29, 0.05);
}

.signature-meta span {
  color: var(--ink-700);
  font-size: 0.86rem;
}

.signature-note {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: 0 12px 26px rgba(9, 17, 29, 0.05);
}

.signature-note span {
  color: var(--red-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-note p,
.signature-note-list {
  margin: 0;
  color: var(--ink-700);
}

.signature-note-list {
  padding-left: 1.05rem;
  display: grid;
  gap: 0.22rem;
}

.signature-grid {
  display: grid;
  gap: 1rem;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  contain: layout paint;
}

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

.signature-lead {
  min-width: 0;
}

.signature-lead-card {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  contain: paint;
}

.signature-lead-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.signature-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  contain: paint;
}

.signature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.signature-card-feature,
.signature-card-tall,
.signature-card-wide {
  grid-column: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.experience-card:hover img,
.experience-card:focus-within img,
.signature-lead-card:hover img,
.signature-lead-card:focus-within img,
.signature-card:hover img,
.signature-card:focus-within img {
  transform: scale(1.02);
}

.menu-shell {
  display: grid;
  gap: 1.4rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 76, 97, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 231, 0.98));
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: var(--shadow-lg);
  min-width: 0;
  overflow: hidden;
}

.menu-featured {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.menu-featured-head h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: var(--ink-900);
}

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

.menu-feature-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.7rem;
  align-content: start;
  min-height: 0;
  min-width: 0;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 233, 0.98));
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.menu-feature-card:hover,
.menu-feature-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(187, 48, 71, 0.16);
}

.menu-feature-card span,
.menu-tab {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.menu-feature-card span {
  color: var(--red-600);
}

.menu-feature-card h4,
.menu-item h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink-900);
}

.menu-feature-card h4 {
  font-size: 1.78rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.menu-feature-card p,
.menu-item p {
  margin: 0;
  color: var(--ink-700);
  overflow-wrap: anywhere;
}

.menu-feature-card strong,
.menu-item strong,
.contact-card strong {
  display: block;
  align-self: start;
  color: var(--ink-900);
}

.menu-feature-card strong {
  color: var(--red-700);
  font-size: 1.15rem;
}

.menu-categories {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
}

.menu-categories-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: visible;
  min-height: 4.25rem;
  min-width: 0;
}

.menu-categories::-webkit-scrollbar {
  display: none;
}

.menu-categories-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-900);
  box-shadow: 0 12px 24px rgba(9, 17, 29, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.menu-categories-arrow:hover,
.menu-categories-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(187, 48, 71, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

.menu-categories-arrow.is-disabled {
  opacity: 0.45;
}

.menu-categories-arrow span {
  font-size: 1.45rem;
  line-height: 1;
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: 999px;
  background: rgba(20, 32, 51, 0.04);
  color: var(--ink-700);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(187, 48, 71, 0.22);
}

.menu-tab.is-active {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(20, 41, 66, 0.2);
}

.menu-panels {
  position: relative;
  min-width: 0;
}

.menu-panel {
  animation: menuFade 0.28s ease;
  min-width: 0;
}

.menu-list {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  min-width: 0;
  max-width: 100%;
  padding: 1.15rem 1.2rem;
  box-sizing: border-box;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: 0 10px 24px rgba(9, 17, 29, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.menu-item:hover,
.menu-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(187, 48, 71, 0.16);
  box-shadow: 0 16px 32px rgba(9, 17, 29, 0.08);
}

.menu-item-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.menu-item h4 {
  font-size: 1.55rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.menu-item strong {
  color: var(--red-700);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-item-copy:only-child {
  padding-right: 0;
}

.contact-card span {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.3rem;
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.order-shell {
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 76, 97, 0.16), transparent 26%),
    linear-gradient(135deg, #0c1728, #182c47 70%, #223b5e);
  color: var(--white);
}

.order-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.order-grid {
  display: grid;
  gap: 1rem;
}

.order-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.order-card:hover,
.order-card:focus-visible {
  border-color: rgba(255, 215, 220, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.order-card strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 1.5rem;
}

.order-card small {
  color: rgba(255, 255, 255, 0.68);
}

.order-feature {
  background: linear-gradient(135deg, rgba(216, 76, 97, 0.18), rgba(255, 255, 255, 0.08));
}

.review-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
}

.review-stars {
  color: var(--red-600);
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.contact-media-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.contact-map,
.contact-video {
  height: 100%;
}

.media-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 236, 0.96));
}

.media-card-head {
  display: grid;
  gap: 0.25rem;
  padding: 1.3rem 1.3rem 0;
}

.media-card-head .section-kicker {
  margin-bottom: 0;
}

.media-card-head h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-900);
}

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  margin: 1rem;
  background: #09111d;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 17, 29, 0), rgba(9, 17, 29, 0.36));
}

.drone-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #09111d;
}

.drone-video::-webkit-media-controls {
  display: none !important;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.contact-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(20, 32, 51, 0.04);
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #dfe5ee;
  min-height: 420px;
  height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.site-footer {
  padding: 3rem 0;
  background:
    radial-gradient(circle at top right, rgba(216, 76, 97, 0.12), transparent 26%),
    #0b1422;
}

.footer-grid {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid h2 {
  margin: 0 0 0.65rem;
  font-size: 2.4rem;
  color: var(--white);
}

.footer-grid h3 {
  color: var(--white);
}

.site-footer a:hover,
.site-footer a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible,
.story-details a:hover,
.story-details a:focus-visible {
  color: #ffbdc7;
}

@media (min-width: 760px) {
  .hero-grid,
  .story-layout,
  .contact-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .signature-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .signature-lead {
    grid-column: 2;
    grid-row: 1;
  }

  .signature-grid {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

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

  .menu-categories-arrow {
    display: inline-flex;
  }

  .menu-categories {
    flex: 1 1 auto;
    scroll-behavior: smooth;
  }

  .experience-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.7fr);
  }

  .signature-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 1.25rem;
  }

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

  .story-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(8, 17, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 759px) {
  body {
    background: linear-gradient(180deg, #08111c 0%, #13243a 21%, #f5f0e8 21%, #f7f2eb 100%);
  }

  .section {
    padding: 4.75rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 3.35rem;
  }

  .hero::after {
    height: 7rem;
  }

  .hero-backdrop {
    background-position: 60% center;
    background-size: auto 100%;
    transform: scale(1.01);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 82% 16%, rgba(216, 76, 97, 0.22), transparent 28%),
      linear-gradient(180deg, rgba(8, 17, 28, 0.22) 0%, rgba(8, 17, 28, 0.58) 44%, rgba(8, 17, 28, 0.9) 100%);
  }

  .hero-grid {
    gap: 1.6rem;
    align-items: start;
    justify-items: stretch;
  }

  .hero-copy {
    width: 100%;
    max-width: 34rem;
    gap: 0.58rem;
    justify-self: stretch;
    padding: 1.5rem 1.3rem 1.35rem;
    border-radius: 2rem;
    background:
      linear-gradient(180deg, rgba(9, 17, 29, 0.7), rgba(9, 17, 29, 0.46));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 54px rgba(4, 10, 18, 0.24);
    backdrop-filter: blur(14px);
  }

  .eyebrow {
    margin-bottom: 0.5rem;
    justify-self: start;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #ffb2bd;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.05rem, 11.6vw, 4.2rem);
    line-height: 0.9;
  }

  .hero-title-lockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero-title-bubble {
    display: block;
    flex: 0 0 38%;
    width: min(7.4rem, 38%);
    max-width: 38%;
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 34px rgba(4, 10, 18, 0.2);
  }

  .hero-title-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-title-lockup h1 {
    flex: 1 1 auto;
    min-width: 0;
  }

  .hero-lead {
    max-width: 33rem;
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.84);
  }

  .hero-pills {
    margin-top: 1.15rem;
    gap: 0.62rem;
  }

  .hero-pills span {
    padding: 0.56rem 0.8rem;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.08);
  }

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

  .hero-actions .button {
    min-height: 3.15rem;
    width: 100%;
  }

  .hero-actions .button-primary {
    grid-column: 1 / -1;
  }

  .flag-badge {
    width: 38px;
  }

  .story-panel,
  .contact-panel,
  .order-shell {
    padding: 1.35rem;
  }

  .hero-stack {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
    justify-self: stretch;
  }

  .hero-card-primary {
    min-height: 0;
    aspect-ratio: 0.84 / 1;
    grid-column: 1;
  }

  .hero-card-accent {
    min-height: 0;
    aspect-ratio: 0.84 / 1;
    grid-column: 2;
  }

  .hero-card-copy {
    inset: auto 1.15rem 1.05rem;
  }

  .hero-card-copy strong {
    font-size: 1.04rem;
  }

  .signature-lead-card {
    min-height: 360px;
  }

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

  .signature-card,
  .signature-card-feature,
  .signature-card-tall,
  .signature-card-wide {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .experience-card img,
  .portrait-card img,
  .landscape-card img {
    min-height: 240px;
  }

  .experience-card {
    grid-template-rows: auto 1fr;
  }

  .section-head {
    margin-bottom: 1.7rem;
  }

  .experience-grid {
    gap: 1.25rem;
  }

  .experience-card img {
    min-height: 0;
    height: auto;
    aspect-ratio: 5 / 4;
  }

  .experience-card:nth-child(1) img {
    object-position: center 36%;
  }

  .experience-card:nth-child(2) img {
    object-position: center 30%;
  }

  .experience-card:nth-child(3) img {
    object-position: center 24%;
  }

  .experience-copy {
    padding: 1.25rem 1.15rem 1.3rem;
  }

  .experience-copy h3 {
    font-size: 1.65rem;
    line-height: 1.04;
  }

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

  .menu-item strong {
    white-space: normal;
  }

  .menu-categories-shell {
    gap: 0;
  }

  .menu-categories-arrow {
    display: none;
  }

  .drone-video,
  .video-frame,
  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }
}

@media (max-width: 479px) {
  .hero {
    padding-top: 0.95rem;
    padding-bottom: 2.7rem;
  }

  .hero-copy {
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 1.7rem;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 10.9vw, 3.7rem);
  }

  .hero-title-lockup {
    gap: 0.85rem;
  }

  .hero-title-bubble {
    flex-basis: 39%;
    width: min(6.5rem, 39%);
    max-width: 39%;
    border-radius: 1.3rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .hero-card-primary {
    min-height: 0;
    aspect-ratio: 0.86 / 1;
    grid-column: 1;
  }

  .hero-card-accent {
    min-height: 0;
    aspect-ratio: 0.86 / 1;
    grid-column: 2;
  }

  .hero-card-copy {
    inset: auto 1rem 0.92rem;
  }

  .hero-card-copy span {
    font-size: 0.74rem;
  }

  .hero-card-copy strong {
    font-size: 0.96rem;
  }

  .signature-lead-card {
    min-height: 300px;
  }

  .experience-card {
    grid-template-rows: auto 1fr;
  }

  .signature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .signature-card,
  .signature-card-feature,
  .signature-card-tall,
  .signature-card-wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .experience-copy {
    padding: 1.1rem 1rem 1.15rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-backdrop {
    transform: none !important;
  }

  .hero-copy,
  .hero-stack,
  .story-panel,
  .story-visuals,
  .section-head,
  .experience-card,
  .signature-copy,
  .signature-lead,
  .signature-grid,
  .menu-board,
  .order-shell,
  .review-card,
  .contact-panel,
  .contact-map,
  .contact-video {
    opacity: 1;
    transform: none;
  }
}
