/* ============================================================
   Signature Luxury Ride Inc. — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9C7B2F;
  --black:       #080808;
  --dark:        #111111;
  --dark2:       #181818;
  --dark3:       #222222;
  --white:       #F5F5F0;
  --gray:        #888888;
  --gray-light:  #BBBBBB;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      4px;
  --max-w:       1200px;
  /* Cream / warm-light palette — Rolls-Royce Phantom parchment interior */
  --cream:       #f9f6ee;
  --cream-alt:   #f5f0e4;
  --ivory:       #fff9f0;
  --warm-dark:   #1a1500;
  --warm-black:  #0c0900;
  --text-dark:   #1a1200;
  --text-warm:   #5a4a2a;
  --text-body:   #4a3a1a;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto 56px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
  /* Always-on top band so nav links are readable over any hero image */
  background: linear-gradient(to bottom, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.10) 100%);
}

.navbar.scrolled {
  background: rgba(15,10,5,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-top {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* FIX: Exclude button CTAs from the underline animation (was showing gold line under "Book a Ride" btn) */
.nav-links a.btn::after { display: none !important; }
/* Also prevent btn-gold color override on hover — it already has its own hover style */
.nav-links a.btn:hover { color: var(--black); }

/* "Soon" badge on disabled nav links */
.nav-uc-badge {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  vertical-align: middle;
  margin-left: 4px;
}
.nav-disabled { opacity: 0.6; }

.nav-cta {
  padding: 10px 24px;
  font-size: 11px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* svh excludes mobile browser chrome; older browsers fall back to 100vh above */
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

/* ── Photo layer — separate div so CSS filter only affects the image, not the overlay ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  /* Shift car right so it clears the text column on desktop */
  background: url('images/hero-denali.png') 62% center / cover no-repeat;
  /* Darken slightly, lift contrast, desaturate a touch — car looks crisp, not blown-out */
  filter: brightness(0.72) contrast(1.10) saturate(0.82);
  z-index: 0;
}

/* ── Gradient overlay — left-heavy on desktop so text stays readable, right opens up for car ── */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.82) 28%,
    rgba(0,0,0,0.52) 52%,
    rgba(0,0,0,0.28) 72%,
    rgba(0,0,0,0.38) 100%
  );
  z-index: 1;
}

/* ── Gold ambient glow on content side ── */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 55%, rgba(201,168,76,0.11) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}

/* ── Tablet: car is still offset right, tighten gradient transition ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-bg-img {
    background-position: 58% center;
  }
  .hero-bg::before {
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.90) 0%,
      rgba(0,0,0,0.78) 38%,
      rgba(0,0,0,0.42) 62%,
      rgba(0,0,0,0.38) 100%
    );
  }
}

/* ── Mobile: cropped image with no tyre whitespace, car centred ── */
@media (max-width: 768px) {
  .hero-bg-img {
    background-image: url('images/hero-denali-mobile.jpg');
    background-position: center center;
    filter: brightness(0.76) contrast(1.08) saturate(0.85);
  }
  .hero-bg::before {
    /* Top-to-bottom: dark up top (text), lighter at bottom (plate reveal) */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.94) 0%,
      rgba(0,0,0,0.86) 42%,
      rgba(0,0,0,0.50) 65%,
      rgba(0,0,0,0.28) 100%
    );
  }
}

@media (max-width: 480px) {
  .hero-bg-img {
    background-position: center center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

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

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, #f9f6ee 0%, #fff8e7 40%, #f5f0e4 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 48px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(201,168,76,0.3);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a2e1a;
}

/* ---- Cards ---- */
.card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ---- Service Cards — dark card on cream section ---- */
.service-card {
  background: linear-gradient(145deg, #1a1500 0%, #0f0c00 100%);
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.service-card:hover {
  background: linear-gradient(145deg, #2a2000 0%, #1a1500 100%);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.18), 0 4px 16px rgba(0,0,0,0.25);
}
.service-card .card-icon {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.service-card .service-title {
  color: var(--cream);
}
.service-card .service-desc {
  color: var(--gray-light);
}

/* ---- Fleet Card ---- */
.fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.fleet-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }

.fleet-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition);
}
.fleet-card:hover .fleet-img { filter: brightness(1); }

.fleet-body { padding: 28px; }

.fleet-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.fleet-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.fleet-desc { font-size: 0.9rem; color: var(--gray-light); margin-bottom: 20px; }

.fleet-specs {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.fleet-spec { font-size: 0.8rem; color: var(--gray); }
.fleet-spec strong { display: block; color: var(--white); font-size: 0.9rem; }

/* ---- Testimonial ---- */
.testimonial {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 36px;
  transition: var(--transition); /* FIX: was missing transition for hover */
}
/* FIX: Added hover interaction consistent with fleet/service cards */
.testimonial:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--gray); }

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

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--gray); }

select.form-control option { background: var(--dark3); }

/* ---- Footer ---- */
.footer {
  background: var(--warm-black);
  border-top: 2px solid rgba(201,168,76,0.25);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-contact a { color: inherit; transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201,168,76,0.15);
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  position: relative;
}

/* ---- Animations ---- */
/* FIX (content visibility): the hidden-by-default state is gated behind the
   `.js` class (added to <html> by an early inline script). Without JS — or if
   the IntersectionObserver never fires — content stays fully visible instead
   of being stuck at opacity:0, which previously blanked the entire page below
   the hero. */
.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Respect users who prefer reduced motion: show content immediately, no slide. */
@media (prefers-reduced-motion: reduce) {
  .js .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

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

  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Pin content to top on mobile so the car/plate is visible in the lower half */
  .hero {
    align-items: flex-start;
    padding-top: 110px;   /* clears the navbar */
    min-height: 100svh;   /* use svh to avoid mobile browser-chrome overflow; fallback 100vh above */
  }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item {
    border-right: 1px solid rgba(201,168,76,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 20px 0;
  }
  .stat-item:nth-child(2n)   { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
}

/* ============================================================
   Light-Section System — Cream & Ivory
   Design reference: Rolls-Royce Phantom parchment cabin,
   Four Seasons lobby, Hermès cream letterhead.
   Dark sections stay as accent bands (footer, why-us, testi,
   values, promise) — cream sections breathe between them.
   ============================================================ */

.section-light  { background: var(--cream); }
.section-ivory  { background: var(--ivory); }

/* Typography on light */
.section-light .section-title,
.section-ivory .section-title  { color: var(--text-dark); }

.section-light .section-sub,
.section-ivory .section-sub    { color: var(--text-warm); }

.section-light .section-label,
.section-ivory .section-label  { color: var(--gold-dark); }

.section-light .divider,
.section-ivory .divider {
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.section-light p,
.section-ivory p               { color: var(--text-body); }

/* Fleet cards on ivory (home fleet preview) */
.section-ivory .fleet-card {
  background: #ffffff;
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.section-ivory .fleet-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.18), 0 4px 16px rgba(0,0,0,0.08);
}
.section-ivory .fleet-name   { color: var(--text-dark); }
.section-ivory .fleet-desc   { color: var(--text-warm); }
.section-ivory .fleet-specs  { border-top-color: rgba(201,168,76,0.18); }
.section-ivory .fleet-spec   { color: var(--text-warm); }
.section-ivory .fleet-spec strong { color: var(--text-dark); }

/* Outline buttons on light sections */
.section-light .btn-outline,
.section-ivory .btn-outline {
  border-color: var(--gold-dark);
  color: var(--text-dark);
}
.section-light .btn-outline:hover,
.section-ivory .btn-outline:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

/* Form controls on light sections */
.section-light .form-control,
.section-ivory .form-control {
  background: #fdfaf4;
  border-color: rgba(201,168,76,0.25);
  color: var(--text-dark);
}
.section-light .form-control:focus,
.section-ivory .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: #fff;
}
.section-light .form-label,
.section-ivory .form-label { color: #3a2e1a; }

/* CTA strip — deep warm-dark gold band, like a luxury invitation card */
.cta-strip {
  background: linear-gradient(135deg, #0f0c00 0%, #2d2100 40%, #3a2800 50%, #2d2100 60%, #0f0c00 100%);
  border-top: 2px solid rgba(201,168,76,0.35);
  border-bottom: 2px solid rgba(201,168,76,0.35);
}
.cta-text h2 { color: var(--cream); }
.cta-text p  { color: rgba(249,246,238,0.75); }
