/* ============================================
   West Milford Airport Diner — Stylesheet
   Colors: Plum #7B2D8E | Amber #F5A623
   Fonts: Bebas Neue + Inter
   ============================================ */

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

:root {
  --plum: #7B2D8E;
  --plum-dark: #5A1F66;
  --plum-deeper: #3D1447;
  --amber: #F5A623;
  --amber-light: #FFC060;
  --amber-dark: #D4891A;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --dark: #1A0A1E;
  --dark-soft: #2D1535;
  --gray: #6B5B73;
  --gray-light: #A895AD;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(123, 45, 142, 0.12);
  --shadow-lg: 0 12px 48px rgba(123, 45, 142, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.text-accent {
  color: var(--plum);
}

.text-accent-light {
  color: var(--amber);
}

.section-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--amber-light);
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.3);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

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

.section-desc--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header--light {
  margin-bottom: 56px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary {
  background: var(--amber);
  color: var(--dark);
  border-color: var(--amber);
}

.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn--dark {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.btn--dark:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 45, 142, 0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 248, 240, 0.97);
  box-shadow: 0 2px 20px rgba(123, 45, 142, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo--light .logo-text {
  color: var(--white);
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.logo-accent {
  color: var(--amber);
}

.logo--light .logo-accent {
  color: var(--amber);
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(123, 45, 142, 0.08);
  color: var(--plum);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 20, 71, 0.88) 0%,
    rgba(123, 45, 142, 0.75) 40%,
    rgba(245, 166, 35, 0.45) 100%
  );
}

.hero-geo {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
}

.hero-geo--tl {
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-geo--br {
  bottom: -120px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: var(--plum);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--amber-light);
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-word {
  display: inline-block;
}

.hero-word.accent {
  color: var(--amber);
  position: relative;
}

.hero-word.accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--amber);
  opacity: 0.3;
  border-radius: 3px;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

.hero-scroll-indicator svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   Info Bar
   ============================================ */
.info-bar {
  background: var(--plum);
  padding: 0;
}

.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.info-item:last-child {
  border-right: none;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.info-icon {
  color: var(--amber);
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.info-value {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

.info-item a {
  color: var(--white);
  transition: color var(--transition);
}

.info-item a:hover {
  color: var(--amber);
}

/* ============================================
   Menu Section
   ============================================ */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum));
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.menu-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card--plum {
  background: var(--plum);
  color: var(--white);
}

.menu-card--amber {
  background: var(--amber);
  color: var(--dark);
}

.menu-card-geo {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.1;
  background: currentColor;
}

.menu-card-body {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
}

.menu-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.menu-card--plum .menu-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--amber-light);
}

.menu-card--amber .menu-card-icon {
  background: rgba(123, 45, 142, 0.15);
  color: var(--plum);
}

.menu-card-icon svg {
  width: 28px;
  height: 28px;
}

.menu-card-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.85;
}

.menu-card-list {
  margin-bottom: 28px;
}

.menu-card-list li {
  padding: 8px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-card--amber .menu-card-list li {
  border-bottom-color: rgba(123, 45, 142, 0.15);
}

.menu-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

.menu-card--plum .menu-card-list li::before {
  background: var(--amber-light);
}

.menu-card--amber .menu-card-list li::before {
  background: var(--plum);
}

.menu-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray);
}

.menu-note a {
  color: var(--plum);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.menu-note a:hover {
  border-bottom-color: var(--plum);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.04;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--plum);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.15;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-text {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(123, 45, 142, 0.1);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  color: var(--plum);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(123, 45, 142, 0.15);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
  padding: 100px 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}

.features-geo {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.06;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 8px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.feature-title {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 10px;
}

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--amber);
  position: relative;
  overflow: hidden;
}

.cta-geo {
  position: absolute;
  border-radius: 50%;
}

.cta-geo--1 {
  top: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: var(--plum);
  opacity: 0.08;
}

.cta-geo--2 {
  bottom: -60px;
  right: 5%;
  width: 200px;
  height: 200px;
  background: var(--white);
  opacity: 0.15;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-content {
  flex: 1;
  min-width: 280px;
}

.cta-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(26, 10, 30, 0.7);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   Visit Section
   ============================================ */
.visit-section {
  padding: 100px 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.visit-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(123, 45, 142, 0.08);
}

.visit-detail:first-child {
  padding-top: 0;
}

.visit-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}

.visit-detail strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--plum);
  font-weight: 500;
  transition: color var(--transition);
}

.visit-detail a:hover {
  color: var(--amber-dark);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.map-link {
  display: block;
  position: relative;
}

.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 45, 142, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: all var(--transition);
}

.map-link:hover .map-overlay {
  background: rgba(123, 45, 142, 0.85);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact-geo {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--plum);
  border-radius: 50%;
  opacity: 0.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--amber);
  transition: all var(--transition);
}

.contact-quick-link:hover {
  color: var(--amber-light);
  transform: translateX(4px);
}

/* Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: all var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--amber);
  background: rgba(245, 166, 35, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81C784;
  font-size: 0.9375rem;
}

.form-success svg {
  flex-shrink: 0;
  color: #81C784;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  max-width: 280px;
}

.footer-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Mobile Navigation
   ============================================ */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.0625rem;
    border-radius: var(--radius);
  }

  .nav-menu a:hover {
    background: rgba(123, 45, 142, 0.08);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay.show {
    display: block;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .info-bar-inner {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-headline {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
