/* ============================================================
   UCR Design System v2 — style.css
   No-Lo inspired: Dark/Clean/Modern/Property-focused
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ── CSS Variables ── */
:root {
  --bg-primary:     #f5f0e8;
  --bg-secondary:   #ede5d5;
  --bg-card:        #ffffff;
  --bg-card-hover:  #faf7f1;
  --bg-darkest:     #091520;

  --gold:           #c9952d;
  --gold-light:     #e8b84a;
  --gold-pale:      #f5d98a;
  --gold-muted:     rgba(201,149,45,0.15);
  --gold-border:    rgba(201,149,45,0.12);
  --gold-border-strong: rgba(201,149,45,0.30);

  --cta:            #2563eb;
  --cta-hover:      #1d4ed8;

  --text-primary:   #1a1f2e;
  --text-secondary: #5a564e;
  --text-muted:     #6b665d;
  --text-gold:      #996b1d;

  --border-subtle:  rgba(201,149,45,0.12);
  --border-white:   rgba(26,31,46,0.10);

  --radius:         16px;
  --radius-sm:      10px;
  --radius-lg:      24px;

  --transition:     0.22s ease;

  --ff-serif:       'Cormorant Garamond', Georgia, serif;
  --ff-sans:        'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  background: var(--bg-primary);
  background-color: var(--bg-primary);
}
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 48px;
  box-sizing: border-box;
}

section { padding: 64px 0; }

.section-alt { background: var(--bg-secondary); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,149,45,0.22), transparent);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.05; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); line-height: 1.2; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-family: var(--ff-sans); font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 52px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

/* ── Trust Bar ── */
.trust-bar {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--bg-darkest);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}

/* ── Navigation ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0d1b2a !important;
  background-color: #0d1b2a !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,237,230,0.08);
  width: 100% !important;
  max-width: 100% !important;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  /* Full width - no constraints */
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold-light); }
.nav-logo-img { height: 44px; width: auto; display: block; }
@media (max-width: 640px) { .nav-logo-img { height: 36px; } }
.footer-brand .nav-logo-img { height: 56px; margin-bottom: 12px; }

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

.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-links a svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  transition: color var(--transition);
}
.nav-links a:hover svg {
  color: var(--gold);
}
.nav-links a:hover { 
  color: var(--text-primary); 
  background: rgba(201,149,45,0.1);
}

.nav-cta {
  background: var(--cta);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: 0 3px 14px rgba(37,99,235,0.28);
}
.nav-cta:hover {
  background: var(--cta-hover) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 32px 24px 64px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,149,45,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-stat .number {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.proof-stat .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg,#c9952d,#e8b84a);
  color: #1a1f2e;
  padding: 16px 38px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37,99,235,0.30);
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.45);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ── Path Cards (Homepage Hub) ── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.path-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-strong);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,149,45,0.1);
}
.path-card:hover::before { opacity: 1; }

.path-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border-radius: 14px;
  font-size: 1.6rem;
}

.path-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.path-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.path-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap var(--transition);
}
.path-link:hover { gap: 10px; }

/* ── Feature/Proof Strip ── */
.proof-strip {
  background: var(--bg-secondary);
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.proof-item .dot { color: var(--gold); font-size: 1rem; }

/* ── Cards (generic) ── */
.card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-strong);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* ── Steps/Process ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border-strong), var(--gold-border-strong));
}

.step {
  text-align: center;
  padding: 0 28px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-darkest);
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--text-secondary); }

/* ── Case Study Cards ── */
.case-study {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 4px 0 0 4px;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-white);
  border-bottom: 1px solid var(--border-white);
}

.cs-stat { text-align: center; }
.cs-stat .value {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.cs-stat .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Testimonials ── */
.testimonial-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 26px;
  font-size: 5rem;
  color: rgba(201,149,45,0.15);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 16px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--ff-serif);
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.92rem;
}
.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

/* ── USP Block ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usp-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.usp-number {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.usp-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 100%; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold-border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-muted);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Course Structure ── */
.course-sections { display: flex; flex-direction: column; gap: 20px; }

.course-section {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cs-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
}

.cs-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  min-width: 40px;
}

.cs-title { font-size: 1.25rem; margin-bottom: 4px; }
.cs-desc { font-size: 0.88rem; color: var(--text-muted); }

.cs-lessons {
  padding: 0 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(240,237,230,0.04);
}
.cs-lesson:last-child { border-bottom: none; }

.cs-lesson::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Team Bios ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-darkest);
  flex-shrink: 0;
}

.team-info { flex: 1; }
.team-info h3 { font-size: 1.4rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-info p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Contact Form ── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,45,0.1);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ── What Happens Next ── */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.next-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.next-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.next-step-text h4 { margin-bottom: 4px; font-size: 1rem; }
.next-step-text p { font-size: 0.88rem; color: var(--text-secondary); }

/* ── Page Hero (non-homepage) ── */
.page-hero {
  padding: 24px 24px 40px;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,149,45,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-darkest));
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 500px; margin: 0 auto 36px; color: var(--text-secondary); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-darkest);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-white);
}

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

.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 240px; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid var(--border-white);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ── FAQ Category Tabs ── */
.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.faq-tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-tab:hover, .faq-tab.active {
  background: var(--gold-muted);
  border-color: var(--gold-border-strong);
  color: var(--gold-light);
}

.faq-category { display: none; }
.faq-category.active { display: block; }

/* ── Benefit List ── */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(240,237,230,0.04);
}
.benefit-item:last-child { border-bottom: none; }

.benefit-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #166534;
  margin-top: 2px;
}

.benefit-item h4 { font-size: 0.95rem; font-family: var(--ff-sans); margin-bottom: 2px; }
.benefit-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── Objection Cards ── */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-white);
  border-radius: var(--radius);
  padding: 28px;
}

.obj-question {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.obj-question::before {
  content: 'Q';
  background: var(--gold-muted);
  color: var(--gold);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.obj-answer {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.65;
}

/* ── Partner Logos / As Seen In ── */
.logo-strip {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
}

/* ── Mastery Gate Badge ── */
.mastery-gate {
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(201,149,45,0.08));
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 12px 0;
}

.gate-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.gate-text h4 { font-size: 1rem; margin-bottom: 4px; color: #1e40af; font-family: var(--ff-sans); }
.gate-text p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; }

/* ── Inline alert / banner ── */
.alert-bar {
  background: rgba(201,149,45,0.1);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--gold-light);
  text-align: center;
}

/* ── Grid helpers ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ── Spacing helpers ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-48 { margin-bottom: 48px; }

/* ── Focus States ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(201,149,45,0.2);
}

/* ── Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .paths-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-2 { gap: 24px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .container { padding: 0 32px; }
  .hero { min-height: 65vh; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { min-height: 80vh; padding: 60px 20px; }
  
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(9,21,32,0.98);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-white);
  }
  .nav-toggle { display: flex; }
  .nav-wrap { position: sticky; top: 0; }
  
  .paths-grid { grid-template-columns: 1fr; gap: 16px; }
  .usp-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .case-study-stats { grid-template-columns: 1fr; gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-proof { gap: 24px; }
  .proof-strip-inner { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-large { padding: 16px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .container { padding: 0 20px; width: 100%; }
  .page-hero { padding: 28px 20px 40px; }
}

/* September 2026 functional repairs */
.form-intro { margin-bottom: 20px; }
.form-help { font-size: .85rem; margin-top: 16px; overflow-wrap: anywhere; }
.form-help a { color: var(--gold-light); text-decoration: underline; }
.native-form-wrap { width:100%; min-width:0; }
.grid-2 > *, .contact-grid > * { min-width:0; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.nav-inner { gap:24px; }
.nav-links { gap:4px; }
.nav-links a { padding:12px 13px; letter-spacing:.01em; }
.nav-toggle { min-width:44px; min-height:44px; align-items:center; justify-content:center; }
@media(max-width:1200px) {
 .nav-links { display:none; }
 .nav-links.open { display:flex; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:rgba(9,21,32,.98); padding:20px; gap:8px; max-height:calc(100dvh - 100px); overflow-y:auto; }
 .nav-links.open a { width:100%; justify-content:center; }
 .nav-toggle { display:flex; }
}
@media(max-width:480px) {
 .nav-inner { padding:16px 20px; gap:12px; }
 .nav-logo { font-size:1.45rem; }
}
@media(max-width:768px) { .contact-grid { grid-template-columns:1fr; gap:40px; } }
.legal-content { max-width:850px; margin:auto; }
.legal-content h2 { font-size:1.65rem; margin:32px 0 12px; }
.legal-content p { margin:12px 0; }
.legal-content ul { list-style:disc; padding-left:24px; color:var(--text-secondary); }
.legal-content a { color:var(--gold-light); text-decoration:underline; }


/* --- Light-theme correction: chrome stays dark, so its text must stay light --- */
.nav-wrap, .nav-wrap * { --text-primary: #f0ede6; --text-secondary: #a8b4c0; --text-muted: #8a9db0; }
.nav-logo { color: #f0ede6; }
.nav-logo span { color: #e8b84a; }
.nav-links a { color: #a8b4c0; }
.nav-links a:hover { color: #f0ede6; background: rgba(201,149,45,0.12); }
.nav-links a svg { color: #e8b84a; }
.nav-toggle span { background: #f0ede6; }
.nav-cta, .nav-links a.nav-cta { color: #fff !important; }

.site-footer, .site-footer * { --text-primary: #f0ede6; --text-secondary: #a8b4c0; --text-muted: #8a9db0; }
.site-footer .nav-logo { color: #f0ede6; }
.site-footer .nav-logo span { color: #e8b84a; }
.footer-brand p, .footer-col a, .footer-bottom p { color: #8a9db0; }
.footer-col a:hover { color: #e8b84a; }
.footer-col h4 { color: #c9952d; }

/* --- Light-theme correction 2: gold INK on cream ---
   #e8b84a only ever sits on dark (it fails contrast on #f5f0e8). On cream we use
   the two golds the /kira page already uses: #996b1d for display, #7a5518 for
   small text and links. Gradients and fills keep the bright gold. --- */

/* Display-scale gold (large serif, big numbers) */
.hero h1 em,
.proof-stat .number,
.cs-stat .value,
.usp-number,
.stars,
.author-avatar          { color: #996b1d; }

/* Small-text gold: buttons, links, labels, controls */
.btn-secondary,
.path-link,
.faq-question:hover,
.next-step-num,
.faq-icon,
.alert-bar,
.form-help a,
.legal-content a        { color: #7a5518; }

.faq-tab:hover,
.faq-tab.active         { color: #7a5518; background: rgba(201,149,45,0.16); border-color: rgba(201,149,45,0.45); }
.next-step-num          { background: rgba(201,149,45,0.16); border-color: rgba(201,149,45,0.40); }
.faq-icon               { border-color: rgba(201,149,45,0.50); }
.btn-secondary          { border-color: #c9952d; }
.btn-secondary:hover    { background: rgba(201,149,45,0.12); color: #7a5518; }

/* Primary button keeps the gold gradient on hover instead of reverting to blue */
.btn-primary:hover      { background: linear-gradient(135deg,#b8862a,#d9a93c); color: #1a1f2e;
                          box-shadow: 0 8px 28px rgba(201,149,45,0.42); }

/* The nav CTA was the last blue element on the site */
.nav-cta, .nav-links a.nav-cta {
  background: linear-gradient(135deg,#c9952d,#e8b84a);
  color: #1a1f2e !important;
  box-shadow: 0 3px 14px rgba(201,149,45,0.32);
}
.nav-cta:hover, .nav-links a.nav-cta:hover {
  background: linear-gradient(135deg,#b8862a,#d9a93c) !important;
  color: #1a1f2e !important;
}

/* --- Light-theme correction 3: remaining gold/tint text on cream --- */
.eyebrow                { color: #7a5518; }
.proof-item .dot        { color: #7a5518; }
.cs-num                 { color: #996b1d; }
.benefit-check          { background: rgba(22,101,52,0.12); border-color: rgba(22,101,52,0.32); }
.benefit-check.no       { background: rgba(185,28,28,0.10); border-color: rgba(185,28,28,0.30); }

/* --- Inner-page heroes: same house photo + dark haze as the homepage (option C),
       with the text in a cream block so it stays readable on the dark veil.
       /book, /options and /kira are self-contained pages and are not affected. --- */
.page-hero{
  background-image:url('images/hero-homes-v2.jpg');
  background-size:cover;
  background-position:center 60%;
  background-color:var(--bg-primary);
  padding:44px 24px 56px;
}
.page-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(30,30,30,0.68);
  z-index:0;
  pointer-events:none;
}
.page-hero-inner{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto;
  background:#f8f5ef;
  border:1px solid rgba(201,149,45,0.28);
  border-radius:16px;
  padding:38px 40px 34px;
  box-shadow:0 18px 48px rgba(26,31,46,0.22);
}
.page-hero-inner > :last-child{margin-bottom:0;}
@media(max-width:600px){
  .page-hero{padding:28px 16px 36px;background-position:center;}
  .page-hero-inner{padding:26px 20px 24px;border-radius:14px;}
}

/* --- Path cards take the same tan as the "What Makes Us Different" stat cards.
       Set solid (--gold-muted composited over #ede5d5) so it matches those cards
       exactly, regardless of the section background behind it. --- */
.path-card        { background: #e8d9bc; border-color: rgba(201,149,45,0.30); }
.path-card:hover  { background: #e3d2b1; }

/* --- CTA banner: --bg-darkest is still the dark navy (the footer needs it), so the
       banner gradient was running cream -> near-black and swallowing its own text.
       Give the banner its own light band; the footer keeps --bg-darkest. --- */
.cta-banner{
  background: linear-gradient(135deg,#ede5d5 0%,#e4dac6 100%);
  border-top: 1px solid rgba(201,149,45,0.30);
  border-bottom: 1px solid rgba(201,149,45,0.30);
}
.cta-banner h2 { color:#1a1f2e; }
.cta-banner p  { color:#5a564e; }
.cta-banner .eyebrow { color:#7a5518; }

/* Second CTA takes the same gold fill as the primary button, per Kira */
.cta-banner .btn-secondary{
  background: linear-gradient(135deg,#c9952d,#e8b84a);
  border: none;
  color:#1a1f2e;
  font-weight:700;
  box-shadow: 0 4px 20px rgba(201,149,45,0.30);
}
.cta-banner .btn-secondary:hover{
  background: linear-gradient(135deg,#b8862a,#d9a93c);
  color:#1a1f2e;
}
/* banner small-print: the muted grey drops to 4.11:1 on the band's darker stop */
.cta-banner { --text-muted: #5a564e; }

/* --- Case-study cards: house photo + the ebook's side-by-side comparison --- */
.cs-photo{
  /* the global reset sets no height:auto, so the HTML height attribute would
     otherwise beat aspect-ratio and the two photos render different heights */
  width:100%; height:auto; aspect-ratio:16/10; object-fit:cover; display:block;
  border-radius:12px; margin-bottom:18px;
  border:1px solid rgba(201,149,45,0.28);
}
.cs-addr{
  display:block; font-size:0.8rem; letter-spacing:0.02em; color:#5a564e;
  margin:-6px 0 14px; font-style:italic;
}
.cs-compare{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:18px;
}
.cs-col{
  border-radius:10px; padding:14px 14px 12px; font-size:0.82rem; line-height:1.55;
}
.cs-col.win{ background:rgba(201,149,45,0.14); border:1px solid rgba(201,149,45,0.38); }
.cs-col.lose{ background:rgba(26,31,46,0.045); border:1px solid rgba(26,31,46,0.12); }
.cs-col h4{
  font-family:var(--ff-sans); font-size:0.66rem; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; margin-bottom:9px;
}
.cs-col.win h4 { color:#7a5518; }
.cs-col.lose h4{ color:#5a564e; }
.cs-col dl{ margin:0; }
.cs-col .row{ display:flex; justify-content:space-between; gap:10px; padding:3px 0; }
.cs-col .row span:first-child{ color:#5a564e; }
.cs-col .row span:last-child{ color:#1a1f2e; font-weight:600; text-align:right; }
.cs-col.win .row span:last-child{ color:#1a1f2e; }
@media(max-width:520px){ .cs-compare{ grid-template-columns:1fr; } }
