/* ═══════════════════════════════════════════════════════════
   Crystal Ballroom — Client Package Builder
   Brand: Warm Gold-Taupe · Charcoal · Champagne · Bodoni Moda
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* CB Brand Colors */
  --gold:          #937964;   /* warm gold-taupe — primary accent */
  --gold-amber:    #D49341;   /* logo amber gold — highlights */
  --gold-light:    #c9a47a;   /* lighter tint */
  --gold-pale:     #e8d8c4;   /* very pale tint */
  --gold-bg:       #FAF6F1;   /* warm cream panel fill */
  --gold-border:   #dfd0bb;   /* border on gold panels */

  --charcoal:      #2F2E2E;   /* near-black — body text, dark bg */
  --charcoal-mid:  #4a4848;   /* medium charcoal */

  --champagne:     #E9E7E8;   /* section backgrounds */
  --cream:         #FEF6ED;   /* panel fills */
  --cream-2:       #F7F0E8;
  --border:        #E0D4C4;
  --border-2:      #d4c8b8;

  --text:          #2F2E2E;
  --text-2:        #5a5550;
  --text-3:        #9a8e7e;
  --white:         #ffffff;

  /* Hero uses real CB ballroom photo */
  --hero-overlay:  linear-gradient(160deg, rgba(15,12,10,0.78) 0%, rgba(47,46,46,0.55) 60%, rgba(15,12,10,0.70) 100%);

  --font-display: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-sub:     'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', 'Avenir LT Std', 'Avenir', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.2vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.3vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.2vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.6vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1vw,   2.25rem);
  --text-2xl:  clamp(2rem,     1.4rem  + 2vw,   3.5rem);
  --text-hero: clamp(3rem,     1.8rem  + 4vw,   6rem);

  --s1: 0.25rem;  --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem;  --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;   --s20: 5rem;

  --r-sm: 0.375rem; --r-md: 0.5rem; --r-lg: 0.75rem;
  --r-xl: 1rem;     --r-2xl: 1.5rem; --r-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(47,46,46,0.07);
  --shadow-md: 0 4px 20px rgba(47,46,46,0.12);
  --shadow-lg: 0 16px 48px rgba(47,46,46,0.18);
  --shadow-gold: 0 0 0 2px var(--gold-pale), 0 6px 24px rgba(147,121,100,0.28);

  --ease: 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--champagne);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input[type=range] { accent-color: var(--gold); }
input[type=text], input[type=email], input[type=tel], input[type=date], select {
  font-family: var(--font-body);
  font-size: var(--text-sm);
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(254,246,237,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1360px; margin: 0 auto;
  padding: var(--s3) var(--s6);
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: var(--s3); }
.logo-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.logo-text-group { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.logo-tagline {
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-body);
}
.header-phone {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--charcoal);
  background: var(--gold-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s5);
  font-family: var(--font-body);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.header-phone:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--s20) var(--s6) var(--s16);
  overflow: hidden;
  /* Hero background: real CB ballroom imagery */
  background-image: url('img-lakemary-decor-2.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
/* Subtle ornamental vignette */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(15,12,10,0.35) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: var(--s5);
  font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: #f8f0e6;
  margin-bottom: var(--s6);
  line-height: 1.03;
  letter-spacing: -0.01em;
}
.hero-title em {
  display: block;
  color: var(--gold-amber);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  color: rgba(248,240,230,0.75);
  max-width: 54ch; margin: 0 auto var(--s10);
  line-height: 1.8;
  font-weight: 300;
}
.btn-start {
  display: inline-flex; align-items: center; gap: var(--s3);
  background: var(--gold-amber);
  color: var(--charcoal);
  font-size: var(--text-base); font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s4) var(--s10);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  box-shadow: 0 6px 32px rgba(212,147,65,0.45);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-start:hover { background: #e8a34f; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(212,147,65,0.55); }
.hero-micro {
  margin-top: var(--s6);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,240,230,0.45);
  font-family: var(--font-body);
}
.hero-scroll-indicator {
  position: absolute; bottom: var(--s8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--s2);
  color: rgba(248,240,230,0.35);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.8s ease-in-out infinite;
  z-index: 1;
}
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Progress Bar ─────────────────────────────────────────── */
.progress-bar-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 67px; z-index: 150;
  padding: var(--s4) var(--s6);
}
.progress-bar-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; align-items: center;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: var(--s1);
  flex-shrink: 0;
}
.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--champagne);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--text-3);
  font-family: var(--font-body);
  transition: all var(--ease);
}
.step-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  font-weight: 600;
  font-family: var(--font-body);
  transition: color var(--ease);
}
.progress-step.active .step-dot {
  background: var(--gold-amber); border-color: var(--gold); color: var(--charcoal);
  box-shadow: 0 0 0 4px rgba(212,147,65,0.2);
}
.progress-step.active .step-label { color: var(--gold); }
.progress-step.completed .step-dot { background: var(--gold); border-color: var(--charcoal-mid); color: white; }
.progress-step.completed .step-label { color: var(--gold); }
.progress-line {
  flex: 1; height: 1.5px;
  background: var(--border);
  margin: 0 var(--s2);
  transition: background var(--ease);
  position: relative;
  top: -8px;
}

/* ── Sticky Price Bar ─────────────────────────────────────── */
.sticky-price-bar {
  background: linear-gradient(90deg, #3B2A1A 0%, #4a3525 100%);
  color: white;
  position: sticky; top: 119px; z-index: 140;
  transition: opacity 0.35s ease;
}
.sticky-bar-inner {
  max-width: 1360px; margin: 0 auto;
  padding: var(--s3) var(--s6);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.sticky-selection { font-size: var(--text-sm); opacity: 0.7; flex: 1; font-family: var(--font-body); font-weight: 300; }
.sticky-price-group { display: flex; align-items: baseline; gap: var(--s3); flex-shrink: 0; }
.sticky-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.6; font-family: var(--font-body); }
.sticky-total {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gold-amber);
}

/* ── Wizard Wrap ──────────────────────────────────────────── */
.wizard-wrap { background: var(--champagne); }
.wizard-step { padding: var(--s12) var(--s6); max-width: 1360px; margin: 0 auto; }

/* ── Step Header ──────────────────────────────────────────── */
.step-header { text-align: center; margin-bottom: var(--s12); }
.step-eyebrow {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s3);
  font-family: var(--font-body);
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400; color: var(--charcoal);
  margin-bottom: var(--s4);
}
.step-title em { font-style: italic; color: var(--gold); }
.step-desc { font-size: var(--text-base); color: var(--text-2); max-width: 56ch; margin: 0 auto; font-weight: 300; }

/* ── Venue Grid — Photography-Driven ─────────────────────── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s6);
}
.venue-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  text-align: left;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.venue-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.venue-card.selected { border-color: var(--gold-amber); box-shadow: var(--shadow-gold); }

/* Full-bleed photo header */
.venue-card-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.venue-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,12,10,0.82) 0%, rgba(15,12,10,0.15) 55%, transparent 100%);
}
.venue-badge {
  position: absolute; top: var(--s3); right: var(--s3);
  background: rgba(212,147,65,0.9);
  color: var(--charcoal);
  font-size: var(--text-xs); font-weight: 700;
  padding: 2px var(--s2);
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  z-index: 1;
}
.venue-photo-content {
  position: relative; z-index: 1;
  padding: var(--s4) var(--s5);
}
.venue-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 400;
  color: #f8f0e6;
  margin-bottom: 2px;
}
.venue-photo-sub {
  font-size: var(--text-xs);
  color: rgba(248,240,230,0.6);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

.venue-card-body { padding: var(--s5); flex: 1; display: flex; flex-direction: column; gap: var(--s3); }
.venue-desc { font-size: var(--text-sm); color: var(--text-2); line-height: 1.65; flex: 1; font-weight: 300; }
.venue-starts-at {
  display: flex; align-items: baseline; gap: var(--s2);
  padding: var(--s3) var(--s4); background: var(--gold-bg);
  border: 1px solid var(--gold-border); border-radius: var(--r-lg);
}
.starts-label { font-size: var(--text-xs); color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); }
.starts-price { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--gold); }
.venue-tags { display: flex; flex-wrap: wrap; gap: var(--s2); }
.tag {
  font-size: var(--text-xs); font-weight: 500;
  padding: 3px var(--s3);
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--r-full); color: var(--text-2);
  font-family: var(--font-body);
}
.venue-select-indicator {
  padding: var(--s3) var(--s5);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: flex-end; gap: var(--s2);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--gold);
  background: var(--gold-bg);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition: background var(--ease), color var(--ease);
}
.venue-card:hover .venue-select-indicator { background: var(--gold-amber); color: var(--charcoal); }
.venue-card.selected .venue-select-indicator { background: var(--gold-amber); color: var(--charcoal); }

/* ── Day Grid ─────────────────────────────────────────────── */
.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s5);
}
.day-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s6);
  text-align: left;
  display: flex; flex-direction: column; gap: var(--s4);
  position: relative; overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.day-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.day-card.selected { border-color: var(--gold-amber); box-shadow: var(--shadow-gold); background: var(--gold-bg); }
.featured-day { border-color: var(--gold); background: var(--gold-bg); }
.day-ribbon {
  position: absolute; top: var(--s3); right: var(--s3);
  background: var(--gold-amber); color: var(--charcoal);
  font-size: var(--text-xs); font-weight: 700;
  padding: 2px var(--s3); border-radius: var(--r-full);
  letter-spacing: 0.06em; font-family: var(--font-body);
}
.day-icon { font-size: 1.75rem; color: var(--gold); user-select: none; }
.day-info { flex: 1; }
.day-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 400; margin-bottom: var(--s1); }
.day-sub { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: var(--s3); font-family: var(--font-body); }
.day-desc { font-size: var(--text-sm); color: var(--text-2); line-height: 1.65; font-weight: 300; }
.day-badge-wrap { min-height: 22px; }
.day-savings-tag, .day-popular-tag {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600;
  padding: 2px var(--s3);
  border-radius: var(--r-full);
  font-family: var(--font-body);
}
.day-savings-tag { background: #edf3e8; color: #3a5e2a; border: 1px solid #b8cfaa; }
.day-popular-tag { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-border); }
.day-price-preview {
  font-family: var(--font-display);
  font-size: var(--text-lg); font-weight: 500;
  color: var(--gold);
  padding-top: var(--s3);
  border-top: 1px solid var(--border);
}

/* ── Package Grid ─────────────────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s6);
  align-items: start;
}
.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  text-align: left;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.package-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.package-card.selected { border-color: var(--gold-amber); box-shadow: var(--shadow-gold); }
.featured-pkg { border-color: var(--gold); box-shadow: var(--shadow-md); }
.most-popular-ribbon {
  position: absolute; top: 0; right: 0;
  background: var(--gold-amber); color: var(--charcoal);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px var(--s4);
  border-bottom-left-radius: var(--r-lg);
  font-family: var(--font-body);
}

.pkg-header {
  padding: var(--s8) var(--s6) var(--s6);
  text-align: center;
  color: white;
}
.pkg-a-header { background: linear-gradient(160deg, #4a3525 0%, #6b4e38 70%, #7c5e45 100%); }
.pkg-b-header { background: linear-gradient(160deg, #3B2A1A 0%, #5a3e28 65%, #9a6a30 100%); }
.pkg-c-header { background: linear-gradient(160deg, #2a1e12 0%, #3d2c1a 55%, #6b4e28 100%); }

.pkg-crown { font-size: 1.5rem; margin-bottom: var(--s3); color: var(--gold-amber); user-select: none; }
.pkg-eyebrow {
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55); margin-bottom: var(--s2);
  font-family: var(--font-body);
}
.pkg-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem); font-weight: 400;
  margin-bottom: var(--s2);
}
.pkg-tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: var(--s4); font-family: var(--font-sub); }
.pkg-price-hero {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 500;
  color: var(--gold-amber);
}

.pkg-body { padding: var(--s6); display: flex; flex-direction: column; gap: var(--s5); flex: 1; }
.pkg-best-for { font-size: var(--text-sm); color: var(--text-2); font-style: italic; font-family: var(--font-sub); }
.pkg-features { display: flex; flex-direction: column; gap: var(--s2); }
.pkg-features li { font-size: var(--text-sm); color: var(--text-2); line-height: 1.55; font-weight: 300; }
.pkg-fees {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s4);
  display: flex; flex-direction: column; gap: var(--s2);
}
.fee-row {
  display: flex; justify-content: space-between;
  font-size: var(--text-sm); color: var(--text-2);
  font-family: var(--font-body);
}
.fee-row span:last-child { font-weight: 600; color: var(--text); }
.pkg-note { font-size: var(--text-xs); color: var(--gold); font-style: italic; text-align: center; font-family: var(--font-sub); }
.pkg-select-btn {
  padding: var(--s4) var(--s6);
  background: var(--gold-bg);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}
.package-card:hover .pkg-select-btn { background: var(--gold-amber); color: var(--charcoal); }
.package-card.selected .pkg-select-btn { background: var(--gold-amber); color: var(--charcoal); }

/* ── Extras ───────────────────────────────────────────────── */
.extras-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}
@media (max-width: 800px) { .extras-layout { grid-template-columns: 1fr; } }

.extras-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s5);
}
.extras-card:last-child { margin-bottom: 0; }
.extras-section-title {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-2); margin-bottom: var(--s4);
  padding-bottom: var(--s3); border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.extras-section-title svg { color: var(--gold); }
.extras-note { font-size: var(--text-xs); color: var(--text-3); margin-bottom: var(--s4); font-weight: 300; }

/* Slider */
.guest-slider-wrap { }
.guest-slider-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--s3);
}
.slider-lbl { font-size: var(--text-sm); font-weight: 500; color: var(--text-2); font-family: var(--font-body); }
.guest-count-display {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 500; color: var(--gold);
}
.cb-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px;
  border-radius: var(--r-full);
  background: var(--border);
  outline: none; cursor: pointer;
}
.cb-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-amber); border: 2px solid white;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--ease);
}
.cb-slider::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: var(--shadow-gold); }
.slider-ticks {
  display: flex; justify-content: space-between;
  margin-top: var(--s2);
}
.slider-ticks span { font-size: var(--text-xs); color: var(--text-3); font-family: var(--font-body); }

.guest-overage-note {
  display: flex; align-items: flex-start; gap: var(--s2);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); padding: var(--s3) var(--s4);
  margin-top: var(--s4);
  font-size: var(--text-xs); color: var(--text-2);
}
.guest-overage-note svg { color: var(--gold-amber); flex-shrink: 0; margin-top: 1px; }

/* Hours buttons */
.extra-hours-btns { display: flex; flex-wrap: wrap; gap: var(--s2); }
.hours-btn {
  padding: var(--s2) var(--s4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-2); background: var(--cream-2);
  font-family: var(--font-body);
  transition: all var(--ease); cursor: pointer;
}
.hours-btn:hover { border-color: var(--gold); background: var(--gold-bg); color: var(--charcoal); }
.hours-btn.active { border-color: var(--gold-amber); background: var(--gold-amber); color: var(--charcoal); font-weight: 700; }

/* Add-on checkbox mechanics */
.addon-check-wrap { position: relative; flex-shrink: 0; }
.addon-cb { position: absolute; opacity: 0; width: 0; height: 0; }
.addon-checkmark {
  display: block; width: 20px; height: 20px;
  border: 2px solid var(--border); border-radius: var(--r-sm);
  background: var(--white);
  transition: all var(--ease);
  position: relative;
}
.addon-cb:checked ~ .addon-checkmark {
  background: var(--gold-amber); border-color: var(--gold);
}
.addon-cb:checked ~ .addon-checkmark::after {
  content: '';
  position: absolute; top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: 2px solid var(--charcoal); border-top: none; border-left: none;
  transform: rotate(45deg);
}
.addon-info { flex: 1; }
.addon-name { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text); margin-bottom: 2px; font-family: var(--font-body); }
.addon-desc { font-size: var(--text-xs); color: var(--text-3); line-height: 1.5; font-weight: 300; }
.addon-price { font-size: var(--text-sm); font-weight: 700; color: var(--gold); flex-shrink: 0; font-family: var(--font-body); }

/* ── Step Nav ─────────────────────────────────────────────── */
.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--s12);
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
}
.btn-back {
  font-size: var(--text-sm); font-weight: 600; color: var(--text-3);
  padding: var(--s3) var(--s5);
  border: 1px solid var(--border); border-radius: var(--r-full);
  font-family: var(--font-body);
  transition: all var(--ease);
}
.btn-back:hover { color: var(--charcoal); border-color: var(--charcoal-mid); }
.btn-next {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-size: var(--text-base); font-weight: 600;
  color: var(--charcoal); background: var(--gold-amber);
  padding: var(--s4) var(--s8); border-radius: var(--r-full);
  font-family: var(--font-body); letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(212,147,65,0.35);
  transition: background var(--ease), transform var(--ease);
}
.btn-next:hover { background: #e8a34f; transform: translateY(-2px); }

/* ── Lead Capture Step ────────────────────────────────────── */
.lead-capture-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s8);
  align-items: start;
}
@media (max-width: 960px) { .lead-capture-wrap { grid-template-columns: 1fr; } }

.lead-capture-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lead-capture-header {
  background: linear-gradient(160deg, #3B2A1A 0%, #5a3e28 60%, #7c5535 100%);
  padding: var(--s10) var(--s8);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--s4);
}
.lead-logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-amber);
}
.lead-title {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 400;
  color: #fef6ed;
}
.lead-subtitle {
  font-size: var(--text-sm); color: rgba(254,246,237,0.88);
  max-width: 42ch; line-height: 1.75; font-weight: 400;
}
.lead-subtitle strong { color: #f0c870; }

.lead-form {
  padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s5);
}
.lead-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
@media (max-width: 600px) { .lead-fields-row { grid-template-columns: 1fr; } }

.lead-field {
  display: flex; flex-direction: column; gap: var(--s2);
}
.lead-field label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  font-family: var(--font-body);
}
.lead-field .required { color: var(--gold-amber); }
.lead-field .optional { color: var(--text-3); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: var(--text-xs); }

.lead-field input, .lead-field select {
  padding: var(--s3) var(--s4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--champagne);
  color: var(--charcoal);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 400;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
  appearance: none;
}
.lead-field input:focus, .lead-field select:focus {
  outline: none;
  border-color: var(--gold-amber);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(212,147,65,0.15);
}
.lead-field 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='%23937964' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s3) center;
  padding-right: var(--s8);
  cursor: pointer;
}

.btn-lead-submit {
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  background: var(--charcoal);
  color: var(--white);
  font-size: var(--text-base); font-weight: 600;
  letter-spacing: 0.08em;
  padding: var(--s4) var(--s8);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  box-shadow: 0 6px 24px rgba(47,46,46,0.35);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  cursor: pointer;
}
.btn-lead-submit:hover { background: var(--gold-amber); border-color: var(--gold-amber); color: var(--charcoal); transform: translateY(-2px); }

.lead-privacy {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-xs); color: var(--text-3);
  font-weight: 300; text-align: center; justify-content: center;
}
.lead-privacy svg { flex-shrink: 0; }

/* Teaser sidebar */
.lead-price-teaser {
  display: flex; flex-direction: column; gap: var(--s4);
  position: sticky; top: calc(67px + 52px + var(--s4));
}
.teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--s3);
}
.teaser-eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; font-family: var(--font-body);
}
.teaser-venue { font-family: var(--font-display); font-size: var(--text-lg); color: var(--charcoal); font-weight: 400; }
.teaser-pkg { font-size: var(--text-sm); color: var(--text-2); font-weight: 300; }
.teaser-day { font-size: var(--text-sm); color: var(--text-3); font-weight: 300; }
.teaser-divider { height: 1px; background: var(--border); }
.teaser-price-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3); font-family: var(--font-body); }
.teaser-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 500;
  color: var(--gold-amber);
}
.teaser-note { font-size: var(--text-xs); color: var(--text-3); line-height: 1.5; font-style: italic; font-weight: 300; }

.teaser-photo {
  height: 200px;
  border-radius: var(--r-2xl);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.teaser-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(47,46,46,0.75) 0%, transparent 60%);
}
.teaser-photo-quote {
  position: relative; z-index: 1;
  padding: var(--s4) var(--s5);
  font-family: var(--font-sub);
  font-style: italic;
  font-size: var(--text-sm);
  color: rgba(248,240,230,0.9);
}

.lead-step-nav {
  justify-content: flex-start;
}

/* ── Summary ──────────────────────────────────────────────── */
.summary-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s8);
  align-items: start;
}
@media (max-width: 900px) { .summary-layout { grid-template-columns: 1fr; } }

.summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.summary-hero {
  background: linear-gradient(160deg, #3B2A1A 0%, #5a3e28 60%, #7c5535 100%);
  padding: var(--s10) var(--s8);
  text-align: center;
  color: white;
  display: flex; flex-direction: column; align-items: center; gap: var(--s4);
}
.summary-cb-logo-img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-amber);
}
.summary-venue-name {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 400;
  color: #fef6ed;
}
.summary-tagline { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); font-family: var(--font-body); }
.summary-client-name {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gold-amber);
  min-height: 1.5em;
}

.summary-body { padding: var(--s6); display: flex; flex-direction: column; gap: var(--s3); }
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: var(--text-sm);
  font-family: var(--font-body);
}
.summary-row span:first-child { color: var(--text-2); font-weight: 300; }
.summary-row span:last-child { font-weight: 600; color: var(--text); }
.summary-row em { font-weight: 400; font-style: normal; color: var(--text-3); font-size: var(--text-xs); }
.summary-row-highlight span:first-child { font-weight: 600; color: var(--text); }
.summary-row-highlight span:last-child { color: var(--gold); font-size: var(--text-base); }
.summary-divider { height: 1px; background: var(--border); margin: var(--s1) 0; }
.summary-total-row {
  padding: var(--s4);
  background: linear-gradient(90deg, #3B2A1A 0%, #4a3525 100%);
  border-radius: var(--r-lg);
  margin: var(--s2) 0;
}
.summary-total-row span:first-child { color: rgba(255,255,255,0.7) !important; font-weight: 500 !important; }
.summary-total-row span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-xl) !important;
  color: var(--gold-amber) !important;
}
.summary-note {
  display: flex; align-items: flex-start; gap: var(--s2);
  padding: var(--s4) var(--s5);
  background: var(--champagne);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs); color: var(--text-3);
  line-height: 1.6; font-weight: 300;
}
.summary-note svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* CTA Panel */
.cta-panel { display: flex; flex-direction: column; gap: var(--s5); }
.cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s8);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--s4);
}
.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 400;
}
.cta-sub { font-size: var(--text-sm); color: var(--text-2); line-height: 1.75; font-weight: 300; }
.btn-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  background: var(--gold-amber); color: var(--charcoal);
  font-size: var(--text-base); font-weight: 600;
  padding: var(--s4) var(--s6); border-radius: var(--r-full);
  font-family: var(--font-body); letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(212,147,65,0.35);
  transition: background var(--ease), transform var(--ease);
}
.btn-cta-primary:hover { background: #e8a34f; transform: translateY(-2px); }
.btn-cta-secondary {
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  border: 1.5px solid var(--border); border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-2); padding: var(--s3) var(--s6);
  font-family: var(--font-body);
  transition: all var(--ease);
}
.btn-cta-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }

/* Next Steps */
.next-steps-card {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-2xl);
  padding: var(--s6);
}
.next-steps-title {
  font-family: var(--font-display);
  font-size: var(--text-lg); font-weight: 400;
  margin-bottom: var(--s5); color: var(--gold);
}
.next-steps-list { display: flex; flex-direction: column; gap: var(--s5); }
.next-steps-list li { display: flex; align-items: flex-start; gap: var(--s4); }
.next-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--charcoal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700;
  flex-shrink: 0; font-family: var(--font-body);
}
.next-steps-list strong { display: block; font-size: var(--text-sm); color: var(--charcoal); margin-bottom: 2px; font-family: var(--font-body); }
.next-steps-list p { font-size: var(--text-xs); color: var(--text-2); line-height: 1.55; font-weight: 300; }

/* ── Proof Strip ──────────────────────────────────────────── */
.proof-strip {
  background: var(--charcoal);
  color: white;
  padding: var(--s8) var(--s6);
}
.proof-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s6);
}
.proof-item { text-align: center; }
.proof-num { display: block; font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: var(--gold-amber); }
.proof-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); font-family: var(--font-body); }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: var(--s8) var(--s6);
  border-top: 1px solid var(--border);
  background: var(--cream);
  font-size: var(--text-sm); color: var(--text-3);
  display: flex; flex-direction: column; gap: var(--s2);
  font-family: var(--font-body);
}
.site-footer a { color: var(--gold); font-weight: 600; }
.footer-note { font-size: var(--text-xs); max-width: 64ch; margin: 0 auto; font-weight: 300; }

/* ── Step Transition Animation ────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard-step { animation: fadeSlideIn 0.45s cubic-bezier(0.16,1,0.3,1) both; }

/* ── Summary Total Counter Animation ─────────────────────── */
@keyframes priceReveal {
  0%   { opacity: 0; transform: scale(0.85) translateY(8px); }
  60%  { opacity: 1; transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.summary-total-row.animate-in { animation: priceReveal 0.7s cubic-bezier(0.16,1,0.3,1) both; }

/* ── Dynamic Add-On System ────────────────────────────────── */
.addon-placeholder {
  font-size: var(--text-sm); color: var(--text-3);
  text-align: center; padding: var(--s8) var(--s4);
  font-style: italic; font-weight: 300;
}
.addon-category-group { margin-bottom: var(--s6); }
.addon-category-group:last-child { margin-bottom: 0; }
.addon-category-label {
  font-family: var(--font-body);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: var(--s3);
  padding-bottom: var(--s2); border-bottom: 1px solid var(--border);
}

.addon-ab-note {
  display: flex; align-items: center; gap: var(--s2);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); padding: var(--s3) var(--s4);
  margin-bottom: var(--s6);
  font-size: var(--text-xs); color: var(--text-2);
}
.addon-ab-note svg { color: var(--gold-amber); flex-shrink: 0; }

.addon-included-banner {
  display: flex; align-items: center; gap: var(--s2);
  background: linear-gradient(135deg, rgba(47,46,46,0.06), rgba(212,147,65,0.08));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md); padding: var(--s4) var(--s5);
  margin-bottom: var(--s6);
  font-size: var(--text-sm); color: var(--text);
}
.addon-included-banner svg { color: var(--charcoal); flex-shrink: 0; }
.addon-included-banner strong { color: var(--charcoal); }

.addon-item {
  display: flex; align-items: flex-start; gap: var(--s3);
  padding: var(--s4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  margin-bottom: var(--s2);
}
.addon-item:hover { border-color: var(--gold); background: var(--gold-bg); }
.addon-item:has(.addon-cb:checked) { border-color: var(--gold-amber); background: var(--gold-bg); }

.addon-item-included {
  cursor: default;
  background: rgba(47,46,46,0.03);
  border-color: rgba(47,46,46,0.12);
}
.addon-item-included:hover {
  border-color: rgba(47,46,46,0.18);
  background: rgba(47,46,46,0.04);
}

.addon-checkmark-included {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: var(--r-sm);
  background: var(--charcoal);
  color: white;
  font-size: 11px; font-weight: 700;
}
.addon-price-included {
  font-size: var(--text-xs); font-weight: 700;
  color: var(--gold); flex-shrink: 0;
  padding: 2px var(--s2);
  background: rgba(147,121,100,0.1);
  border-radius: var(--r-full);
  white-space: nowrap;
  font-family: var(--font-body);
}

.extras-card-addons { max-height: 620px; overflow-y: auto; }
@media (max-width: 900px) { .extras-card-addons { max-height: none; } }

.summary-row-note span:last-child { color: var(--gold); font-style: italic; }

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .site-header, .progress-bar-wrap, .sticky-price-bar,
  .step-header p.step-desc, .step-nav, .proof-strip,
  .site-footer, .cta-card .btn-cta-secondary:not(.btn-schedule-tour),
  .btn-cta-primary, .next-steps-card { display: none !important; }
  .btn-schedule-tour { display: flex !important; border: 1px solid #D49341; color: #D49341 !important; text-decoration: none; }
  body { background: white; }
  .summary-layout { grid-template-columns: 1fr; }
  .summary-card { box-shadow: none; border: 1px solid #ccc; }
  .summary-hero { background: #2F2E2E !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .venue-grid { grid-template-columns: 1fr; }
  .day-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .wizard-step { padding: var(--s8) var(--s4); }
  .step-label { display: none; }
  .sticky-bar-inner { justify-content: center; }
  .sticky-selection { display: none; }
  .lead-capture-wrap { grid-template-columns: 1fr; }
  .lead-price-teaser { position: static; }
  .teaser-photo { height: 160px; }

  /* Nav: shrink tagline + fix button on small screens */
  .logo-tagline { display: none; }
  .header-phone {
    padding: var(--s2) var(--s3);
    font-size: 0.78rem;
    gap: 5px;
    white-space: nowrap;
  }
  .header-phone svg { width: 14px; height: 14px; }

  /* Lead header: better mobile layout */
  .lead-capture-header { padding: var(--s8) var(--s5); }
  .lead-offer-badge { font-size: 0.72rem; padding: 7px 14px; }
  .lead-offer-hint { text-align: left; }

  /* Summary discount celebration: stack nicely */
  .discount-celebrate-banner { padding: 24px 20px; }
  .discount-celebrate-amount { font-size: clamp(2.2rem, 10vw, 3.2rem); }
}

/* ═══════════════════════════════════════════════════════════════════
   DISCOUNT FUNNEL — Lead form teaser + Summary reveal
   ═══════════════════════════════════════════════════════════════════ */

/* ── Lead capture: offer badge ─────────────────────────── */
.lead-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D49341 0%, #b87a2a 100%);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(212, 147, 65, 0.38);
  animation: badgePulse 2.8s ease-in-out infinite;
}
.lead-offer-badge-icon { font-size: 1rem; }
.lead-offer-badge-label { line-height: 1; }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,147,65,0.38); }
  50%       { box-shadow: 0 4px 28px rgba(212,147,65,0.62); }
}

/* ── Lead capture: hint strip ──────────────────────────── */
.lead-offer-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(212, 147, 65, 0.18);
  border: 1px solid rgba(212, 147, 65, 0.45);
  border-left: 3px solid #D49341;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  width: 100%;
  box-sizing: border-box;
}
.lead-offer-hint svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #f4c97a;
}
.lead-offer-hint p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(248, 240, 230, 0.90);
  line-height: 1.5;
}
.lead-offer-hint strong { color: #f4c97a; }

/* ── Teaser card: discount hint ────────────────────────── */
.teaser-discount-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 147, 65, 0.12);
  border: 1px solid rgba(212, 147, 65, 0.28);
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 10px;
}
.teaser-discount-hint svg { color: #D49341; flex-shrink: 0; }
.teaser-discount-hint span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #c8841a;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Summary: discount row (green savings) ─────────────── */
.summary-discount-row {
  background: linear-gradient(90deg, rgba(34, 139, 34, 0.06), transparent);
  border-left: 3px solid #22a84d;
  padding-left: 12px !important;
  border-radius: 0 4px 4px 0;
  animation: discountReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.sum-discount-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1a8a3a;
  font-weight: 600;
  font-size: 0.93rem;
}
.sum-discount-label svg { color: #22a84d; flex-shrink: 0; }
.sum-discount-amt {
  color: #1a8a3a !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

@keyframes discountReveal {
  0%   { opacity: 0; transform: translateX(-12px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ── Summary: discounted total row ────────────────────── */
.summary-discounted-total-row {
  background: linear-gradient(90deg, rgba(34, 139, 34, 0.10), transparent);
  border-radius: 8px;
  padding: 10px 14px !important;
  animation: discountTotalReveal 0.7s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.summary-discounted-total-row > span:first-child {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a8a3a;
}
.sum-discounted-total {
  font-family: var(--font-display) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: #1a8a3a !important;
  letter-spacing: -0.02em;
}

@keyframes discountTotalReveal {
  0%   { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Discount expiry card ───────────────────────────────── */
.discount-expiry-card {
  margin: 18px 0 0;
  background: linear-gradient(135deg, #fff9ee 0%, #fff3d6 100%);
  border: 1px solid rgba(212, 147, 65, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  animation: expirySlideIn 0.5s 0.3s ease both;
}
.discount-expiry-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.discount-expiry-icon {
  flex-shrink: 0;
  color: #D49341;
  margin-top: 2px;
}
.discount-expiry-headline {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 0.90rem;
  font-weight: 600;
  color: #7a4d10;
  line-height: 1.4;
}
.discount-expiry-headline strong { color: #b87a2a; }
.discount-expiry-date {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: #a0642a;
  font-style: italic;
}

@keyframes expirySlideIn {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Consultation CTA card ─────────────────────────────── */
.consult-cta-card {
  background: linear-gradient(160deg, #5a3e28 0%, #3B2A1A 100%);
  border-radius: 16px;
  padding: 28px 24px;
  color: #fef6ed;
  border: 1px solid rgba(212,147,65,0.20);
  text-align: center;
  animation: consultReveal 0.6s 0.45s ease both;
}
.consult-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(212, 147, 65, 0.15);
  border: 1px solid rgba(212, 147, 65, 0.30);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.consult-cta-icon svg { color: #D49341; }
.consult-cta-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fef6ed;
  margin: 0 0 8px;
}
.consult-cta-sub {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: rgba(254,246,237,0.80);
  line-height: 1.55;
  margin: 0 0 20px;
}
.consult-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-consult-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #D49341, #b87a2a);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 20px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-consult-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-consult-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(254,246,237,0.85);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(254,246,237,0.22);
  border-radius: 8px;
  padding: 11px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-consult-secondary:hover {
  background: rgba(254,246,237,0.07);
  border-color: rgba(254,246,237,0.40);
}

@keyframes consultReveal {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Print: hide discount/consult elements from print ───── */
@media print {
  .discount-expiry-card,
  .consult-cta-card { display: none !important; }
}

/* ── DISCOUNT CELEBRATION BANNER ──────────────────────────── */
.discount-celebrate-banner {
  background: linear-gradient(135deg, #1a3320 0%, #1e4728 40%, #1f5230 100%);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4px 0;
  animation: celebrateBannerIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.discount-celebrate-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,147,65,0.22) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(212,147,65,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.discount-celebrate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
}
.discount-celebrate-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  animation: trophyBounce 0.8s 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.discount-celebrate-headline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.discount-celebrate-pct {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #f4c97a;
  margin: 0 0 16px;
  display: block;
}
.discount-celebrate-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  animation: amountPop 0.6s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.discount-celebrate-saved {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 20px;
}
.discount-celebrate-saved strong {
  color: #86efac;
  font-weight: 700;
}
.discount-celebrate-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.20);
  margin: 0 auto 18px;
}
.discount-celebrate-expiry {
  font-family: var(--font-body);
  font-size: 0.79rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}
.discount-celebrate-expiry strong { color: #fcd34d; }
.discount-celebrate-expiry-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  margin-top: 4px;
}

@keyframes celebrateBannerIn {
  0%   { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes trophyBounce {
  0%   { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes amountPop {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Reservation fee row + explainer ──────────────────────── */
.summary-res-row {
  border-top: 1px dashed var(--border);
  padding-top: 12px !important;
  margin-top: 4px;
}
.sum-res-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.90rem;
}
.sum-res-label svg { color: var(--gold-amber); flex-shrink: 0; }
#sum-reservation {
  color: var(--gold-amber) !important;
  font-weight: 700;
}
.summary-res-explainer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(147, 121, 100, 0.07);
  border: 1px solid rgba(147, 121, 100, 0.20);
  border-left: 3px solid var(--gold-amber);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 10px 0 4px;
}
.summary-res-explainer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-amber);
}
.summary-res-explainer p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
}
.summary-res-explainer strong { color: var(--charcoal); }

/* Package card: 1st payment row highlight */
.fee-row-res span:first-child {
  color: var(--gold);
  font-weight: 500;
}
.fee-row-res span:last-child {
  color: var(--gold-amber) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   STEP 2 — DATE PICKER CALENDAR + URGENCY BANNER
   ═══════════════════════════════════════════════════════════════════ */

/* ── Section reveal ─────────────────────────────────────── */
.date-picker-section {
  margin-top: var(--s8);
}
@keyframes calSectionIn {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Urgency banner ─────────────────────────────────────── */
.date-urgency-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #3d1f0d 0%, #5a2f15 60%, #6b3820 100%);
  border: 1px solid rgba(160, 97, 74, 0.45);
  border-left: 5px solid #A0614A;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(91,45,20,0.28);
}
.date-urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(160,97,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.date-urgency-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  filter: saturate(1.5);
}
.date-urgency-body { flex: 1; min-width: 0; }
.date-urgency-headline {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-weight: 800;
  color: #f5dcc8;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.date-urgency-sub {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: rgba(254,246,237,0.82);
  line-height: 1.6;
  margin: 0 0 16px;
}
.date-urgency-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #A0614A;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 20px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.date-urgency-cta:hover {
  background: #7c4a38;
  transform: translateY(-1px);
}

/* ── Calendar header ────────────────────────────────────── */
.date-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.date-cal-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.date-cal-title-wrap svg { color: var(--gold-amber); }
.date-cal-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
}
.date-cal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.date-nav-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  font-family: var(--font-body);
  line-height: 1;
}
.date-nav-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.date-cal-month {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  min-width: 140px;
  text-align: center;
}

/* ── DOW header row ─────────────────────────────────────── */
.date-cal-dow {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}
.cal-dow-cell {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 6px 0;
}

/* ── Date grid ──────────────────────────────────────────── */
.date-cal-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.cal-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 8px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  font-family: var(--font-body);
  min-height: 84px;
}
.cal-date-btn:hover:not(:disabled) {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cal-date-btn.cal-date-selected {
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(47,46,46,0.30);
  transform: translateY(-2px);
}
.cal-date-btn.cal-date-past {
  opacity: 0.35;
  cursor: not-allowed;
}
.cal-date-dow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cal-date-btn.cal-date-selected .cal-date-dow { color: rgba(255,255,255,0.60); }
.cal-date-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.cal-date-btn.cal-date-selected .cal-date-num { color: #fff; }
.cal-date-mon {
  font-size: 0.70rem;
  color: var(--text-2);
  font-weight: 500;
}
.cal-date-btn.cal-date-selected .cal-date-mon { color: rgba(255,255,255,0.70); }
.cal-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 32px 0;
  font-style: italic;
}

/* ── Selected date display bar ──────────────────────────── */
.date-selected-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(212,147,65,0.10), transparent);
  border: 1px solid rgba(212,147,65,0.30);
  border-left: 3px solid var(--gold-amber);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: var(--text);
}
.date-selected-display svg { color: #22a84d; flex-shrink: 0; }
.date-selected-display strong { color: var(--charcoal); font-weight: 700; }
.date-clear-btn {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-3);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.16s, border-color 0.16s;
}
.date-clear-btn:hover { color: var(--charcoal); border-color: var(--gold); }

/* ── Step 2 nav: show next btn beside back ──────────────── */
.step-nav { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.90rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-full);
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  letter-spacing: 0.02em;
  animation: btnNextReveal 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.btn-next:hover { background: var(--gold-amber); transform: translateY(-1px); }
@keyframes btnNextReveal {
  0%   { opacity: 0; transform: scale(0.88); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── lead-field-full: full width on single-item row ─────── */
.lead-field-full { grid-column: 1 / -1; }

/* ── Mobile adjustments ─────────────────────────────────── */
@media (max-width: 600px) {
  .date-urgency-banner { flex-direction: column; gap: 14px; padding: 20px 18px; }
  .date-urgency-icon { font-size: 1.8rem; }
  .date-cal-grid { gap: 6px; }
  .cal-date-btn { padding: 10px 4px; min-height: 72px; border-radius: 8px; }
  .cal-date-num { font-size: 1.3rem; }
  .date-cal-month { min-width: 110px; }
}

/* ══════════════════════════════════════════════════════════
   WELCOME / NAME CAPTURE SCREEN
   ══════════════════════════════════════════════════════════ */

.welcome-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a0f08 0%, #2a1e12 60%, #1a0f08 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.welcome-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img-lakemary-decor-2.jpg') center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.welcome-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
}

.welcome-card {
  background: rgba(254, 246, 237, 0.97);
  border-radius: 24px;
  padding: 52px 48px 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,147,65,0.25);
  text-align: center;
  animation: welcomeIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes welcomeIn {
  0%   { opacity: 0; transform: translateY(32px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.welcome-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.welcome-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: 10px;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
}

.welcome-title em {
  font-style: italic;
  color: var(--gold-amber);
}

.welcome-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
}

.welcome-input-group {
  text-align: left;
  margin-bottom: 24px;
}

.welcome-input-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.welcome-input-group input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}

.welcome-input-group input:focus {
  border-color: var(--gold-amber);
  box-shadow: 0 0 0 3px rgba(212,147,65,0.18);
}

.welcome-input-group input::placeholder { color: var(--text-3); font-weight: 400; }

.welcome-input-hint {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 6px;
  font-style: italic;
}

.btn-welcome-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #D49341 0%, #b87930 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 24px rgba(212,147,65,0.45);
  margin-bottom: 12px;
}

.btn-welcome-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,147,65,0.55);
}

.btn-welcome-skip {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-3);
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 0;
  transition: color 0.16s;
}
.btn-welcome-skip:hover { color: var(--text-2); }

.welcome-micro {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   STEP REWARD BANNER
   ══════════════════════════════════════════════════════════ */

.step-reward-bar {
  background: linear-gradient(90deg, #4a2e0d 0%, #6b4218 100%);
  border-bottom: 2px solid rgba(212,147,65,0.30);
  animation: rewardSlideIn 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes rewardSlideIn {
  0%   { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.step-reward-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-reward-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.step-reward-text {
  flex: 1;
}

.step-reward-msg {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: #fef0d4;
  margin: 0;
  line-height: 1.4;
}

.step-reward-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.16s;
  flex-shrink: 0;
}
.step-reward-close:hover { color: rgba(255,255,255,0.80); }

@media (max-width: 600px) {
  .step-reward-inner { padding: 12px 16px; gap: 10px; }
  .step-reward-msg { font-size: 0.85rem; }
}

/* ══════════════════════════════════════════════════════════
   LEAD FORM — ONLINE SPECIAL UNLOCK
   ══════════════════════════════════════════════════════════ */

.lead-online-special-hint {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(90deg, rgba(212,147,65,0.10), rgba(254,246,237,0.50));
  border: 1px solid rgba(180,120,50,0.30);
  border-left: 4px solid var(--gold-amber);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0 4px;
}

.lead-online-special-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.lead-online-special-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #4a3525;
  line-height: 1.55;
}

.lead-online-special-text strong {
  display: block;
  font-size: 0.92rem;
  color: #2a1e12;
  font-weight: 700;
  margin-bottom: 3px;
}

.lead-online-special-text em {
  font-style: italic;
  color: var(--gold-amber);
  font-weight: 600;
}

.lead-unlock-badge {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 700;
  color: #22a84d;
  background: rgba(34,168,77,0.10);
  border: 1px solid rgba(34,168,77,0.30);
  border-radius: var(--r-full);
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ── Lead promo CTA (below privacy) ────────────────────── */
.lead-promo-cta {
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(59,42,26,0.05), transparent);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.lead-promo-cta-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 12px;
}

.lead-promo-cta-text svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-amber);
}

.lead-promo-cta-text strong { color: var(--charcoal); }
.lead-promo-cta-text em { color: var(--gold-amber); font-weight: 600; }

.lead-promo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s, box-shadow 0.16s;
}

.lead-promo-call {
  background: #3B2A1A;
  color: #fef6ed;
  box-shadow: 0 3px 10px rgba(59,42,26,0.30);
}
.lead-promo-call:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(59,42,26,0.40); }

.lead-promo-email {
  background: #fff;
  color: var(--charcoal);
  border: 1.5px solid var(--border-2);
}
.lead-promo-email:hover { border-color: var(--gold-amber); transform: translateY(-1px); }

@media (max-width: 600px) {
  .welcome-card { padding: 36px 24px 32px; }
  .lead-online-special-hint { flex-direction: column; gap: 10px; }
  .lead-promo-actions { flex-direction: column; }
  .lead-promo-btn { justify-content: center; }
}

/* ── Lead promo CTA text fix (mobile) ──────────────────── */
@media (max-width: 600px) {
  .lead-promo-cta-text {
    flex-direction: column;
    gap: 6px;
  }
  .lead-promo-cta-text svg { margin-top: 0; }
}

/* ── CBCOVE: Booked / Unavailable Date Cells ─────────────────────────────── */

/* Booked = already reserved by another couple — warmer, more informative than "past" */
.cal-date-btn.cal-date-booked {
  background: #f5ede6;
  border: 1.5px dashed #c9a07a;
  cursor: not-allowed;
  opacity: 0.70;
  position: relative;
}

.cal-date-btn.cal-date-booked .cal-date-num {
  color: #a0614a;
  text-decoration: line-through;
  text-decoration-color: #c9a07a;
}

.cal-date-btn.cal-date-booked .cal-date-dow,
.cal-date-btn.cal-date-booked .cal-date-mon {
  color: #b88a6a;
}

/* Small "Reserved" label on hover */
.cal-date-btn.cal-date-booked::after {
  content: 'Reserved';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #a0614a;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
}

.cal-date-btn.cal-date-booked:hover::after {
  opacity: 1;
}

/* Calendar legend — show below calendar when venue = Rock Hill */
.cal-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 4px 0;
  flex-wrap: wrap;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-2);
}

.cal-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.cal-legend-swatch.available  { background: #fff; border: 1.5px solid var(--border-2); }
.cal-legend-swatch.booked     { background: #f5ede6; border: 1.5px dashed #c9a07a; }
.cal-legend-swatch.past       { background: #eee; border: 1.5px solid #ddd; }

/* CBCove sync badge — shown above Rock Hill calendar */
.cal-sync-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: #3a5e2a;
  background: rgba(58,94,42,0.08);
  border: 1px solid rgba(58,94,42,0.22);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.cal-sync-badge::before {
  content: '●';
  font-size: 0.55rem;
  color: #3a5e2a;
  animation: syncPulse 2s ease infinite;
}

@keyframes syncPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
