:root {
      --navy: #194f82;
      --navy-deep: #0f3558;
      --yellow: #f9c23d;
      --yellow-hot: #ffd060;
      --ink: #1d1f25;
      --muted: #5c6570;
      --cream: #f7f5f0;
      --paper: #fffdf8;
      --line: rgba(25, 79, 130, 0.14);
      --font-display: "Bricolage Grotesque", Georgia, serif;
      --font-body: "Source Sans 3", system-ui, sans-serif;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }
    body {
      margin: 0;
      overflow-x: clip;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* —— Header —— */
    .site-header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      width: 100%;
      max-width: 100%;
      padding: 1.1rem clamp(1rem, 4vw, 3rem);
    }
    .brand {
      display: flex;
      align-items: center;
    }
    .brand img {
      display: block;
      height: clamp(2.1rem, 4.2vw, 2.75rem);
      width: auto;
      border-radius: 0;
      object-fit: contain;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 1.35rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.88);
    }
    .nav a:hover { color: var(--yellow); }
    .nav-cta {
      border: 1.5px solid var(--yellow);
      color: var(--yellow) !important;
      padding: 0.45rem 0.9rem;
    }
    .nav-cta:hover {
      background: var(--yellow);
      color: var(--navy-deep) !important;
    }
    .nav-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.35);
      color: #fff;
      padding: 0.4rem 0.65rem;
      font: inherit;
      cursor: pointer;
    }

    /* —— Hero —— */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: end;
      color: #fff;
      overflow: hidden;
      background: var(--navy-deep);
    }
    .hero-media {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      max-width: none;
      object-fit: cover;
      object-position: 70% center;
      transform: scale(1.02);
      transform-origin: center center;
      animation: ken 18s ease-in-out infinite alternate;
      will-change: transform;
    }
    @keyframes ken {
      from { transform: scale(1.02) translate3d(0,0,0); }
      to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15,53,88,0.88) 0%, rgba(15,53,88,0.55) 38%, rgba(15,53,88,0.18) 68%, rgba(15,53,88,0.28) 100%),
        linear-gradient(180deg, rgba(15,53,88,0.45) 0%, rgba(15,53,88,0.12) 42%, rgba(15,53,88,0.78) 100%);
    }
    .hero-copy {
      position: relative;
      z-index: 2;
      padding: clamp(6.5rem, 14vh, 9rem) clamp(1rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem);
      max-width: 44rem;
    }
    .hero-copy .eyebrow {
      display: inline-block;
      color: var(--yellow);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      margin: 0 0 0.85rem;
      text-transform: uppercase;
    }
    .hero h1 span { color: var(--yellow); }
    .hero .lede {
      font-size: clamp(1.02rem, 1.85vw, 1.2rem);
      font-weight: 500;
      line-height: 1.55;
      color: rgba(255,255,255,0.9);
      max-width: 36rem;
      margin: 0 0 1.6rem;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.85rem 1.35rem;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      background: var(--yellow);
      color: var(--navy-deep);
    }
    .btn-primary:hover { background: var(--yellow-hot); }
    .btn-ghost {
      background: transparent;
      color: #fff;
      border-color: rgba(255,255,255,0.55);
    }
    .btn-ghost:hover {
      border-color: var(--yellow);
      color: var(--yellow);
    }

    /* —— Sections —— */
    .wrap {
      width: min(68rem, calc(100% - 2rem));
      margin-inline: auto;
    }
    section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
    .section-kicker {
      color: var(--navy);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin: 0 0 0.65rem;
    }
    .section-kicker::after {
      content: "";
      display: block;
      width: 2.5rem;
      height: 3px;
      background: var(--yellow);
      margin-top: 0.55rem;
    }
    h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.75rem, 3.5vw, 2.55rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin: 0 0 0.75rem;
    }
    .section-intro {
      max-width: 38rem;
      color: var(--muted);
      font-size: 1.05rem;
      margin: 0 0 2.25rem;
    }

    /* Trust strip — one job */
    .trust {
      background: var(--navy);
      color: #fff;
      padding: 1.25rem 0;
    }
    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      text-align: center;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .trust-row span {
      display: block;
      color: var(--yellow);
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 0.15rem;
    }

    /* Service tiles — horizontal row */
    .services { background: var(--paper); }
    .service-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.15rem;
    }
    .service {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem 1.35rem 1.4rem;
      background: #fff;
      border: 1px solid var(--line);
      border-top: 4px solid var(--yellow);
      min-height: 100%;
    }
    .service h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      margin: 0;
      color: var(--navy);
      line-height: 1.2;
    }
    .service p {
      margin: 0;
      color: var(--muted);
      flex: 1;
      font-size: 0.98rem;
    }
    .service a {
      color: var(--navy);
      font-weight: 700;
      font-size: 0.9rem;
      width: fit-content;
      border-bottom: 2px solid var(--yellow);
      padding-bottom: 0.1rem;
      margin-top: 0.35rem;
    }
    .service a:hover { color: var(--navy-deep); }

    /* Areas */
    .areas { background: var(--cream); }
    .area-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }
    .area-cloud span {
      background: #fff;
      border: 1px solid var(--line);
      padding: 0.45rem 0.85rem;
      font-weight: 600;
      color: var(--navy);
      font-size: 0.92rem;
    }

    /* Reviews — editorial quotes */
    .reviews { background: var(--navy-deep); color: #fff; }
    .reviews h2 { color: #fff; }
    .reviews .section-kicker { color: var(--yellow); }
    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .quote {
      padding: 0;
      margin: 0;
      border-top: 3px solid var(--yellow);
      padding-top: 1.1rem;
    }
    .quote p {
      font-size: 1.05rem;
      line-height: 1.55;
      margin: 0 0 1rem;
      color: rgba(255,255,255,0.92);
    }
    .quote footer {
      font-weight: 700;
      color: var(--yellow);
      font-size: 0.9rem;
    }

    /* Contact band */
    .contact {
      background:
        radial-gradient(ellipse at 80% 20%, rgba(249,194,61,0.18), transparent 45%),
        var(--navy);
      color: #fff;
    }
    .contact h2 { color: #fff; }
    .contact .section-kicker { color: var(--yellow); }
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: start;
    }
    .contact-map-col {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .contact-map-intro {
      flex: 0 0 auto;
    }
    .contact-map-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 1.85rem);
      font-weight: 800;
      text-align: center;
      margin: 0 0 0.65rem;
    }
    .contact-map-towns {
      text-align: center;
      font-size: 0.88rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.82);
      margin: 0 0 1rem;
    }
    .contact-map {
      margin: 0;
      flex: 1 1 auto;
      min-height: 12rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .contact-map img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.12);
    }
    .contact-form-col {
      display: grid;
      gap: 0;
      align-content: start;
    }
    .contact-form-col .contact-form {
      margin-top: 1rem;
    }
    .contact-details {
      font-size: 1.15rem;
      margin: 1rem 0 1.5rem;
    }
    .contact-details a {
      color: var(--yellow);
      font-weight: 700;
    }
    .contact form {
      display: grid;
      gap: 0.75rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 1.25rem;
    }
    .contact label {
      display: grid;
      gap: 0.3rem;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .contact input,
    .contact textarea {
      font: inherit;
      width: 100%;
      max-width: 100%;
      padding: 0.7rem 0.8rem;
      border: none;
      background: #fff;
      color: var(--ink);
    }
    .contact textarea { min-height: 7rem; resize: vertical; }
    .contact .btn-primary { width: fit-content; margin-top: 0.25rem; }

    footer.site-foot {
      background: #0a243c;
      color: rgba(255,255,255,0.65);
      padding: 1.5rem clamp(1rem, 4vw, 3rem);
      font-size: 0.85rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
    }
    footer.site-foot strong { color: #fff; }

    @media (max-width: 860px) {
      .nav { display: none; }
      .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        background: var(--navy-deep);
        padding: 1rem;
        border: 1px solid rgba(255,255,255,0.15);
      }
      .nav-toggle { display: inline-block; }
      .trust-row,
      .quote-grid,
      .contact-grid,
      .service-list { grid-template-columns: 1fr; }
      .service { min-height: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-media img { animation: none; }
      .btn:hover { transform: none; }
      html { scroll-behavior: auto; }
    }

.review-cta { margin-top: 1.75rem; color: rgba(255,255,255,0.85); }
.review-cta a { color: var(--yellow); font-weight: 700; }
.contact-note { color: rgba(255,255,255,0.75); max-width: 28rem; }
.contact-form .hp {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.form-status {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.ok { color: #b8f0c2; }
.form-status.err { color: #ffd0d0; }
.contact-form.is-sending .btn-primary { opacity: 0.7; pointer-events: none; }
