    :root {
      --cream:      #f5f0e8;
      --parchment:  #ede6d6;
      --wheat:      #d4b896;
      --sky:        #7ab3d4;
      --sky-deep:   #3a7fa8;
      --sky-pale:   #c8e0ee;
      --horizon:    #e8c88a;
      --sienna:     #b5572a;
      --sienna-lt:  #d4703a;
      --charcoal:   #2c2416;
      --brown-mid:  #6b4f2e;
      --muted:      #8a7560;
      --card:       #ffffff;
      --border:     rgba(107,79,46,0.15);
      --border-warm: rgba(181,87,42,0.2);
    }

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

    body {
      background: var(--cream);
      color: var(--charcoal);
      font-family: 'Lato', sans-serif;
      font-size: 17px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Grain overlay — scoped to hero so it doesn't bleed onto sections below */
    .hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 5;
      pointer-events: none;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 256px;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 998;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 68px;
      background: rgba(245,240,232,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      color: var(--charcoal);
      cursor: pointer;
      letter-spacing: 0.01em;
    }
    .nav-logo em {
      color: var(--sienna);
      font-style: italic;
    }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a {
      color: var(--brown-mid); text-decoration: none;
      font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
      font-weight: 700; opacity: 0.7;
      transition: opacity 0.2s, color 0.2s; cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--sienna); }
    .nav-cta {
      background: var(--sienna) !important; color: var(--cream) !important;
      padding: 0.5rem 1.4rem; opacity: 1 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--sienna-lt) !important; }

    /* ── PAGES ── */
    /* Each page is its own HTML file — .page is always visible.
       article-single is a mini-SPA inside articles.html, hidden until showArticle() */
    .page { display: block; padding-top: 68px; }
    .page.hidden { display: none; }
    #page-article-single { display: none; }
    #page-article-single.active { display: block; animation: fadeUp 0.35s ease both; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════
       HOME — HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: calc(100vh - 68px);
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 5rem 6vw 8rem;
      overflow: hidden;
    }

    /* Sky gradient background */
    .hero-sky {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(
        180deg,
        #c8dff0 0%,
        #dbeaf5 25%,
        #eef4f9 45%,
        #f5f0e8 65%,
        #ede6d6 100%
      );
    }

    /* Horizon glow */
    .hero-horizon {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 45%; z-index: 1;
      background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212,184,150,0.3) 50%,
        rgba(232,200,138,0.5) 100%
      );
    }

    /* Prairie ground line */
    .hero-ground {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 120px; z-index: 1;
      background: linear-gradient(180deg, transparent 0%, rgba(180,140,80,0.18) 100%);
    }

    /* Horizon line SVG */
    .hero-landscape {
      position: absolute; bottom: 0; left: 0; right: 0;
      z-index: 2; opacity: 0.12;
    }

    /* Clouds */
    .cloud {
      position: absolute; z-index: 2;
      background: white;
      border-radius: 50px;
      opacity: 0;
      animation: cloudDrift linear infinite;
    }
    .cloud::before, .cloud::after {
      content: ''; position: absolute;
      background: white; border-radius: 50%;
    }
    .c1 { width: 180px; height: 50px; top: 12%; left: -200px; animation-duration: 60s; animation-delay: 0s; opacity: 0; }
    .c1::before { width: 80px; height: 60px; top: -30px; left: 20px; }
    .c1::after  { width: 60px; height: 45px; top: -20px; left: 70px; }
    .c2 { width: 120px; height: 35px; top: 20%; left: -150px; animation-duration: 80s; animation-delay: -25s; opacity: 0; }
    .c2::before { width: 60px; height: 50px; top: -25px; left: 15px; }
    .c2::after  { width: 50px; height: 38px; top: -18px; left: 50px; }
    .c3 { width: 220px; height: 55px; top: 8%; left: -250px; animation-duration: 70s; animation-delay: -40s; opacity: 0; }
    .c3::before { width: 100px; height: 70px; top: -35px; left: 25px; }
    .c3::after  { width: 75px; height: 55px; top: -25px; left: 100px; }

    @keyframes cloudDrift {
      0%   { transform: translateX(0);     opacity: 0; }
      5%   { opacity: 0.7; }
      90%  { opacity: 0.7; }
      100% { transform: translateX(110vw); opacity: 0; }
    }

    .hero-content { position: relative; z-index: 3; max-width: 700px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(181,87,42,0.1);
      border: 1px solid rgba(181,87,42,0.25);
      color: var(--sienna);
      padding: 0.35rem 1rem;
      font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
      font-weight: 700; margin-bottom: 1.8rem;
      font-family: 'Lato', sans-serif;
    }
    .hero-eyebrow::before { content: '📍'; font-size: 0.8rem; }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 1.05;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      color: var(--sienna);
      font-style: italic;
    }
    .hero h1 .sky-word {
      color: var(--sky-deep);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--brown-mid);
      max-width: 640px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      line-height: 1.75;
    }
    .hero-sub strong { font-weight: 700; color: var(--charcoal); }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

    .btn-primary {
      background: var(--sienna); color: var(--cream);
      padding: 0.9rem 2.2rem; font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer;
      font-family: 'Lato', sans-serif;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--sienna-lt); transform: translateY(-2px); }

    .btn-outline {
      background: transparent; color: var(--charcoal);
      padding: 0.9rem 2.2rem; font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
      border: 1.5px solid rgba(44,36,22,0.25); cursor: pointer;
      font-family: 'Lato', sans-serif;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-outline:hover { border-color: var(--sienna); color: var(--sienna); }

    .hero-stats {
      display: flex; gap: 3rem; flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .stat-item {}
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; color: var(--sienna);
      line-height: 1; font-weight: 700;
    }
    .stat-label {
      font-size: 0.75rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted);
      font-weight: 700; margin-top: 0.2rem;
    }

    /* Drone illustration */
    .hero-drone-wrap {
      position: absolute; right: 5%; top: 50%;
      transform: translateY(-50%);
      width: min(380px, 40vw);
      z-index: 3;
      animation: droneFloat 6s ease-in-out infinite;
    }
    @keyframes droneFloat {
      0%, 100% { transform: translateY(-50%) translateY(0px); }
      50%       { transform: translateY(-50%) translateY(-18px); }
    }

    /* ── SERVICES STRIP ── */
    .strip {
      background: var(--sienna);
      padding: 0.8rem 6vw;
      display: flex; gap: 2.5rem; overflow-x: auto;
      scrollbar-width: none;
    }
    .strip::-webkit-scrollbar { display: none; }
    .strip-item {
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(245,240,232,0.85); font-weight: 700;
      white-space: nowrap; display: flex; align-items: center; gap: 0.5rem;
    }
    .strip-item::before { content: '✦'; font-size: 0.45rem; color: var(--horizon); }

    /* ── SECTIONS ── */
    section { padding: 6rem 6vw; }

    .section-eyebrow {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 700; color: var(--sienna); margin-bottom: 1rem;
    }
    .section-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--sienna); display: block; }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      line-height: 1.1; letter-spacing: -0.01em;
      color: var(--charcoal); margin-bottom: 1.2rem;
      font-weight: 700;
    }
    h2 em { color: var(--sienna); font-style: italic; }
    h2 .sky { color: var(--sky-deep); }

    /* ── SERVICES GRID ── */
    .services-section { background: var(--parchment); }
    .services-intro {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 2rem; margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    .services-intro p { color: var(--muted); max-width: 420px; font-size: 0.95rem; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: var(--card);
      padding: 2.2rem;
      border: 1px solid var(--border);
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      position: relative;
    }
    .service-card:hover {
      box-shadow: 0 8px 32px rgba(107,79,46,0.12);
      transform: translateY(-3px);
      border-color: var(--wheat);
    }
    .service-tag {
      display: inline-block;
      background: rgba(181,87,42,0.08);
      color: var(--sienna);
      font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 700; padding: 0.25rem 0.7rem;
      margin-bottom: 1.2rem;
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.6rem;
    }
    .service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
    .service-price {
      display: block; margin-top: 1.5rem;
      font-weight: 700; color: var(--sienna);
      font-size: 0.9rem;
    }
    .service-card::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--sienna), var(--horizon));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s ease;
    }
    .service-card:hover::after { transform: scaleX(1); }

    /* ── WHY US ── */
    .why-section {
      background: linear-gradient(160deg, #e8eff5 0%, var(--sky-pale) 40%, var(--parchment) 100%);
    }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .why-list { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2.5rem; }
    .why-item { display: flex; gap: 1.2rem; }
    .why-check {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--sienna); color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; margin-top: 0.1rem;
    }
    .why-item h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.3rem;
    }
    .why-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

    /* Coverage card */
    .coverage-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 2.5rem;
    }
    .coverage-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.5rem;
    }
    .coverage-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.8rem; }
    .city-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }
    .city-pill {
      background: rgba(122,179,212,0.12);
      border: 1px solid rgba(122,179,212,0.3);
      color: var(--sky-deep);
      padding: 0.4rem 0.9rem;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.05em; text-align: center;
    }
    .coverage-note {
      margin-top: 1.2rem;
      font-size: 0.78rem; color: var(--muted);
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      background: var(--charcoal);
    }
    .testimonials-section .section-eyebrow { color: var(--horizon); }
    .testimonials-section .section-eyebrow::before { background: var(--horizon); }
    .testimonials-section h2 { color: var(--cream); }
    .testimonials-section h2 em { color: var(--horizon); }

    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 2rem;
      position: relative;
    }
    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 5rem; line-height: 1;
      color: var(--sienna); opacity: 0.3;
      position: absolute; top: 0.5rem; left: 1.5rem;
    }
    .testimonial-text {
      color: rgba(245,240,232,0.8); font-size: 0.95rem;
      line-height: 1.75; margin-bottom: 1.5rem;
      font-style: italic; padding-top: 1.5rem;
      font-family: 'Playfair Display', serif;
    }
    .testimonial-stars { color: var(--horizon); font-size: 0.85rem; margin-bottom: 0.5rem; }
    .testimonial-author strong {
      display: block; color: var(--cream); font-weight: 700; font-size: 0.9rem;
    }
    .testimonial-author span { color: var(--muted); font-size: 0.8rem; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, var(--sky-deep) 0%, #2a6a92 100%);
      padding: 5rem 6vw;
      display: flex; gap: 3rem;
      align-items: center; justify-content: space-between;
      flex-wrap: wrap; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: -50%; right: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 { color: white; margin-bottom: 0.5rem; }
    .cta-banner p { color: rgba(255,255,255,0.75); max-width: 460px; }
    .btn-cream {
      background: var(--cream); color: var(--sienna);
      padding: 1rem 2.5rem; font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer; white-space: nowrap;
      font-family: 'Lato', sans-serif;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-cream:hover { background: white; transform: translateY(-2px); }

    /* ══════════════════════════════════════
       ABOUT PAGE
    ══════════════════════════════════════ */
    .page-hero {
      background: linear-gradient(160deg, #c8dff0 0%, #deeaf5 30%, var(--parchment) 100%);
      padding: 5rem 6vw 4rem;
      position: relative; overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--sienna), var(--horizon), transparent);
    }
    .page-eyebrow {
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 700; color: var(--sky-deep); margin-bottom: 1rem;
    }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      line-height: 1.05; font-weight: 700;
      color: var(--charcoal); margin-bottom: 1.2rem;
    }
    .page-hero h1 em { color: var(--sienna); font-style: italic; }
    .page-hero-sub { color: var(--brown-mid); font-weight: 300; max-width: 580px; font-size: 1.05rem; }

    .about-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
    .about-sticky { position: sticky; top: 88px; }

    .pilot-card {
      background: var(--card); border: 1px solid var(--border);
      padding: 2rem; text-align: center;
    }
    .pilot-photo {
      width: 100%; height: 280px;
      background: linear-gradient(160deg, var(--sky-pale), var(--parchment));
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; margin-bottom: 1.5rem;
      position: relative;
    }
    .faa-badge {
      position: absolute; bottom: -1px; left: 0; right: 0;
      background: var(--sienna); color: var(--cream);
      padding: 0.5rem; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
    }
    .pilot-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 600; color: var(--charcoal);
      margin-bottom: 0.25rem;
    }
    .pilot-title { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.5rem; }

    .cert-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
    .cert-item {
      display: flex; align-items: center; gap: 1rem;
      background: var(--parchment); padding: 0.9rem 1.2rem;
      border-left: 3px solid var(--sienna); text-align: left;
    }
    .cert-item strong { display: block; font-size: 0.88rem; color: var(--charcoal); }
    .cert-item span { font-size: 0.78rem; color: var(--muted); }

    .about-body {}
    .about-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 600;
      color: var(--sienna); margin-bottom: 0.75rem; margin-top: 2.5rem;
    }
    .about-body h3:first-child { margin-top: 0; }
    .about-body p { color: var(--brown-mid); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }

    .coverage-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
    .coverage-table th {
      background: var(--parchment); padding: 0.75rem 1rem;
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; text-align: left; color: var(--sienna);
      border-bottom: 2px solid var(--wheat);
    }
    .coverage-table td {
      padding: 0.75rem 1rem; font-size: 0.9rem;
      border-bottom: 1px solid var(--border); color: var(--brown-mid);
    }
    .coverage-table tr:hover td { background: rgba(212,184,150,0.1); }

    /* ══════════════════════════════════════
       ARTICLES
    ══════════════════════════════════════ */
    .articles-layout {
      display: grid; grid-template-columns: 1fr 290px;
      gap: 4rem; padding: 4rem 6vw; align-items: start;
    }
    .article-featured {
      background: var(--card); border: 1px solid var(--border);
      margin-bottom: 2rem; cursor: pointer;
      transition: box-shadow 0.25s;
    }
    .article-featured:hover { box-shadow: 0 8px 32px rgba(107,79,46,0.1); }
    .article-featured-img {
      height: 240px;
      background: linear-gradient(160deg, var(--sky-pale) 0%, var(--parchment) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; position: relative;
    }
    .featured-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: var(--sienna); color: var(--cream);
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
      padding: 0.3rem 0.8rem; text-transform: uppercase;
    }
    .article-featured-body { padding: 2rem; }
    .article-meta {
      display: flex; gap: 1.5rem;
      font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
      font-weight: 700; color: var(--muted); margin-bottom: 0.75rem;
    }
    .article-meta .tag { color: var(--sienna); }
    .article-featured h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.75rem; }
    .article-featured p { color: var(--muted); font-size: 0.9rem; }
    .read-more {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-top: 1.2rem; color: var(--sienna);
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; cursor: pointer;
      transition: gap 0.2s;
    }
    .read-more:hover { gap: 0.9rem; }

    .article-cards { display: flex; flex-direction: column; gap: 1rem; }
    .article-card {
      background: var(--card); border: 1px solid var(--border);
      padding: 1.4rem; display: flex; gap: 1.2rem;
      cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
    }
    .article-card:hover { border-color: var(--wheat); box-shadow: 0 4px 16px rgba(107,79,46,0.08); }
    .article-card-thumb {
      width: 90px; height: 72px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--sky-pale), var(--parchment));
      display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    }
    .article-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.3rem; line-height: 1.3;
    }
    .article-card p { font-size: 0.83rem; color: var(--muted); }

    .sidebar-box {
      background: var(--card); border: 1px solid var(--border);
      padding: 1.5rem; margin-bottom: 1.5rem;
    }
    .sidebar-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 600; color: var(--charcoal);
      border-bottom: 2px solid var(--wheat); padding-bottom: 0.75rem; margin-bottom: 1.2rem;
    }
    .sidebar-list { list-style: none; }
    .sidebar-list li {
      padding: 0.45rem 0; border-bottom: 1px solid var(--border);
      font-size: 0.85rem; cursor: pointer; color: var(--brown-mid);
      transition: color 0.2s;
    }
    .sidebar-list li:hover { color: var(--sienna); }
    .sidebar-list li:last-child { border-bottom: none; }

    .sidebar-cta {
      background: var(--sienna); padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .sidebar-cta h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem;
    }
    .sidebar-cta p { color: rgba(245,240,232,0.8); font-size: 0.83rem; margin-bottom: 1.2rem; }
    .btn-cream-sm {
      background: var(--cream); color: var(--sienna);
      padding: 0.65rem 1.2rem; font-weight: 700;
      font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
      border: none; cursor: pointer; width: 100%;
      font-family: 'Lato', sans-serif;
    }

    /* Article Single */
    .article-single { padding: 4rem 6vw; max-width: 820px; }
    .back-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted); cursor: pointer;
      margin-bottom: 2rem; transition: color 0.2s;
    }
    .back-link:hover { color: var(--sienna); }
    .article-single h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1;
      color: var(--charcoal); margin-bottom: 1rem; font-weight: 700;
    }
    .article-body p { color: var(--brown-mid); margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.8; }
    .article-body h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-top: 2.5rem; margin-bottom: 1rem; }
    .article-body ul { padding-left: 1.5rem; margin-bottom: 1.2rem; color: var(--brown-mid); font-size: 0.95rem; }
    .article-body ul li { margin-bottom: 0.5rem; }

    /* ══════════════════════════════════════
       CONTACT
    ══════════════════════════════════════ */
    .contact-layout {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 5rem; padding: 4rem 6vw; align-items: start;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--sienna); margin-bottom: 0.4rem; margin-top: 2rem;
    }
    .contact-info h3:first-child { margin-top: 0; }
    .contact-info p { color: var(--brown-mid); font-size: 0.9rem; }
    .process-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
    .process-step {
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .step-num {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--sienna); color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700;
    }
    .process-step p { font-size: 0.88rem; color: var(--brown-mid); padding-top: 0.25rem; }

    .form-row { margin-bottom: 1.2rem; }
    .form-row label {
      display: block; font-size: 0.72rem; letter-spacing: 0.12em;
      text-transform: uppercase; font-weight: 700;
      color: var(--brown-mid); margin-bottom: 0.5rem;
    }
    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%; background: var(--card);
      border: 1.5px solid var(--border); color: var(--charcoal);
      padding: 0.85rem 1rem; font-family: 'Lato', sans-serif;
      font-size: 0.95rem; outline: none;
      transition: border-color 0.2s;
    }
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus { border-color: var(--sienna); }
    .form-row textarea { height: 130px; resize: vertical; }
    .form-submit {
      background: var(--sienna); color: var(--cream);
      border: none; padding: 1rem 2.5rem; width: 100%;
      font-family: 'Lato', sans-serif; font-weight: 700;
      font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s;
    }
    .form-submit:hover { background: var(--sienna-lt); }
    #form-success {
      display: none; margin-top: 1rem; padding: 1rem;
      background: rgba(181,87,42,0.08); border: 1px solid var(--sienna);
      color: var(--sienna); font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.08em;
    }

    /* ══════════════════════════════════════
       TEMPLATE GUIDE
    ══════════════════════════════════════ */
    .template-guide { padding: 4rem 6vw; }
    .template-section {
      background: var(--card); border: 1px solid var(--border);
      padding: 2.5rem; margin-bottom: 2rem;
    }
    .template-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; font-weight: 600;
      color: var(--sienna); margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .template-badge {
      background: rgba(181,87,42,0.1); color: var(--sienna);
      font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.1em; padding: 0.2rem 0.7rem;
      border: 1px solid var(--border-warm); text-transform: uppercase;
    }
    .template-table { width: 100%; border-collapse: collapse; }
    .template-table th {
      background: var(--parchment); padding: 0.75rem 1rem;
      font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; text-align: left; color: var(--sienna);
      border-bottom: 2px solid var(--wheat);
    }
    .template-table td {
      padding: 0.75rem 1rem; font-size: 0.88rem;
      border-bottom: 1px solid var(--border); vertical-align: top;
    }
    .template-table td:first-child { color: var(--charcoal); font-weight: 700; width: 200px; }
    .template-table td:last-child { color: var(--brown-mid); }
    code {
      background: var(--parchment); color: var(--sienna);
      padding: 0.15rem 0.5rem; font-size: 0.8rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      padding: 4rem 6vw 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: var(--cream);
      margin-bottom: 1rem; display: block;
      cursor: pointer;
    }
    .footer-logo em { color: var(--horizon); font-style: italic; }
    footer p { color: rgba(245,240,232,0.5); font-size: 0.85rem; max-width: 280px; }
    footer h4 {
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      font-weight: 700; color: var(--horizon); margin-bottom: 1.2rem;
    }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 0.6rem; }
    footer ul li a {
      color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.88rem;
      transition: color 0.2s; cursor: pointer;
    }
    footer ul li a:hover { color: var(--cream); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between;
      font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(245,240,232,0.35);
      flex-wrap: wrap; gap: 1rem;
    }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--charcoal);
      transition: all 0.25s;
    }
    .mobile-menu {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0;
      background: rgba(245,240,232,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 5vw 1.5rem;
      z-index: 997;
      flex-direction: column; gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display: block; padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
      color: var(--charcoal); font-size: 0.9rem;
      font-weight: 700; letter-spacing: 0.05em;
      text-transform: uppercase; cursor: pointer;
      transition: color 0.2s;
    }
    .mobile-menu a:last-child { border-bottom: none; margin-top: 0.75rem; }
    .mobile-menu a:hover { color: var(--sienna); }
    .mobile-menu .mobile-cta {
      background: var(--sienna); color: var(--cream) !important;
      padding: 0.85rem 1.5rem; text-align: center;
    }

    /* Hero landscape SVG */
    .hero-landscape { overflow: hidden; }
    @media (max-width: 900px) {
      .why-grid, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .articles-layout { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 5vw; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .hero-drone-wrap { display: none; }
      .articles-sidebar { position: static; }
      .about-sticky { position: static; }
      section { padding: 4rem 5vw; }
      .services-intro { flex-direction: column; gap: 1rem; }
    }

    @media (max-width: 640px) {
      /* Nav */
      nav { padding: 0 4vw; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-logo { font-size: 1.1rem; }

      /* Hero */
      .hero { padding: 3rem 5vw 5rem; min-height: auto; }
      .hero h1 { font-size: 2.6rem; }
      .hero-sub { font-size: 0.95rem; }
      .hero-actions { flex-direction: column; gap: 0.75rem; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }
      .hero-stats { gap: 1.2rem; flex-wrap: wrap; padding-top: 1.5rem; }
      .stat-num { font-size: 1.8rem; }
      .stat-label { font-size: 0.68rem; }

      /* Strip */
      .strip { padding: 0.7rem 4vw; gap: 1.5rem; }

      /* Sections */
      section { padding: 3rem 5vw; }
      h2 { font-size: 2rem; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 1rem; }
      .service-card { padding: 1.8rem 1.5rem; }

      /* Why section */
      .why-section { padding: 3rem 5vw; }
      .why-list { gap: 1.4rem; margin-top: 1.5rem; }
      .coverage-card { padding: 1.8rem 1.5rem; }
      .city-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
      .city-pill { font-size: 0.72rem; padding: 0.35rem 0.6rem; }

      /* Testimonials */
      .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
      .testimonial-card { padding: 1.5rem; }

      /* CTA Banner */
      .cta-banner { flex-direction: column; padding: 3rem 5vw; gap: 1.5rem; }
      .cta-banner h2 { font-size: 1.8rem; }
      .btn-cream { width: 100%; padding: 0.9rem 1.5rem; text-align: center; }
      .btn-dark { width: 100%; padding: 0.9rem 1.5rem; }

      /* Page hero */
      .page-hero { padding: 3rem 5vw 2.5rem; }
      .page-hero h1 { font-size: 2.2rem; }

      /* About */
      .about-layout { gap: 2rem; }
      .pilot-photo { height: 300px; }
      .about-body h3 { font-size: 1.3rem; }
      .coverage-table { font-size: 0.82rem; }
      .coverage-table th, .coverage-table td { padding: 0.6rem 0.7rem; }

      /* Articles */
      .article-featured-img { height: 180px; }
      .article-featured-body { padding: 1.5rem; }
      .article-featured h2 { font-size: 1.3rem; }
      .article-card { flex-direction: column; gap: 1rem; padding: 1.2rem; }
      .article-card-thumb { width: 100%; height: 120px; }
      .sidebar-cta, .sidebar-box { padding: 1.2rem; }

      /* Contact */
      .contact-layout { gap: 2rem; padding: 2.5rem 5vw; }
      .form-row input, .form-row select, .form-row textarea { font-size: 16px; } /* prevents iOS zoom */

      /* Footer */
      footer { padding: 2.5rem 5vw 1.5rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; font-size: 0.65rem; }

      /* Template guide */
      .template-guide { padding: 2rem 4vw; }
      .template-section { padding: 1.5rem 1rem; }
      .template-table { font-size: 0.78rem; }
      .template-table th, .template-table td { padding: 0.6rem 0.6rem; }
      .template-table td:first-child { width: 120px; }
    }

    /* Extra small — 375px and under */
    @media (max-width: 375px) {
      .hero h1 { font-size: 2.2rem; }
      .nav-cta { padding: 0.4rem 0.9rem; font-size: 0.75rem; }
      .hero-stats { gap: 1rem; }
      .stat-num { font-size: 1.6rem; }
      h2 { font-size: 1.8rem; }
    }
