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

  :root {
    --navy: #5a1a1a;
    --navy-mid: #7a2a2a;
    --gold: #29a8c4;
    --gold-light: #5cc8e0;
    --cream: #f8f5f0;
    --off-white: #fdfcfb;
    --charcoal: #1c1c1c;
    --mid-gray: #6b6b68;
    --light-gray: #e8e5e0;
    --white: #ffffff;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  /* ── NAV ── */
  nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--navy);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

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

  .nav-logo-mark {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: -1px;
    flex-shrink: 0;
  }

  .nav-brand-text { display: flex; flex-direction: column; }
  .nav-brand-name { color: var(--charcoal); font-size: 15px; font-weight: 600; line-height: 1.2; }
  .nav-brand-sub { color: var(--gold); font-size: 11px; letter-spacing: 0.5px; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    color: var(--white);
    min-height: 640px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-photo-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg, rgba(90,26,26,0.97) 45%, rgba(90,26,26,0.75) 100%);
    z-index: 0;
  }
  /* When a real photo is added: set background-image on .hero and this overlay will work */

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: repeating-linear-gradient(
      45deg,
      #5a1a1a 0,
      #5a1a1a 1px,
      transparent 0,
      transparent 50%
    );
    background-size: 20px 20px;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(41,168,196,0.18);
    border: 1px solid rgba(41,168,196,0.45);
    color: #7dd8ea;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
  }

  .hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
  }

  .hero h1 span { color: var(--gold-light); }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 520px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
  }

  .btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 1.5px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
  }

  .btn-outline:hover { border-color: var(--gold-light); background: rgba(41,168,196,0.12); }

  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }

  .trust-pill-icon {
    width: 20px;
    height: 20px;
    background: rgba(41,168,196,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .trust-pill-icon svg { width: 11px; height: 11px; fill: #7dd8ea; }

  /* ── HERO CARD ── */
  .hero-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    color: var(--charcoal);
  }

  .hero-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .hero-card-sub {
    font-size: 13px;
    color: var(--mid-gray);
    margin-bottom: 24px;
  }

  .hero-card form { display: flex; flex-direction: column; gap: 12px; }

  .hero-card input,
  .hero-card select,
  .hero-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--charcoal);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
  }

  .hero-card input:focus,
  .hero-card select:focus,
  .hero-card textarea:focus { border-color: var(--navy); }

  .hero-card textarea { resize: vertical; min-height: 80px; }

  .hero-card-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.2s;
  }

  .hero-card-btn:hover { background: var(--navy-mid); }

  .hero-card-privacy {
    font-size: 11px;
    color: var(--mid-gray);
    text-align: center;
    margin-top: 4px;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 24px;
  }

  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
  }

  .trust-item-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .trust-item-icon svg { width: 18px; height: 18px; fill: var(--white); }

  .trust-item-label { font-size: 11px; color: var(--mid-gray); font-weight: 400; }

  /* ── SECTION BASE ── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 17px;
    color: var(--mid-gray);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  /* ── SERVICES ── */
  .services-bg { background: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 700px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-grid article[style*="span 2"] { grid-column: span 1 !important; }
  }

  .service-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    padding: 32px;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { border-color: var(--navy); transform: translateY(-2px); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .service-icon svg { width: 26px; height: 26px; fill: var(--white); }

  .service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .kw-tag {
    font-size: 11px;
    background: var(--cream);
    border: 1px solid var(--light-gray);
    color: var(--mid-gray);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
  }

  /* ── WHY US ── */
  .why-bg { background: var(--navy); color: var(--white); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .why-left .section-title { color: var(--white); }
  .why-left .section-desc { color: rgba(255,255,255,0.65); }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
  }

  .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }

  .why-right { display: flex; flex-direction: column; gap: 16px; }

  .why-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .why-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(41,168,196,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .why-item-icon svg { width: 22px; height: 22px; fill: #5cc8e0; }

  .why-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }

  .why-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

  /* ── REVIEWS ── */
  .reviews-bg { background: var(--cream); }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

  .review-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    padding: 28px;
  }

  .review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

  .review-text {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }

  .review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
  .review-location { font-size: 12px; color: var(--mid-gray); }

  /* ── SERVICE AREAS ── */
  .areas-bg { background: var(--white); }

  .areas-intro { margin-bottom: 48px; }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 40px;
  }

  .area-pill {
    background: var(--cream);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s;
    font-weight: 500;
  }

  .area-pill:hover { background: #e8f8fb; border-color: var(--gold); }

  .area-dot {
    width: 7px;
    height: 7px;
    background: var(--navy);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .areas-note {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .areas-note p { font-size: 16px; color: rgba(255,255,255,0.85); }
  .areas-note strong { color: var(--gold-light); }

  /* ── FAQ ── */
  .faq-bg { background: var(--cream); }

  .faq-grid { max-width: 800px; }

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

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
  }

  .faq-chevron {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.25s;
    fill: var(--mid-gray);
  }

  .faq-a {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.7;
    padding-bottom: 22px;
    display: none;
  }

  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  /* ── CTA ── */
  .cta-section {
    background: var(--gold);
    padding: 80px 24px;
  }

  .cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-inner h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .cta-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn-primary {
    background: var(--white);
    color: var(--navy);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--font);
  }

  .cta-btn-primary:hover { background: var(--cream); }

  .cta-btn-outline {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    cursor: pointer;
    font-family: var(--font);
  }

  .cta-btn-outline:hover { background: rgba(255,255,255,0.1); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 32px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .footer-brand-tagline {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-contact-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

  .footer-contact-item a { color: rgba(255,255,255,0.7); }
  .footer-contact-item a:hover { color: var(--gold-light); }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-col a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
  }

  .footer-badges { display: flex; gap: 16px; align-items: center; }

  .badge-pill {
    background: rgba(41,168,196,0.15);
    border: 1px solid rgba(41,168,196,0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
  }

  /* ── MOBILE ── */
  .mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 14px 20px;
    z-index: 200;
    gap: 12px;
  }

  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
  }

  .mobile-btn-call {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-btn-quote {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
  }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    #about-us .section-inner > div { grid-template-columns: 1fr !important; }
    #photo-grid { grid-template-columns: repeat(2,1fr) !important; }
    #video-grid { grid-template-columns: 1fr !important; }
    #video-grid iframe { position: absolute; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 80px; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-sms { display: inline-flex !important; }
    .nav-email { display: inline-flex !important; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Stat number count-up pulse */
  .stat-number { transition: transform 0.3s ease; }
  .stat-box:hover .stat-number { transform: scale(1.08); }

  /* Service card lift */
  .service-card { transition: border-color 0.2s, transform 0.3s ease, box-shadow 0.3s ease; }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(90,26,26,0.10); }

  /* Review card lift */
  .review-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

  /* Trust item grow */
  .trust-item { transition: transform 0.25s ease; }
  .trust-item:hover { transform: scale(1.04); }

  /* Area pill grow */
  .area-pill { transition: background 0.2s, border-color 0.2s, transform 0.2s ease; }
  .area-pill:hover { transform: scale(1.04); }


  /* ── HAMBURGER BUTTON ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
  }
  .hamburger:hover { border-color: var(--navy); background: var(--cream); }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE NAV DRAWER ── */
  .mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--navy);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 98;
    padding: 8px 0 16px;
    flex-direction: column;
  }
  .mobile-nav-drawer.open { display: flex; }
  .mobile-nav-drawer a {
    display: block;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    padding: 13px 24px;
    border-bottom: 1px solid var(--light-gray);
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav-drawer a:last-child { border-bottom: none; }
  .mobile-nav-drawer a:hover { background: var(--cream); color: var(--navy); }
  .mobile-nav-drawer .drawer-cta {
    margin: 12px 24px 0;
    background: var(--navy);
    color: var(--white) !important;
    border-radius: 8px;
    text-align: center;
    font-weight: 700 !important;
    border-bottom: none !important;
  }
  .mobile-nav-drawer .drawer-cta:hover { background: var(--navy-mid) !important; }

  @media (max-width: 600px) {
    .hamburger { display: flex; }
  }

