    :root {
      --steel: #1c3d5a;
      --steel-deep: #12283c;
      --amber: #e08a00;
      --amber-hover: #c47800;
      --off: #f5f7fa;
      --card: #ffffff;
      --ink: #1a2330;
      --muted: #5b6775;
      --line: #d7dee8;
      --ok: #1b7a4a;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--ink);
      background: var(--off);
      line-height: 1.55;
    }
    a { color: inherit; }
    img { max-width: 100%; display: block; }
    .wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
    header {
      position: sticky; top: 0; z-index: 40;
      background: var(--steel); color: #fff;
      box-shadow: 0 1px 0 rgba(0,0,0,.12);
    }
    .hdr {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; padding: 12px 0; min-height: 64px;
    }
    .wordmark {
      font-weight: 700; letter-spacing: .02em; line-height: 1.15;
      text-decoration: none; color: #fff;
    }
    .wordmark small {
      display: block; font-weight: 600; font-size: 11px;
      letter-spacing: .14em; text-transform: uppercase; color: #c9d6e4;
    }
    .wordmark span { font-size: 15px; }
    nav { display: none; gap: 18px; font-size: 14px; }
    nav a { color: #e8eef4; text-decoration: none; }
    nav a:hover { color: #fff; }
    .hdr-cta { display: flex; gap: 8px; flex-shrink: 0; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px; padding: 10px 16px; border-radius: 8px; font-weight: 700;
      font-size: 14px; text-decoration: none; border: 0; cursor: pointer;
      line-height: 1.2;
    }
    .btn-amber { background: var(--amber); color: #fff; }
    .btn-amber:hover { background: var(--amber-hover); }
    .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
    .btn-ghost:hover { background: rgba(255,255,255,.08); }
    .btn-steel { background: var(--steel); color: #fff; }
    .btn-steel:hover { background: var(--steel-deep); }
    .btn-lg { padding: 14px 22px; font-size: 16px; }
    .hero {
      position: relative; isolation: isolate; overflow: hidden;
      color: #fff; padding: 48px 0 56px; min-height: 420px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .hero .wrap { width: min(1120px, calc(100% - 32px)); }
    .hero-bg {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 62%; z-index: -2;
    }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: -1;
      background: linear-gradient(105deg, rgba(18,40,60,.92) 0%, rgba(28,61,90,.78) 52%, rgba(18,40,60,.48) 100%);
    }
    .hero-grid { display: grid; gap: 22px; align-items: center; }
    .hero-shot {
      margin: 0; border-radius: 14px; overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.18);
    }
    .hero-shot img { width: 100%; height: 240px; object-fit: cover; }
    .hero h1 {
      font-size: clamp(28px, 5vw, 44px); line-height: 1.12;
      max-width: 18ch; margin: 12px 0 14px; letter-spacing: -.02em;
    }
    .kicker {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(224,138,0,.18); border: 1px solid rgba(224,138,0,.55);
      color: #ffd38a; font-size: 12px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 6px 10px; border-radius: 999px;
    }
    .hero p.lede { font-size: 18px; color: #d5e0eb; max-width: 42ch; margin-bottom: 22px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
    .trust {
      background: #fff; border-bottom: 1px solid var(--line);
      padding: 16px 0;
    }
    .trust-row {
      display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center;
      justify-content: space-between; font-size: 14px; color: var(--muted);
    }
    .trust-item { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--steel); }
    .stars { color: var(--amber); letter-spacing: 1px; }
    section { padding: 56px 0; }
    h2 { font-size: clamp(24px, 3.4vw, 32px); color: var(--steel); letter-spacing: -.02em; margin-bottom: 8px; }
    .sub { color: var(--muted); margin-bottom: 28px; max-width: 58ch; }
    .grid-3 { display: grid; grid-template-columns: 1fr; gap: 14px; }
    .card {
      background: var(--card); border: 1px solid var(--line); border-radius: 12px;
      padding: 20px;
    }
    .svc-photos {
      display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 22px;
    }
    .svc-photos figure {
      margin: 0; background: var(--card); border: 1px solid var(--line);
      border-radius: 12px; overflow: hidden;
    }
    .svc-photos img { width: 100%; height: 200px; object-fit: cover; }
    .svc-photos figcaption {
      padding: 10px 14px 14px; font-size: 13px; font-weight: 600; color: var(--steel);
    }
    .card.photo { padding: 0; overflow: hidden; }
    .card.photo img { width: 100%; height: 148px; object-fit: cover; }
    .card.photo .pad { padding: 16px 20px 20px; }
    .about-photo {
      margin: 0 0 14px; border-radius: 12px; overflow: hidden;
      border: 1px solid var(--line); background: #fff;
    }
    .about-photo img { width: 100%; height: 260px; object-fit: cover; object-position: center 55%; }
    .about-photo figcaption {
      padding: 10px 14px 12px; font-size: 13px; color: var(--muted);
    }
    .card h3 { font-size: 17px; color: var(--steel); margin: 8px 0 6px; }
    .card p { color: var(--muted); font-size: 15px; }
    .icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: #eef3f8; color: var(--steel);
      display: flex; align-items: center; justify-content: center;
    }
    .icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .pill {
      background: #fff; border: 1px solid var(--line); color: var(--steel);
      padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 600;
    }
    .reviews { background: #fff; }
    .quote { font-size: 15.5px; color: var(--ink); }
    .quote footer { margin-top: 14px; font-size: 13px; color: var(--muted); }
    .quote footer strong { color: var(--steel); display: block; font-size: 14px; }
    .about { display: grid; gap: 24px; }
    .about .card { padding: 28px; }
    .faqs { background: #fff; }
    details {
      background: var(--off); border: 1px solid var(--line); border-radius: 10px;
      padding: 14px 16px; margin-bottom: 10px;
    }
    summary { cursor: pointer; font-weight: 700; color: var(--steel); list-style: none; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; float: right; color: var(--amber); font-weight: 700; }
    details[open] summary::after { content: "–"; }
    details p { margin-top: 10px; color: var(--muted); font-size: 15px; }
    #quote { background: var(--steel); color: #fff; }
    #quote h2, #quote .sub { color: #fff; }
    #quote .sub { color: #c9d6e4; }
    form {
      background: #fff; color: var(--ink); border-radius: 14px; padding: 22px;
      display: grid; gap: 12px;
    }
    label { font-size: 13px; font-weight: 700; color: var(--steel); display: grid; gap: 6px; }
    input, select, textarea {
      font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px;
      background: var(--off); color: var(--ink);
    }
    textarea { min-height: 96px; resize: vertical; }
    .row-2 { display: grid; gap: 12px; }
    .thanks {
      display: none; background: #fff; color: var(--ink); border-radius: 14px;
      padding: 28px; text-align: center;
    }
    .thanks h3 { color: var(--ok); margin-bottom: 8px; }
    .site-footer {
      background: var(--steel-deep); color: #c9d6e4; padding: 32px 0 24px; font-size: 14px;
    }
    .site-footer a { color: #fff; }
    .site-footer strong { color: #fff; }
    .foot-grid { display: grid; gap: 18px; margin-bottom: 22px; }
    .disclaimer {
      border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px;
      font-size: 12px; color: #9aabbc;
    }
    @media (min-width: 720px) {
      nav { display: flex; }
      .grid-3 { grid-template-columns: repeat(3, 1fr); }
      .row-2 { grid-template-columns: 1fr 1fr; }
      .about { grid-template-columns: 1.1fr .9fr; align-items: start; }
      .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
      .hero { padding: 72px 0 80px; min-height: 520px; }
      .hero-grid { grid-template-columns: 1.08fr .92fr; }
      .hero-shot img { height: 360px; }
      .svc-photos { grid-template-columns: 1fr 1fr; }
      .svc-photos img { height: 230px; }
      .wordmark span { font-size: 17px; }
    }
