/*
Theme Name:  Honorable Care
Theme URI:   https://honorablecare.co.uk
Description: Custom theme for Honorable Care Limited — CQC-registered domiciliary care, Stoke-on-Trent. Brief: HC-WEB-002 v2.0.
Version:     1.0.0
Author:      Honorable Care Ltd
Author URI:  https://honorablecare.co.uk
License:     Private
Text Domain: honorable-care
Tags:        custom-background, custom-logo, menu-primary, menu-footer, full-width-template
*/

/* ============================================================
   HONORABLE CARE DESIGN TOKENS — Brief §4
   ============================================================ */
:root {
  --navy:         #1B3A5C;
  --navy-dark:    #122740;
  --navy-soft:    #2D5078;
  --gold:         #C49A28;
  --gold-soft:    #DDB358;
  --gold-pale:    #F5EDD6;
  --off-white:    #FAFAF8;
  --light-purple: #EEF2F7;
  --text-dark:    #2D2D2D;
  --white:        #FFFFFF;
  --grey-mid:     #E0E0DA;
  --grey-text:    #5A5A5A;
  --whatsapp:     #25D366;

  /* Spacing */
  --section-pad-desktop: 88px;
  --section-pad-mobile:  52px;

  /* Layout */
  --max-width:    1200px;
  --radius-card:  12px;
  --radius-btn:   8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; } /* §4.3 base 17px */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Headings — Playfair Display serif §4.2 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
}

/* Body text — Inter §4.2 */
p, li, label, input, textarea, select, button {
  font-family: 'Inter', -apple-system, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* Skip link — WCAG 2.2 AA */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 20px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-btn) 0;
  transition: top 0.2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad-desktop) 0; }

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 720px;
}

.section-intro {
  font-size: 17px;
  color: var(--grey-text);
  max-width: 640px;
  margin-bottom: 52px;
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196,154,40,0.28);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.9);
  padding: 9px 0;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-status { display: inline-flex; align-items: center; gap: 7px; }
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
  display: inline-block;
}
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar a { color: #fff; transition: color 0.2s; display: inline-flex; align-items: center; gap: 5px; }
.top-bar a:hover { color: var(--gold-soft); }
.top-bar .wa-link { color: #4ade80; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.primary-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--gold); }
.primary-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-card);
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 12px 36px rgba(27,58,92,0.12);
  display: none;
  z-index: 200;
  list-style: none;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover { background: var(--off-white); color: var(--gold); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 5px;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--grey-mid);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.2s;
}

/* ============================================================
   HERO — §8.2 single static
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: radial-gradient(circle at 60% 50%, rgba(196,154,40,0.14) 0%, transparent 68%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,40,0.14);
  color: var(--gold-soft);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 22px;
  border: 1px solid rgba(196,154,40,0.28);
  font-family: 'Inter', sans-serif;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero h1 em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
  max-width: 490px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  border-radius: 14px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   STATS STRIP — §8.3 HORIZONTAL on desktop
   ============================================================ */
.stats-strip {
  background: var(--off-white);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--grey-mid);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-tile {
  background: var(--white);
  padding: 24px 20px;
  border-right: 1px solid var(--gold-pale);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s;
}
.stat-tile:last-child { border-right: none; }
.stat-tile:hover { background: var(--off-white); }
.stat-icon { font-size: 20px; margin-bottom: 5px; display: block; line-height: 1; }
.stat-tile strong {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  display: block;
}
.stat-tile span { font-size: 12px; color: var(--grey-text); line-height: 1.4; }
.stat-tile a { color: inherit; font-weight: 600; }

/* ============================================================
   QUIZ BAND — §8.4 light-purple background
   ============================================================ */
.quiz-band {
  background: var(--light-purple);
  padding: 72px 0;
}
.quiz-band-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.quiz-band h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 18px; }
.quiz-band p { font-size: 17px; color: var(--grey-text); max-width: 600px; margin: 0 auto 28px; line-height: 1.65; }
.quiz-band-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.quiz-secondary-link {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 14px;
  transition: color 0.2s;
}
.quiz-secondary-link:hover { color: var(--gold); }

/* ============================================================
   EMOTIONAL BRIDGE — §8.5
   ============================================================ */
.bridge-section {
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
}
.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.bridge-image {
  border-radius: 18px;
  overflow: hidden;
  height: 460px;
  position: relative;
}
.bridge-image img { width: 100%; height: 100%; object-fit: cover; }
.bridge-content .section-eyebrow { display: block; }
.bridge-content h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 22px; }
.bridge-content h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.bridge-content p { font-size: 17px; color: var(--grey-text); line-height: 1.7; margin-bottom: 18px; }

/* ============================================================
   SIGNS CHECKLIST — §8.6
   ============================================================ */
.signs-section { background: var(--off-white); }
.signs-header { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.signs-header .section-title { margin: 0 auto 14px; }
.signs-header p { font-size: 17px; color: var(--grey-text); line-height: 1.65; }
.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.sign-item {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s;
}
.sign-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(196,154,40,0.08);
}
.sign-check {
  width: 26px; height: 26px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sign-item p { font-size: 15px; color: var(--text-dark); margin: 0; line-height: 1.5; }
.signs-cta { text-align: center; margin-top: 44px; }
.signs-cta p { color: var(--grey-text); margin-bottom: 18px; font-size: 15px; }

/* ============================================================
   WHY CHOOSE US — §8.7
   ============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.why-card {
  padding: 30px;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-card);
  transition: all 0.3s;
  background: var(--white);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(27,58,92,0.08);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: var(--gold-pale);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.why-card h4 { font-size: 18px; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.why-card p { color: var(--grey-text); font-size: 14px; line-height: 1.65; }

/* ============================================================
   SERVICES — §8.8
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(27,58,92,0.1);
  border-color: var(--gold);
}
.service-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-num {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  font-family: 'Inter', sans-serif;
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--grey-text); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.text-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}
.text-link:hover { gap: 10px; color: var(--gold); }

/* ============================================================
   MEET ZOE — §8.9
   ============================================================ */
.team-section { background: var(--white); }
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 20px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: center;
  max-width: 1060px;
  margin: 52px auto 0;
  box-shadow: 0 8px 32px rgba(27,58,92,0.06);
}
.team-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 360px;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-role-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.team-content h2 { font-size: 34px; margin-bottom: 14px; }
.team-content p { color: var(--grey-text); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.team-quote {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 20px;
  margin: 18px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.5;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-mid);
  margin-top: 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.team-contact a { color: var(--navy); font-weight: 600; transition: color 0.2s; }
.team-contact a:hover { color: var(--gold); }

/* ============================================================
   TESTIMONIALS — §8.10
   ============================================================ */
.testimonials-section { background: var(--off-white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 14px;
  padding: 30px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  border-color: var(--gold);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-mid);
}
.t-avatar {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.t-name { display: block; font-size: 14px; font-weight: 600; color: var(--navy); font-family: 'Inter', sans-serif; }
.t-meta { font-size: 12px; color: var(--grey-text); font-family: 'Inter', sans-serif; }
.testimonial-footer { text-align: center; margin-top: 30px; font-size: 14px; color: var(--grey-text); font-family: 'Inter', sans-serif; }
.testimonial-footer a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FINAL CTA — §8.11
   ============================================================ */
.final-cta-section {
  background: var(--navy-dark);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(196,154,40,0.16) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 370px; height: 370px;
  background: radial-gradient(circle, rgba(196,154,40,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta-section .section-eyebrow { color: var(--gold-soft); }
.final-cta-section h2 { color: var(--white); font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.final-cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; line-height: 1.65; }
.final-cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER — §8.12
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.site-footer h5 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; font-size: 13px; line-height: 1.5; }
.site-footer a { color: rgba(255,255,255,0.68); transition: color 0.2s; font-family: 'Inter', sans-serif; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-logo { color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; }
.footer-logo .logo-mark { width: 36px; height: 36px; font-size: 17px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.65; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
}
.footer-reg { font-size: 11px; color: rgba(255,255,255,0.32); font-family: 'Inter', sans-serif; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-soft); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  padding: 10px 14px;
  display: none;
  gap: 8px;
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.sticky-call { background: var(--navy); }
.sticky-wa   { background: var(--whatsapp); }

/* ============================================================
   QUIZ MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.68);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; animation: hc-fadein 0.25s; }
.modal {
  background: var(--white);
  border-radius: 18px;
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: hc-slideup 0.35s;
}
@keyframes hc-fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes hc-slideup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--grey-mid);
  cursor: pointer;
  font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit;
  transition: all 0.2s;
  z-index: 5;
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 34px 38px;
  border-radius: 18px 18px 0 0;
  text-align: center;
}
.modal-header h2 { color: var(--white); font-size: 26px; margin-bottom: 6px; }
.modal-header p { color: rgba(255,255,255,0.75); font-size: 14px; font-family: 'Inter', sans-serif; }
.modal-body { padding: 34px 38px; }
.quiz-progress { display: flex; gap: 5px; margin-bottom: 26px; }
.quiz-bar { flex: 1; height: 4px; background: #E8E8E4; border-radius: 2px; transition: background 0.3s; }
.quiz-bar.active { background: var(--gold); }
.quiz-bar.done   { background: var(--navy); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: hc-fadein 0.25s; }
.quiz-step h3 { font-size: 21px; margin-bottom: 20px; color: var(--navy); }
.quiz-options { display: grid; gap: 8px; margin-bottom: 22px; }
.quiz-option {
  background: var(--off-white);
  border: 2px solid var(--grey-mid);
  color: var(--text-dark);
  padding: 14px 18px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.18s;
  line-height: 1.4;
}
.quiz-option:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateX(3px); }
.quiz-option.selected { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 600; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; }
.quiz-back {
  background: transparent;
  border: 1px solid var(--grey-mid);
  color: var(--grey-text);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: background 0.2s;
}
.quiz-back:hover { background: var(--off-white); }
.quiz-next {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.quiz-next:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.quiz-next:disabled { opacity: 0.38; cursor: not-allowed; }
.quiz-result { text-align: center; }
.quiz-result-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 700;
}
.quiz-result h3 { font-size: 22px; margin-bottom: 10px; }
.quiz-result-box {
  background: var(--off-white);
  border: 1px solid var(--grey-mid);
  padding: 18px;
  border-radius: var(--radius-card);
  margin: 16px 0;
  text-align: left;
}
.quiz-result-box strong {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quiz-result-box ul { padding-left: 16px; color: var(--grey-text); }
.quiz-result-box li { margin-bottom: 5px; font-size: 14px; line-height: 1.5; }
.quiz-result-ctas { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.quiz-restart {
  background: transparent;
  color: var(--grey-text);
  border: 1px solid var(--grey-mid);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: background 0.2s;
}
.quiz-restart:hover { background: var(--off-white); }

/* ============================================================
   FORMS — §11.1 Free Assessment
   ============================================================ */
.hc-form { display: grid; gap: 18px; }
.hc-form-group { display: flex; flex-direction: column; gap: 6px; }
.hc-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}
.hc-form label .required { color: var(--gold); margin-left: 2px; }
.hc-form input,
.hc-form select,
.hc-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.hc-form input:focus,
.hc-form select:focus,
.hc-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.12);
}
.hc-form textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 12px; color: var(--grey-text); line-height: 1.5; font-family: 'Inter', sans-serif; }
.form-privacy a { color: var(--navy); text-decoration: underline; }

/* ============================================================
   INNER PAGE BANNERS
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(196,154,40,0.12) 0%, transparent 60%);
}
.page-banner-inner { position: relative; z-index: 1; max-width: 680px; }
.page-banner .section-eyebrow { color: var(--gold-soft); display: block; margin-bottom: 10px; }
.page-banner h1 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.page-banner p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.65; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  color: var(--grey-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-family: 'Inter', sans-serif;
}
.breadcrumbs a { color: var(--navy); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 6px; opacity: 0.5; }

/* ============================================================
   ACCESSIBILITY — WCAG 2.2 AA §12
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
*:focus:not(:focus-visible) { outline: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESPONSIVE — §4.3 / §12
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 36px; }
  .bridge-grid { gap: 48px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 52px 0; }
  .hero-image { height: 280px; margin-top: 28px; }
  .hero h1 { font-size: 34px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-tile { border-right: none; border-bottom: 1px solid var(--gold-pale); }
  .stat-tile:nth-child(odd) { border-right: 1px solid var(--gold-pale); }
  .stat-tile:last-child,
  .stat-tile:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }

  .bridge-grid { grid-template-columns: 1fr; gap: 36px; }
  .bridge-image { height: 300px; }

  .signs-grid { grid-template-columns: 1fr; }

  .why-grid,
  .services-grid,
  .testimonial-grid { grid-template-columns: 1fr 1fr; }

  .team-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .team-photo { height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .primary-nav,
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
  section { padding: var(--section-pad-mobile) 0; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-tile { border-right: none; border-bottom: 1px solid var(--gold-pale); }
  .stat-tile:nth-child(odd) { border-right: none; }
  .why-grid,
  .services-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quiz-band-ctas { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
  .final-cta-ctas { flex-direction: column; align-items: center; }
}
