    /* ═══════════════════════════════════════
       DESIGN SYSTEM — CONCEPT A: THE TRUSTED PROFESSIONAL
       Palette: Deep Navy · Warm Gold · Slate · Warm White · Charcoal
       Type: Georgia (display) + system sans (body) — load-fast, trusted, readable
       ═══════════════════════════════════════ */

    :root {
      /* Color tokens */
      --navy:       #0f2240;
      --navy-mid:   #1a3358;
      --navy-light: #243f6a;
      --gold:       #c9972a;
      --gold-light: #e8b84b;
      --gold-pale:  #fdf4e3;
      --slate:      #4a5568;
      --slate-light:#718096;
      --white:      #ffffff;
      --warm-white: #faf9f7;
      --off-white:  #f4f2ee;
      --charcoal:   #1a1a2e;
      --border:     #e2ddd6;
      --success:    #2d7a4f;
      --error:      #c0392b;
      --available-green: #27ae60;

      /* Typography */
      --font-display: Georgia, 'Times New Roman', serif;
      --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

      /* Type scale */
      --text-xs:   0.75rem;
      --text-sm:   0.875rem;
      --text-base: 1rem;
      --text-lg:   1.125rem;
      --text-xl:   1.25rem;
      --text-2xl:  1.5rem;
      --text-3xl:  1.875rem;
      --text-4xl:  2.25rem;
      --text-5xl:  3rem;

      /* Spacing */
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-5: 1.25rem;
      --space-6: 1.5rem;
      --space-8: 2rem;
      --space-10: 2.5rem;
      --space-12: 3rem;
      --space-16: 4rem;
      --space-20: 5rem;
      --space-24: 6rem;

      /* Radii */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-full: 9999px;

      /* Shadows */
      --shadow-sm:  0 1px 3px rgba(15,34,64,0.10);
      --shadow-md:  0 4px 12px rgba(15,34,64,0.12);
      --shadow-lg:  0 8px 24px rgba(15,34,64,0.16);
      --shadow-xl:  0 16px 40px rgba(15,34,64,0.20);

      /* Transitions */
      --transition: 200ms ease;

      /* Layout */
      --max-width: 1120px;
      --content-padding: clamp(1rem, 4vw, 2rem);
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

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

    body {
      font-family: var(--font-body);
      font-size: var(--text-base);
      line-height: 1.65;
      color: var(--charcoal);
      background: var(--warm-white);
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: inherit; }
    ul { list-style: none; }

    /* ── Skip link ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: var(--space-4);
      background: var(--gold);
      color: var(--charcoal);
      padding: var(--space-2) var(--space-4);
      border-radius: var(--radius-sm);
      font-weight: 700;
      z-index: 9999;
      transition: top var(--transition);
    }
    .skip-link:focus { top: var(--space-4); }

    /* ── Layout ── */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--content-padding);
    }

    .section { padding: var(--space-16) 0; }
    .section--alt { background: var(--off-white); }
    .section--dark { background: var(--navy); color: var(--white); }
    .section--navy-mid { background: var(--navy-mid); color: var(--white); }
    .section--gold-pale { background: var(--gold-pale); }

    /* ── Typography ── */
    .display-heading {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

    .section-label {
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold);
      margin-bottom: var(--space-3);
      display: block;
    }
    .section--dark .section-label,
    .section--navy-mid .section-label { color: var(--gold-light); }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
      font-weight: 700;
      margin-bottom: var(--space-4);
      color: var(--navy);
    }
    .section--dark .section-title,
    .section--navy-mid .section-title { color: var(--white); }

    .section-subtitle {
      font-size: var(--text-lg);
      color: var(--slate);
      max-width: 580px;
      line-height: 1.6;
    }
    .section--dark .section-subtitle,
    .section--navy-mid .section-subtitle { color: rgba(255,255,255,0.78); }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      padding: 0.875rem 1.75rem;
      border-radius: var(--radius-md);
      font-size: var(--text-base);
      font-weight: 700;
      border: 2px solid transparent;
      transition: all var(--transition);
      min-height: 52px;
      min-width: 44px;
      white-space: nowrap;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
    }

    .btn:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }

    .btn--primary {
      background: var(--gold);
      color: var(--charcoal);
      border-color: var(--gold);
    }
    .btn--primary:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

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

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

    .btn--navy {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .btn--navy:hover {
      background: var(--navy-mid);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    .btn--lg {
      padding: 1rem 2rem;
      font-size: var(--text-lg);
      min-height: 58px;
    }

    .btn--sm {
      padding: 0.5rem 1rem;
      font-size: var(--text-sm);
      min-height: 40px;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      align-items: center;
    }

    /* ── Header / Nav ── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: var(--space-4);
    }

    .site-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .logo-primary {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
    }

    .logo-tagline {
      font-size: var(--text-xs);
      color: var(--gold-light);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Language selector */
    .lang-selector {
      display: flex;
      align-items: center;
      gap: var(--space-1);
      margin-left: auto;
    }

    .lang-btn {
      background: none;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: var(--radius-sm);
      color: rgba(255,255,255,0.7);
      padding: var(--space-1) var(--space-2);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all var(--transition);
      min-height: 32px;
    }

    .lang-btn:hover,
    .lang-btn.active {
      background: rgba(255,255,255,0.12);
      color: var(--white);
      border-color: rgba(255,255,255,0.5);
    }

    .lang-btn.active {
      background: var(--gold);
      color: var(--charcoal);
      border-color: var(--gold);
    }

    /* Availability badge */
    .availability-badge {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      background: rgba(39,174,96,0.15);
      border: 1px solid rgba(39,174,96,0.35);
      border-radius: var(--radius-full);
      padding: var(--space-1) var(--space-3);
      font-size: var(--text-xs);
      font-weight: 700;
      color: #4ade80;
      white-space: nowrap;
    }

    .avail-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--available-green);
      animation: pulse-dot 2s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.3); }
    }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-1);
    }

    .nav-link {
      color: rgba(255,255,255,0.78);
      font-size: var(--text-sm);
      font-weight: 500;
      padding: var(--space-2) var(--space-3);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      white-space: nowrap;
    }

    .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

    .header-cta {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      flex-shrink: 0;
    }

    .header-phone {
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--gold-light);
      white-space: nowrap;
      text-decoration: none;
    }

    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: var(--space-2);
      cursor: pointer;
      min-height: 44px;
      min-width: 44px;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--navy-mid);
      padding: var(--space-4) 0;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav-link {
      color: rgba(255,255,255,0.85);
      font-size: var(--text-base);
      font-weight: 500;
      padding: var(--space-3) var(--content-padding);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
      display: block;
      min-height: 52px;
      display: flex;
      align-items: center;
    }

    .mobile-nav-link:hover { background: rgba(255,255,255,0.05); }

    .mobile-nav-cta {
      padding: var(--space-4) var(--content-padding);
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      margin-top: var(--space-2);
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 55%, #1c3d6e 100%);
      color: var(--white);
      padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -80px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(201,151,42,0.06);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -60px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: rgba(201,151,42,0.04);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      background: rgba(201,151,42,0.15);
      border: 1px solid rgba(201,151,42,0.35);
      border-radius: var(--radius-full);
      padding: var(--space-2) var(--space-4);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: var(--space-5);
    }

    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl));
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      margin-bottom: var(--space-5);
      color: var(--white);
    }

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

    .hero-lead {
      font-size: clamp(var(--text-base), 2vw, var(--text-lg));
      color: rgba(255,255,255,0.82);
      line-height: 1.65;
      margin-bottom: var(--space-6);
      max-width: 520px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      margin-bottom: var(--space-8);
    }

    .hero-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-5);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.7);
    }

    .trust-icon {
      width: 18px;
      height: 18px;
      color: var(--gold-light);
      flex-shrink: 0;
    }

    /* Urgency card */
    .hero-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      color: var(--charcoal);
    }

    .hero-card-header {
      background: var(--navy);
      padding: var(--space-4) var(--space-5);
      border-bottom: 2px solid var(--gold);
    }

    .hero-card-title {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--white);
      margin-bottom: var(--space-1);
    }

    .hero-card-subtitle {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.7);
    }

    .hero-card-body { padding: var(--space-5); }

    /* Intent finder */
    .intent-grid {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
      margin-bottom: var(--space-4);
    }

    .intent-btn {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      background: var(--off-white);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      transition: all var(--transition);
      min-height: 52px;
      text-align: left;
      width: 100%;
    }

    .intent-btn:hover,
    .intent-btn:focus-visible {
      border-color: var(--gold);
      background: var(--gold-pale);
      color: var(--navy);
      outline: none;
      transform: translateX(3px);
    }

    .intent-icon {
      font-size: 1.25rem;
      flex-shrink: 0;
      width: 24px;
      text-align: center;
    }

    .hero-card-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: var(--space-4) 0;
    }

    .hero-card-contact {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-3) var(--space-4);
      border-radius: var(--radius-md);
      background: var(--navy);
      color: var(--white);
      font-weight: 700;
      font-size: var(--text-base);
      text-decoration: none;
      min-height: 52px;
      transition: all var(--transition);
    }

    .contact-row:hover {
      background: var(--navy-light);
      transform: translateY(-1px);
    }

    .contact-row.gold-row {
      background: var(--gold);
      color: var(--charcoal);
    }

    .contact-row.gold-row:hover { background: var(--gold-light); }

    .contact-row svg { flex-shrink: 0; }

    /* ── Trust badges ── */
    .trust-bar {
      background: var(--charcoal);
      padding: var(--space-5) 0;
      border-bottom: 2px solid var(--gold);
    }

    .trust-bar-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 4vw, 3.5rem);
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      color: var(--white);
      font-size: var(--text-sm);
    }

    .trust-badge-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: rgba(201,151,42,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(201,151,42,0.35);
    }

    .trust-badge-icon svg {
      color: var(--gold-light);
    }

    .trust-badge-text { display: flex; flex-direction: column; }
    .trust-badge-label { font-weight: 700; font-size: var(--text-sm); }
    .trust-badge-sub { font-size: var(--text-xs); color: rgba(255,255,255,0.55); }

    /* ── Service finder ── */
    .service-finder {
      padding: var(--space-16) 0;
      background: var(--off-white);
    }

    .finder-header {
      text-align: center;
      margin-bottom: var(--space-10);
    }

    .finder-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: var(--space-4);
    }

    .finder-card {
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      cursor: pointer;
      transition: all 200ms ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      text-decoration: none;
      color: inherit;
      min-height: 140px;
    }

    .finder-card:hover,
    .finder-card:focus-visible {
      border-color: var(--navy);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
      outline: none;
    }

    .finder-card-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .finder-card-label {
      font-weight: 700;
      font-size: var(--text-base);
      color: var(--navy);
      line-height: 1.3;
    }

    .finder-card-sub {
      font-size: var(--text-sm);
      color: var(--slate);
      line-height: 1.5;
    }

    .finder-card-arrow {
      margin-top: auto;
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--gold);
    }

    /* ── Services ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-6);
      margin-top: var(--space-10);
    }

    .service-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      transition: all var(--transition);
    }

    .service-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(201,151,42,0.35);
      transform: translateY(-2px);
    }

    .service-card-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      background: rgba(201,151,42,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-4);
      font-size: 1.5rem;
      border: 1px solid rgba(201,151,42,0.2);
    }

    .service-card-title {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--white);
      margin-bottom: var(--space-3);
    }

    .service-card-desc {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
      margin-bottom: var(--space-4);
    }

    .service-card-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
      margin-bottom: var(--space-5);
    }

    .service-card-list li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-2);
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.75);
    }

    .service-card-list li::before {
      content: '·';
      color: var(--gold-light);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--gold-light);
      text-decoration: none;
    }

    .service-card-link:hover { color: var(--white); }

    .highlight-tier {
      border-color: rgba(201,151,42,0.45);
      background: rgba(201,151,42,0.07);
    }

    /* ── How it works ── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-6);
      margin-top: var(--space-10);
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(50% / 4);
      right: calc(50% / 4);
      height: 2px;
      background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
      z-index: 0;
    }

    .step-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-4);
      border: 3px solid var(--gold);
      box-shadow: var(--shadow-md);
    }

    .step-title {
      font-weight: 700;
      font-size: var(--text-base);
      color: var(--navy);
      margin-bottom: var(--space-2);
    }

    .step-desc {
      font-size: var(--text-sm);
      color: var(--slate);
      line-height: 1.55;
    }

    /* ── Pricing ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: var(--space-5);
      margin-top: var(--space-10);
    }

    .pricing-card {
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      text-align: center;
      transition: all var(--transition);
    }

    .pricing-card:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow-md);
    }

    .pricing-card.featured {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,151,42,0.12);
    }

    .pricing-label {
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--slate);
      margin-bottom: var(--space-2);
    }

    .pricing-card.featured .pricing-label { color: var(--gold); }

    .pricing-price {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: var(--space-1);
    }

    .pricing-from {
      font-size: var(--text-sm);
      font-weight: 400;
      color: var(--slate);
    }

    .pricing-desc {
      font-size: var(--text-sm);
      color: var(--slate);
      margin: var(--space-3) 0 var(--space-5);
      line-height: 1.55;
    }

    .pricing-note {
      text-align: center;
      margin-top: var(--space-8);
      font-size: var(--text-sm);
      color: var(--slate);
      padding: var(--space-4);
      border: 1px dashed var(--border);
      border-radius: var(--radius-md);
    }

    /* ── Reviews ── */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-5);
      margin-top: var(--space-10);
    }

    .review-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      box-shadow: var(--shadow-sm);
    }

    .review-stars {
      color: var(--gold);
      font-size: var(--text-lg);
      margin-bottom: var(--space-3);
      letter-spacing: 0.05em;
    }

    .review-text {
      font-size: var(--text-sm);
      color: var(--slate);
      line-height: 1.65;
      margin-bottom: var(--space-4);
      font-style: italic;
    }

    .review-author {
      font-weight: 700;
      font-size: var(--text-sm);
      color: var(--navy);
    }

    .review-context {
      font-size: var(--text-xs);
      color: var(--slate-light);
    }

    .reviews-summary {
      text-align: center;
      margin-bottom: var(--space-8);
    }

    .star-score {
      font-family: var(--font-display);
      font-size: clamp(var(--text-4xl), 8vw, 5rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }

    .stars-row {
      color: var(--gold);
      font-size: var(--text-2xl);
      margin: var(--space-2) 0;
    }

    .reviews-meta {
      font-size: var(--text-sm);
      color: var(--slate);
    }

    /* ── Service area ── */
    .area-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: var(--space-3);
      margin-top: var(--space-8);
    }

    .area-tag {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      gap: var(--space-2);
    }

    .area-tag::before {
      content: '📍';
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    /* ── FAQ ── */
    .faq-list {
      margin-top: var(--space-8);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

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

    .faq-item:last-child { border-bottom: none; }

    .faq-trigger {
      width: 100%;
      background: var(--white);
      border: none;
      padding: var(--space-5) var(--space-6);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
      cursor: pointer;
      text-align: left;
      transition: background var(--transition);
      min-height: 68px;
    }

    .faq-trigger:hover { background: var(--off-white); }

    .faq-trigger:focus-visible {
      outline: 2px solid var(--navy);
      outline-offset: -2px;
    }

    .faq-question {
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
    }

    .faq-chevron {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      color: var(--gold);
      transition: transform var(--transition);
    }

    .faq-trigger[aria-expanded="true"] .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 var(--space-6) var(--space-5);
      font-size: var(--text-base);
      color: var(--slate);
      line-height: 1.65;
      background: var(--white);
    }

    .faq-answer.open { display: block; }

    /* ── Booking form ── */
    .booking-section {
      background: var(--white);
    }

    .booking-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }

    .booking-aside {
      position: sticky;
      top: 88px;
    }

    .booking-aside-title {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: var(--space-4);
    }

    .booking-aside-p {
      font-size: var(--text-base);
      color: var(--slate);
      line-height: 1.65;
      margin-bottom: var(--space-5);
    }

    .contact-options {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }

    .contact-option {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-3) var(--space-4);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      text-decoration: none;
      color: var(--charcoal);
      font-weight: 600;
      font-size: var(--text-base);
      transition: all var(--transition);
      min-height: 56px;
    }

    .contact-option:hover {
      border-color: var(--navy);
      background: var(--off-white);
    }

    .contact-option-icon {
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    /* Multi-step form */
    .booking-form-wrap {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .form-header {
      background: var(--navy);
      padding: var(--space-5) var(--space-6);
    }

    .form-header-title {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--white);
      margin-bottom: var(--space-1);
    }

    .form-progress {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      margin-top: var(--space-3);
    }

    .progress-step {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-xs);
      color: rgba(255,255,255,0.55);
      font-weight: 600;
    }

    .progress-step.active { color: var(--gold-light); }
    .progress-step.done { color: rgba(255,255,255,0.4); }

    .progress-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      flex-shrink: 0;
    }

    .progress-step.active .progress-dot { background: var(--gold-light); }
    .progress-step.done .progress-dot { background: rgba(255,255,255,0.35); }

    .progress-line {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.15);
    }

    .form-body { padding: var(--space-6); }

    .form-step { display: none; }
    .form-step.active { display: block; }

    .form-step-title {
      font-weight: 700;
      font-size: var(--text-lg);
      color: var(--navy);
      margin-bottom: var(--space-5);
    }

    .form-group {
      margin-bottom: var(--space-4);
    }

    .form-label {
      display: block;
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: var(--space-2);
    }

    .form-label .req {
      color: var(--error);
      margin-left: 2px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      font-size: var(--text-base);
      font-family: inherit;
      color: var(--charcoal);
      background: var(--white);
      transition: border-color var(--transition), box-shadow var(--transition);
      min-height: 52px;
      -webkit-appearance: none;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(15,34,64,0.1);
    }

    .form-textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4);
    }

    .form-hint {
      font-size: var(--text-xs);
      color: var(--slate-light);
      margin-top: var(--space-1);
    }

    .form-error {
      font-size: var(--text-xs);
      color: var(--error);
      margin-top: var(--space-1);
      display: none;
    }

    .form-error.visible { display: block; }

    .form-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: var(--space-6);
      gap: var(--space-3);
    }

    .form-back {
      background: none;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      padding: 0.75rem 1.25rem;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--slate);
      cursor: pointer;
      transition: all var(--transition);
      min-height: 48px;
    }

    .form-back:hover { border-color: var(--navy); color: var(--navy); }

    /* Urgency toggle group */
    .urgency-group {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-2);
    }

    .urgency-option {
      position: relative;
    }

    .urgency-option input { position: absolute; opacity: 0; width: 0; height: 0; }

    .urgency-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-1);
      padding: var(--space-3) var(--space-2);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: all var(--transition);
      text-align: center;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--slate);
      min-height: 70px;
      justify-content: center;
    }

    .urgency-label:hover { border-color: var(--navy); color: var(--navy); }

    .urgency-option input:checked + .urgency-label {
      border-color: var(--navy);
      background: var(--navy);
      color: var(--white);
    }

    .urgency-option input:focus-visible + .urgency-label {
      outline: 3px solid var(--gold);
      outline-offset: 2px;
    }

    .urgency-emoji { font-size: 1.25rem; }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: var(--space-10) var(--space-6);
    }

    .form-success.active { display: block; }

    .success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--success);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-5);
      font-size: 2rem;
    }

    .success-title {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: var(--space-3);
    }

    .success-text {
      font-size: var(--text-base);
      color: var(--slate);
      line-height: 1.65;
    }

    /* ── About ── */
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }

    .about-photo-wrap {
      position: relative;
    }

    .about-photo-placeholder {
      background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
      border-radius: var(--radius-lg);
      aspect-ratio: 3/4;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.25);
      font-size: var(--text-sm);
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .about-badge {
      position: absolute;
      bottom: var(--space-6);
      right: var(--space-4);
      background: var(--gold);
      color: var(--charcoal);
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4);
      font-weight: 700;
      font-size: var(--text-sm);
      box-shadow: var(--shadow-lg);
      text-align: center;
    }

    .about-badge-num {
      display: block;
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      line-height: 1;
    }

    .credential-chips {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      margin-top: var(--space-5);
    }

    .chip {
      background: var(--gold-pale);
      border: 1px solid rgba(201,151,42,0.3);
      border-radius: var(--radius-full);
      padding: var(--space-2) var(--space-4);
      font-size: var(--text-xs);
      font-weight: 700;
      color: var(--navy);
    }

    /* ── Mobile sticky bar ── */
    .sticky-mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: var(--navy);
      border-top: 2px solid var(--gold);
      padding: var(--space-3) var(--content-padding);
      padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
      gap: var(--space-2);
    }

    .sticky-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      padding: 0.875rem var(--space-3);
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      font-weight: 700;
      border: 2px solid transparent;
      text-decoration: none;
      min-height: 52px;
      transition: all var(--transition);
      text-align: center;
    }

    .sticky-btn-call {
      background: var(--gold);
      color: var(--charcoal);
      border-color: var(--gold);
    }

    .sticky-btn-text {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.35);
    }

    .sticky-btn-book {
      background: var(--navy-mid);
      color: var(--white);
      border-color: rgba(255,255,255,0.2);
    }

    /* ── Footer ── */
    .site-footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.7);
      padding: var(--space-12) 0 var(--space-8);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--space-8);
      margin-bottom: var(--space-10);
    }

    .footer-brand-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: var(--space-3);
    }

    .footer-logo-mark {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--white);
      margin-bottom: var(--space-3);
    }

    .footer-brand-desc {
      font-size: var(--text-sm);
      line-height: 1.65;
      margin-bottom: var(--space-5);
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.7);
      text-decoration: none;
    }

    .footer-contact-item:hover { color: var(--gold-light); }

    .footer-col-title {
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold-light);
      margin-bottom: var(--space-4);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }

    .footer-link {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color var(--transition);
    }

    .footer-link:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: var(--space-6);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-4);
      font-size: var(--text-xs);
      color: rgba(255,255,255,0.4);
    }

    .footer-disclaimer {
      font-size: var(--text-xs);
      color: rgba(255,255,255,0.4);
      line-height: 1.55;
      padding: var(--space-4);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      margin-bottom: var(--space-6);
    }

    /* ── Utility ── */
    .text-center { text-align: center; }
    .text-gold { color: var(--gold); }
    .text-gold-light { color: var(--gold-light); }

    .divider {
      width: 56px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: var(--space-4) 0 var(--space-6);
    }

    .section--dark .divider { background: var(--gold-light); }

    .max-prose { max-width: 680px; }

    /* ── Language overlay ── */
    .lang-notice {
      background: var(--gold-pale);
      border: 1px solid rgba(201,151,42,0.3);
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-5);
      font-size: var(--text-sm);
      color: var(--navy);
      text-align: center;
      display: none;
      margin: var(--space-4) var(--content-padding) 0;
    }

    .lang-notice.visible { display: block; }

    /* ══════════════════════════
       RESPONSIVE
    ══════════════════════════ */

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-photo-wrap {
        max-width: 380px;
        margin: 0 auto;
      }

      .booking-inner {
        grid-template-columns: 1fr;
      }

      .booking-aside {
        position: static;
      }

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

      .steps-grid::before { display: none; }

      .nav-links { display: none; }

      .mobile-menu-btn { display: flex; }

      .availability-badge { display: none; }

      .sticky-mobile-bar { display: flex; }

      body { padding-bottom: 72px; }
    }

    @media (max-width: 600px) {
      .form-row { grid-template-columns: 1fr; }
      .urgency-group { grid-template-columns: 1fr 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .header-phone { display: none; }
      .hero-actions .btn--lg { width: 100%; }
      .trust-bar-inner { gap: var(--space-5); }
      .trust-badge-text { display: none; }
      .trust-badge { flex-direction: column; text-align: center; }
      .trust-badge-text { display: flex; }
      .trust-badge { flex-direction: row; }
      .trust-badge-sub { display: none; }
      .finder-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .hero-trust-row { gap: var(--space-3); }
      .trust-item span { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .area-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Focus styles */
    *:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 2px;
    }
