/* ============================================================
   TopRankinMortgages — Main Stylesheet
   Brand: Navy #293a6a | Accent Gold #D4941A | Purple #2d1569
   Mobile-first. CSS custom properties throughout.
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,300;0,400;0,600;0,700;0,900;1,400;1,700&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

/* ── Custom Properties ── */
:root {
  /* Brand colours */
  --navy:          #131D47;
  --navy-dark:     #0b1130;
  --navy-deeper:   #070c1e;
  --navy-light:    #1e2d6b;
  --gold:          #D4941A;
  --gold-dark:     #b07413;
  --gold-light:    #E8A828;

  /* Purple accent palette */
  --purple:        #2d1569;
  --purple-deep:   #180a3e;
  --purple-mid:    #3d1f8a;
  --purple-glow:   rgba(45,21,105,0.35);

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #f7f8fc;
  --light-bg:      #eef0f6;
  --border:        #dde0ec;
  --text:          #1a2040;
  --text-muted:    #5a6380;
  --text-light:    #8892aa;

  /* Semantic */
  --success:       #1a9e5f;
  --error:         #d4341a;

  /* Spacing scale */
  --space-xs:      0.25rem;
  --space-sm:      0.5rem;
  --space-md:      1rem;
  --space-lg:      1.5rem;
  --space-xl:      2rem;
  --space-2xl:     3rem;
  --space-3xl:     4.5rem;
  --space-4xl:     6rem;

  /* Layout */
  --container:     1180px;
  --radius:        0.5rem;
  --radius-lg:     1rem;
  --radius-pill:   999px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    200ms var(--ease);
  --transition-md: 350ms var(--ease);

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(41,58,106,0.08), 0 1px 2px rgba(41,58,106,0.05);
  --shadow:        0 4px 16px rgba(41,58,106,0.10), 0 2px 6px rgba(41,58,106,0.06);
  --shadow-lg:     0 12px 40px rgba(41,58,106,0.15), 0 4px 12px rgba(41,58,106,0.08);
  --shadow-gold:   0 4px 20px rgba(212,148,26,0.25);
  --shadow-purple: 0 8px 32px rgba(45,21,105,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.05; font-weight: 800; letter-spacing: 0.01em; text-transform: uppercase; color: var(--navy); }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
.section { padding-block: var(--space-3xl); }
.section--lg { padding-block: var(--space-4xl); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--off-white { background: var(--off-white); }
.section--light-bg  { background: var(--light-bg); }

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

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.section-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}
.section-header { margin-bottom: var(--space-2xl); }
.section-header.text-center .section-sub { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 6px 28px rgba(212,148,26,0.38);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

/* ── Header / Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1a0a3c 0%, #2d1569 30%, #1e2c52 70%, #293a6a 100%);
  box-shadow: 0 2px 20px rgba(10,5,30,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-lg);
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }

.header-nav { display: none; }
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav-list a {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-list a.active {
  color: var(--white);
  position: relative;
}
.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
}
.nav-list .nav-cta a {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
}
.nav-list .nav-cta a:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

.nav-list .nav-apply a {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.4rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-list .nav-apply a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem 0.4rem 0.65rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.header-phone:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212,148,26,0.07);
}
.header-phone svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.header-phone:hover svg { opacity: 1; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — layout only; animation handled further down */
.mobile-nav-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.mobile-nav-list a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-list a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.mobile-nav-list a.active { color: var(--white); border-left: 3px solid var(--gold); padding-left: calc(1rem - 3px); }
.mobile-nav-list .nav-cta a {
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  border: none;
  border-radius: var(--radius);
  margin-top: var(--space-md);
}
.mobile-nav-list .nav-cta a:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}
.mobile-nav-list .nav-apply a {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
  margin-top: var(--space-sm);
}
.mobile-nav-list .nav-apply a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Responsive nav */
@media (min-width: 900px) {
  .header-nav  { display: block; }
  .menu-toggle { display: none; }
  .mobile-nav  { display: none !important; }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  background: var(--purple-deep);
  color: var(--white);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .hero { min-height: 75vh; }
  .hero-logo-watermark { display: none; }
  .hero-content { padding-block: 3rem 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-body { font-size: 1rem; margin-bottom: var(--space-xl); }
}
.hero-photo {
  position: absolute;
  right: -5%;
  top: 0;
  height: 100%;
  width: 75%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-photo {
    right: 0;
    width: 100%;
    height: 100%;
    object-position: center top;
    opacity: 0.45;
  }
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #120836 0%, #1a0e42 28%, rgba(18,8,54,0.55) 48%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 860px) {
  .hero-bg-pattern {
    background: linear-gradient(to bottom, rgba(12,6,40,0.78) 0%, rgba(12,6,40,0.55) 60%, rgba(12,6,40,0.72) 100%);
  }
}
.hero-logo-watermark {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--space-4xl);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212,148,26,0.15);
  border: 1px solid rgba(212,148,26,0.3);
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 0;
}
.hero h1 .accent { color: var(--gold-light); }
.hero-h1-rule {
  display: block;
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  margin: 0.55rem 0 0.45rem;
}
.hero-subhead {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.01em;
}
.hero-body {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 599px) {
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 0;
  }
  .hero-trust-item {
    padding: 0.85rem 0.75rem;
    font-size: 0.8rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.35rem;
  }
  .hero-trust-item:nth-child(1),
  .hero-trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-trust-item:nth-child(1),
  .hero-trust-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }
}

/* ── Stats Strip ── */
.stats-strip {
  background: linear-gradient(90deg, #180a3e 0%, #2d1569 35%, #1e2c52 70%, #293a6a 100%);
  padding-block: var(--space-2xl);
  border-bottom: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl) var(--space-md);
  text-align: center;
}
.stat-item {}
.stat-value {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-md), box-shadow var(--transition-md), border-color var(--transition-md);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}
.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 10px;
  padding: 0.6rem;
  color: var(--navy);
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--navy);
}
.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--navy);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.65em; }
.service-card-link::after { content: '→'; }

@media (min-width: 600px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.why-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item h3 { font-size: 1.2rem; color: var(--navy); }
.why-item p  { font-size: 0.9375rem; color: var(--text-muted); }

@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  counter-reset: step;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--light-bg);
  line-height: 1;
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  user-select: none;
}
.step-item h3 { font-size: 1.125rem; color: var(--navy); position: relative; z-index: 1; }
.step-item p  { font-size: 0.9375rem; color: var(--text-muted); position: relative; z-index: 1; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  left: var(--space-xl);
  font-size: 4rem;
  font-weight: 900;
  color: var(--light-bg);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: var(--space-sm); }
.testimonial-text  { font-size: 0.9375rem; color: var(--text); margin-bottom: var(--space-lg); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-area { font-size: 0.8125rem; color: var(--text-muted); }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  background: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: background var(--transition);
  text-align: left;
  width: 100%;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: var(--off-white); color: var(--navy); }

/* ── CTA Strip ── */
.cta-strip {
  background: var(--navy);
  padding-block: var(--space-3xl);
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.cta-strip p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-xl);
}
.cta-strip-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple) 40%, var(--navy-dark) 100%);
  color: var(--white);
  padding-block: var(--space-3xl) var(--space-2xl);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}
.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 54ch;
  margin-inline: auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,54,0.07);
  transition: transform var(--transition-md), box-shadow var(--transition-md);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,22,54,0.14);
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }
/* dark gradient overlay at bottom of photo */
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,22,54,0.72) 100%);
  pointer-events: none;
}
/* name/title overlaid on the photo */
.team-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem 1rem;
  z-index: 1;
}
.team-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.team-title {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}
.team-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.team-license {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
}
.team-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.team-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 0.85rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.team-contact-link svg { flex-shrink: 0; opacity: 0.65; }
.team-contact-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10,22,54,0.18);
}
.team-contact-link:hover svg { opacity: 1; stroke: #fff; }
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Services Full Page ── */
.service-block {
  padding-block: var(--space-3xl);
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.service-block-content {}
.service-block-content h2 { margin-bottom: var(--space-md); }
.service-block-content p  { color: var(--text-muted); margin-bottom: var(--space-lg); }
.service-block-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.service-block-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text);
}
.service-block-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.service-block-visual {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}
.service-block-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--navy);
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
}
.service-block-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--navy);
}
@media (min-width: 860px) {
  .service-block-inner { grid-template-columns: 1fr 1fr; }
  .service-block:nth-child(even) .service-block-visual { order: -1; }
}

/* ── Areas Page ── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition-md), box-shadow var(--transition-md);
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.area-card h2 { font-size: 1.375rem; color: var(--navy); margin-bottom: var(--space-sm); }
.area-card p  { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: var(--space-lg); line-height: 1.7; }
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--transition);
}
.area-link:hover { gap: 0.65em; }
.area-link::after { content: '→'; }
@media (min-width: 768px)  { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Contact / Multi-step Form ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 380px; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
}

/* Progress bar */
.form-progress { margin-bottom: var(--space-xl); }
.progress-bar-track {
  height: 4px;
  background: var(--light-bg);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: var(--radius-pill);
  transition: width 400ms var(--ease);
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.progress-labels span.active { color: var(--navy); font-weight: 700; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}
.form-step-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* Option cards (step 1) */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--space-lg) var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  user-select: none;
}
.option-label:hover { border-color: var(--navy-light); background: var(--off-white); }
.option-icon { font-size: 1.5rem; }
.option-input { position: absolute; opacity: 0; width: 0; height: 0; }
.option-input:checked + .option-label,
.option-label:has(input:checked) { border-color: var(--navy); background: var(--off-white); color: var(--navy); }
/* Fallback for :has() */
.option-label.selected { border-color: var(--navy); background: var(--off-white); color: var(--navy); }

/* Form fields */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(41,58,106,0.12);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { 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='%235a6380' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Credit/employment buttons */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.choice-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: center;
  user-select: none;
}
.choice-label:hover { border-color: var(--navy-light); background: var(--off-white); }
.choice-label.selected { border-color: var(--navy); background: var(--off-white); color: var(--navy); }

/* Nav buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.btn-back::before { content: '←'; }
.btn-back:hover { color: var(--navy); }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}
.form-success.show { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(26,158,95,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
}
.form-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: var(--space-sm); }
.form-success p  { font-size: 0.9375rem; color: var(--text-muted); }

/* Contact sidebar */
.contact-sidebar {}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.contact-info-card h3 { color: var(--white); font-size: 1.125rem; margin-bottom: var(--space-lg); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info-text {}
.contact-info-text .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.contact-info-text .value { font-size: 0.9375rem; font-weight: 600; color: var(--white); }
.contact-info-text a { color: var(--white); }
.contact-info-text a:hover { color: var(--gold-light); }

.trust-badges {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.trust-badges h4 { font-size: 0.875rem; color: var(--navy); margin-bottom: var(--space-md); }
.trust-badge-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.trust-badge-icon { color: var(--gold); flex-shrink: 0; }

/* ── About Page ── */
.about-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
  margin-inline: auto;
}
.about-photo img {
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.about-copy h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: var(--space-lg); }
.about-copy p  { color: var(--text-muted); margin-bottom: var(--space-md); font-size: 0.9375rem; line-height: 1.75; }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}
.credential-badge::before { content: '✓'; color: var(--gold); font-weight: 900; }
@media (min-width: 860px) {
  .about-lead { grid-template-columns: 1fr 1fr; }
  .about-photo { margin-inline: 0; }
}

/* ── Value strip ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.value-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: var(--space-md); }
.value-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: var(--space-sm); }
.value-card p  { font-size: 0.875rem; color: var(--text-muted); }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FAQ Search ── */
.faq-search-wrap {
  margin-bottom: 2.5rem;
}
.faq-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.faq-search-icon {
  position: absolute;
  left: 1.1rem;
  color: var(--navy);
  opacity: 0.45;
  pointer-events: none;
  flex-shrink: 0;
}
.faq-search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 3rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 100px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(10,22,54,0.06);
}
.faq-search-input::placeholder { color: var(--text-light); }
.faq-search-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(32,60,148,0.12), 0 2px 8px rgba(10,22,54,0.06);
}
.faq-search-clear {
  position: absolute;
  right: 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}
.faq-search-clear:hover { opacity: 1; background: var(--navy); color: #fff; }
.faq-search-status {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  padding-left: 1.2rem;
  min-height: 1.2em;
}

/* ── FAQ Page Specific ── */
.faq-category { margin-bottom: var(--space-3xl); }
.faq-category-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-3xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand {}
.footer-logo { margin-bottom: var(--space-lg); }
.footer-logo img { height: 40px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: var(--space-lg); max-width: 30ch; }
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-smartdebt-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}
.footer-legal-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  text-align: left;
}
.footer-legal-text strong {
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-legal { justify-content: flex-start; }
}

/* ── Scroll animations ── */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ── Misc utilities ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: var(--space-lg);
}
.divider--center { margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--gold); color: var(--white); padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 1rem; }

/* ── Mobile small tweaks ── */
@media (max-width: 480px) {
  .option-grid  { grid-template-columns: 1fr; }
  .choice-grid  { grid-template-columns: 1fr 1fr; }
  .hero-ctas    { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; width: 100%; }
}

/* ── Print ── */
@media print {
  .site-header, .cta-strip, .site-footer, .menu-toggle { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* ════════════════════════════════════════════════
   ELEVATION LAYER — Design refinements
   ════════════════════════════════════════════════ */

/* ── Typography refinements ── */
h1, h2 { letter-spacing: 0.02em; }
h3      { letter-spacing: 0.01em; }
.section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Gradient primary buttons ── */
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  box-shadow: 0 4px 16px rgba(212,148,26,0.3);
  transition: background-position 400ms var(--ease), transform var(--transition),
              box-shadow var(--transition);
}
.btn--primary:hover {
  background-position: 0 0;
  box-shadow: 0 6px 28px rgba(212,148,26,0.45);
}

/* ── Header — scroll glass effect ── */
.site-header {
  transition: box-shadow 300ms var(--ease), backdrop-filter 300ms var(--ease);
}
.site-header.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(24,10,62,0.96);
}

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: default;
}
.dropdown-chevron {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 200ms var(--ease);
  display: inline-block;
}
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(22,32,61,0.18), 0 2px 8px rgba(22,32,61,0.08);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
  z-index: 200;
  list-style: none;
  border-top: 3px solid var(--gold);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--navy);
}
.drop-icon { font-size: 1rem; flex-shrink: 0; }

/* Mobile nav accordion for services */
.mobile-nav-accordion { display: none; flex-direction: column; gap: 0.25rem; padding: 0 0 0 1.5rem; }
.mobile-nav-accordion.open { display: flex; }
.mobile-nav-accordion a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
  border: none;
}
.mobile-nav-accordion a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: none;
  cursor: pointer;
  text-align: left;
}
.mobile-accordion-toggle .chevron {
  font-size: 0.65rem;
  transition: transform 200ms var(--ease);
}
.mobile-accordion-toggle.open .chevron { transform: rotate(180deg); }

/* ── Hero elevation ── */
.hero-glass {
  display: none; /* shown on md+ */
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: var(--space-2xl);
}
.hero-glass-stat {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-glass-stat:last-child { border-bottom: none; }
.hero-glass-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,148,26,0.15);
  border: 1px solid rgba(212,148,26,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-glass-text strong { display: block; font-size: 0.9375rem; color: var(--white); font-weight: 700; }
.hero-glass-text span  { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

@media (min-width: 900px) {
  .hero-glass { display: block; }
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-2xl);
    align-items: center;
  }
}

/* ── Service cards elevation ── */
.service-card {
  border-top: 3px solid transparent;
  background-image: none;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-top-color: var(--gold); }
.service-card p { flex: 1; }

/* ── CTA strip elevation ── */
.cta-strip {
  background: linear-gradient(135deg, #180a3e 0%, #2d1569 35%, #1e2c52 70%, #293a6a 100%);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(212,148,26,0.07) 0%, transparent 55%),
                    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(61,31,138,0.45) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Blog card styles ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-md), box-shadow var(--transition-md);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-cover {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}
.blog-cover-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 400ms var(--ease);
}
.blog-card:hover .blog-cover-bg { transform: scale(1.04); }
.blog-cover-watermark {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 55%;
  opacity: 0.07;
  pointer-events: none;
}
.blog-cover-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.blog-body { padding: var(--space-xl); display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}
.blog-meta-sep { color: var(--border); }
.blog-card h3 { font-size: 1.0625rem; color: var(--navy); margin-bottom: var(--space-sm); line-height: 1.3; }
.blog-card p  { font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--space-lg); flex: 1; line-height: 1.65; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 0.65em; }
.blog-read-more::after { content: '→'; }

/* Blog post page */
.blog-post-hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
  padding-block: var(--space-3xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.blog-post-hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(50vw, 440px);
  opacity: 0.05;
}
.blog-post-hero-content { position: relative; z-index: 1; }
.blog-post-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,148,26,0.15);
  border: 1px solid rgba(212,148,26,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}
.blog-post-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 22ch;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.blog-post-meta strong { color: rgba(255,255,255,0.75); }

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (min-width: 900px) { .blog-post-layout { grid-template-columns: 1fr 280px; } }

.blog-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.blog-post-content h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}
.blog-post-content h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.blog-post-content p  { margin-bottom: 1.25rem; }
.blog-post-content ul,
.blog-post-content ol { margin: 0 0 1.25rem 1.5rem; }
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content strong { color: var(--navy); font-weight: 700; }
.blog-post-content a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.blog-post-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-sidebar {}
.blog-sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: sticky;
  top: 88px;
}
.blog-sidebar-cta h3 { color: var(--white); font-size: 1.125rem; margin-bottom: var(--space-sm); }
.blog-sidebar-cta p  { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-bottom: var(--space-lg); }
.blog-sidebar-cta .btn { width: 100%; justify-content: center; }

/* ── Interactive map ── */
.map-wrapper {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-svg { display: block; width: 100%; height: auto; }
.map-region {
  fill: var(--light-bg);
  stroke: var(--white);
  stroke-width: 2;
  cursor: pointer;
  transition: fill 200ms var(--ease);
}
.map-region:hover,
.map-region.active { fill: var(--navy); }
.map-region-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  fill: var(--navy);
  pointer-events: none;
  text-anchor: middle;
  dominant-baseline: middle;
  transition: fill 200ms var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.map-region:hover + text .map-region-label,
.map-region.active ~ text { fill: var(--white); }

.map-tooltip {
  position: absolute;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 150ms var(--ease);
  z-index: 10;
  border-top: 2px solid var(--gold);
}
.map-tooltip.show { opacity: 1; }
.map-tooltip small { display: block; font-weight: 400; color: rgba(255,255,255,0.6); font-size: 0.7rem; margin-top: 0.1rem; }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.map-legend-item:hover,
.map-legend-item.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.map-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}
.map-legend-item:hover .map-legend-dot,
.map-legend-item.active .map-legend-dot { background: var(--gold); }

/* ── Smarter form — conditional steps ── */
.form-step-variant { display: none; }
.form-step-variant.active { display: block; }

.mortgage-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}
.mortgage-type-badge span { color: var(--gold); }

/* ── Mobile nav slide (elevated) ── */
.mobile-nav {
  position: fixed;
  inset: 72px 0 0;
  background: linear-gradient(160deg, #1a0a3c 0%, #2d1569 40%, #1e2c52 100%);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
  pointer-events: none;
  padding: var(--space-xl) var(--space-xl) var(--space-3xl);
}
.mobile-nav.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-nav-backdrop {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(16,24,40,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms var(--ease), visibility 350ms;
}
.mobile-nav-backdrop.show { opacity: 1; visibility: visible; }

/* ── Areas page cards + map layout ── */
.areas-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 900px) {
  .areas-page-layout { grid-template-columns: 1fr 380px; align-items: start; }
  .map-sticky { position: sticky; top: 88px; }
}
.areas-cards-list { display: flex; flex-direction: column; gap: var(--space-lg); }

/* ── Blog cover gradient variants ── */
.blog-cover--navy  .blog-cover-bg { background: linear-gradient(135deg, #1a2850 0%, #293a6a 100%); }
.blog-cover--deep  .blog-cover-bg { background: linear-gradient(135deg, #16203d 0%, #1e3a6a 100%); }
.blog-cover--slate .blog-cover-bg { background: linear-gradient(135deg, #1e2c52 0%, #2d4080 100%); }

/* Blog coming-soon panel */
.blog-coming-soon {
  margin-top: 3rem;
  background: linear-gradient(135deg, #0d1f3c 0%, #1e2c52 60%, #2d1569 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.blog-coming-soon-inner h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.blog-coming-soon-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
@media (max-width: 560px) {
  .blog-coming-soon { padding: 2rem 1.25rem; }
}

/* ── Contact form: smarter layout ── */
.variant-field { animation: fadeIn 300ms var(--ease); }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ── Refinement: option cards keyboard focus ── */
.option-label:focus-within,
.choice-label:focus { outline: 2px solid var(--navy); outline-offset: 2px; }

/* ══════════════════════════════════════════════
   LIGHTBOX MODAL FORM
══════════════════════════════════════════════ */
.lbx-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: rgba(10, 18, 38, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lbx-overlay.open { opacity: 1; visibility: visible; }

.lbx-panel {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  box-shadow: 0 32px 100px rgba(0,0,0,0.35), 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
}

.lbx-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.lbx-close:hover { background: #f1f5f9; color: #1e293b; }

/* Progress dots */
.lbx-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 2rem;
}
.lbx-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  transition: background 0.3s, width 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.lbx-dot.active { background: var(--gold); width: 24px; }
.lbx-dot.done   { background: var(--navy); }

/* Step transitions */
.lbx-steps-wrap { position: relative; }

/* JS sets display:none/flex directly — CSS only handles animation */
.lbx-step {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}
.lbx-step.active {
  display: flex;
  animation: lbx-enter 0.32s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.lbx-step.active.dir-back {
  animation: lbx-enter-back 0.32s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes lbx-enter      { from { opacity:0; transform:translateX(22px); }  to { opacity:1; transform:translateX(0); } }
@keyframes lbx-enter-back { from { opacity:0; transform:translateX(-22px); } to { opacity:1; transform:translateX(0); } }

/* Step tag */
.lbx-step-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* Question headline */
.lbx-question {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

/* Input */
.lbx-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-family: var(--font);
  color: var(--navy);
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}
.lbx-input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212,148,26,0.12);
}
.lbx-input::placeholder { color: #94a3b8; }
.lbx-input.invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.lbx-name-row { display: flex; gap: 0.75rem; }
.lbx-name-row .lbx-input { flex: 1; }

/* Mortgage type tiles */
.lbx-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.lbx-tile {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  min-height: 52px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  background: #f8fafc;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font);
  color: var(--navy);
}
.lbx-tile:hover {
  border-color: var(--navy);
  background: #eef2ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41,58,106,0.12);
}
.lbx-tile.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(41,58,106,0.25);
}
.lbx-tile-icon { font-size: 1.375rem; line-height: 1; }
.lbx-tile-text { font-size: 0.78rem; font-weight: 600; line-height: 1.2; }

/* Primary button */
.lbx-btn {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #c8881a 0%, #e8a828 50%, #c8881a 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.lbx-btn:hover {
  background-position: 0 0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,148,26,0.38);
  color: #fff;
}
.lbx-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Back button */
.lbx-btn-back {
  background: none;
  color: #94a3b8;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.25rem 0;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
  align-self: center;
}
.lbx-btn-back:hover { color: var(--navy); }

/* Hint text */
.lbx-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* Success screen */
.lbx-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0.5rem 0;
  animation: lbx-in 0.4s ease both;
}
.lbx-success.show { display: flex; }

.lbx-success-ring {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), #1e2c52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbx-pop 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.1s both;
  color: var(--gold);
}
@keyframes lbx-pop {
  from { transform: scale(0.2); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.lbx-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.lbx-success p { color: #64748b; margin: 0; font-size: 0.9375rem; line-height: 1.6; }
.lbx-success-actions { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; margin-top: 0.5rem; }
.lbx-dismiss {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
  padding: 0.25rem;
  transition: color 0.2s;
}
.lbx-dismiss:hover { color: var(--navy); }

/* Brand strip */
.lbx-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}
.lbx-brand img { height: 20px; opacity: 0.5; }
.lbx-brand span { font-size: 0.68rem; color: #94a3b8; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* Mobile: sheet from bottom */
@media (max-width: 560px) {
  .lbx-overlay { align-items: flex-end; padding: 0; }
  .lbx-panel {
    border-radius: 22px 22px 0 0;
    padding: 2rem 1.5rem 1.75rem;
    max-height: 85vh;
    overflow-y: auto;
  }
  .lbx-question { font-size: 1.25rem; }
  .lbx-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   ENHANCED MAP (Tech Jazz)
══════════════════════════════════════════════ */
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #08112b;
  border: 1px solid rgba(60,90,180,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
.map-svg { display: block; width: 100%; height: auto; }

/* Map regions */
.map-region {
  fill: rgba(30,50,110,0.55);
  stroke: rgba(80,120,220,0.35);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s, filter 0.25s;
}
.map-region:hover {
  fill: rgba(212,148,26,0.3);
  stroke: rgba(212,148,26,0.75);
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(212,148,26,0.35));
}
.map-region.active {
  fill: rgba(212,148,26,0.38);
  stroke: #D4941A;
  stroke-width: 2;
  filter: drop-shadow(0 0 14px rgba(212,148,26,0.5));
}

.map-region-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  fill: rgba(190,210,255,0.75);
  text-anchor: middle;
  letter-spacing: 0.1em;
  pointer-events: none;
}
@media (max-width: 480px) {
  .map-region-label { font-size: 11px; fill: rgba(190,210,255,0.85); }
}

/* Pulsing nodes */
.map-pulse-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  transform-origin: center;
  animation: mpulse 2.8s ease-out infinite;
}
.map-pulse-ring:nth-child(2) { animation-delay: -1.4s; }
@keyframes mpulse {
  0%   { r: 4; opacity: 0.75; }
  100% { r: 22; opacity: 0; }
}
.map-node-dot { fill: var(--gold); }
.map-node-group { cursor: pointer; }
.map-node-group:hover .map-node-dot { fill: #fff; r: 5; }

/* Rivers */
.map-river {
  fill: none;
  stroke: rgba(100,170,255,0.3);
  stroke-width: 6;
  stroke-linecap: round;
}
.map-river-fill {
  fill: rgba(60,120,220,0.12);
  stroke: none;
}
.map-river-label {
  fill: rgba(100,170,255,0.35);
  font-family: 'Barlow', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-anchor: middle;
}

/* Tooltip (dark) */
.map-tooltip {
  position: absolute;
  background: rgba(5,12,30,0.96);
  border: 1px solid rgba(212,148,26,0.4);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 10;
  backdrop-filter: blur(6px);
}
.map-tooltip.show { opacity: 1; }
.map-tooltip strong { display: block; color: #fff; font-size: 0.875rem; font-weight: 700; }
.map-tooltip small  { display: block; color: rgba(212,148,26,0.9); font-size: 0.75rem; margin-top: 1px; }

/* Legend (pill style) */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.875rem 1rem;
  background: rgba(5,12,30,0.6);
  border-top: 1px solid rgba(60,90,180,0.2);
}
.map-legend-item {
  background: rgba(30,50,110,0.6);
  border: 1px solid rgba(80,120,220,0.25);
  color: rgba(180,200,255,0.7);
  border-radius: 20px;
  padding: 0.25rem 0.625rem;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.map-legend-item .map-legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(180,200,255,0.4);
  display: inline-block;
  transition: background 0.2s;
}
.map-legend-item:hover,
.map-legend-item.active {
  background: rgba(212,148,26,0.2);
  border-color: rgba(212,148,26,0.6);
  color: #D4941A;
}
.map-legend-item.active .map-legend-dot { background: var(--gold); }

/* Area card "Get Started" button */
.area-card { position: relative; }
.area-cta-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}
.area-link {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
}
.area-link:hover { color: var(--navy); text-decoration: underline; }
.area-start-btn {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.area-start-btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,148,26,0.3);
  color: #fff;
}

/* Map CTA panel */
.map-cta-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2c52 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.25rem 1.25rem 1.125rem;
  text-align: center;
}
.map-cta-panel p {
  color: rgba(255,255,255,0.65);
  font-size: 0.825rem;
  margin-bottom: 0.875rem;
  line-height: 1.5;
}
.map-cta-panel .btn {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
══════════════════════════════════════════════ */
.reviews-section {
  background: var(--navy-dark);
  padding-block: var(--space-3xl) var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(223,180,76,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(19,29,71,0.8) 0%, transparent 60%);
  pointer-events: none;
}
.reviews-header {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-2xl);
}

/* Rating hero bar */
.rating-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.rating-hero-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.rating-hero-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.rating-hero-stars {
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: #FBBC05;
  margin-bottom: 0.35rem;
}
.rating-hero-count {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.2rem;
}
.rating-hero-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.rating-hero-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  max-width: 300px;
}
.rating-hero-copy em { font-style: italic; color: var(--gold); }

/* Keep legacy badge for fallback */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.45rem 1rem 0.45rem 0.625rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.google-badge-g {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  color: #fff;
  flex-shrink: 0;
}
.google-badge-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.google-stars-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.google-stars-big .stars { display: flex; gap: 3px; }
.google-stars-big .stars svg { color: #FBBC05; }
.google-stars-big .rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.google-review-count {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.review-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(223,180,76,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.review-stars {
  font-size: 1.125rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1.5px solid rgba(223,180,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.review-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.2;
}
.review-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}
.reviews-cta {
  text-align: center;
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}
.review-read-more {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--gold);
  font-size: inherit;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: inherit;
}
.review-read-more:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════
   CONTACT PAGE — SIMPLE FORM
══════════════════════════════════════════════ */
.contact-simple-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-simple-layout { grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
}
.contact-info-panel { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-headline {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}
.contact-info-sub { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.contact-detail-list { display: flex; flex-direction: column; gap: 1.125rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 700; }
.contact-detail-body a, .contact-detail-body p { font-size: 0.9375rem; color: var(--navy); font-weight: 600; text-decoration: none; margin: 0; }
.contact-detail-body a:hover { color: var(--gold); }
.contact-response-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fff;
}
.contact-response-badge svg { color: var(--gold); flex-shrink: 0; }
.contact-response-badge p { font-size: 0.875rem; margin: 0; line-height: 1.4; opacity: 0.9; }
.contact-response-badge strong { opacity: 1; }

/* Simple contact form */
.contact-simple-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg);
}
.contact-simple-form h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 0 0 1.5rem; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-grid .full { grid-column: 1 / -1; }
.c-field { display: flex; flex-direction: column; gap: 0.4rem; }
.c-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.c-input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: var(--font);
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}
.c-input:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.c-input::placeholder { color: #b0b8cc; }
textarea.c-input { resize: vertical; min-height: 120px; }
.contact-submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.contact-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45,21,105,0.35);
}
.contact-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.contact-form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.contact-form-success.show { display: block; }
.contact-form-success .check-ring {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.contact-form-success h3 { color: var(--navy); font-size: 1.25rem; margin: 0 0 0.5rem; }
.contact-form-success p { color: var(--text-muted); margin: 0; font-size: 0.9375rem; }
@media (max-width: 560px) {
  .contact-simple-form { padding: 1.5rem 1.25rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   BLOG TEASER CARDS
══════════════════════════════════════════════ */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .blog-teaser-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .blog-teaser-grid { grid-template-columns: 1fr; }
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(212,148,26,0.1);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  width: fit-content;
}
.blog-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.blog-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  margin-top: auto;
}
.blog-card-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   GOLF TOURNAMENT SECTION
══════════════════════════════════════════════ */
.golf-section {
  background-image: url('../assets/images/golf-hero.jpg');
  background-size: cover;
  background-position: center center;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  position: relative;
}
.golf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,60,0.88) 0%, rgba(30,44,82,0.78) 50%, rgba(45,21,105,0.85) 100%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212,148,26,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 20%, rgba(45,21,105,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.golf-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .golf-inner { grid-template-columns: 1fr; }
  .golf-visual { display: none; }
}
.golf-content { color: var(--white); }
.golf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.golf-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.golf-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 540px;
}
.golf-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.golf-details li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}
.golf-details li svg { color: var(--gold); flex-shrink: 0; }
.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 6px 28px rgba(212,148,26,0.38);
}

/* Golf visual — decorative rings */
.golf-visual { position: relative; width: 160px; height: 160px; flex-shrink: 0; }
.golf-icon-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.golf-emoji {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(212,148,26,0.4));
}
.golf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,148,26,0.2);
  animation: golf-pulse 3s ease-out infinite;
}
.golf-ring--1 { width: 100px; height: 100px; animation-delay: 0s; }
.golf-ring--2 { width: 130px; height: 130px; animation-delay: 0.6s; }
.golf-ring--3 { width: 160px; height: 160px; animation-delay: 1.2s; }
@keyframes golf-pulse {
  0%   { opacity: 0.6; transform: scale(0.9); }
  50%  { opacity: 0.2; }
  100% { opacity: 0; transform: scale(1.1); }
}

/* Purple gradient badge / accent elements */
.purple-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 0.3rem 0.875rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Card hover accent with purple glow */
.service-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-top-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(45,21,105,0.08);
}

/* Why-us icon purple accent */
.why-icon {
  background: linear-gradient(135deg, var(--navy-dark), var(--purple));
}


/* ══════════════════════════════════════════════
   HOMEPAGE LAYOUT VARIETY
══════════════════════════════════════════════ */

/* ── Why Split Section (dark left / light grid right) ── */
.why-split-section-wrap {
  padding-inline: var(--space-lg);
  padding-block: var(--space-2xl);
  background: var(--white);
}
.why-split-section {
  display: grid;
  grid-template-columns: 36% 64%;
  max-width: var(--container);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(13,5,32,0.15);
}
.why-split-left {
  background: linear-gradient(160deg, #0d0520 0%, #1a0a3c 50%, #2d1569 100%);
  display: flex;
  align-items: center;
  padding: 3rem 2.5rem;
}
.why-split-left-inner { max-width: 320px; }
.why-split-left .section-label {
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.why-big-stat {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), #f0c04a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}
.why-big-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.why-split-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.why-split-right {
  background: #f7f8fc;
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
}
.why-split-right .why-grid {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.why-split-right .why-item {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.125rem;
  padding: 1.25rem 1.25rem;
  border-bottom: none;
  background: #fff;
  border: 1px solid rgba(41,58,106,0.09);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(41,58,106,0.05);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.why-split-right .why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,58,106,0.10);
  border-color: rgba(223,180,76,0.35);
}
.why-split-right .why-item:last-child { border-bottom: none; padding-bottom: 1.25rem; }
.why-split-right .why-item:first-child { padding-top: 1.25rem; }
.why-split-right .why-number {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 900;
}
.why-split-right .why-item h3 { font-size: 0.975rem; margin-bottom: 0.25rem; color: var(--navy); }
.why-split-right .why-item p  { font-size: 0.8625rem; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .why-split-section { grid-template-columns: 1fr; }
  .why-split-left { padding: 2.5rem 1.75rem; }
  .why-split-left-inner { max-width: 100%; }
  .why-split-right { padding: 1.75rem 1.5rem; align-items: flex-start; }
  .why-split-right .why-grid { gap: 0.625rem; }
  .why-split-right .why-item { padding: 1rem 1rem; }
}

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

/* ── Homepage Map Section ── */
.home-map-section {
  background: #f7f8fc;
  padding-inline: var(--space-lg);
  padding-block: var(--space-2xl);
}
.home-map-layout {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  background: linear-gradient(160deg, #080e1e 0%, #101c3a 40%, #0d1a38 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(8,14,30,0.2);
}
.home-map-content {
  padding: 3rem 2.5rem;
}
.home-map-content .section-label { color: var(--gold); }
.home-map-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: #fff;
  line-height: 1.2;
  margin-block: 0.6rem 0.875rem;
}
.home-map-content p {
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.home-map-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.home-map-visual {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-map-visual .map-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(100,150,255,0.2),
    inset 0 1px 0 rgba(120,170,255,0.12);
  position: relative;
}
/* Subtle edge vignette to give the map depth */
.home-map-visual .map-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 40px rgba(6,13,31,0.5);
  pointer-events: none;
}
/* ── Homepage map — enhanced styling ── */
.home-map-visual .map-svg { display: block; width: 100%; height: auto; }

/* Brighter, more vivid region fills */
.home-map-visual .map-region {
  fill: rgba(28,55,140,0.5);
  stroke: rgba(120,170,255,0.5);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s, filter 0.25s;
}

/* Give each region a slightly unique tint using nth-of-type on the <a> wrappers */
.home-map-visual a:nth-child(1) .map-region { fill: rgba(32,60,148,0.55); } /* Kanata */
.home-map-visual a:nth-child(2) .map-region { fill: rgba(24,50,128,0.48); } /* Stittsville */
.home-map-visual a:nth-child(3) .map-region { fill: rgba(40,70,165,0.58); } /* Ottawa */
.home-map-visual a:nth-child(4) .map-region { fill: rgba(30,55,140,0.52); } /* Nepean */
.home-map-visual a:nth-child(5) .map-region { fill: rgba(22,45,120,0.46); } /* Barrhaven */
.home-map-visual a:nth-child(6) .map-region { fill: rgba(36,65,155,0.55); } /* Gloucester */
.home-map-visual a:nth-child(7) .map-region { fill: rgba(44,75,170,0.60); } /* Orleans */

.home-map-visual .map-region:hover {
  fill: rgba(212,148,26,0.28);
  stroke: rgba(212,148,26,0.9);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(212,148,26,0.5));
}

/* Brighter region labels */
.home-map-visual .map-region-label {
  fill: rgba(210,228,255,0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* River — more vivid blue */
.home-map-visual .map-river {
  stroke: rgba(120,190,255,0.55);
  stroke-width: 7;
}
.home-map-visual .map-river-fill {
  fill: rgba(70,140,255,0.2);
}
.home-map-visual .map-river-label {
  fill: rgba(140,200,255,0.65);
  font-size: 7.5px;
  letter-spacing: 0.2em;
}

/* Pulse nodes — larger, more visible */
.home-map-visual .map-pulse-ring {
  stroke: var(--gold);
  stroke-width: 1.5;
  animation: hm-pulse 2.6s ease-out infinite;
}
.home-map-visual .map-node-dot {
  fill: var(--gold);
  r: 4.5;
  filter: drop-shadow(0 0 3px rgba(212,148,26,0.8));
}
@keyframes hm-pulse {
  0%   { r: 4; opacity: 0.9; stroke-width: 1.5; }
  100% { r: 26; opacity: 0;   stroke-width: 0.5; }
}
@media (max-width: 900px) {
  .home-map-layout { grid-template-columns: 1fr; }
  .home-map-content { padding: 2.5rem 1.5rem 1.5rem; }
  .home-map-visual { padding: 0 1.5rem 2.5rem; }
}

/* ── Blog Featured Layout ── */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.25rem;
  margin-top: var(--space-xl);
}
.blog-card--feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: 2rem 2rem;
  background: #0c1435;
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(8,14,40,0.35);
}
.blog-card--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(45,21,105,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(30,44,82,0.6) 0%, transparent 55%);
  pointer-events: none;
}
.blog-feature-watermark {
  position: absolute;
  bottom: -8%;
  right: -6%;
  width: 55%;
  opacity: 0.055;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.blog-feature-body { position: relative; z-index: 1; }
.blog-feature-rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 0.875rem;
  opacity: 0.8;
}
.blog-card--feature .blog-card-tag {
  position: relative;
  z-index: 1;
  color: var(--gold);
  border-color: rgba(196,160,48,0.3);
  background: rgba(196,160,48,0.1);
  margin-bottom: 0.875rem;
}
.blog-card--feature .blog-card-title a,
.blog-card--feature .blog-card-title { color: #fff; }
.blog-card--feature .blog-card-title {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
}
.blog-card--feature .blog-card-title a:hover { color: var(--gold-light); }
.blog-card--feature .blog-card-excerpt {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}
.blog-card--feature .blog-card-link {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s, color 0.2s;
}
.blog-card--feature .blog-card-link:hover { color: #f0c04a; gap: 0.6rem; }
.blog-card-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-card-stack .blog-card { flex: 1; }
@media (max-width: 760px) {
  .blog-featured-grid { grid-template-columns: 1fr; }
  .blog-card--feature { min-height: 260px; }
  .blog-feature-watermark { width: 50%; right: -4%; bottom: -4%; }
}

/* ══════════════════════════════════════════════
   HOMEPAGE RICHNESS — Premium visual depth
══════════════════════════════════════════════ */

/* Richer section backgrounds */
.section--off-white {
  background: linear-gradient(180deg, #f7f8fc 0%, #eef0f6 100%);
}
.section--light-bg {
  background: linear-gradient(180deg, #eef0f6 0%, #e8eaf4 100%);
}

/* Hero watermark — slightly more visible */
.hero-logo-watermark {
  opacity: 0.06;
  right: -2%;
  filter: drop-shadow(0 0 40px rgba(212,148,26,0.1));
}

/* Stats strip — richer dividers */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stat-value { letter-spacing: -0.02em; }

/* Service cards — glass depth */
.service-card {
  background: #fff;
  border: 1px solid rgba(41,58,106,0.06);
  box-shadow: 0 2px 12px rgba(41,58,106,0.06), 0 1px 3px rgba(41,58,106,0.04);
}
.service-card:hover {
  box-shadow: 0 16px 40px rgba(41,58,106,0.12), 0 4px 12px rgba(45,21,105,0.08);
  border-color: rgba(45,21,105,0.12);
}

/* Why-us grid — richer cards */
.why-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(41,58,106,0.06);
  box-shadow: 0 2px 12px rgba(41,58,106,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,21,105,0.1), 0 4px 12px rgba(41,58,106,0.08);
}

/* Steps — number accent */
.step-number {
  background: linear-gradient(135deg, var(--navy-dark), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Area pills — richer outline */
.btn--outline-navy {
  border-width: 1.5px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn--outline-navy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(41,58,106,0.12);
}

/* FAQ section — richer items */
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 4px 16px rgba(45,21,105,0.08);
}

/* Section label — gold */
.section-label {
  color: var(--gold);
}
.section--off-white .section-label,
.section--light-bg .section-label {
  color: var(--gold);
}

/* Homepage section breathing room */
.section { padding-block: var(--space-2xl) var(--space-3xl); }

/* Testimonials grid cards (if shown) */
.testimonial-card {
  border-left: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--navy), var(--purple)) border-box;
  border-left: 3px solid;
  border-image: linear-gradient(135deg, var(--navy), var(--purple)) 1;
}

/* ═══════════════════════════════════════════════════════════
   GOLF CLASSIC PAGE
═══════════════════════════════════════════════════════════ */

/* ── Golf Hero ── */
.golf-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0520;
  padding-block: var(--space-4xl);
}
.golf-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/golf-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.golf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,3,22,0.78) 0%, rgba(20,8,55,0.55) 40%, rgba(8,3,22,0.65) 100%);
}
.golf-hero .container { position: relative; z-index: 1; }
.golf-hero-content {
  max-width: 760px;
}
.golf-hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.mobile-break { display: none; }
@media (max-width: 768px) {
  .mobile-break { display: block; }
}
.golf-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.25rem;
}
.golf-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.golf-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.golf-hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.golf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
}

/* ── Golf About Grid ── */
.golf-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.golf-about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-block: 0.5rem 1.25rem;
}
.golf-about-content p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Event Detail Card ── */
.golf-event-details { margin-top: 0.5rem; }
.golf-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(41,58,106,0.08);
  box-shadow: 0 4px 24px rgba(41,58,106,0.07);
  overflow: hidden;
}
.golf-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid rgba(41,58,106,0.06);
}
.golf-detail-item:last-child { border-bottom: none; }
.golf-detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45,21,105,0.08), rgba(30,44,82,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}
.golf-detail-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 0.15rem;
}
.golf-detail-item span {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.4;
}

/* ── Schedule Grid ── */
.golf-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: var(--space-xl);
}
.golf-schedule-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(41,58,106,0.07);
  box-shadow: 0 2px 12px rgba(41,58,106,0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.golf-schedule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45,21,105,0.1);
}
.golf-schedule-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--purple));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(45,21,105,0.25);
}
.golf-schedule-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.golf-schedule-body p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* ── Why Join Grid ── */
.golf-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.golf-why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(41,58,106,0.07);
  box-shadow: 0 2px 12px rgba(41,58,106,0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.golf-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,21,105,0.1);
}
.golf-why-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  line-height: 1;
}
.golf-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.golf-why-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* ── Sponsor Tiers ── */
.golf-sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.golf-sponsor-tier {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(41,58,106,0.08);
  box-shadow: 0 2px 12px rgba(41,58,106,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: center;
}
.golf-sponsor-tier--gold {
  background: linear-gradient(160deg, #1a0a3c 0%, #2d1569 100%);
  border-color: rgba(196,160,48,0.35);
  box-shadow: 0 8px 32px rgba(45,21,105,0.3);
}
.golf-sponsor-tier--gold h3,
.golf-sponsor-tier--gold p { color: rgba(255,255,255,0.85); }
.golf-sponsor-tier--gold h3 { color: #fff; }
.golf-sponsor-tier-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.golf-sponsor-tier--gold .golf-sponsor-tier-badge { color: var(--gold); }
.golf-sponsor-tier h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}
.golf-sponsor-tier p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  flex-grow: 1;
  margin: 0;
}

/* ── Registration Layout ── */
.golf-register-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.golf-register-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-block: 0.5rem 1rem;
}
.golf-register-info p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.golf-register-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.golf-register-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
}
.golf-register-checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple);
}

/* ── Breadcrumb light variant ── */
.breadcrumb--light {
  margin-bottom: 1.25rem;
}
.breadcrumb--light a,
.breadcrumb--light span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.breadcrumb--light a:hover { color: rgba(255,255,255,0.9); }

/* ── Golf page responsive ── */
@media (max-width: 900px) {
  .golf-about-grid { grid-template-columns: 1fr; }
  .golf-why-grid   { grid-template-columns: repeat(2, 1fr); }
  .golf-sponsor-tiers { grid-template-columns: 1fr; }
  .golf-register-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .golf-hero { min-height: 70vh; }
  .golf-hero-ctas { flex-direction: column; }
  .golf-schedule-grid { grid-template-columns: 1fr; }
  .golf-why-grid { grid-template-columns: 1fr; }
  .golf-schedule-item { padding: 1.25rem; }
  .golf-why-card { padding: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   END GOLF CLASSIC PAGE
═══════════════════════════════════════════════════════════ */

/* ── Google Reviews link ── */
.google-reviews-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.google-reviews-link:hover { color: var(--gold); }

/* ── Sticky Mobile CTA Bar ── */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.sticky-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.sticky-cta-bar .sticky-cta-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.sticky-cta-bar .sticky-cta-call {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
@media (max-width: 767px) {
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 4rem; }
}

/* Footer — slightly darker */
.site-footer {
  background: linear-gradient(160deg, #100520 0%, #180a3e 30%, #1e2c52 100%);
}
