/* Mediterranean Kitchen — premium styles */

:root {
  --blue: #171F7E;
  --blue-mid: #2434A0;
  --blue-light: #3D52C4;
  --blue-dark: #0A0E3D;
  --blue-50: #F4F6FC;
  --blue-100: #E4E9F8;
  --blue-glass: rgba(23, 31, 126, 0.08);
  --gold: #C9A84C;
  --gold-light: #E2C878;
  --gold-dark: #A68B3A;
  --charcoal: #12141F;
  --charcoal-soft: #4A4F63;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(23, 31, 126, 0.06);
  --shadow: 0 8px 32px rgba(23, 31, 126, 0.1);
  --shadow-lg: 0 20px 60px rgba(23, 31, 126, 0.16);
  --shadow-gold: 0 8px 28px rgba(201, 168, 76, 0.35);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --header-h: 80px;
  --mobile-cta-h: 72px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--blue-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue);
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.skip-link:focus { top: 1rem; }

/* ─── Typography ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-title--light { color: var(--white); }

.section-title--left { text-align: left; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-lead {
  color: var(--charcoal-soft);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 52ch;
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--blue-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  color: var(--blue-dark);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-secondary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal-soft);
  border-color: transparent;
  letter-spacing: 0.04em;
}

.btn-ghost:hover {
  color: var(--blue);
  transform: none;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-glass-dark {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  border-color: rgba(255, 255, 255, 0.92);
}

.btn-glass-dark:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}

.btn-lg {
  padding: 1.0625rem 2.25rem;
  font-size: 0.8125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(23, 31, 126, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-line {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.logo-line--accent {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--blue);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}

.site-nav a {
  color: var(--charcoal-soft);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a:hover::after { width: 100%; }

.header-ctas { display: none; gap: 0.625rem; }

.nav-backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1529006557810-274cb1aba382?w=1920&q=80") center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 14, 61, 0.92) 0%, rgba(23, 31, 126, 0.78) 45%, rgba(10, 14, 61, 0.55) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-copy {
  max-width: 580px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.open {
  background: rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
}

.badge.closed {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.badge-gold {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.4);
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-frame {
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 50%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  pointer-events: none;
}

.hero-logo {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  object-fit: contain;
}

.hero-brand-tag {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

/* ─── Sections ─── */
.section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

/* ─── About ─── */
.about {
  background: var(--white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2.25rem 2rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--charcoal-soft);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── Menu ─── */
.menu-section {
  background: var(--blue-50);
}

.menu-filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-100) transparent;
}

.menu-filters::-webkit-scrollbar {
  height: 4px;
}

.menu-filters::-webkit-scrollbar-thumb {
  background: var(--blue-100);
  border-radius: 4px;
}

.filter-btn {
  flex-shrink: 0;
  padding: 0.625rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--blue-100);
  background: var(--white);
  color: var(--charcoal-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--blue-100);
  border-left: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}

.menu-item.hidden { display: none; }

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--blue-100);
}

.menu-item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.menu-item p {
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}

.menu-item--unavailable {
  opacity: 0.65;
}

.menu-price--unavailable {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
}

.menu-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.menu-tag--popular {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.menu-tag--veg {
  background: rgba(43, 120, 80, 0.1);
  color: #2B7850;
  border: 1px solid rgba(43, 120, 80, 0.25);
}

.menu-tag--spicy {
  background: rgba(196, 60, 40, 0.1);
  color: #A83220;
  border: 1px solid rgba(196, 60, 40, 0.25);
}

.menu-item-footer {
  margin-top: auto;
  padding-top: 1.25rem;
}

.btn-menu-order {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}

.menu-unavailable-label {
  display: block;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  opacity: 0.6;
  padding: 0.75rem;
}

.menu-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--blue-100);
}

.menu-cta-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.menu-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

/* ─── Reviews ─── */
.reviews-section {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.reviews-section .section-eyebrow {
  color: var(--gold-light);
}

.reviews-section .section-eyebrow::before,
.reviews-section .section-eyebrow::after {
  background: var(--gold-light);
}

.reviews-summary { margin-top: 1rem; }

.stars-large {
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 0.375rem;
}

.reviews-summary p {
  opacity: 0.75;
  font-weight: 300;
}

.reviews-carousel-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.reviews-carousel { overflow: hidden; }

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-stars {
  color: var(--gold-light);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.review-author {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-source {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.25rem;
  font-weight: 300;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
}

.carousel-dots { display: flex; gap: 0.5rem; }

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.active {
  background: var(--gold-light);
  transform: scale(1.4);
}

.reviews-note {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.45;
  margin-top: 2rem;
  letter-spacing: 0.04em;
}

/* ─── Order banner ─── */
.order-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.order-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.order-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.order-banner-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.order-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.order-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ─── Order steps ─── */
.order-section { background: var(--white); }

.order-steps {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.order-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--blue-100);
  align-items: start;
}

.order-step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.375rem;
}

.step-content p {
  color: var(--charcoal-soft);
  font-size: 0.9375rem;
  font-weight: 300;
}

.step-content a { font-weight: 600; color: var(--blue-mid); }

/* ─── Location ─── */
.location-section { background: var(--blue-50); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-block {
  font-style: normal;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-item span,
.contact-item a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

.hours-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1rem;
}

.hours-list { list-style: none; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--blue-100);
}

.hours-status {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--blue);
  font-size: 0.9375rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  border: 1px solid var(--blue-100);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 5rem;
}

.footer-inner { text-align: center; }

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 0.04em;
}

/* ─── Mobile CTA ─── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--blue-100);
  box-shadow: 0 -8px 32px rgba(23, 31, 126, 0.1);
  gap: 0.625rem;
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 0.875rem;
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (min-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 2.5rem));
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    background: transparent;
    padding: 0;
    overflow: visible;
    z-index: 1001;
    pointer-events: none;
  }

  .site-nav ul,
  .site-nav .header-ctas {
    pointer-events: auto;
  }

  .header-ctas { display: flex; }
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy { max-width: none; }

  .hero-sub { margin-inline: auto; }

  .hero-ctas,
  .hero-badges { justify-content: center; }

  .hero-eyebrow { justify-content: center; }

  .hero-brand { order: -1; }

  .hero-logo { width: clamp(140px, 40vw, 200px); }

  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; z-index: 1002; position: relative; }

  .logo-wordmark { display: none; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(10, 14, 61, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    background: var(--white);
    padding: 1.5rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .site-nav.open { transform: translateX(0); }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    flex: 1;
  }

  .site-nav li { border-bottom: 1px solid var(--blue-100); }

  .site-nav a {
    display: block;
    padding: 1.125rem 0;
    font-size: 0.875rem;
  }

  .header-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--blue-100);
    flex-shrink: 0;
  }

  .header-ctas .btn { width: 100%; }

  body.nav-open .mobile-cta-bar {
    display: none;
  }

  .mobile-cta-bar { display: flex; }

  .site-footer { padding-bottom: calc(var(--mobile-cta-h) + 2rem); }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .order-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .order-banner-actions { justify-content: center; width: 100%; }
  .order-banner-actions .btn { flex: 1; min-width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reviews-track { transition: none; }
  .btn:hover { transform: none; }
}
