/* ========================================
   CSS RESET & CUSTOM PROPERTIES
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ---------------------------------------------------------------
     BRAND PALETTE - the only four brand colors.
     Source of truth: assets/brand/cellar-sky-brand-guide.pdf (see BRAND.md).
     Do not add a fifth brand color. Do not change these values.
     --------------------------------------------------------------- */
  --color-cellar-crimson: #8B1929;
  --color-sky-navy: #1B2A44;
  --color-concierge-gray: #6E7480;
  --color-reserve-white: #FFFFFF;

  /* ---------------------------------------------------------------
     DERIVED UI TINTS - surface colors only, each a shade or tint of a
     brand color above. These are NOT brand colors; never quote them as
     the palette and never use one where a brand color belongs.
     --------------------------------------------------------------- */
  --tint-crimson-deep: #5E1019;   /* crimson, shaded - gradients, deep fills */
  --tint-crimson-wash: #F6E7E9;   /* crimson, ~6% - soft panels */
  --tint-navy-wash: #E9EDF3;      /* navy, ~8% - soft panels */
  --tint-white-warm: #FAFAFA;     /* page background */
  --tint-navy-ink: #2B2F36;       /* body copy on light backgrounds */

  /* ---------------------------------------------------------------
     TYPOGRAPHY - Questrial is the only brand typeface, for every role.
     --font-display and --font-body are kept as aliases so existing rules
     keep working; both resolve to Questrial. There is no secondary face.
     --------------------------------------------------------------- */
  --font-brand: 'Questrial', 'Century Gothic', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --font-display: var(--font-brand);
  --font-body: var(--font-brand);

  /* Brand tracking - from the guide's letter-spacing spec */
  --track-logotype: 3px;
  --track-subtitle: 7px;
  --track-label: 4px;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-4xl: 7rem;
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-card: 0 4px 20px rgba(27, 42, 68, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(27, 42, 68, 0.12);
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--tint-navy-ink);
  background-color: var(--tint-white-warm);
  -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;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   SECTION TAGLINE
   ======================================== */
.section-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-concierge-gray);
  margin-bottom: var(--space-md);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.75rem;
  color: var(--color-sky-navy);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
  letter-spacing: 0.12em;
}

/* ========================================
   1. STICKY NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(27, 42, 68, 0.08);
  padding: var(--space-sm) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-logo-img { display: none; height: 40px; width: auto; }
.nav-logo-img-white { display: block; height: 40px; width: auto; }
.nav.scrolled .nav-logo-img { display: block; }
.nav.scrolled .nav-logo-img-white { display: none; }

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-cellar-crimson);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav.scrolled .nav-links a {
  color: var(--tint-navy-ink);
}

.nav-links a:hover {
  color: var(--color-reserve-white);
}

.nav.scrolled .nav-links a:hover {
  color: var(--color-cellar-crimson);
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  background-color: var(--color-cellar-crimson) !important;
  color: var(--color-reserve-white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease, transform 0.3s ease !important;
  cursor: pointer;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background-color: var(--color-cellar-crimson) !important;
  color: var(--color-reserve-white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-reserve-white);
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease;
}

.nav.scrolled .hamburger span {
  background-color: var(--tint-navy-ink);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sky-navy) 0%, var(--tint-crimson-deep) 100%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-reserve-white);
  transition: color 0.3s ease;
  padding: var(--space-sm) var(--space-xl);
}

.mobile-nav-overlay a:hover {
  color: var(--color-cellar-crimson);
}

.mobile-nav-overlay .nav-cta {
  margin-top: var(--space-lg);
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 1rem 2.5rem;
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ========================================
   2. HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg,
    var(--color-sky-navy) 0%,
    var(--color-sky-navy) 25%,
    var(--tint-crimson-deep) 50%,
    var(--tint-crimson-deep) 75%,
    var(--color-sky-navy) 100%);
  background-size: 300% 300%;
  animation: heroGradientShift 20s ease infinite;
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
  overflow: hidden;
}

@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Radial overlays */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 25, 41, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(139, 25, 41, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 70%, rgba(27, 42, 68, 0.15) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Film grain texture */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.035;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Bokeh orbs */
.hero-bokeh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
  will-change: transform;
}

.hero-bokeh--right {
  width: 400px;
  height: 400px;
  top: 15%;
  right: -5%;
  background: radial-gradient(circle, rgba(139, 25, 41, 0.12) 0%, transparent 70%);
  animation: bokehDriftRight 25s ease-in-out infinite;
}

.hero-bokeh--left {
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(139, 25, 41, 0.1) 0%, transparent 70%);
  animation: bokehDriftLeft 30s ease-in-out infinite;
}

@keyframes bokehDriftRight {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-30px, 20px) scale(1.05); }
  66%      { transform: translate(15px, -15px) scale(0.97); }
}

@keyframes bokehDriftLeft {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(25px, -20px) scale(1.03); }
  66%      { transform: translate(-20px, 15px) scale(0.96); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-logo {
  width: 240px;
  margin: 0 auto var(--space-xl);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.12em;
  color: var(--color-reserve-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-subheadline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  letter-spacing: 0.04em;
}

/* Crimson divider */
.hero-divider {
  width: 60px;
  height: 1.5px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(90deg, transparent, var(--color-cellar-crimson), transparent);
  border: none;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Trust badge */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
}

.hero-trust-stars svg {
  width: 14px;
  height: 14px;
}

.hero-trust-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

/* Entrance animations */
.hero-animate {
  opacity: 0;
  transform: translateY(24px);
}

.hero-animate.is-visible {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.btn-primary {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--color-cellar-crimson);
  color: var(--color-reserve-white);
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--color-cellar-crimson);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 25, 41, 0.3);
}

.btn-outline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--color-reserve-white);
  padding: 1rem 2.2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--color-cellar-crimson);
  color: var(--color-cellar-crimson);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
    background-size: 100% 100%;
  }
  .hero-bokeh { animation: none; }
  .hero-animate {
    opacity: 1;
    transform: none;
  }
  .hero-animate.is-visible { animation: none; }
  .scroll-indicator { animation: none; }
}

/* ========================================
   3. VALUE PROPOSITION
   ======================================== */
.value-prop {
  padding: var(--space-4xl) 0;
  background-color: var(--tint-white-warm);
  text-align: center;
}

.value-prop .section-heading {
  margin-bottom: var(--space-3xl);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.value-card {
  background: var(--color-reserve-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.value-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  color: var(--color-cellar-crimson);
}

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

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-sky-navy);
  margin-bottom: var(--space-md);
}

.value-card p {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--tint-navy-ink);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .value-cards { grid-template-columns: 1fr; gap: var(--space-xl); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .value-cards { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* ========================================
   4. FLEET SHOWCASE
   ======================================== */
.fleet {
  padding: var(--space-4xl) 0;
  background-color: var(--tint-crimson-wash);
}

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

.fleet-image-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-sky-navy) 0%, var(--tint-navy-ink) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-image-placeholder svg {
  width: 65%;
  max-width: 320px;
  opacity: 0.2;
}

.fleet-image-placeholder .placeholder-text {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-concierge-gray);
  white-space: nowrap;
}

.fleet-content .section-tagline { text-align: left; }
.fleet-content .section-heading { text-align: left; }

.fleet-content p {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  color: var(--tint-navy-ink);
}

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

.fleet-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.fleet-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-cellar-crimson);
}

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

.fleet-feature span {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-sky-navy);
}

.fleet-stats {
  margin-top: var(--space-3xl);
  background: var(--color-reserve-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.fleet-stat {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-sky-navy);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.fleet-stat-divider {
  width: 1px;
  height: 20px;
  background: var(--color-concierge-gray);
  opacity: 0.4;
}

@media (max-width: 767px) {
  .fleet-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .fleet-features { grid-template-columns: 1fr; }
  .fleet-stats { flex-direction: column; gap: var(--space-md); }
  .fleet-stat-divider { width: 40px; height: 1px; }
}

/* ========================================
   5. SERVICES / EXPERIENCES
   ======================================== */
.experiences {
  padding: var(--space-4xl) 0;
  background-color: var(--tint-white-warm);
  text-align: center;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  text-align: left;
}

.experience-card {
  background: var(--color-reserve-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.experience-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience-card-image svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.experience-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--color-cellar-crimson);
  color: var(--color-reserve-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  z-index: 2;
}

.experience-card-body {
  padding: var(--space-xl);
}

.experience-card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-cellar-crimson);
  margin-bottom: var(--space-md);
}

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

.experience-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-sky-navy);
  margin-bottom: var(--space-sm);
}

.experience-card p {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--tint-navy-ink);
  margin-bottom: var(--space-lg);
}

.experience-card .learn-more {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-cellar-crimson);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.experience-card .learn-more:hover {
  color: var(--color-cellar-crimson);
}

@media (max-width: 767px) {
  .experience-cards { grid-template-columns: 1fr; }
}

/* ========================================
   6. TEMECULA WINE COUNTRY
   ======================================== */
.wine-country {
  padding: var(--space-4xl) 0;
  background-color: var(--tint-navy-wash);
}

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

.wine-country-content .section-tagline { text-align: left; }
.wine-country-content .section-heading { text-align: left; font-size: 2.2rem; }

.wine-country-content p {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--tint-navy-ink);
}

.wineries-list h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--color-sky-navy);
  margin-bottom: var(--space-lg);
}

.wineries-list ul {
  list-style: none;
}

.wineries-list li {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--tint-navy-ink);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(154, 142, 130, 0.2);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.wineries-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-cellar-crimson);
  flex-shrink: 0;
}

.wine-country-map {
  margin-top: var(--space-3xl);
  aspect-ratio: 3 / 1;
  background: linear-gradient(135deg, var(--color-sky-navy) 0%, var(--tint-crimson-deep) 50%, var(--color-cellar-crimson) 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wine-country-map .map-pins {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.wine-country-map .map-pins svg {
  width: 24px;
  height: 24px;
  fill: var(--color-reserve-white);
}

.wine-country-map .placeholder-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
  .wine-country-grid { grid-template-columns: 1fr; }
  .wine-country-map { aspect-ratio: 2 / 1; }
}

/* ========================================
   7. TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--space-4xl) 0;
  background-color: var(--color-sky-navy);
  text-align: center;
}

.testimonials .section-tagline {
  color: var(--color-reserve-white);
}

.testimonials .section-heading {
  color: var(--color-reserve-white);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  text-align: left;
}

.testimonial-card {
  background: var(--color-reserve-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-lg);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-cellar-crimson);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--tint-navy-ink);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-sky-navy);
}

.testimonial-context {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-concierge-gray);
  margin-top: var(--space-xs);
}

.trust-bar {
  margin-top: var(--space-3xl);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

.trust-bar span {
  margin: 0 var(--space-md);
  opacity: 0.4;
}

@media (max-width: 767px) {
  .testimonial-cards { grid-template-columns: 1fr; }
  .trust-bar { font-size: 0.8rem; }
  .trust-bar span { display: block; margin: var(--space-sm) 0; opacity: 0; }
}

/* ========================================
   8. BOOKING FORM
   ======================================== */
.booking {
  padding: var(--space-4xl) 0;
  background-color: var(--tint-white-warm);
}

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

.booking-info .section-tagline { text-align: left; }
.booking-info .section-heading { text-align: left; font-size: 2.2rem; }

.price-anchor {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3rem;
  color: var(--color-cellar-crimson);
  margin-bottom: var(--space-xs);
}

.price-sub {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-concierge-gray);
  margin-bottom: var(--space-2xl);
}

.included-list {
  margin-bottom: var(--space-2xl);
}

.included-list li {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--tint-navy-ink);
  padding: 0.45rem 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.included-check {
  color: var(--color-cellar-crimson);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.scarcity-note {
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-concierge-gray);
  line-height: 1.7;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(154, 142, 130, 0.2);
}

/* Form */
.booking-form {
  background: var(--color-reserve-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-sky-navy);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--tint-navy-ink);
  background: var(--tint-white-warm);
  border: 1.5px solid rgba(154, 142, 130, 0.3);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A8E82' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-cellar-crimson);
  box-shadow: 0 0 0 3px rgba(139, 25, 41, 0.1);
}

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

.form-group .error-message {
  font-size: 0.75rem;
  color: var(--color-cellar-crimson);
  margin-top: var(--space-xs);
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--color-cellar-crimson);
}

.form-group.has-error .error-message {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: var(--color-cellar-crimson);
  color: var(--color-reserve-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-submit:hover {
  background-color: var(--color-cellar-crimson);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-footer {
  text-align: center;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-concierge-gray);
  margin-top: var(--space-lg);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.active {
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-cellar-crimson);
  margin-bottom: var(--space-md);
}

.form-success p {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--tint-navy-ink);
  line-height: 1.7;
}

.form-error-message {
  display: none;
  text-align: center;
  padding: var(--space-md);
  background: rgba(139, 25, 41, 0.08);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-cellar-crimson);
}

.form-error-message.active {
  display: block;
}

/* Celebration Upgrades */
.upgrades-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.upgrades-wrapper.visible {
  max-height: 400px;
  opacity: 1;
}

.upgrades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
}

.upgrade-option {
  position: relative;
}

.upgrade-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.upgrade-option label {
  display: flex !important;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.7rem 0.85rem;
  background: var(--tint-white-warm);
  border: 1.5px solid rgba(154, 142, 130, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 400 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--tint-navy-ink) !important;
  margin-bottom: 0 !important;
  line-height: 1.3;
}

.upgrade-option label:hover {
  border-color: var(--color-cellar-crimson);
  background: rgba(139, 25, 41, 0.04);
}

.upgrade-option input[type="checkbox"]:checked + label {
  border-color: var(--color-cellar-crimson);
  background: rgba(139, 25, 41, 0.08);
  box-shadow: 0 0 0 2px rgba(139, 25, 41, 0.15);
}

.upgrade-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.upgrade-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(154, 142, 130, 0.4);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin-left: auto;
}

.upgrade-option input[type="checkbox"]:checked + label .upgrade-check {
  background-color: var(--color-cellar-crimson);
  border-color: var(--color-cellar-crimson);
}

.upgrade-option input[type="checkbox"]:checked + label .upgrade-check::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid var(--color-reserve-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

@media (max-width: 479px) {
  .upgrades-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ========================================
   9. FAQ
   ======================================== */
.faq {
  padding: var(--space-4xl) 0;
  background-color: var(--tint-crimson-wash);
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(154, 142, 130, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: var(--space-lg);
  min-height: 44px;
}

.faq-question h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-sky-navy);
  flex: 1;
  line-height: 1.3;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-concierge-gray);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--color-cellar-crimson);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: var(--space-xl);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--tint-navy-ink);
}

/* ========================================
   10. FOOTER
   ======================================== */
.footer {
  background-color: var(--tint-navy-ink);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo {
  margin-bottom: var(--space-lg);
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-contact p {
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  transition: color 0.3s ease;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-concierge-gray);
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-reserve-white);
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: var(--color-reserve-white);
}

.footer-follow {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-cellar-crimson);
  margin-top: var(--space-md);
  font-style: italic;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(154, 142, 130, 0.25);
  margin-bottom: var(--space-xl);
}

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

.footer-copyright {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-updated {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-xs);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-reserve-white);
}

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 767px) {
  .container { padding: 0 var(--space-lg); }

  .hero { padding: var(--space-3xl) var(--space-lg) var(--space-2xl); }
  .hero-headline { font-size: 2.5rem; }
  .hero-subheadline { font-size: 0.95rem; }
  .hero-logo { width: 160px; }
  .hero-bokeh--right { width: 250px; height: 250px; }
  .hero-bokeh--left { width: 200px; height: 200px; }
  .hero-trust-text { font-size: 0.7rem; }
  .hero-trust { gap: 0.35rem; }
  .hero-divider { width: 45px; }

  .section-heading { font-size: 2rem; }

  .value-prop,
  .fleet,
  .experiences,
  .wine-country,
  .testimonials,
  .booking,
  .faq {
    padding: var(--space-3xl) 0;
  }

  .price-anchor { font-size: 2.2rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-headline { font-size: 3rem; }
  .hero-logo { width: 200px; }
  .hero-bokeh--right { width: 300px; height: 300px; }
  .hero-bokeh--left { width: 270px; height: 270px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .wine-country-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .experience-cards { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------
   Mobile nav: keep the close (X) above the overlay.
   .nav is a stacking context, so .hamburger's z-index is scoped to it and loses
   to .mobile-nav-overlay. Raising .nav restores the intended behaviour; while the
   menu is open the bar is presented dark-background style (white mark, white rules).
   ---------------------------------------------------------------- */
.nav { z-index: 1002; }
.nav.mobile-open.scrolled { background-color: transparent; box-shadow: none; }
.nav.mobile-open.scrolled .hamburger span { background-color: var(--color-reserve-white); }
.nav.mobile-open.scrolled .nav-logo-img { display: none; }
.nav.mobile-open.scrolled .nav-logo-img-white { display: block; }

/* The closed overlay was hidden with opacity + pointer-events only, so its six links
   stayed in the tab order and a keyboard user could focus an invisible menu.
   visibility:hidden removes them from the tree; it is transitioned so the fade still
   plays on the way in and out. */
.mobile-nav-overlay { visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.mobile-nav-overlay.active { visibility: visible; }

/* ----------------------------------------------------------------
   Contrast: crimson on the dark footer measured 1.28:1. The footer's own body
   copy is rgba(255,255,255,0.7); match it so the licence line is readable.
   ---------------------------------------------------------------- */
.footer-follow { color: rgba(255, 255, 255, 0.7); }
