/* =====================================================
   TOYS FOR TALKING — Main Stylesheet
   Color Palette (Warm & Inviting):
     Primary:    #D96B55 (coral/salmon)
     Secondary:  #B8C9D9 (dusty blue)
     Accent:     #E8A87C (warm peach)
     Background: #FAF6F0 (warm cream)
     Text:       #2C2418 (dark warm brown)
   ===================================================== */

:root {
  --primary: #D96B55;
  --primary-dark: #BE5540;
  --secondary: #B8C9D9;
  --accent: #E8A87C;
  --accent-dark: #C8885C;
  --bg: #FAF6F0;
  --bg-card: #FFFCF9;
  --text: #2C2418;
  --text-light: #6B5040;
  --text-muted: #9B8070;
  --border: #EAD8CC;
  --success: #5C9E6E;
  --error: #C0392B;
  --shadow-sm: 0 2px 8px rgba(44,36,24,0.08);
  --shadow-md: 0 4px 20px rgba(44,36,24,0.12);
  --shadow-lg: 0 8px 40px rgba(44,36,24,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app { flex: 1; display: flex; flex-direction: column; }
#page-content { flex: 1; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--text-light); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  display: block;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
}
.navbar-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.1;
}
.navbar-brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar-links a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.navbar-links a:hover, .navbar-links a.active {
  color: var(--primary);
  background: rgba(217,107,85,0.08);
}
.navbar-cta {
  background: var(--primary) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
}
.navbar-cta:hover {
  background: var(--primary-dark) !important;
  color: white !important;
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 768px) {
  .navbar-toggle { display: flex; }
  .navbar-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }
  .navbar-links.open { display: flex; }
}

/* ===================== HERO ===================== */
.hero {
  background: var(--primary);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { max-width: 680px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.92);
  border-color: white;
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  transform: translateY(-1px);
}
.btn-blue {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-blue:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,107,85,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1.05rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ===================== CARDS ===================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(217,107,85,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.camp-card {
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
}
.camp-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,107,85,0.22), var(--shadow-md);
}
.camp-card .selected-badge {
  display: none;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-top: 0.4rem;
  width: fit-content;
  font-family: 'Inter', sans-serif;
}
.camp-card.selected .selected-badge { display: inline-flex; }
.camp-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
}
.camp-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217,107,85,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin: 0.5rem 0;
  font-family: 'Inter', sans-serif;
}

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
}
.form-group label .required { color: var(--error); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: 'Inter', sans-serif;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,107,85,0.14);
}
.form-control.error { border-color: var(--error); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
textarea.form-control { resize: vertical; min-height: 90px; }
select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5040' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-error { font-size: 0.8rem; color: var(--error); margin-top: 0.3rem; font-family: 'Inter', sans-serif; }

/* ===================== CHILD FORM BLOCK ===================== */
.child-block {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.child-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.child-block-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}
.child-block-title::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.btn-remove-child {
  border: none;
  background: none;
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-remove-child:hover { background: rgba(192,57,43,0.08); }

/* ===================== STEP INDICATOR ===================== */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
}
.step-circle.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(217,107,85,0.20);
}
.step-circle.done {
  background: var(--success);
  border-color: var(--success);
  color: white;
}
.step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.35rem;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.step-label.active { color: var(--primary); }
.step-label.done { color: var(--success); }
.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  transition: background var(--transition);
}
.step-line.done { background: var(--success); }
@media (max-width: 500px) { .step-line { width: 30px; } }

.step-wrapper { display: flex; flex-direction: column; align-items: center; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.page-header {
  background: var(--primary);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.88); max-width: 500px; margin: 0 auto; }
.booking-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ===================== FEATURES SECTION ===================== */
.features { background: var(--bg-card); }
.feature-card .card-icon { background: rgba(217,107,85,0.08); }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; }

/* ===================== ABOUT PAGE ===================== */
.about-header-logo {
  padding: 1.5rem 1.5rem 0;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
}
.about-header-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(250,246,240,0.85));
  pointer-events: none;
}
.site-logo-hero {
  width: auto;
  height: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(44,36,24,0.15));
}
@media (max-width: 600px) {
  .site-logo-hero { height: 220px; }
}
.about-bio-section { max-width: 780px; margin: 0 auto; }
.about-photo-float {
  float: left;
  margin: 0.25rem 2rem 1.5rem 0;
  width: 140px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-photo-float {
    float: none;
    margin: 0 auto 1.5rem;
    display: block;
  }
}
.about-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-md);
  display: block;
}
.about-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EAD8CC 0%, #D4B8A8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--text-muted);
  font-size: 0.7rem;
  text-align: center;
  gap: 0.25rem;
  font-weight: 500;
  padding: 0.5rem;
}
.about-photo-placeholder .photo-icon { font-size: 2.5rem; }
.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217,107,85,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(217,107,85,0.15);
  margin: 0.25rem;
  font-family: 'Inter', sans-serif;
}
.mission-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: white;
  text-align: center;
}
.mission-box h2 { color: white; margin-bottom: 1rem; }
.mission-box p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===================== TIME SLOT PICKER ===================== */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.time-slot {
  padding: 0.6rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
}
.time-slot:hover { border-color: var(--primary); color: var(--primary); }
.time-slot.selected { background: var(--primary); border-color: var(--primary); color: white; }
.time-slot.unavailable { opacity: 0.35; cursor: not-allowed; }
.date-picker {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}
.date-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-card);
  transition: all var(--transition);
  min-width: 64px;
  font-family: 'Inter', sans-serif;
}
.date-btn .day-name { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.date-btn .day-num { font-size: 1.25rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.date-btn .month { font-size: 0.7rem; color: var(--text-muted); }
.date-btn:hover, .date-btn.selected { border-color: var(--primary); }
.date-btn.selected { background: var(--primary); }
.date-btn.selected .day-name, .date-btn.selected .day-num, .date-btn.selected .month { color: white; }

/* ===================== PAYMENT ===================== */
.payment-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
@media (max-width: 768px) {
  .payment-grid { grid-template-columns: 1fr; gap: 1rem; }
  /* Only add bottom clearance when a fixed shelf is actually visible */
  body:has(.pay-shelf) #page-content,
  body:has(.camp-shelf) #page-content { padding-bottom: 90px; }
}
.order-summary-card { position: sticky; top: 90px; height: fit-content; }

/* Mobile sticky pay shelf (payment page) */
.pay-shelf {
  display: none;
}
@media (max-width: 768px) {
  .pay-shelf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1.5px solid var(--border);
    padding: 0.85rem 1.25rem;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(44,36,24,0.10);
    gap: 1rem;
  }
  .pay-shelf-total { display: flex; flex-direction: column; flex: 1; min-width: 0; overflow: hidden; }
  .pay-shelf-total .shelf-label { font-size: 0.75rem; color: var(--text-muted); font-family: 'Inter', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .pay-shelf-total .shelf-amount { font-size: 1.15rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', Georgia, serif; }
  .pay-shelf .btn { white-space: nowrap; flex-shrink: 0; }
}

/* ===================== CAMP SELECTOR STEP 3 ===================== */
.booking-container.booking-wide { max-width: 960px; }

.camp-selector-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
}
.camp-summary-sidebar { align-self: start; position: sticky; top: 90px; }

/* Mobile: hide sidebar, show sticky bottom shelf */
.camp-shelf { display: none; }

@media (max-width: 768px) {
  .camp-selector-layout { grid-template-columns: 1fr; }
  .camp-summary-sidebar { display: none; }
  .camp-desktop-proceed { display: none; }

  .camp-shelf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1.5px solid var(--border);
    padding: 0.85rem 1.25rem;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
    z-index: 200;
    box-shadow: 0 -4px 20px rgba(44,36,24,0.12);
    gap: 1rem;
  }
  .camp-shelf .pay-shelf-total { display: flex; flex-direction: column; flex: 1; min-width: 0; overflow: hidden; }
  .camp-shelf .shelf-label { font-size: 0.75rem; color: var(--text-muted); font-family: 'Inter', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .camp-shelf .shelf-amount { font-size: 1.15rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', Georgia, serif; }
  .camp-shelf .btn { white-space: nowrap; flex-shrink: 0; }
}
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; font-family: 'Inter', sans-serif; }
.order-row:last-child { border-bottom: none; }
.order-total { font-weight: 700; font-size: 1.05rem; color: var(--primary); border-top: 2px solid var(--border) !important; margin-top: 0.5rem; padding-top: 0.75rem !important; }
#stripe-card-element {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: border-color var(--transition);
}
#stripe-card-element.StripeElement--focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(217,107,85,0.14); }
#stripe-card-element.StripeElement--invalid { border-color: var(--error); }
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* ===================== CONFIRMATION ===================== */
.confirmation-center { max-width: 600px; margin: 0 auto; padding: 3rem 1.5rem; text-align: center; }
.check-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success) 0%, #6DBF83 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  box-shadow: 0 8px 30px rgba(92,158,110,0.35);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.confirmation-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: left;
  margin: 1.5rem 0;
}
.summary-row { display: flex; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; font-family: 'Inter', sans-serif; }
.summary-row:last-child { border-bottom: none; }
.summary-label { font-weight: 600; color: var(--text); min-width: 130px; }
.summary-value { color: var(--text-light); flex: 1; }
.calendar-buttons { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.cal-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  transition: all var(--transition);
  text-decoration: none;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}
.cal-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(217,107,85,0.05); }
.cal-btn .cal-icon { font-size: 1.25rem; }
.cal-btn.google { border-color: #4285F4; }
.cal-btn.google:hover { background: rgba(66,133,244,0.05); color: #4285F4; }
.cal-btn.apple { border-color: var(--primary); }
.cal-btn.apple:hover { background: rgba(217,107,85,0.05); color: var(--primary); }
.cal-btn.outlook { border-color: #0078D4; }
.cal-btn.outlook:hover { background: rgba(0,120,212,0.05); color: #0078D4; }

/* ===================== FOOTER ===================== */
.footer {
  background: #2C2418;
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; max-width: 1100px; margin: 0 auto 2rem; }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
}
.footer h4 { color: white; font-size: 0.875rem; margin-bottom: 1rem; font-family: 'Inter', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color var(--transition); font-family: 'Inter', sans-serif; }
.footer ul a:hover { color: white; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; font-family: 'Inter', sans-serif; }

/* ===================== MISC ===================== */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.badge-blue { background: rgba(217,107,85,0.08); color: var(--primary); }
.badge-gold { background: rgba(232,168,124,0.15); color: var(--accent-dark); }
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.alert {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
}
.alert-info { background: rgba(184,201,217,0.15); border: 1px solid rgba(184,201,217,0.4); color: #5A7A90; }
.alert-success { background: rgba(92,158,110,0.08); border: 1px solid rgba(92,158,110,0.25); color: var(--success); }
.alert-error { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.25); color: var(--error); }
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== ICONS ===================== */
.bi { line-height: 1; vertical-align: -0.125em; }
.icon-lg { font-size: 1.75rem; }
.icon-xl { font-size: 2.5rem; }
.card-icon .bi { font-size: 1.5rem; color: var(--primary); }
.cal-btn .bi { font-size: 1.1rem; }
.check-circle .bi { font-size: 2.5rem; color: white; }

/* Loading screen */
.loading { display: flex; align-items: center; justify-content: center; min-height: 300px; }
.loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 4px;
  animation: bounce 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Stripe placeholder */
.stripe-placeholder {
  background: rgba(217,107,85,0.05);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}
.stripe-placeholder .stripe-logo {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Testimonial */
.testimonial { background: var(--bg-card); border-radius: var(--radius); padding: 2rem; border-left: 4px solid var(--primary); box-shadow: var(--shadow-sm); }
.testimonial p { font-style: italic; margin-bottom: 0.75rem; font-size: 1rem; }
.testimonial-author { font-weight: 700; font-size: 0.875rem; color: var(--primary); font-family: 'Inter', sans-serif; }

/* CTA Section */
.cta-section { background: var(--primary); padding: 4rem 1.5rem; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Tag */
.tag-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; }
