/* SKIP LINK */
  .skip-link {
    position: absolute; top: -40px; left: 1rem; z-index: 9999;
    background: var(--forest); color: white; padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius) var(--radius); font-size: 0.85rem; font-weight: 600;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }

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

  :root {
    --forest: #1a3a1f;
    --forest-mid: #2d5c35;
    --moss: #4a7c59;
    --sage: #8ab89a;
    --mint: #c8e6d0;
    --cream: #f7f4ef;
    --warm-white: #fdfcfa;
    --ink: #1a1a18;
    --ink-mid: #3d3d38;
    --ink-light: #7a7a72;
    --gold: #c4943a;
    --gold-light: #f5e6c8;
    --radius: 6px;
    --radius-lg: 14px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--ink); font-size: 16px; line-height: 1.7; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ─── NAV ─── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(253,252,250,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mint);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--forest); letter-spacing: -0.01em; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink-mid); transition: color 0.2s; }
  .nav-links a:hover { color: var(--forest); }
  .nav-right { display: flex; align-items: center; gap: 1rem; }
  .nav-cta {
    background: var(--forest); color: white; font-size: 0.875rem; font-weight: 500;
    padding: 0.55rem 1.25rem; border-radius: var(--radius); transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--forest-mid); }

  /* Hamburger */
  .nav-hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px;
  }
  .nav-hamburger span {
    display: block; height: 2px; background: var(--ink); border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--warm-white); z-index: 99; padding: 2rem 5vw;
    flex-direction: column; gap: 0; overflow-y: auto;
    border-top: 1px solid var(--mint);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block; font-size: 1.1rem; font-weight: 500; color: var(--ink);
    padding: 1rem 0; border-bottom: 1px solid var(--mint); transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--forest); }
  .mobile-menu .mobile-cta {
    margin-top: 1.5rem; background: var(--forest); color: white;
    text-align: center; padding: 1rem; border-radius: var(--radius);
    font-weight: 600; font-size: 1rem; border: none;
  }

  /* ─── SHARED ─── */
  section { padding: 6rem 5vw; }
  .section-tag {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--moss); margin-bottom: 1rem; display: block;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--forest);
    letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 1rem;
  }
  .section-lead { font-size: 1.05rem; color: var(--ink-mid); max-width: 580px; font-weight: 300; }
  .container { max-width: 1140px; margin: 0 auto; }
  .btn-primary {
    background: var(--forest); color: white; font-weight: 500; font-size: 1rem;
    padding: 0.85rem 2rem; border-radius: var(--radius); transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }
  .btn-secondary {
    border: 1.5px solid var(--sage); color: var(--forest); font-weight: 500; font-size: 1rem;
    padding: 0.85rem 2rem; border-radius: var(--radius); transition: all 0.2s; background: white;
  }
  .btn-secondary:hover { background: var(--mint); border-color: var(--moss); }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(155deg, var(--cream) 0%, var(--warm-white) 55%);
    padding: 5.5rem 5vw 5rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--mint) 0%, transparent 65%);
    opacity: 0.35; pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -60px; left: 20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    opacity: 0.3; pointer-events: none;
  }
  .hero-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative;
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-light); color: var(--gold); border: 1px solid #e8c97a;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.06; letter-spacing: -0.025em;
    color: var(--forest); margin-bottom: 1.25rem;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero .lead {
    font-size: 1.1rem; font-weight: 300; color: var(--ink-mid);
    max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .hero-trust {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid var(--mint);
  }
  .trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--ink-light); }
  .trust-item svg { width: 15px; height: 15px; stroke: var(--moss); fill: none; stroke-width: 2.5; flex-shrink: 0; }

  /* Hero visual — service grid */
  .hero-visual { position: relative; }
  .hero-cards-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .hero-card {
    background: white; border: 1px solid var(--mint); border-radius: var(--radius-lg);
    padding: 1.4rem 1.25rem;
    transition: all 0.3s; cursor: default;
    position: relative; overflow: hidden;
  }
  .hero-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--forest); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .hero-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,31,0.1); }
  .hero-card:hover::before { transform: scaleX(1); }
  .hero-card-icon {
    width: 38px; height: 38px; border-radius: 10px; background: var(--mint);
    display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem;
  }
  .hero-card-icon svg { width: 18px; height: 18px; stroke: var(--forest); fill: none; stroke-width: 2; }
  .hero-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
  .hero-card p { font-size: 0.8rem; color: var(--ink-light); line-height: 1.5; }
  .hero-card-link { font-size: 0.78rem; color: var(--moss); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 0.6rem; }
  .hero-card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* Floating badge */
  .hero-badge {
    position: absolute; bottom: -16px; left: -16px;
    background: var(--forest); color: white; border-radius: var(--radius-lg);
    padding: 1rem 1.25rem; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(26,58,31,0.25);
    z-index: 2;
  }
  .hero-badge-icon { font-size: 1.4rem; }
  .hero-badge-text { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
  .hero-badge-text strong { color: white; display: block; font-size: 0.9rem; }

  /* ─── SOCIAL PROOF BAR ─── */
  .proof-bar {
    background: var(--forest); padding: 1.25rem 5vw;
  }
  .proof-bar-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  }
  .proof-stat { text-align: center; }
  .proof-num {
    font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: white; line-height: 1;
    display: block;
  }
  .proof-label { font-size: 0.78rem; color: var(--sage); font-weight: 500; }
  .proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

  /* ─── SERVICES ─── */
  .services { background: var(--warm-white); }
  .services-header { margin-bottom: 3.5rem; }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .service-card {
    border: 1px solid var(--mint); border-radius: var(--radius-lg);
    padding: 2.25rem 2rem; background: white;
    transition: all 0.25s; position: relative; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(26,58,31,0.08); }
  .service-card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
  }
  .service-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  }
  .service-card-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; }
  .service-card h3 {
    font-family: 'DM Serif Display', serif; font-size: 1.25rem;
    color: var(--ink); margin-bottom: 0.6rem; line-height: 1.2;
  }
  .service-card p { font-size: 0.9rem; color: var(--ink-light); line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
  .service-card-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
  .service-card-list li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-mid); }
  .service-card-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.875rem; font-weight: 600; color: var(--forest);
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }
  .service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* service accent colors */
  .svc-web .service-card-accent { background: var(--forest); }
  .svc-web .service-card-icon { background: var(--mint); }
  .svc-web .service-card-icon svg { stroke: var(--forest); }

  .svc-seo .service-card-accent { background: var(--gold); }
  .svc-seo .service-card-icon { background: var(--gold-light); }
  .svc-seo .service-card-icon svg { stroke: var(--gold); }

  .svc-ads .service-card-accent { background: #3b7dd8; }
  .svc-ads .service-card-icon { background: #e8f0fb; }
  .svc-ads .service-card-icon svg { stroke: #3b7dd8; }

  .svc-social .service-card-accent { background: #c4478a; }
  .svc-social .service-card-icon { background: #fce8f3; }
  .svc-social .service-card-icon svg { stroke: #c4478a; }

  /* ─── WHY US ─── */
  .why { background: var(--cream); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .why-points { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
  .why-point { display: flex; gap: 1.25rem; align-items: flex-start; }
  .why-num {
    font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--mint);
    flex-shrink: 0; line-height: 1; margin-top: 2px; width: 28px;
  }
  .why-point h4 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
  .why-point p { font-size: 0.9rem; color: var(--ink-light); line-height: 1.65; }
  .why-visual {
    background: var(--forest); border-radius: var(--radius-lg);
    padding: 2.5rem; color: white;
  }
  .why-visual-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: white; margin-bottom: 1.75rem; line-height: 1.3; }
  .why-check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .why-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
  .why-check-list li svg { width: 16px; height: 16px; stroke: var(--sage); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }
  .why-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.75rem 0; }
  .why-cta-box { }
  .why-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
  .btn-cta-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--forest); font-weight: 600; font-size: 0.9rem;
    padding: 0.75rem 1.5rem; border-radius: var(--radius); transition: all 0.2s;
  }
  .btn-cta-white:hover { background: #d4a44a; transform: translateY(-1px); }
  .btn-cta-white svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--warm-white); }
  .testimonials-header { text-align: center; margin-bottom: 3.5rem; }
  .testimonials-header .section-lead { margin: 0 auto; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .testimonial-card {
    background: white; border: 1px solid var(--mint); border-radius: var(--radius-lg);
    padding: 2rem 1.75rem; position: relative; transition: all 0.25s;
  }
  .testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,58,31,0.08); }
  .testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
  .testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }
  .testimonial-quote {
    font-size: 0.925rem; color: var(--ink-mid); line-height: 1.7;
    margin-bottom: 1.5rem; font-style: italic;
  }
  .testimonial-quote::before { content: '"'; color: var(--mint); font-family: 'DM Serif Display', serif; font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 2px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--mint);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--forest); font-weight: 700;
  }
  .testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
  .testimonial-company { font-size: 0.78rem; color: var(--ink-light); }
  .testimonials-logos {
    margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--mint);
    display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
  }
  .logo-placeholder {
    height: 28px; background: var(--mint); border-radius: 4px; opacity: 0.6;
  }

  /* ─── ABOUT TEASER ─── */
  .about-teaser { background: var(--cream); }
  .about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-photo-stack { position: relative; }
  .about-photo-main {
    background: var(--forest); border-radius: var(--radius-lg);
    aspect-ratio: 4/5; max-width: 380px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-family: 'DM Serif Display', serif; font-size: 1rem;
    position: relative; overflow: hidden;
  }
  .about-photo-main::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,58,31,0.6) 100%);
  }
  .about-photo-caption {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2;
    color: white;
  }
  .about-photo-caption strong { display: block; font-size: 1rem; margin-bottom: 2px; }
  .about-photo-caption span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
  .about-badge-float {
    position: absolute; top: 1.5rem; right: -1.5rem;
    background: var(--gold); color: var(--forest); border-radius: var(--radius-lg);
    padding: 1rem 1.25rem; text-align: center;
    box-shadow: 0 8px 30px rgba(196,148,58,0.3);
  }
  .about-badge-float strong { display: block; font-family: 'DM Serif Display', serif; font-size: 1.8rem; line-height: 1; }
  .about-badge-float span { font-size: 0.75rem; font-weight: 600; }
  .about-text { }
  .about-text .section-lead { margin-bottom: 1.75rem; }
  .about-values { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
  .about-value { display: flex; gap: 12px; align-items: flex-start; }
  .about-value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 8px; }
  .about-value p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.6; }
  .about-value strong { color: var(--ink); }

  /* ─── PROCESS STRIP ─── */
  .process-strip { background: var(--forest); color: white; padding: 5rem 5vw; }
  .process-strip .section-tag { color: var(--sage); }
  .process-strip .section-title { color: white; margin-bottom: 3rem; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 1px;
    background: rgba(255,255,255,0.15); pointer-events: none;
  }
  .pstep { position: relative; }
  .pstep-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--forest-mid); border: 2px solid var(--sage);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1rem; color: white;
    margin-bottom: 1.25rem; position: relative; z-index: 1;
  }
  .pstep h4 { font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 0.4rem; }
  .pstep p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
  .pstep-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); display: block; margin-top: 0.5rem; }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: var(--forest-mid); color: white;
    padding: 5.5rem 5vw; text-align: center;
  }
  .cta-band .section-title { color: white; margin-bottom: 1rem; }
  .cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
  .cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-cta {
    background: var(--gold); color: var(--forest); font-weight: 600; font-size: 1rem;
    padding: 0.95rem 2.5rem; border-radius: var(--radius); display: inline-flex;
    align-items: center; gap: 8px; transition: all 0.2s;
  }
  .btn-cta:hover { background: #d4a44a; transform: translateY(-2px); }
  .btn-cta-outline {
    border: 1.5px solid rgba(255,255,255,0.3); color: white; font-weight: 500; font-size: 1rem;
    padding: 0.95rem 2.5rem; border-radius: var(--radius); display: inline-flex;
    align-items: center; gap: 8px; transition: all 0.2s;
  }
  .btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.07); }
  .cta-trust { margin-top: 2rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
  .cta-trust-item { font-size: 0.82rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; }
  .cta-trust-item svg { width: 14px; height: 14px; stroke: var(--sage); fill: none; stroke-width: 2.5; }

  /* ─── FOOTER ─── */
  footer { background: var(--forest); color: rgba(255,255,255,0.6); padding: 4rem 5vw 2rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.8rem; }
  .footer-logo span { color: var(--gold); }
  .footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
  .footer-social { display: flex; gap: 0.75rem; }
  .footer-social a {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .footer-social a:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
  .footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; }
  .footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
  .footer-col a:hover { color: white; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.8rem; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .hero-left > * { animation: fadeUp 0.6s ease both; }
  .hero-left .hero-pill { animation-delay: 0.05s; }
  .hero-left h1 { animation-delay: 0.12s; }
  .hero-left .lead { animation-delay: 0.2s; }
  .hero-left .hero-btns { animation-delay: 0.28s; }
  .hero-left .hero-trust { animation-delay: 0.36s; }
  .hero-visual { animation: fadeUp 0.7s 0.25s ease both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .about-teaser-grid { grid-template-columns: 1fr; }
    .about-photo-stack { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .proof-bar-inner { justify-content: center; }
    .proof-divider { display: none; }
    section { padding: 4rem 5vw; }
  }
  @media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band-btns { flex-direction: column; align-items: center; }
  }

/* Extracted structure helpers */
.footer-address { font-style: normal; }
.footer-legal-link { color: rgba(255,255,255,0.4); }

/* Layout fixes 2026-05 */
.hero-visual {
  padding-bottom: 2.75rem;
}

.hero-badge {
  bottom: 0;
  left: 18px;
  transform: translateY(38%);
}

.hero-trust {
  align-items: flex-start;
}

.trust-item {
  min-height: 22px;
}

.trust-item strong {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-visual {
    padding-bottom: 0;
  }

  .hero-badge {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* Badge placement correction 2026-05 */
.hero-badge {
  position: static;
  width: max-content;
  max-width: 100%;
  margin: 1rem 0 0 auto;
  transform: none;
}
/* Shared nav and breadcrumb alignment */
:root {
  --site-shell-max: 1200px;
  --site-shell-gutter: max(24px, calc((100vw - var(--site-shell-max)) / 2));
}

.site-nav,
body > nav:not(.breadcrumb) {
  max-width: none;
  margin-inline: 0;
  padding-left: var(--site-shell-gutter);
  padding-right: var(--site-shell-gutter);
}

header .site-nav {
  max-width: none;
  margin-inline: 0;
}

.breadcrumb {
  padding-left: var(--site-shell-gutter);
  padding-right: var(--site-shell-gutter);
}

.breadcrumb > .container,
.breadcrumb ol,
.breadcrumb-list,
.breadcrumb-inner {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
/* Shared breadcrumb typography */
.breadcrumb,
.breadcrumb ol,
.breadcrumb-list,
.breadcrumb-inner,
.breadcrumb > .container {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-light, var(--text-light, #7a7a72));
}

.breadcrumb a,
.breadcrumb-current,
.breadcrumb [aria-current],
.breadcrumb li:last-child,
.breadcrumb > .container > span[aria-current="page"] {
  font-weight: 500;
}

.breadcrumb a {
  color: var(--moss, var(--brand-green, #4a7c59));
}

.breadcrumb-current,
.breadcrumb [aria-current],
.breadcrumb li:last-child,
.breadcrumb > .container > span[aria-current="page"] {
  color: var(--ink-mid, var(--text-muted, #3d3d38));
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--sage, var(--brand-green-light, #8ab89a));
  font-weight: 400;
}

.breadcrumb .sep,
.breadcrumb-separator,
.breadcrumb-sep,
.breadcrumb > .container > span[aria-hidden="true"] {
  color: var(--sage, var(--brand-green-light, #8ab89a));
  font-weight: 400;
}
/* Shared breadcrumb dimensions */
.breadcrumb {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.breadcrumb > nav,
.breadcrumb > ol,
.breadcrumb > .container,
.breadcrumb-list,
.breadcrumb-inner {
  width: 100%;
}
/* Shared responsive navigation fit */
.site-nav,
body > nav:not(.breadcrumb),
header > nav,
.quiz-site-nav {
  min-width: 0;
  overflow: visible;
}

.nav-logo,
.logo,
.quiz-logo {
  flex-shrink: 0;
}

.nav-links,
.quiz-site-links {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(0.75rem, 1.15vw, 1.35rem) !important;
}

.nav-links a,
.quiz-site-links a {
  white-space: nowrap;
  font-size: clamp(0.78rem, 0.86vw, 0.9rem) !important;
}

.nav-cta,
.quiz-site-links .nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: clamp(0.85rem, 1.1vw, 1.25rem) !important;
}

@media (max-width: 1180px) {
  .nav-links,
  .quiz-site-links {
    gap: 0.72rem !important;
  }

  .nav-links a,
  .quiz-site-links a,
  .nav-cta,
  .quiz-site-links .nav-cta {
    font-size: 0.8rem !important;
  }
}
/* Unified site layout and chrome */
:root {
  --site-shell-max: 1200px;
  --site-shell-pad: max(24px, calc((100vw - var(--site-shell-max)) / 2));
  --site-nav-height: 58px;
}

body {
  overflow-x: hidden;
}

header[role="banner"],
body > header,
.quiz-site-header {
  background: rgba(253,252,250,0.95);
  border-bottom: 1px solid var(--mint, var(--border2, #d8eadc));
}

.site-nav,
header > nav,
body > nav:not(.breadcrumb),
.quiz-site-nav {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: var(--site-shell-pad) !important;
  padding-right: var(--site-shell-pad) !important;
  height: var(--site-nav-height) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(12px, 1.4vw, 24px) !important;
}

.nav-logo,
.logo,
.quiz-logo {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--forest, var(--brand-dark, #1a3a1f)) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.nav-logo span,
.logo span,
.logo-vaxt,
.quiz-logo span {
  color: var(--gold, #c4943a) !important;
}

.nav-links,
.quiz-site-links,
header nav:not(.breadcrumb) > nav,
.header-inner nav {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(10px, 1.2vw, 22px) !important;
  margin: 0 !important;
}

.nav-links a,
.quiz-site-links a,
.header-inner nav a,
body > nav:not(.breadcrumb) a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(0.78rem, 0.86vw, 0.9rem) !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

.nav-cta,
.quiz-site-links .nav-cta,
.header-inner nav .nav-cta {
  flex: 0 0 auto !important;
  background: var(--forest, var(--brand-dark, #1a3a1f)) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 0.65rem 1.15rem !important;
  font-weight: 700 !important;
}

.container,
.page,
.page-hero-inner,
.hero-inner,
.about-hero-inner,
.contact-hero-inner,
.policy-layout,
.stats-inner,
.footer-grid,
.footer-bottom,
.ft,
.fbot {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.breadcrumb {
  padding-left: var(--site-shell-pad) !important;
  padding-right: var(--site-shell-pad) !important;
}

.breadcrumb ol,
.breadcrumb > .container,
.breadcrumb-list,
.breadcrumb-inner {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1180px) {
  .nav-links,
  .quiz-site-links,
  .header-inner nav {
    gap: 10px !important;
  }

  .nav-links a,
  .quiz-site-links a,
  .header-inner nav a {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 760px) {
  .site-nav,
  header > nav,
  body > nav:not(.breadcrumb),
  .quiz-site-nav {
    height: auto !important;
    min-height: var(--site-nav-height);
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    align-items: flex-start !important;
  }
}
/* Unified logo size */
.nav-logo,
.logo,
.quiz-logo,
.logo-nord,
.logo-vaxt {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
}

.nav-logo span,
.logo span,
.quiz-logo span,
.logo-vaxt {
  color: var(--gold, #c4943a) !important;
}
