:root {
    --navy:        #003e6b;
    --navy-deep:   #002a4a;
    --sky:         #5fb0ee;
    --sky-soft:    #c8e1f5;
    --sky-mist:    #e8f1fa;
    --snow:        #f3f7fb;
    --paper:       #fafcfe;
    --cream:       #f1ece1;
    --ink:         #0e1a2b;
    --muted:       #5b6a7a;
    --line:        #d4dde6;
    --accent:      #c9742f;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }
  html { scroll-behavior: smooth; scroll-padding-top: 88px; }
  section[id], .hero[id] { scroll-margin-top: 88px; }
  @media (max-width: 800px) {
    html { scroll-padding-top: 64px; }
    section[id], .hero[id] { scroll-margin-top: 64px; }
  }
  *, *::before, *::after { box-sizing: border-box; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  /* TYPE SYSTEM */
  .display, .h1, .h2, .h3, .h4 {
    font-family: 'Quicksand', system-ui, sans-serif;
    color: var(--navy); font-weight: 600;
    letter-spacing: -0.01em; margin: 0;
  }
  .display { font-size: clamp(40px, 5.2vw, 68px); line-height: 1.04; font-weight: 700; }
  .h1 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.1; font-weight: 700; }
  .h2 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; font-weight: 600; }
  .h3 { font-size: 22px; line-height: 1.25; font-weight: 600; }
  .h4 { font-size: 16px; line-height: 1.3; font-weight: 600; letter-spacing: 0; }

  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sky);
  }
  .eyebrow.dark { color: var(--navy); opacity: 0.65; }

  .step-label {
    font-family: 'Source Serif 4', serif;
    font-style: italic; font-size: 22px;
    color: var(--accent); font-weight: 500;
    margin-bottom: 6px; line-height: 1;
  }

  .accent-italic {
    font-family: 'Source Serif 4', serif;
    font-style: italic; font-weight: 500;
    color: var(--accent);
  }

  p { margin: 0 0 1em; color: var(--ink); }
  a { color: var(--navy); text-decoration: none; transition: color .15s; }
  a:hover { color: var(--sky); }

  /* ============ NAV (wireframe-style) ============ */
  .site-nav {
    display: flex; align-items: center;
    padding: 22px 56px;
    border-bottom: 1.5px solid var(--navy);
    gap: 24px;
    background: var(--paper);
    position: sticky; top: 0; z-index: 50;
  }
  .site-nav .logo-wrap {
    display: flex; align-items: center;
  }
  .site-nav .logo-wrap img { height: 38px; display: block; }
  .site-nav .nav-links {
    margin-left: auto;
    display: flex; gap: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .site-nav .nav-links a {
    color: var(--muted);
    transition: color .15s;
  }
  .site-nav .nav-links a:hover { color: var(--navy); }
  .site-nav .nav-cta {
    padding: 10px 20px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all .15s;
    white-space: nowrap;
  }
  .site-nav .nav-cta:hover {
    background: var(--navy); color: var(--paper);
  }
  .site-nav .nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: transparent; border: 1.5px solid var(--navy);
    border-radius: 8px; cursor: pointer; padding: 0;
  }
  .site-nav .nav-toggle span,
  .site-nav .nav-toggle span::before,
  .site-nav .nav-toggle span::after {
    content: ''; display: block;
    width: 20px; height: 2px; background: var(--navy);
    position: relative; transition: transform .2s, opacity .2s, top .2s;
  }
  .site-nav .nav-toggle span::before { position: absolute; top: -6px; left: 0; }
  .site-nav .nav-toggle span::after  { position: absolute; top:  6px; left: 0; }
  .site-nav.open .nav-toggle span { background: transparent; }
  .site-nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  .site-nav.open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }
  .mobile-menu {
    display: none;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1.5px solid var(--navy);
    padding: 24px;
    z-index: 49;
    flex-direction: column; gap: 20px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--navy); padding: 8px 0;
    border-bottom: 1px solid rgba(13,32,71,0.08);
  }
  .mobile-menu .nav-cta-mobile {
    margin-top: 8px;
    padding: 14px 20px; border: 1.5px solid var(--navy);
    border-radius: 100px; text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ============ TRAIL WRAPPER ============ */
  .trail-wrap { position: relative; }

  /* Topographic contours (full-page background) */
  .topo-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    opacity: 0.7;
  }

  /* Soft paper-colored halo behind text containers so the topo doesn't fight legibility.
     Each halo is a radial gradient that fades out at the edges, giving a natural fade
     into the surrounding topo lines rather than a hard rectangle. */
  .hero-text, .section-head, .about-text, .process-section .section-head {
    position: relative;
    z-index: 2;
  }
  .hero-text::before,
  .section-head::before,
  .about-text::before {
    content: '';
    position: absolute;
    inset: -28px -56px;
    background: radial-gradient(
      ellipse at center,
      rgba(250, 252, 254, 0.92) 0%,
      rgba(250, 252, 254, 0.85) 40%,
      rgba(250, 252, 254, 0.6) 70%,
      rgba(250, 252, 254, 0) 100%
    );
    z-index: -1;
    pointer-events: none;
    border-radius: 24px;
  }
  /* Dark-background sections — disable the cream halo (would show as a bright blob) */
  .process-section .section-head::before,
  .cta-section .section-head::before,
  .testimonials-section .section-head::before { display: none; }

  /* Wandering dotted trail SVG */
  .trail-svg {
    position: absolute; left: 0; top: 0;
    width: 200px; height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
  }
    pointer-events: none;
    overflow: visible;
    z-index: 3;
  }
  .trail-svg .path-main {
    fill: none; stroke: var(--sky); stroke-width: 2.2;
    stroke-dasharray: 6 5 2 5 9 4; stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.95;
  }
  .trail-svg .path-faint {
    fill: none; stroke: var(--sky); stroke-width: 1;
    stroke-dasharray: 2 4; opacity: 0.4;
  }
  .trail-svg text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    fill: var(--muted);
  }
  .trail-svg .ink { fill: var(--navy); }
  .trail-svg .accent { fill: var(--accent); }
  .trail-svg .compass-rose { opacity: 0.5; }

  /* Section + map node */
  .section {
    position: relative;
    padding: 80px 56px 80px 180px;
    border-bottom: 1.5px solid var(--line);
    z-index: 1;
    background: transparent;
  }
  .section::before {
    content: '';
    position: absolute; inset: 0;
    z-index: -1;
    background: inherit;
  }
  .section:last-of-type { border-bottom: none; }

  .map-node {
    position: absolute; left: 60px; top: 88px;
    width: 44px; height: 44px;
    z-index: 4;
    display: flex; align-items: center; justify-content: center;
  }
  .map-node svg { width: 100%; height: 100%; overflow: visible; }
  .map-node .num {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 600;
    color: var(--paper);
  }
  .map-node.light .num { color: var(--paper); }
  .map-coord {
    position: absolute; left: 58px; top: 144px;
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 13px; color: var(--muted);
    width: 120px; line-height: 1.35;
    z-index: 4;
    /* halo so the dotted trail-svg doesn't visually break the text */
    text-shadow: 0 0 6px var(--paper), 0 0 6px var(--paper), 0 0 6px var(--paper), 0 0 3px var(--paper);
  }
  .map-coord strong { color: var(--navy); font-weight: 600; font-style: normal; font-family: 'Quicksand', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 4px; }

  .section-head { max-width: 720px; margin-bottom: 48px; }
  .section-head .step-label { color: var(--accent); }
  .section-head .label-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 14px; display: block;
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    padding: 96px 56px 88px 180px;
    border-bottom: 1.5px solid var(--line);
    z-index: 1;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    z-index: -1;
    background:
      radial-gradient(ellipse 700px 400px at 85% 0%, var(--sky-mist) 0%, transparent 70%);
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 320px;
    gap: 56px; align-items: end;
  }
  .hero-text h1 { margin: 14px 0 22px; }
  .hero .lead {
    font-size: 19px; line-height: 1.6;
    color: var(--ink); max-width: 580px;
    margin: 0 0 32px;
  }
  .cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
  .cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border: 1.5px solid var(--navy);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
    transition: all .15s;
    cursor: pointer;
  }
  .cta-fill {
    background: var(--navy); color: var(--paper);
  }
  .cta-fill:hover { background: var(--navy-deep); color: var(--paper); transform: translateY(-1px); }
  .cta-ghost { background: transparent; color: var(--navy); }
  .cta-ghost:hover { background: var(--navy); color: var(--paper); }
  .cta .arrow { transition: transform .15s; }
  .cta:hover .arrow { transform: translateX(3px); }

  .hero-meta {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 580px;
  }
  .stat .num {
    font-family: 'Quicksand', sans-serif;
    font-size: 34px; font-weight: 700;
    color: var(--navy); line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat .num small {
    font-size: 16px; color: var(--sky); font-weight: 500; margin-left: 4px;
  }
  .stat .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); margin-top: 8px; line-height: 1.4;
  }

  .hero-portrait {
    position: relative;
    aspect-ratio: 3/4;
    width: 100%;
    border-radius: 160px 160px 16px 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-soft) 0%, var(--cream) 100%);
    box-shadow:
      0 24px 48px -16px rgba(0,42,74,0.25),
      0 0 0 1px var(--line);
  }
  .hero-portrait picture,
  .about-photo > picture,
  .about-photo .medallion picture,
  .life-photo picture {
    display: contents;
  }
  .hero-portrait img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 78% 60%;
  }
  .hero-portrait .badge {
    position: absolute; bottom: 18px; left: 18px;
    background: var(--paper);
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,42,74,0.18);
    z-index: 2;
    display: flex; align-items: center; gap: 12px;
  }
  .badge .yr {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700; font-size: 24px;
    color: var(--navy); line-height: 1;
  }
  .badge .yr-label {
    font-family: 'Source Serif 4', serif;
    font-style: italic; font-size: 11px;
    color: var(--muted); line-height: 1.3;
  }

  /* ============ ABOUT ============ */
  .about-section::before { background: var(--snow); }
  .about-grid {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 56px; align-items: start;
  }
  .about-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    background: var(--sky-soft);
    box-shadow: 0 16px 32px -12px rgba(0,42,74,0.18);
  }
  .about-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 55% 50%;
  }
  .about-photo .medallion {
    position: absolute; bottom: -28px; right: -28px;
    width: 132px; height: 132px;
    border-radius: 50%;
    border: 6px solid var(--paper);
    box-shadow: 0 12px 28px -8px rgba(0,42,74,0.35);
    overflow: hidden;
    background: #b8895a;
  }
  .about-photo .medallion img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: 38% 45%;
  }
  .about-photo-stub {
    aspect-ratio: 4/5;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sky-soft) 100%);
    position: relative;
    box-shadow: 0 16px 32px -12px rgba(0,42,74,0.18);
  }
  .about-photo-stub::after {
    content: 'Brent — at home / outdoors';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
  }
  .about-text p { font-size: 17px; line-height: 1.7; margin-bottom: 14px; }
  .about-text p.lead {
    font-size: 20px; line-height: 1.55;
    color: var(--navy); font-style: italic;
    border-left: 3px solid var(--sky);
    padding-left: 18px; margin: 22px 0 24px;
  }
  .about-credentials {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .credential {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14px; color: var(--muted); line-height: 1.5;
  }
  .credential .check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--sky-soft);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 11px;
    margin-top: 1px;
  }

  /* ============ SERVICES ============ */
  .services-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; max-width: 1080px;
  }
  .service-card {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all .2s;
  }
  .service-card:hover {
    transform: translateY(-2px);
    border-color: var(--sky);
    box-shadow: 0 16px 32px -16px rgba(0,42,74,0.2);
  }
  .service-card .icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
  }
  .service-card .icon svg { width: 28px; height: 28px; color: var(--paper); }
  .service-card h3 { margin-bottom: 8px; font-size: 24px; }
  .service-card .price-tag {
    font-family: 'Source Serif 4', serif;
    font-style: italic; color: var(--accent);
    font-size: 15px; margin-bottom: 16px;
    display: block;
  }
  .service-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 20px; }
  .service-card ul {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 9px;
  }
  .service-card li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px; color: var(--ink); line-height: 1.5;
  }
  .service-card li::before {
    content: ''; flex-shrink: 0;
    width: 17px; height: 17px;
    border-radius: 50%;
    background: var(--sky-soft);
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9 l3 3 l5-6' fill='none' stroke='%23003e6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
  }
  .service-card .card-cta {
    color: var(--navy); font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-flex; gap: 8px; align-items: center;
  }

  /* ============ WHO ============ */
  .who-section::before { background: var(--snow); }
  .who-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1080px;
  }
  .who-card {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .2s;
  }
  .who-card:hover { border-color: var(--sky); transform: translateY(-2px); }
  .who-card .who-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy);
    background: var(--sky-soft);
    padding: 5px 11px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
  .who-card h4 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
  .who-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

  /* ============ PROCESS ============ */
  .process-section::before { background: var(--navy); }
  .process-section { color: var(--snow); }
  .process-section .h1, .process-section .h2 { color: var(--snow); }
  .process-section .step-label { color: var(--sky); }
  .process-section .label-mono { color: rgba(243,247,251,0.6); }
  .process-section .map-node .num { color: var(--navy); }
  .process-section .map-coord { color: rgba(243,247,251,0.5); }
  .process-section .map-coord strong { color: var(--sky); }
  .process-section .section-head p { color: rgba(243,247,251,0.75); }
  .process-section { border-bottom: 1.5px solid rgba(95,176,238,0.2); }

  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; max-width: 1080px;
    position: relative;
  }
  .process-step { padding: 32px 24px 28px 0; position: relative; }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px; right: 14px;
    width: 24px; height: 2px;
    background-image: linear-gradient(90deg, var(--sky) 50%, transparent 50%);
    background-size: 6px 2px;
  }
  .process-step .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--snow); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700; font-size: 19px;
    margin-bottom: 18px;
  }
  .process-step h4 { color: var(--snow); font-size: 17px; margin-bottom: 8px; }
  .process-step p { color: rgba(243,247,251,0.75); font-size: 14px; line-height: 1.6; margin: 0; }

  /* ============ TESTIMONIALS ============ */
  .testimonials-section::before { background: var(--snow); }
  .testimonial-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 1080px;
  }
  .testimonial {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    position: relative;
  }
  .testimonial .quote-mark {
    font-family: 'Quicksand', sans-serif;
    font-size: 72px; line-height: 0.5;
    color: var(--sky);
    position: absolute;
    top: 28px; right: 32px;
    opacity: 0.5;
  }
  .testimonial blockquote {
    font-family: 'Source Serif 4', serif;
    font-size: 18px; line-height: 1.55;
    color: var(--ink);
    margin: 0 0 22px; padding: 0;
    font-style: italic;
  }
  .testimonial .attribution {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .testimonial .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-soft) 0%, var(--cream) 100%);
    flex-shrink: 0;
  }
  .testimonial cite { font-style: normal; }
  .testimonial cite strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--ink); font-size: 14px;
  }
  .testimonial cite small {
    display: block;
    color: var(--muted); font-size: 12px;
    margin-top: 2px;
  }

  /* ============ LIFE TODAY (gallery) ============ */
  .life-strip {
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1.5px dashed var(--line);
    max-width: 1080px;
  }
  .life-strip-head {
    max-width: 640px;
    margin-bottom: 32px;
  }
  .life-strip-head .label-mono {
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    display: block; margin-bottom: 10px;
  }
  .life-strip-head h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 32px; line-height: 1.15;
    color: var(--ink);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
  }
  .life-strip-head p {
    color: var(--muted); font-size: 16px; line-height: 1.6;
    margin: 0;
  }
  .life-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
  }
  .life-photo {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--sky-soft);
    box-shadow: 0 12px 24px -14px rgba(0,42,74,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .life-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px -14px rgba(0,42,74,0.35);
  }
  .life-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .life-photo.life-tall { grid-row: span 2; }
  .life-photo.life-wide { grid-column: span 2; }
  .life-photo figcaption {
    position: absolute; left: 12px; bottom: 12px;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--paper);
    background: rgba(0,42,74,0.65);
    backdrop-filter: blur(4px);
    padding: 5px 9px;
    border-radius: 4px;
  }
  /* Per-photo focal points */
  .life-grid figure:nth-child(1) img { object-position: 50% 70%; }
  .life-grid figure:nth-child(2) img { object-position: 50% 50%; }
  .life-grid figure:nth-child(3) img { object-position: 50% 70%; }
  .life-grid figure:nth-child(4) img { object-position: 50% 70%; }

  /* ============ FAQ ============ */
  .faq-list {
    max-width: 760px;
    position: relative; z-index: 2;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 28px;
    box-shadow: 0 2px 24px rgba(0, 62, 107, 0.04);
  }
  details.faq {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  details.faq:last-child { border-bottom: none; }
  details.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600; font-size: 17px;
    color: var(--navy);
  }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary::after {
    content: '+';
    font-size: 26px; line-height: 1; color: var(--sky);
    transition: transform .2s; flex-shrink: 0;
  }
  details.faq[open] summary::after { content: '–'; }
  details.faq p {
    margin: 14px 0 0;
    font-size: 15px; line-height: 1.65; color: var(--muted);
  }

  /* ============ CONTACT ============ */
  .cta-section {
    color: var(--snow);
    border-bottom: none;
  }
  .cta-section::before { background: var(--navy); }
  .cta-section .h1, .cta-section .h2 { color: var(--snow); }
  .cta-section .step-label { color: var(--sky); }
  .cta-section .label-mono { color: rgba(243,247,251,0.6); }
  .cta-section .map-node .num { color: var(--navy); }
  .cta-section .map-coord { color: rgba(243,247,251,0.5); }
  .cta-section .map-coord strong { color: var(--sky); }

  .cta-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: start;
    max-width: 1080px;
  }
  .cta-section .lead {
    color: rgba(243,247,251,0.85);
    font-size: 18px; line-height: 1.6;
    margin-bottom: 28px;
  }
  .cta-contact-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 16px;
  }
  .cta-contact-list li {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .cta-contact-list li > div:last-child { min-width: 0; flex: 1; }
  .cta-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(95,176,238,0.15);
    color: var(--sky);
    display: flex; align-items: center; justify-content: center;
  }
  .cta-icon svg { width: 16px; height: 16px; }
  .cta-contact-list .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--sky); margin-bottom: 2px;
  }
  .cta-contact-list .val {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px; font-weight: 500;
    color: var(--snow);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .cta-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(95,176,238,0.25);
    border-radius: 16px;
    padding: 28px;
  }
  .form-row { margin-bottom: 16px; }
  .form-row label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--sky); margin-bottom: 6px;
  }
  .form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(95,176,238,0.25);
    border-radius: 8px;
    color: var(--snow);
    font-family: 'Source Serif 4', serif;
    font-size: 15px;
    transition: border-color .15s;
  }
  .form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none; border-color: var(--sky);
    background: rgba(255,255,255,0.08);
  }
  .form-row textarea { resize: vertical; min-height: 100px; }
  .form-row input::placeholder, .form-row textarea::placeholder { color: rgba(243,247,251,0.4); }
  .cta-form button {
    width: 100%; margin-top: 6px;
    background: var(--snow); color: var(--navy);
    border: 1.5px solid var(--snow);
    justify-content: center;
  }
  .cta-form button:hover { background: var(--sky-soft); border-color: var(--sky-soft); color: var(--navy-deep); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy-deep);
    color: rgba(243,247,251,0.7);
    padding: 48px 56px 28px;
    font-size: 14px;
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand img { height: 36px; margin-bottom: 16px; background: #fff; padding: 8px 12px; border-radius: 6px; }
  .footer-brand p { color: rgba(243,247,251,0.6); font-size: 14px; max-width: 320px; line-height: 1.6; }
  .footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    color: var(--sky); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin: 0 0 14px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(243,247,251,0.7); }
  .footer-col a:hover { color: var(--snow); }
  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(95,176,238,0.15);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(243,247,251,0.5);
    flex-wrap: wrap; gap: 16px;
  }

  @media (max-width: 1080px) {
    .section, .hero { padding-left: 140px; padding-right: 32px; }
    .map-node { left: 36px; }
    .map-coord { left: 34px; }
    .trail-svg { width: 160px; }
  }
  @media (max-width: 800px) {
    .site-nav { padding: 14px 20px; gap: 12px; }
    .site-nav .logo-wrap img { height: 30px; }
    .site-nav .nav-links { display: none; }
    .site-nav .nav-cta { display: none; }
    .site-nav .nav-toggle { display: flex; }
    .section, .hero { padding-left: 88px; padding-right: 24px; padding-top: 56px; padding-bottom: 56px; }
    .map-node { left: 20px; top: 60px; width: 36px; height: 36px; }
    .map-coord { display: none; }
    .trail-svg { width: 88px; }
    .hero-grid, .about-grid, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .testimonial-grid, .who-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .process-step:not(:last-child)::after { display: none; }
    .life-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .life-photo.life-tall { grid-row: span 1; }
    .life-photo.life-wide { grid-column: span 2; }    .footer-inner { grid-template-columns: 1fr 1fr; }
  }


/* ============ INTERIOR PAGES ============ */
.page-hero {
  padding: 72px 56px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--snow);
}
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero .h1 { max-width: 18ch; }
.page-hero .lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 0;
}
.page-main {
  padding: 56px 56px 80px;
  max-width: 820px;
}
.page-main h2 {
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--navy);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  margin: 2.2em 0 0.7em;
}
.page-main h2:first-child { margin-top: 0; }
.page-main p, .page-main li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.page-main ul {
  padding-left: 1.2em;
  margin: 0 0 1.2em;
}
.page-main li { margin-bottom: 0.45em; }
.page-main .cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 12px; }
.page-note {
  margin-top: 2rem;
  padding: 16px 18px;
  background: var(--sky-mist);
  border-left: 3px solid var(--sky);
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 800px) {
  .page-hero { padding: 48px 24px 32px; }
  .page-main { padding: 40px 24px 64px; }
}
