  :root {
    /* Primary palette — warm navy + gold accents */
    --navy: #1B2A4A;
    --navy-light: #2D3E5E;
    --navy-muted: #4A5B7A;
    --gold: #C9A96E;
    --gold-light: #D4BC8E;
    --gold-pale: #F0E6D3;
    --teal: #C9A96E;
    --teal-light: #D4BC8E;
    --teal-gradient: linear-gradient(135deg, #1B2A4A 0%, #2D3E5E 50%, #4A5B7A 100%);

    /* Warm neutrals */
    --cream: #FAF7F2;
    --warm-white: #FEFCF9;
    --warm-grey: #E8E2DA;
    --light-blue: #F0E6D3;
    --white: #FEFCF9;
    --text-dark: #1B2A4A;
    --text-medium: #4A5568;
    --text-body: #4A5568;
    --text-light: #718096;
    --border: #E8E2DA;
    --accent-green: #38A169;
    --accent-red: #E53E3E;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Shared */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 12px;
  }

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

  body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--warm-white);
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--warm-white);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--gold);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--navy);
  }
  .nav-logo svg { width: 44px; height: 44px; }
  .nav-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 15px; line-height: 1.2; }
  .nav-links { display: flex; gap: 4px; flex-wrap: nowrap; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--text-medium);
    padding: 8px 12px; border-radius: 8px; font-size: 14px;
    font-weight: 500; transition: all 0.2s;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--gold); background: var(--gold-pale);
  }

  /* Hamburger button */
  .hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; position: relative; padding: 0;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block; width: 24px; height: 2.5px; background: var(--navy);
    border-radius: 2px; position: absolute; left: 6px;
    transition: all 0.3s ease;
  }
  .hamburger span:nth-child(1) { top: 9px; }
  .hamburger span:nth-child(2) { top: 17px; }
  .hamburger span:nth-child(3) { top: 25px; }
  .hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

  /* Mobile nav phone link in header */
  .nav-phone-mobile {
    display: none;
    color: var(--gold); font-weight: 600; font-size: 14px;
    text-decoration: underline; text-decoration-color: var(--gold);
    text-underline-offset: 3px; white-space: nowrap;
  }

  /* Mobile menu overlay */
  .nav-overlay {
    display: none; position: fixed; top: 71px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); z-index: 999;
  }
  .nav-overlay.active { display: block; }

  /* Lock body scroll when mobile menu open */
  body.mobile-menu-open { overflow: hidden; position: fixed; width: 100%; }

  /* ===== PAGES ===== */
  .page { display: none; padding-top: 80px; }
  .page { display: block; }

  /* ===== HERO SECTIONS ===== */
  .hero {
    background: var(--teal-gradient);
    color: white; padding: 60px 24px;
    position: relative; overflow: hidden;
  }
  .hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49%, var(--warm-white) 50%);
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .hero-logos { display: flex; gap: 10px; flex-shrink: 0; }
  .hero-logo-pill { background: white; border-radius: 8px; padding: 6px 12px; display: flex; align-items: center; justify-content: center; }
  .hero-logo-pill img { height: 30px; object-fit: contain; }
  .logo-strip {
    display: flex; justify-content: flex-end; align-items: center; gap: 12px;
    max-width: 1200px; margin: 0 auto; padding: 16px 24px 0;
  }
  .logo-strip-pill {
    background: white; border: 1px solid var(--border); border-radius: 8px;
    padding: 6px 14px; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
  }
  .logo-strip-pill img { height: 28px; object-fit: contain; }
  .hero h1 {
    font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700;
    margin-bottom: 8px; position: relative; padding-bottom: 16px;
  }
  .hero h1::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 50px; height: 3px; background: var(--gold-light); border-radius: 2px;
  }
  .hero p { font-size: 1.1rem; opacity: 0.9; }

  /* ===== HOME HERO (special) ===== */
  .home-hero {
    background: var(--teal-gradient);
    color: white; padding: 80px 24px 100px;
    position: relative; overflow: hidden;
  }
  .home-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49%, var(--warm-white) 50%);
  }
  .home-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  /* On desktop, badges sit below text in the left column */
  .home-hero-text { grid-column: 1; grid-row: 1; }
  .home-hero-badges { grid-column: 1; grid-row: 2; }
  .home-hero-photo { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  /* Hide hero children in CSS so there's no flash before JS runs */
  .home-hero-inner > .home-hero-text,
  .home-hero-inner > .home-hero-badges {
    opacity: 0; transform: translateX(-80px);
  }
  .home-hero-inner > .home-hero-photo {
    opacity: 0; transform: translateX(80px);
  }
  .home-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; line-height: 1.15; margin-bottom: 8px; }
  .home-hero .credentials { font-size: 1rem; opacity: 0.8; margin-bottom: 6px; letter-spacing: 1.5px; font-weight: 300; }
  .home-hero .subtitle { color: var(--gold-light); font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; margin-bottom: 20px; font-style: italic; letter-spacing: 0.5px; }
  .home-hero .intro { font-size: 1.05rem; line-height: 1.8; opacity: 0.92; margin-bottom: 28px; font-weight: 300; }
  .home-hero-photo {
    width: 100%; max-width: 520px;
    border-radius: 16px; overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    display: flex; align-items: center; justify-content: center;
    border: 3px solid rgba(201,169,110,0.3);
    justify-self: center;
  }
  .photo-placeholder {
    text-align: center; padding: 24px; opacity: 0.6;
  }
  .photo-placeholder svg { width: 64px; height: 64px; margin-bottom: 12px; opacity: 0.5; }
  .photo-placeholder p { font-size: 13px; }

  /* ===== BADGES ===== */
  .badge-row { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
  .badge {
    background: rgba(255,255,255,0.15); border-radius: 8px; padding: 8px 16px;
    font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(4px);
  }
  .badge svg { width: 20px; height: 20px; }

  /* ===== CTA BUTTON ===== */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 10px; font-size: 16px;
    font-weight: 600; text-decoration: none; transition: all 0.3s;
    cursor: pointer; border: none; font-family: var(--font-body);
  }
  .btn-primary { background: var(--warm-white); color: var(--navy); }
  .btn-primary:hover { background: var(--gold-pale); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-teal, .btn-gold { background: var(--gold); color: white; }
  .btn-teal:hover, .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
  .btn-outline:hover { background: var(--gold); color: white; }

  /* ===== SECTIONS ===== */
  .section { padding: 60px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-alt { background: var(--cream); }
  .section-blue { background: var(--light-blue); }
  .section-dark { background: var(--navy); color: white; }

  .section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  }
  .section-subtitle { color: var(--text-light); font-size: 1rem; margin-bottom: 32px; }
  .section-divider {
    width: 50px; height: 4px; background: var(--gold); border-radius: 2px;
    margin-bottom: 24px;
  }

  /* ===== TWO COLUMN ===== */
  .two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  }

  /* ===== CARDS ===== */
  .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .card {
    background: var(--warm-white); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--warm-grey);
    transition: all 0.3s;
  }
  .card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 22px;
  }
  .card-icon-teal, .card-icon-gold { background: var(--gold-pale); color: var(--gold); }
  .card-icon-green { background: #E6F9EE; color: var(--accent-green); }
  .card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.6; }

  /* ===== QUOTE ===== */
  .quote-block {
    background: var(--teal-gradient); color: white;
    border-radius: var(--radius); padding: 40px 48px; margin: 40px 0;
    position: relative;
  }
  .quote-block::before {
    content: '\201C'; position: absolute; top: 16px; left: 24px;
    font-size: 5rem; opacity: 0.2; font-family: var(--font-heading); line-height: 1;
  }
  .quote-block blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem; line-height: 1.8; font-style: italic; margin-bottom: 16px;
  }
  .quote-block cite { font-style: normal; font-weight: 600; color: var(--gold-light); opacity: 1; }

  /* ===== TIMELINE (Center-line alternating) ===== */
  .timeline { position: relative; max-width: 1100px; margin: 0 auto; }
  .timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 3px; background: var(--navy); border-radius: 2px; opacity: 0.2;
    transform: translateX(-50%);
  }
  .timeline-item {
    position: relative; display: flex; align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px; width: 100%;
  }
  .timeline-text {
    width: calc(50% - 40px); padding: 28px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  }
  .timeline-visual {
    width: calc(50% - 40px);
  }
  .timeline-visual img {
    width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover;
    box-shadow: var(--shadow-sm);
  }
  .timeline-visual .photo-placeholder {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
    background: linear-gradient(135deg, #E8E2D8 0%, #F5F0E8 50%, #E8E2D8 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.9rem; gap: 8px;
    border: 2px dashed var(--border);
  }
  .timeline-visual .photo-placeholder svg {
    width: 40px; height: 40px; opacity: 0.4;
  }
  .timeline-number {
    position: absolute; left: calc(50% - 25px); top: 0;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--navy); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px; z-index: 2;
    box-shadow: 0 0 0 6px rgba(27, 42, 74, 0.12), 0 0 0 12px rgba(27, 42, 74, 0.05);
  }
  .timeline-number::before, .timeline-number::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 100%; height: 100%; border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--gold);
    opacity: 0; animation: pulse-ring 3s ease-out infinite;
  }
  .timeline-number::after { animation-delay: 1.5s; }
  @keyframes pulse-ring {
    0% { width: 100%; height: 100%; opacity: 0.5; }
    100% { width: 200%; height: 200%; opacity: 0; }
  }
  /* Odd items: text LEFT, visual RIGHT */
  .timeline-item:nth-child(odd) { flex-direction: row; }
  .timeline-item:nth-child(odd) .timeline-text { margin-right: auto; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-visual { margin-left: auto; }
  /* Even items: visual LEFT, text RIGHT */
  .timeline-item:nth-child(even) { flex-direction: row-reverse; }
  .timeline-item:nth-child(even) .timeline-text { margin-left: auto; text-align: left; }
  .timeline-item:nth-child(even) .timeline-visual { margin-right: auto; }

  .timeline-text h3 {
    font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px;
  }
  .timeline-text p { color: var(--text-medium); font-size: 0.95rem; margin-bottom: 10px; }
  .timeline-text ul {
    list-style: none; padding: 0; margin: 10px 0;
  }
  .timeline-text li {
    padding: 4px 0 4px 28px; position: relative; color: var(--text-medium); font-size: 0.95rem;
  }
  .timeline-text li::before {
    content: ''; position: absolute; left: 4px; top: 12px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); opacity: 0.25;
  }
  .timeline-text li::after {
    content: '\2713'; position: absolute; left: 6px; top: 3px;
    color: var(--gold); font-size: 12px; font-weight: 700;
  }

  /* Mobile: stack vertically */
  @media (max-width: 768px) {
    .timeline::before { left: 24px; }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
      flex-direction: column !important;
    }
    .timeline-number { left: calc(24px - 25px); transform: none; }
    .timeline-text,
    .timeline-visual,
    .timeline-item:nth-child(odd) .timeline-text,
    .timeline-item:nth-child(odd) .timeline-visual,
    .timeline-item:nth-child(even) .timeline-text,
    .timeline-item:nth-child(even) .timeline-visual {
      width: calc(100% - 60px) !important;
      margin-left: 50px !important;
      margin-right: 0 !important;
    }
    .timeline-visual { margin-top: 16px; }
  }

  /* ===== CONTACT CARDS ===== */
  .contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .contact-card, a.contact-card {
    text-align: center; padding: 32px 24px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: block; position: relative; transform: translateY(0);
  }
  .contact-card:hover, a.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: translateY(-6px); border-color: var(--gold);
  }
  .contact-card.highlight, a.contact-card.highlight {
    background: var(--teal-gradient); color: white; border: 1px solid transparent;
  }
  .contact-card.highlight:hover, a.contact-card.highlight:hover {
    border-color: var(--gold); border-width: 2px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); transform: translateY(-6px);
  }
  .contact-card .contact-arrow {
    position: absolute; right: 16px; top: 16px;
    font-size: 1.2rem; color: var(--gold); font-weight: 700; opacity: 0;
    transition: opacity 0.2s;
  }
  .contact-card.highlight .contact-arrow { color: var(--gold-light); }
  .contact-card:hover .contact-arrow { opacity: 1; }
  .contact-card svg { width: 36px; height: 36px; margin-bottom: 12px; }
  .contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
  .contact-card a {
    color: var(--gold); text-decoration: none; font-weight: 600; font-size: 1.05rem;
  }
  .contact-card.highlight a { color: var(--gold-light); }
  .contact-card .sub { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
  .contact-card.highlight .sub { color: rgba(255,255,255,0.7); }

  /* ===== REFERRAL TABLE ===== */
  .ref-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
  .ref-table th {
    background: var(--navy); color: white; padding: 14px 20px;
    text-align: left; font-size: 0.9rem; font-weight: 600;
  }
  .ref-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; color: var(--text-medium);
  }
  .ref-table tr:nth-child(even) { background: var(--light-blue); }
  .ref-table .cat-badge {
    display: inline-block; padding: 3px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; color: white;
  }
  .cat-urgent { background: var(--accent-red); }
  .cat-semi { background: #D69E2E; }
  .cat-routine { background: var(--accent-green); }

  /* ===== EMERGENCY BAR ===== */
  .emergency-bar {
    background: #FFF5F5; border-left: 4px solid var(--accent-red);
    padding: 16px 24px; border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
  }
  .emergency-bar strong { color: var(--accent-red); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.7);
    padding: 48px 24px 24px 48px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px;
  }
  footer h4 { color: var(--gold-light); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; }
  footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--gold-light); }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 8px; }
  .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; }
  .footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
  .footer-bottom {
    max-width: 1100px; margin: 32px auto 0; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; font-size: 0.85rem;
  }

  /* ===== PROCEDURE TAGS ===== */
  .proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .proc-tag {
    display: flex; align-items: center; gap: 10px;
    background: var(--light-blue); border-radius: 10px; padding: 14px 18px;
    border: 1px solid rgba(201,169,110,0.2);
    font-size: 0.95rem; font-weight: 500; color: var(--navy);
  }
  .proc-tag svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

  /* ===== RESOURCES LIST ===== */
  .resource-list { list-style: none; }
  .resource-list li {
    padding: 12px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
  }
  .resource-list a { color: var(--gold); text-decoration: none; font-weight: 500; }
  .resource-list a:hover { text-decoration: underline; }
  .resource-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

  /* ===== LOCATION CARDS ===== */
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .location-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  }
  .location-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .location-card p { color: var(--text-medium); font-size: 0.95rem; margin-bottom: 4px; }
  .location-tag {
    display: inline-block; background: var(--gold-pale); color: var(--gold);
    padding: 4px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    margin-top: 8px;
  }

  /* ===== INFO BOX ===== */
  .info-box {
    background: var(--gold-pale); border-radius: var(--radius); padding: 24px 28px;
    border: 1px solid rgba(201,169,110,0.2); margin: 20px 0;
  }
  .info-box h4 { color: var(--navy); margin-bottom: 8px; }
  .info-box p { color: var(--text-medium); font-size: 0.95rem; }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: var(--teal-gradient); color: white;
    border-radius: var(--radius); padding: 48px; text-align: center;
    margin: 40px 0;
  }
  .cta-banner h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 12px; }
  .cta-banner p { opacity: 0.9; margin-bottom: 24px; font-size: 1.05rem; }
  .cta-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== LEGAL ===== */
  .legal-section { margin-bottom: 36px; }
  .legal-section h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
  .legal-section h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--navy); margin: 16px 0 8px; }
  .legal-section p { color: var(--text-medium); margin-bottom: 10px; }
  .legal-section ul { margin: 10px 0 10px 20px; color: var(--text-medium); }
  .legal-section li { margin-bottom: 6px; }

  /* ===== ACCORDION ===== */
  .accordion { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; margin-bottom:8px; transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
  .accordion:hover { border-color:var(--gold); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
  .accordion-header { width:100%; background:white; border:none; padding:18px 20px; font-size:1.05rem; font-weight:600; color:var(--navy); text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; transition:background 0.2s; font-family:inherit; }
  .accordion-header:hover { background:var(--gold-pale); }
  .accordion-header.active { background:var(--gold-pale); }
  .accordion-header .accordion-icon { transition:transform 0.3s; font-size:1.2rem; color:var(--gold); }
  .accordion-header.active .accordion-icon { transform:rotate(45deg); }
  .accordion-body { max-height:0; overflow:hidden; transition:max-height 0.4s ease; background:white; }
  .accordion-content { padding:0 20px 20px 20px; color:var(--text-medium); }
  .accordion-content p { margin-bottom:10px; }
  .accordion-content ul { margin:10px 0 10px 20px; }
  .accordion-content li { margin-bottom:6px; }
  .accordion-content h4 { color:var(--navy); margin:16px 0 8px; font-size:0.95rem; }

  /* ===== TOOLTIP ===== */
  .tooltip-term { color:var(--navy); font-weight:600; border-bottom:2px dotted var(--gold); cursor:help; position:relative; display:inline; }
  .tooltip-popup { display:none; position:fixed; width:420px; background:white; border-radius:var(--radius); box-shadow:0 8px 30px rgba(0,0,0,0.15); padding:24px; z-index:9999; text-align:left; }
  .tooltip-popup::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:8px solid transparent; border-top-color:white; }
  .tooltip-popup h4 { color:var(--gold); font-size:1rem; margin:0 0 10px 0; }
  .tooltip-popup p { font-size:0.9rem; color:var(--text-medium); margin-bottom:8px; line-height:1.5; }
  .tooltip-popup ul { margin:8px 0 0 18px; font-size:0.9rem; color:var(--text-medium); }
  .tooltip-popup li { margin-bottom:6px; line-height:1.5; }

  /* ===== RESPONSIVE ===== */
  /* Hamburger menu kicks in before nav links would wrap */
  @media (max-width: 1100px) {
    /* Hamburger visible */
    .hamburger { display: block; }
    .nav-phone-mobile { display: inline; }

    /* Hide desktop phone link */
    .nav-phone-desktop { display: none; }

    /* Mobile drawer — fixed to viewport, right-aligned, scrollable */
    .nav-links {
      display: none !important;
      position: fixed; top: 71px; right: 0; bottom: 0;
      width: 260px; max-width: 75vw;
      background: var(--warm-white);
      border-left: 1px solid var(--border);
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
      padding: 12px 0 24px;
      overflow-x: hidden !important;
      overflow-y: scroll !important;
      text-align: left; z-index: 1001;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links.mobile-open { display: block !important; }
    .nav-links > a, .nav-links > .nav-dropdown > a {
      padding: 12px 20px !important; font-size: 14px !important;
      border-radius: 0 !important; border-bottom: 1px solid var(--border);
      white-space: normal !important; text-align: left !important;
      display: block !important; box-sizing: border-box !important;
    }
    .nav-links > a:last-child { border-bottom: none; }

    /* Mobile dropdown as accordion */
    .nav-dropdown {
      width: 100% !important; position: static !important;
      display: block !important;
    }
    .nav-dropdown > a { display: block !important; width: 100%; text-align: left !important; }
    .nav-links .nav-dropdown-menu {
      position: static !important; transform: none !important;
      box-shadow: none !important; border: none !important;
      border-radius: 0 !important; margin-top: 0 !important;
      display: none !important; background: var(--gold-pale) !important;
      min-width: 0 !important; width: 100% !important;
      padding: 4px 0 !important; z-index: auto !important;
      border-bottom: 1px solid var(--border) !important;
    }
    .nav-links .nav-dropdown-menu::before { display: none !important; }
    .nav-dropdown:hover > .nav-dropdown-menu { display: none !important; }
    .nav-dropdown.mobile-dropdown-open > .nav-dropdown-menu { display: block !important; }
    .nav-links .nav-dropdown-menu a {
      display: block !important; padding: 8px 20px !important;
      white-space: normal !important; text-align: right !important;
      font-size: 13px !important; gap: 0 !important;
      color: var(--text-medium) !important;
    }
    .nav-links .nav-dropdown-menu .dropdown-label {
      text-align: right !important; padding: 6px 20px 2px !important;
    }
    .nav-links .nav-dropdown-menu .dd-icon { display: none !important; }
    .nav-links .nav-dropdown-menu .dropdown-divider { margin: 4px 20px !important; }
  }

  /* Content layout changes at mobile size */
  @media (max-width: 768px) {
    .home-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .home-hero-text { grid-column: 1; grid-row: auto; order: 1; }
    .home-hero-photo { grid-column: 1; grid-row: auto; order: 2; }
    .home-hero-badges { grid-column: 1; grid-row: auto; order: 3; }
    .home-hero h1 { font-size: 2rem; }
    .two-col { grid-template-columns: 1fr !important; }
    .section-inner > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .section-inner > div > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }

    /* Hero banners — stack text and pills vertically on mobile */
    .hero-inner {
      flex-direction: column; align-items: flex-start; gap: 16px;
    }
    .hero-logos {
      flex-direction: row; gap: 8px; flex-wrap: wrap;
    }
    .location-grid { grid-template-columns: 1fr; }
    .home-hero-photo { max-width: 336px; }
    .badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 220px; margin-left: auto; margin-right: auto; }
    .ref-table { font-size: 0.8rem; }
    .ref-table th, .ref-table td { padding: 10px 12px; }
  }

  /* ===== CONDITION CARDS (clickable list) ===== */
  .condition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
  .condition-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px 24px; cursor: pointer; text-decoration: none; color: inherit;
    transition: all 0.3s; position: relative;
  }
  .condition-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }
  .condition-card-icon { font-size: 28px; flex-shrink: 0; width: 48px; text-align: center; }
  .condition-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .condition-card p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.5; margin: 0; }
  .condition-arrow {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    font-size: 1.2rem; color: var(--gold); font-weight: 700; opacity: 0;
    transition: opacity 0.2s;
  }
  .condition-card:hover .condition-arrow { opacity: 1; }
  .back-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.95rem;
    padding: 8px 0; transition: color 0.2s;
  }
  .back-link:hover { color: var(--navy); }

  /* ===== NAV DROPDOWN ===== */
  .nav-dropdown {
    position: relative;
    display: inline-block;
  }
  .nav-dropdown > a { white-space: nowrap; }
  .nav-dropdown > a::after {
    content: ' \25BE'; font-size: 10px; opacity: 0.5;
  }
  .nav-dropdown-menu {
    display: none;
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; box-shadow: var(--shadow-md);
    min-width: 280px; padding: 8px 0; z-index: 1001;
    margin-top: 4px;
  }
  .nav-dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
    width: 12px; height: 12px; background: var(--white);
    border-left: 1px solid var(--border); border-top: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px !important; border-radius: 0 !important;
    font-size: 13px !important; color: var(--text-medium) !important;
    background: none !important; white-space: nowrap;
    transition: all 0.15s;
  }
  .nav-dropdown-menu a:hover {
    background: var(--gold-pale) !important; color: var(--gold) !important;
  }
  .nav-dropdown-menu .dropdown-divider {
    height: 1px; background: var(--border); margin: 6px 12px;
  }
  .nav-dropdown-menu .dropdown-label {
    padding: 6px 18px 4px; font-size: 11px; font-weight: 700;
    color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px;
  }
  .nav-dropdown-menu a .dd-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }

  @media (max-width: 768px) {
    .condition-grid { grid-template-columns: 1fr; }
  }

  /* ===== SCROLL ANIMATIONS ===== */

  /* Fade-in-up reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered children (cards, condition-cards) */
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
  .reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.6s; }
  .reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.7s; }
  .reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.8s; }
  .reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.9s; }

  /* Slide-in from left / right */
  .reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible, .reveal-right.visible {
    opacity: 1; transform: translateX(0);
  }

  /* Home hero — slower entrance, sliding inward from outer edges */
  .home-hero-inner > .reveal-left {
    opacity: 0; transform: translateX(-80px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .home-hero-inner > .reveal-right {
    opacity: 0; transform: translateX(80px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .home-hero-inner > .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .home-hero-inner > .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* Section divider grow animation */
  .section-divider {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }
  .section-divider.visible, .visible .section-divider {
    transform: scaleX(1);
  }

  /* Nav shrink on scroll */
  nav { transition: padding 0.3s ease, box-shadow 0.3s ease; }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
  nav.scrolled .nav-inner { padding-top: 8px; padding-bottom: 8px; }
  nav.scrolled .nav-logo img { height: 36px; transition: height 0.3s ease; }

  /* Smooth scroll for the whole page */
  html { scroll-behavior: smooth; }
