/* ============================================
   ENGLE'S DRIVE-IN — STYLESHEET
   Deep Navy + Warm Gold | Editorial Style
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-navy: #0f1c3f;
  --color-navy-light: #1a2d5a;
  --color-navy-dark: #091229;
  --color-gold: #c8a44e;
  --color-gold-light: #d4b76a;
  --color-gold-dark: #a8873a;
  --color-cream: #faf6ee;
  --color-warm-white: #f5f0e8;
  --color-off-white: #f9f7f3;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-text-muted: #7a7a7a;
  --color-border: rgba(15, 28, 63, 0.1);
  --color-border-light: rgba(15, 28, 63, 0.06);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-sm: 0 1px 3px rgba(15, 28, 63, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 28, 63, 0.1);
  --shadow-lg: 0 8px 40px rgba(15, 28, 63, 0.12);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-navy);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  font-weight: 500;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-letter {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: #fff;
  color: var(--color-navy);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--color-cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.is-scrolled {
  background: rgba(15, 28, 63, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1001;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo--footer .logo-mark {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.logo--footer .logo-name {
  color: var(--color-cream);
}

/* --- Navigation --- */
.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 1001;
}

.hamburger {
  position: relative;
  width: 22px;
  height: 14px;
  display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: all var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 50%;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-navy-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay .nav-list {
  flex-direction: column;
  gap: var(--space-xl);
  text-align: center;
}

.nav-overlay .nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.nav-overlay .nav-link:hover {
  color: var(--color-gold);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(200, 164, 78, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 45, 90, 0.5) 0%, transparent 50%),
    var(--color-navy);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.title-line {
  display: block;
}

.serif-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.meta-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.meta-item a:hover {
  color: var(--color-gold);
}

.meta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Divider --- */
.divider {
  padding: 0;
  overflow: hidden;
}

.divider-line {
  width: 80px;
  height: 1.5px;
  background: var(--color-gold);
  margin: 0 auto;
}

/* --- Highlights --- */
.highlights {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.highlight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.highlight-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* --- Section Shared --- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

.section-eyebrow--dark {
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.section-title--light {
  color: #fff;
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 560px;
}

/* --- Menu --- */
.menu-section {
  padding: var(--space-4xl) 0;
  background: var(--color-warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-desc {
  margin: 0 auto;
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.category-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.6;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.menu-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.menu-note {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-navy);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.menu-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.menu-note a {
  color: var(--color-gold);
  font-weight: 500;
}

.menu-note a:hover {
  text-decoration: underline;
}

/* --- About --- */
.about-section {
  padding: var(--space-4xl) 0;
  background: var(--color-navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-img-group {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-navy);
}

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

.about-accent-box {
  position: absolute;
  top: -20px;
  left: -15px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.about-accent-box .accent-number {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-accent-box .accent-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.about-content-col {
  padding: var(--space-lg) 0;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.about-text strong {
  color: #fff;
}

.about-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

/* --- Experience --- */
.experience-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--color-navy-dark);
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 164, 78, 0.06) 0%, transparent 60%);
}

.experience-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.experience-title {
  margin-bottom: var(--space-3xl);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.experience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: left;
  transition: all var(--transition-base);
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.exp-card-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.exp-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.exp-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Gallery --- */
.gallery-section {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

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

.gallery-item--large {
  aspect-ratio: 4/3;
}

.gallery-item:not(.gallery-item--large) {
  aspect-ratio: 4/3;
}

.gallery-item--wide {
  aspect-ratio: 16/9;
}

/* --- Visit --- */
.visit-section {
  padding: var(--space-4xl) 0;
  background: var(--color-navy);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.visit-info {
  max-width: 560px;
}

.visit-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.visit-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 164, 78, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.detail-value {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.detail-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.detail-link:hover {
  color: var(--color-gold);
}

/* Map placeholder */
.map-placeholder {
  background: var(--color-navy-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  color: var(--color-gold);
}

.map-icon svg {
  width: 100%;
  height: 100%;
}

.map-address {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.map-btn svg {
  width: 16px;
  height: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--color-navy-dark);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

/* --- Scroll Reveal (progressive enhancement) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */

/* Tablet */
@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-xl);
  }

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

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

  .menu-category:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

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

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

  .gallery-item--large {
    grid-column: 1 / 3;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

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

/* Desktop */
@media (min-width: 1024px) {
  .header-inner {
    height: 90px;
  }

  .nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
  }

  .hero-image {
    max-width: 480px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

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

  .menu-category:last-child {
    grid-column: auto;
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-2xl);
  }

  .hero-img-wrapper {
    max-width: 520px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  .scroll-line {
    animation: none;
  }
}
