﻿:root {
      --black:       #080c14;
      --navy:        #0f1e33;
      --panel:       #f0f6fc;
      --border:      #c5d8ec;
      --blue:        #2b72a8;
      --blue-mid:    #2566a0;
      --blue-light:  #3a7ab0;
      --blue-bright: #2b72a8;
      --blue-dark:   #1a3a5c;
      --white:       #ffffff;
      --ice:         #e8f3fb;
      --muted:       #4a6a85;
      --text-body:   #2c4a62;
      /* light theme surfaces */
      --bg-page:     #ffffff;
      --bg-alt:      #f4f8fc;
      --text-dark:   #0f1e33;
      --text-mid:    #2c4a62;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg-page);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(74,144,196,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,144,196,0.07) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
      z-index: 0;
    }

    .cover-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ══ NAV ══ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 100px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo { display: flex; align-items: center; gap: 18px; text-decoration: none; }
    .nav-logo-icon { width: 86px; height: 86px; flex-shrink: 0; object-fit: contain; }

    .nav-wordmark {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 2.2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.05;
    }
    .nav-wordmark .wolf  { color: #4a90c4; }
    .nav-wordmark .speed { color: var(--text-dark); }

    .nav-sub {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.52rem;
      letter-spacing: 0.16em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 2px;
    }

    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blue); }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--blue-mid);
      padding: 9px 22px;
      text-decoration: none;
      transition: background 0.2s;
      display: inline-block;
    }
    .nav-cta:hover { background: var(--blue); }

    /* ══ HERO ══ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 160px 80px 160px;
      overflow: hidden;
      z-index: 1;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 65% 40%, rgba(74,144,196,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 20% 70%, rgba(196,220,240,0.3) 0%, transparent 60%),
        linear-gradient(160deg, #daeaf7 0%, #f0f7fc 55%, #e8f3fb 100%);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      top: 0; right: 280px;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent 10%, var(--blue) 50%, transparent 90%);
      opacity: 0.25;
    }

    .hero-img-area {
      position: absolute;
      top: 0; right: 0;
      width: 52%; height: 100%;
      overflow: hidden;
      z-index: 1;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
      mask-image: linear-gradient(to right, transparent 0%, black 25%);
    }

    .hero-img-area img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.55;
    }

    .hero-img-placeholder-box {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      border-left: 1px dashed var(--border);
    }
    .hero-img-placeholder-box p {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      color: var(--border);
      text-transform: uppercase;
      text-align: center;
    }

    .hero-content { position: relative; z-index: 2; max-width: 620px; }

    .hero-eyebrow {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 30px; height: 1px;
      background: var(--blue);
    }

    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(3.8rem, 7.5vw, 7rem);
      line-height: 0.9;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 30px;
    }
    .hero h1 em { font-style: normal; color: var(--blue); }

    .hero-desc {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--text-mid);
      max-width: 500px;
      margin-bottom: 44px;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #ffffff;
      background: var(--blue-mid);
      padding: 14px 34px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

    .btn-ghost {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-dark);
      background: transparent;
      padding: 13px 28px;
      text-decoration: none;
      border: 1px solid var(--blue-mid);
      display: inline-block;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: var(--blue-dark); color: var(--white); background: var(--blue-dark); }

    .hero-stats {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 3;
      display: flex;
      border-top: 1px solid var(--border);
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(10px);
    }

    .stat { flex: 1; padding: 20px 44px; border-right: 1px solid var(--border); }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.9rem;
      color: var(--blue);
      line-height: 1;
    }
    .stat-label {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 5px;
    }

    /* ══ SECTION BASE ══ */
    section { position: relative; z-index: 1; }
    .section-inner { max-width: 1140px; margin: 0 auto; padding: 100px 60px; }

    .section-label {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.63rem;
      letter-spacing: 0.22em;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue); }

    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      line-height: 0.95;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 28px;
    }
    .section-title em { font-style: normal; color: var(--blue); }

    /* ══ ABOUT ══ */
    #about {
      background: #f4f8fc;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

    .about-text p {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 18px;
    }
    .about-text p strong { color: var(--text-dark); font-weight: 600; }

    .brand-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; margin-bottom: 36px; }
    .brand-pill {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      border: 1px solid var(--border);
      padding: 6px 14px;
      background: rgba(74,144,196,0.07);
    }

    .about-visual {
      position: relative;
      aspect-ratio: 4/3;
      background: #ffffff;
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .about-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(74,144,196,0.05) 0%, transparent 60%);
    }

    .img-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .img-placeholder p {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      color: var(--border);
      text-transform: uppercase;
      text-align: center;
    }

    .corner-mark {
      position: absolute;
      width: 18px; height: 18px;
      border-color: var(--blue);
      border-style: solid;
      opacity: 0.4;
    }
    .corner-mark.tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
    .corner-mark.tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
    .corner-mark.bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
    .corner-mark.br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

    .img-tag {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 8px 16px;
      background: rgba(240,246,252,0.95);
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      color: var(--blue);
      text-transform: uppercase;
      border-top: 1px solid var(--border);
    }

    /* ══ CAPABILITIES ══ */
    #capabilities { background: #ffffff; }

    .cap-header { margin-bottom: 56px; }

    .cap-grid-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 1px;
    }
    .cap-grid-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-top: none;
    }

    .cap-card {
      background: #ffffff;
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .cap-card:hover { background: #f4f8fc; }

    .cap-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 3px;
      background: var(--blue);
      transition: width 0.35s ease;
    }
    .cap-card:hover::before { width: 100%; }

    .cap-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 3.5rem;
      color: rgba(74,144,196,0.1);
      position: absolute;
      top: 20px; right: 28px;
      line-height: 1;
      transition: color 0.25s;
    }
    .cap-card:hover .cap-num { color: rgba(74,144,196,0.2); }

    .cap-icon { width: 44px; height: 44px; margin-bottom: 18px; }

    .cap-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 14px;
    }

    .cap-bullets { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .cap-bullets li {
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--text-mid);
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .cap-bullets li::before {
      content: '—';
      color: var(--blue);
      flex-shrink: 0;
      font-size: 0.75rem;
      margin-top: 2px;
    }

    /* ══ PROCESS ══ */
    #process {
      background: #f4f8fc;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .process-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
    .process-steps { display: flex; flex-direction: column; }
    .process-step { display: grid; grid-template-columns: 56px 1fr; }

    .step-line { display: flex; flex-direction: column; align-items: center; }
    .step-num {
      width: 44px; height: 44px;
      background: #ffffff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.72rem;
      color: var(--blue);
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .process-step:hover .step-num {
      background: var(--blue-mid);
      color: #ffffff;
      border-color: var(--blue-mid);
    }
    .step-connector { width: 1px; flex: 1; min-height: 36px; background: var(--border); }
    .process-step:last-child .step-connector { display: none; }

    .step-content { padding: 6px 0 40px 24px; }
    .step-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .step-desc { font-size: 0.88rem; font-weight: 400; line-height: 1.65; color: var(--text-mid); }

    .process-visual { position: sticky; top: 90px; }
    .process-visual .about-visual { aspect-ratio: 3/4; }

    /* ══ CONTACT ══ */
    #contact { background: #ffffff; }

    .contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }

    .contact-info h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .contact-info > p {
      font-size: 0.88rem;
      font-weight: 400;
      line-height: 1.72;
      color: var(--text-mid);
      margin-bottom: 36px;
    }

    .contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .contact-detail-icon {
      width: 38px; height: 38px;
      background: #f4f8fc;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--blue); }
    .contact-detail-text {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      color: var(--text-mid);
    }

    .tagline-strip {
      margin-top: 48px;
      padding: 20px 24px;
      background: #f4f8fc;
      border: 1px solid var(--border);
      border-left: 3px solid var(--blue);
    }
    .tagline-strip p {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1.9;
    }
    .tagline-strip p span { color: var(--border); margin: 0 8px; }

    .contact-form { background: #f4f8fc; border: 1px solid var(--border); padding: 44px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: #ffffff;
      border: 1px solid var(--border);
      color: var(--text-dark);
      padding: 12px 16px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.9rem;
      font-weight: 400;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--blue); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #b0c8dc; }
    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      width: 100%;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffffff;
      background: var(--blue-mid);
      border: none;
      padding: 16px;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .form-submit:hover { background: var(--blue-dark); }

    /* ══ FOOTER ══ */
    footer {
      background: var(--navy);
      border-top: 1px solid #1e3a5f;
      padding: 64px 60px 40px;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
    .footer-brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #f0f8ff;
      line-height: 1.1;
    }
    .footer-brand-sub {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.52rem;
      letter-spacing: 0.16em;
      color: #7fa8c9;
      text-transform: uppercase;
    }
    .footer-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: #7fa8c9; }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #6aaed6;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 11px; }
    .footer-col ul li a {
      font-size: 0.85rem;
      font-weight: 300;
      color: #7fa8c9;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #6aaed6; }

    .footer-bottom {
      max-width: 1140px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid #1e3a5f;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      color: #7fa8c9;
      text-transform: uppercase;
    }

    /* ══ PHOTO STRIP ══ */
    .photo-strip {
      background: #ffffff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .photo-strip-inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      height: 380px;
    }

    .photo-strip-item {
      position: relative;
      overflow: hidden;
    }

    .photo-strip-item + .photo-strip-item {
      border-left: 1px solid var(--border);
    }

    .photo-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .photo-strip-item:hover img {
      transform: scale(1.04);
    }

    .photo-strip-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 14px 20px;
      background: rgba(15,30,51,0.82);
      backdrop-filter: blur(4px);
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      color: #6aaed6;
      text-transform: uppercase;
      border-top: 1px solid rgba(74,144,196,0.3);
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow { animation: fadeUp 0.6s ease both; }
    .hero h1      { animation: fadeUp 0.6s ease 0.1s both; }
    .hero-desc    { animation: fadeUp 0.6s ease 0.2s both; }
    .hero-actions { animation: fadeUp 0.6s ease 0.3s both; }

    /* ══ SERVICE AREA MAP ══ */
    #service-area {
      background: var(--bg-page);
      border-top: 1px solid var(--border);
    }

    .map-header { margin-bottom: 12px; }

    .map-subtitle {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-mid);
      margin-top: 8px;
      margin-bottom: 36px;
    }

    .map-wrapper {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      height: 520px;
    }

    #leaflet-map {
      flex: 1;
      height: 100%;
      min-height: 520px;
      z-index: 1;
    }

    .map-panel {
      background: #ffffff;
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .map-panel-header {
      padding: 20px 24px 16px;
      border-bottom: 1px solid var(--border);
      background: var(--navy);
    }

    .map-panel-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #f0f8ff;
    }

    .map-panel-sub {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.56rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #6aaed6;
      margin-top: 4px;
    }

    .map-location-list {
      flex: 1;
      padding: 8px 0;
    }

    .map-loc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 20px;
      border-bottom: 1px solid #eef4fa;
      cursor: pointer;
      transition: background 0.15s;
    }

    .map-loc-item:last-child { border-bottom: none; }
    .map-loc-item:hover { background: #f0f7fc; }
    .map-loc-item.active { background: #eaf4fb; border-left: 3px solid var(--blue); padding-left: 17px; }

    .map-loc-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .map-loc-icon svg { width: 14px; height: 14px; }

    .map-loc-content {}

    .map-loc-type {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.54rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .map-loc-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .map-loc-detail {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--muted);
      margin-top: 2px;
    }

    .map-divider {
      padding: 10px 20px 6px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.54rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--border);
      background: #f9fbfd;
      border-bottom: 1px solid #eef4fa;
      border-top: 1px solid #eef4fa;
    }

    .map-panel-footer {
      padding: 16px 20px;
      border-top: 1px solid var(--border);
      background: var(--bg-alt);
    }

    .map-panel-footer a {
      display: block;
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ffffff;
      background: var(--blue-mid);
      padding: 11px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .map-panel-footer a:hover { background: var(--blue-dark); }

    /* ══ TEAM ══ */
    #team {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .team-intro {
      max-width: 600px;
      margin-bottom: 60px;
    }

    .team-intro p {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-mid);
    }

    /* Owner card — full width, prominent */
    .team-owner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--border);
      margin-bottom: 2px;
      overflow: hidden;
    }

    .team-owner-photo {
      position: relative;
      background: #daeaf7;
      min-height: 320px;
      overflow: hidden;
    }

    .team-owner-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .team-photo-placeholder {
      width: 100%;
      height: 100%;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(135deg, #daeaf7, #c5d8ec);
    }

    .team-photo-placeholder svg { opacity: 0.35; }

    .team-photo-placeholder p {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      color: var(--blue);
      text-transform: uppercase;
      text-align: center;
    }

    .team-owner-bio {
      padding: 44px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .team-role-tag {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .team-role-tag::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--blue);
    }

    .team-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 2.4rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 20px;
    }

    .team-bio {
      font-size: 0.95rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 28px;
    }

    .team-contact-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .team-contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .team-contact-item svg {
      width: 14px;
      height: 14px;
      stroke: var(--blue);
      flex-shrink: 0;
    }

    /* Staff grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      border-top: none;
    }

    .team-card {
      background: var(--white);
      overflow: hidden;
      transition: background 0.2s;
    }

    .team-card:hover { background: #f0f7fc; }

    .team-card-photo {
      position: relative;
      aspect-ratio: 1 / 1;
      background: #daeaf7;
      overflow: hidden;
    }

    .team-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.4s ease;
    }

    .team-card:hover .team-card-photo img { transform: scale(1.04); }

    .team-card-photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #daeaf7, #c5d8ec);
    }

    .team-card-photo-placeholder svg { opacity: 0.3; }

    .team-card-info {
      padding: 20px 24px 24px;
      border-top: 1px solid var(--border);
    }

    .team-card-role {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.56rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 6px;
    }

    .team-card-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .team-card-desc {
      font-size: 0.82rem;
      font-weight: 400;
      line-height: 1.6;
      color: var(--muted);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: 1px solid var(--border);
      cursor: pointer;
      padding: 8px;
      flex-shrink: 0;
      z-index: 200;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text-dark);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 100px;
      left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      z-index: 99;
      padding: 0;
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .mobile-menu ul {
      list-style: none;
      padding: 12px 0;
    }

    .mobile-menu ul li a {
      display: block;
      padding: 16px 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s, color 0.15s;
    }

    .mobile-menu ul li:last-child a { border-bottom: none; }
    .mobile-menu ul li a:hover { background: var(--bg-alt); color: var(--blue); }

    .mobile-menu .mobile-cta {
      display: block;
      margin: 16px 32px 24px;
      padding: 14px;
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #ffffff;
      background: var(--blue-mid);
      text-decoration: none;
      transition: background 0.2s;
    }

    .mobile-menu .mobile-cta:hover { background: var(--blue-dark); }

    /* ══ COOKIE BANNER ══ */
    .cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 999;
      background: var(--navy);
      border-top: 3px solid var(--blue);
      padding: 20px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .cookie-banner.visible { transform: translateY(0); }

    .cookie-banner p {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.65;
      color: #a8c8e0;
      flex: 1;
    }

    .cookie-banner p a {
      color: #6aaed6;
      text-decoration: underline;
    }

    .cookie-banner strong {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #f0f8ff;
      display: block;
      margin-bottom: 4px;
    }

    .cookie-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-accept {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ffffff;
      background: var(--blue-mid);
      border: none;
      padding: 10px 24px;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .cookie-accept:hover { background: var(--blue); }

    .cookie-decline {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #7fa8c9;
      background: transparent;
      border: 1px solid #1e3a5f;
      padding: 10px 20px;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .cookie-decline:hover { border-color: #6aaed6; color: #f0f8ff; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 960px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
      .hero { padding: 130px 32px 160px; min-height: 90vh; }
      .hero-img-area { display: none; }
      .section-inner { padding: 70px 32px; }
      .about-layout, .process-layout, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
      .process-visual { display: none; }
      .cap-grid-top  { grid-template-columns: 1fr; }
      .cap-grid-bottom { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      footer { padding: 44px 32px 32px; }
      .photo-strip-inner { grid-template-columns: 1fr; height: auto; }
      .photo-strip-item { height: 220px; }
      .map-wrapper { grid-template-columns: 1fr; height: auto; }
      #leaflet-map { min-height: 340px; height: 340px; }
      .map-panel { border-left: none; border-top: 1px solid var(--border); max-height: 320px; }
      .map-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
      .map-state-display, .map-stats { grid-column: 1 / -1; }
      .team-owner { grid-template-columns: 1fr; }
      .team-owner-photo { min-height: 240px; }
      .team-owner-bio { padding: 28px 24px; }
      .team-grid { grid-template-columns: 1fr; }
      .photo-strip-item + .photo-strip-item { border-left: none; border-top: 1px solid var(--border); }
      .form-row { grid-template-columns: 1fr; }
      .cookie-banner { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
      .cookie-actions { width: 100%; }
      .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
    }
