:root {
    --ink: #0B1F2E;
    --harbor: #14304A;
    --harbor-light: #1F4566;
    --canopy: #1F4A3C;
    --moss: #22851b;
    --moss-light: #155710;
    --fog: #F4F6F5;
    --paper: #FBFCFB;
    --alert: #82c734;
    --nonuse: #ff4303;
    --line: rgba(11,31,46,0.12);
    --line-soft: rgba(11,31,46,0.07);

    --display: "Fraunces", serif;
    --body: "Inter", system-ui, sans-serif;
    --mono: "JetBrains Mono", monospace;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; }
  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--moss-light);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
  }
  h1, h2, h3 { font-family: var(--display); margin: 0; font-weight: 600; }
  p { line-height: 1.6; margin: 0; }

  /* ===== Header ===== */
  .topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    font-family: var(--mono);
    font-size: 12.5px;
  }
  .topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 28px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a { text-decoration: none; }
  .topbar a:hover { color: #fff; }

  header.main {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,252,251,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line-soft);
  }
  header.main .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    color: var(--harbor);
    text-decoration: none;
    letter-spacing: -0.01em;
  }
  .logo-img {
    height: 38px;
    width: auto;
    display: block;
  }
  .footer-logo-link {
    display: inline-flex;
    background: var(--paper);
    padding: 10px 16px;
    border-radius: 10px;
  }
  .footer-logo-img {
    height: 34px;
  }
  .logo .mark {
    width: 34px; height: 34px;
    border-radius: 8px;
    /* background: linear-gradient(135deg, var(--harbor), var(--canopy)); delete white behind logo */ 
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .logo .mark svg { width: 19px; height: 19px; }
  nav.primary {
    display: flex;
    gap: 30px;
    font-size: 14.5px;
    font-weight: 500;
  }
  nav.primary a { text-decoration: none; color: var(--ink); opacity: 0.78; transition: opacity 0.15s; }
  nav.primary a:hover { opacity: 1; }
  .header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .phone-link {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 14.5px;
    text-decoration: none;
    color: var(--harbor);
    display: none;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
  }
  .nav-toggle svg { width: 19px; height: 19px; }
  .nav-toggle .icon-close { display: none; }
  header.main.nav-open .nav-toggle .icon-open { display: none; }
  header.main.nav-open .nav-toggle .icon-close { display: block; }
  .nav-mobile-panel {
    display: none;
    flex-direction: column;
    padding: 8px 28px 22px;
    border-top: 1px solid var(--line-soft);
  }
  .nav-mobile-panel a {
    text-decoration: none;
    color: var(--ink);
    font-size: 15.5px;
    font-weight: 500;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-mobile-panel a:last-of-type { border-bottom: none; }
  .nav-mobile-panel .phone-link-mobile {
    display: block;
    margin-top: 6px;
    font-family: var(--mono);
    color: var(--harbor);
    font-weight: 600;
  }
  header.main.nav-open .nav-mobile-panel { display: flex; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 7px;
    padding: 11px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    font-family: var(--body);
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--alert); color: #fff; }
  .btn-primary:hover { box-shadow: 0 6px 18px rgba(194,84,46,0.35); }
  .btn-ghost { background: transparent; border-color: var(--line); color: var(--harbor); }
  .btn-ghost:hover { border-color: var(--harbor); }
  .btn-light { background: #fff; color: var(--harbor); }
  .btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
  .btn-outline-light:hover { border-color: #fff; }

  nav.primary { display: none; }
  .nav-toggle { display: flex; }

  @media (min-width: 880px) {
    .phone-link { display: inline; }
    nav.primary { display: flex; }
    .nav-toggle { display: none; }
    .nav-mobile-panel { display: none !important; }
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    background: var(--harbor);
    color: #fff;
    overflow: hidden;
    padding: 0;
  }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 150, 190, 0.85) 0%,
    transparent 45%,
    transparent 60%,
    rgba(11, 31, 46, 1) 100%%
  );
  pointer-events: none;
}
/* This was earlier radial gradient: 
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 85% 15%, rgba(11, 31, 46, 0.9), transparent 45%),
      radial-gradient(circle at 10% 90%, rgba(28, 98, 172, 0.3), transparent 50%);
    pointer-events: none;
  }
*/
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0 60px;
  }
  @media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 24px; }
  }
  .hero-copy .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 22px; }
  .hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.015em;
    max-width: 620px;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: #B7D2C0;
  }
  .hero-sub {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.65;
    max-width: 480px;
    color: rgba(255,255,255,0.78);
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
  }
  .hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 44px;
    flex-wrap: wrap;
  }
  .hero-meta-item {
    font-family: var(--mono);
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
  }
  .hero-meta-item strong {
    display: block;
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
  }

  /* Inspection report card — signature element */
  .report-card {
    position: relative;
    background: var(--paper);
    color: var(--ink);
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
    overflow: hidden;
  }
  .report-card-head {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 20px;
    display: flex;
    justify-content: space-between;
  }
  .report-card-head span:last-child { color: var(--moss-light); }
  .report-photo {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: #C5D3CC;
  }
  .report-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
    display: block;
  }
  .report-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(11,31,46,0.45), transparent);
    pointer-events: none;
  }
  .report-photo .ph-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(11,31,46,0.4);
    background: rgba(255,255,255,0.6);
    padding: 6px 12px;
    border-radius: 100px;
  }
  .report-body { padding: 22px 22px 20px; }
  .report-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
  }
  .report-row:last-child { border-bottom: none; }
  .report-row .label { color: rgba(11,31,46,0.55); }
  .report-row .value { font-family: var(--mono); font-weight: 500; }
  .value.ok { color: var(--moss); }
  .value.flag { color: var(--alert); }

  /* ===== Sections generic ===== */
  section { padding: 88px 0; }
  .section-head {
    max-width: 640px;
    margin-bottom: 56px;
  }
  .section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.12;
    margin-top: 16px;
    letter-spacing: -0.01em;
  }
  .section-head p {
    margin-top: 16px;
    font-size: 16.5px;
    color: rgba(11,31,46,0.65);
  }
  .section-dark { background: var(--ink); color: #fff; }
  .section-dark .section-head p { color: rgba(255,255,255,0.62); }
  .section-tint { background: var(--fog); }

  /* ===== Trust bar ===== */
  .trustbar {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 26px 0;
  }
  .trustbar .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(11,31,46,0.6);
    white-space: nowrap;
  }
  .trust-item strong { color: var(--ink); font-weight: 600; }
  .trust-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--moss); }

  /* ===== Services — findings list ===== */
  .findings {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .finding {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .finding-index {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--moss);
    padding-top: 4px;
  }
  .finding-body h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .finding-body p { color: rgba(11,31,46,0.62); max-width: 640px; }
  .finding-tag {
    font-family: var(--mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--canopy);
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 14px;
    vertical-align: middle;
  }
  .finding-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--harbor);
    text-decoration: none;
  }
  @media (max-width: 600px) {
    .finding { grid-template-columns: 1fr; gap: 8px; }
  }

  /* ===== Aspen section ===== */
  .aspen {
    background: var(--canopy);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .aspen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 45%);
  }
  .aspen-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
  }
  @media (min-width: 920px) {
    .aspen-grid { grid-template-columns: 0.85fr 1.15fr; }
  }
  .aspen-photo {
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #163B2F;
  }
  .aspen-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    display: block;
  }
  .aspen-photo .ph-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 12px;
    border-radius: 100px;
  }
  .aspen-copy .eyebrow { color: rgba(255,255,255,0.6); }
  .aspen-copy h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin-top: 16px;
    line-height: 1.1;
  }
  .aspen-copy p.lead {
    margin-top: 18px;
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
  }
  .aspen-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 28px;
    margin-top: 32px;
  }
  .aspen-stats div strong {
    display: block;
    font-family: var(--display);
    font-size: 24px;
  }
  .aspen-stats div span {
    font-family: var(--mono);
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .aspen-credential {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 16px;
    border-radius: 100px;
  }

  /* ===== Process ===== */
  .process-list {
    display: grid;
    gap: 0;
  }
  .process-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .process-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .process-num {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--moss-light);
    padding-top: 3px;
  }
  .process-item h3 { font-size: 19px; color: #fff; margin-bottom: 6px; font-weight: 600; }
  .process-item p { color: rgba(255,255,255,0.6); max-width: 600px; font-size: 15px; }

  /* ===== Service area ===== */
  .area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
  }
  @media (min-width: 700px) {
    .area-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .area-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .area-item .pin { font-family: var(--mono); font-size: 11px; color: var(--moss); }

  /* ===== Team ===== */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (min-width: 720px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .team-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }
  .team-photo {
    aspect-ratio: 1;
    background:
      repeating-linear-gradient(135deg, rgba(11,31,46,0.05) 0 2px, transparent 2px 14px),
      linear-gradient(160deg, #E1E8E4, #CFDBD3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .team-photo .ph-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(11,31,46,0.4);
  }
  .team-info { padding: 14px 16px 18px; }
  .team-info h3 { font-size: 15.5px; font-weight: 600; }
  .team-info .role {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--moss);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
  }

  /* ===== Blog ===== */
  .blog-teaser {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .blog-teaser:hover {
    border-color: var(--moss);
    box-shadow: 0 14px 32px -16px rgba(11,31,46,0.18);
  }
  @media (min-width: 860px) {
    .blog-teaser { grid-template-columns: 0.85fr 1.15fr; }
  }
  .blog-photo {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: #C5D3CC;
  }
  .blog-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (min-width: 860px) {
    .blog-photo { border-bottom: none; border-right: 1px solid var(--line-soft); aspect-ratio: auto; }
  }
  .blog-photo .ph-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(11,31,46,0.4);
    background: rgba(255,255,255,0.6);
    padding: 6px 12px;
    border-radius: 100px;
    text-align: center;
    max-width: 80%;
  }
  .blog-teaser-body { padding: 32px 32px 36px; }
  .blog-meta {
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(11,31,46,0.5);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .blog-meta .dot-sep { color: var(--line); }
  .blog-teaser-body h3 {
    font-size: 24px;
    line-height: 1.22;
    margin-top: 10px;
    font-weight: 600;
  }
  .blog-excerpt {
    margin-top: 12px;
    font-size: 15.5px;
    color: rgba(11,31,46,0.65);
  }
  .blog-teaser-body .finding-link { margin-top: 18px; }

  /* ===== Blog article page ===== */
  .article-header {
    background: var(--harbor);
    color: #fff;
    padding: 56px 0 48px;
  }
  .article-header .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 18px; }
  .article-header h1 {
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.12;
    max-width: 760px;
    letter-spacing: -0.01em;
  }
  .article-header .blog-meta { color: rgba(255,255,255,0.55); margin-top: 18px; }
  .article-header .blog-meta .dot-sep { color: rgba(255,255,255,0.25); }
  .article-byline {
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }
  .article-hero-photo {
    aspect-ratio: 21/9;
    overflow: hidden;
    background: #C5D3CC;
  }
  .article-hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    display: block;
  }
  .article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 28px 80px;
  }
  .article-body .blog-content p { font-size: 16.5px; line-height: 1.72; }
  .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--harbor);
    text-decoration: none;
    margin-bottom: 28px;
  }
  .article-footer-cta {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .blog-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
  }
  .blog-content p {
    font-size: 15px;
    color: rgba(11,31,46,0.72);
    margin-bottom: 14px;
  }
  .blog-content h4 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 600;
    margin: 22px 0 10px;
    color: var(--ink);
  }
  .blog-content strong { color: var(--ink); font-weight: 600; }

  /* ===== Reviews ===== */
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) {
    .review-grid { grid-template-columns: 1fr; }
  }
  .review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px;
  }
  .review-stars {
    font-family: var(--mono);
    color: var(--alert);
    font-size: 14px;
    letter-spacing: 2px;
  }
  .review-card p.quote {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(11,31,46,0.75);
  }
  .review-source {
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(11,31,46,0.45);
    display: flex;
    justify-content: space-between;
  }

  /* ===== CTA band ===== */
  .cta-band {
    background: var(--harbor);
    color: #fff;
    border-radius: 18px;
    padding: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(60,110,88,0.5), transparent 50%);
  }
  .cta-band h2 { position: relative; font-size: clamp(24px, 3vw, 32px); max-width: 460px; line-height: 1.2; }
  .cta-actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

  /* ===== Quick contact form ===== */
  .contact-form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  @media (min-width: 880px) {
    .contact-form-card { grid-template-columns: 0.85fr 1.15fr; padding: 56px; }
  }
  .contact-form-intro h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    margin-top: 14px;
    line-height: 1.15;
  }
  .contact-form-intro p {
    margin-top: 14px;
    font-size: 15.5px;
    color: rgba(11,31,46,0.62);
    max-width: 380px;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .form-row label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(11,31,46,0.55);
  }
  .form-row input,
  .form-row textarea {
    font-family: var(--body);
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .form-row input:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--harbor);
    box-shadow: 0 0 0 3px rgba(20,48,74,0.12);
  }
  .form-row textarea { resize: vertical; min-height: 100px; }
  .contact-form .btn { align-self: flex-start; margin-top: 4px; }

  /* Honeypot — visually hidden from sighted users without display:none,
     since some unsophisticated bots specifically skip display:none fields.
     Off-screen positioning keeps the field present and "visible" in the DOM
     while remaining invisible and unreachable to real visitors. */
  .botcheck-label {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* ===== Footer ===== */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 28px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  .footer-brand .logo { color: #fff; margin-bottom: 14px; }
  .footer-brand p { max-width: 280px; color: rgba(255,255,255,0.5); font-size: 14px; }
  footer h4 {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    font-weight: 500;
  }
  footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  footer a { text-decoration: none; color: rgba(255,255,255,0.65); }
  footer a:hover { color: #fff; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ===== Thank You page ===== */
  .thankyou-content {
    max-width: 680px;
    padding: 80px 0 72px;
  }
  .thankyou-content .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 22px; }
  .thankyou-content h1 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.015em;
  }
  .process-list-light .process-item-light {
    border-top-color: var(--line);
  }
  .process-list-light .process-item-light:last-child {
    border-bottom-color: var(--line);
  }
  .process-num-light {
    color: var(--moss) !important;
  }
  .process-item-light h3 { color: var(--ink) !important; }
  .process-item-light p { color: rgba(11,31,46,0.62) !important; }

  .sr-only {
    position: absolute; left: -9999px;
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; animation: none !important; }
  }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--moss);
    outline-offset: 2px;
  }
