    :root {
      /* Logo-inspired: full carbon canvas + sky cyan + white */
      --primary: #57b9dc;
      --primary-active: #3aa3c9;
      --primary-deep: #2a8fb0;
      --ink: #ffffff;
      --body: #c6c8d0;
      --body-strong: #ffffff;
      --muted: #9a9cac;
      --muted-soft: #7a7c8a;
      --hairline: rgba(255, 255, 255, 0.12);
      --hairline-strong: rgba(255, 255, 255, 0.22);
      --canvas: #1a1b22;
      --surface-soft: #1a1b22;
      --surface-card: #22232d;
      --surface-strong: #2a2b36;
      --surface-dark: #1a1b22;
      --surface-dark-elevated: #22232d;
      --on-primary: #1e1f28;
      --on-dark: #ffffff;
      --on-dark-soft: #c6c8d0;
      --carbon: #1a1b22;
      --accent-on-dark: #79b2c6;
      --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      --section: 80px;
      --gutter: clamp(1.25rem, 4vw, 2.5rem);
      --max: 90rem;
      --nav-h: 7.5rem;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    body {
      margin: 0;
      font-family: var(--font);
      font-size: 16px;
      font-weight: 300;
      line-height: 1.55;
      color: var(--body);
      background: var(--carbon);
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: 0; background: none; }
    ::selection { background: var(--primary); color: var(--on-primary); }
    input, textarea { caret-color: var(--primary); }
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: var(--carbon); }
    ::-webkit-scrollbar-thumb { background: var(--surface-strong); }
    ::-webkit-scrollbar-thumb:hover { background: var(--primary-deep); }
    summary { cursor: pointer; list-style: none; }
    summary::-webkit-details-marker { display: none; }

    .wrap {
      width: min(100% - var(--gutter) * 2, var(--max));
      margin-inline: auto;
    }

    /* —— Nav (carbon full-width strip) —— */
    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem 1rem;
      width: 100%;
      min-height: var(--nav-h);
      padding: 1.15rem var(--gutter);
      color: var(--on-dark);
      background: var(--carbon);
    }

    .nav__brand { margin-right: auto; }
    .nav__brand img { height: 5.125rem; width: auto; }

    .nav__links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.75rem 1.1rem;
      font-size: 0.9375rem;
      font-weight: 400;
      letter-spacing: 0.3px;
      flex: 1 0 100%;
      order: 3;
    }
    .nav__links a { color: var(--on-dark-soft); transition: color 160ms ease; }
    .nav__links a:hover,
    .nav__links a:focus-visible { color: var(--on-dark); }

    .nav__call {
      flex-shrink: 0;
      order: 2;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      white-space: nowrap;
      color: var(--on-primary);
      background: var(--primary);
      padding: 0.7rem 1.05rem;
    }
    .nav__call:hover { background: var(--primary-active); color: var(--on-primary); }
    .nav__links a[aria-current="page"] { color: var(--on-dark); }

    .nav__toggle {
      display: none;
      order: 3;
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      padding: 0;
      border: 1px solid var(--hairline-strong);
      background: transparent;
      color: var(--on-dark);
      cursor: pointer;
    }
    .nav__toggle:hover,
    .nav__toggle:focus-visible {
      border-color: var(--primary);
      color: var(--primary);
    }
    .nav__bars {
      position: relative;
      display: block;
      width: 1.125rem;
      height: 2px;
      margin: 0 auto;
      background: currentColor;
    }
    .nav__bars::before,
    .nav__bars::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: currentColor;
      transition: top 180ms ease, transform 180ms ease;
    }
    .nav__bars::before { top: -0.375rem; }
    .nav__bars::after { top: 0.375rem; }
    .nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
    .nav__toggle[aria-expanded="true"] .nav__bars::before { top: 0; transform: rotate(45deg); }
    .nav__toggle[aria-expanded="true"] .nav__bars::after { top: 0; transform: rotate(-45deg); }

    .skip {
      position: absolute;
      left: 0.75rem;
      top: 0.75rem;
      z-index: 40;
      padding: 0.65rem 0.9rem;
      background: var(--primary);
      color: var(--on-primary);
      font-size: 0.875rem;
      font-weight: 700;
      transform: translateY(-200%);
    }
    .skip:focus { transform: none; }

    @media (min-width: 1100px) {
      .nav__links {
        flex: 1 1 auto;
        order: 1;
        width: auto;
      }
    }
    @media (max-width: 700px) {
      :root { --nav-h: 5.25rem; }
      /* Logo, CTA and toggle have to share one row down to ~360px. */
      .nav { padding: 0.85rem var(--gutter); gap: 0.5rem; }
      .nav__brand img { height: 2.4rem; }
      .nav__call { padding: 0.65rem 0.85rem; }
      .nav__links { display: none; }
      .nav__toggle { display: grid; place-items: center; }

      .nav.is-open .nav__links {
        display: flex;
        flex: 1 0 100%;
        order: 4;
        flex-direction: column;
        gap: 0;
        margin-top: 0.35rem;
        border-top: 1px solid var(--hairline);
        font-size: 1rem;
      }
      .nav.is-open .nav__links a {
        display: flex;
        align-items: center;
        min-height: 3rem;
        padding: 0 0.125rem;
        border-bottom: 1px solid var(--hairline);
        color: var(--on-dark);
      }
      .nav.is-open .nav__links a:last-child { border-bottom: 0; }
      .nav.is-open .nav__links a[aria-current="page"] { color: var(--primary); }
    }
    @media (max-width: 400px) {
      :root { --gutter: 1rem; }
      .nav__brand img { height: 2.25rem; }
    }

    /* —— Buttons —— */
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3rem;
      padding: 0.85rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      border-radius: 0;
      transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
    }
    .btn:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }
    .btn--primary {
      background: var(--primary);
      color: var(--on-primary);
    }
    .btn--primary:hover { background: var(--primary-active); }
    .btn--ghost {
      background: transparent;
      color: var(--on-dark);
      border: 1px solid rgba(255, 255, 255, 0.65);
    }
    .btn--ghost:hover {
      border-color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
    }
    .btn--outline {
      background: transparent;
      color: var(--on-dark);
      border: 1px solid rgba(255, 255, 255, 0.55);
      font-size: 0.75rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      min-height: 2.5rem;
      padding: 0.6rem 0.9rem;
    }
    .btn--outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #ffffff;
      color: var(--on-dark);
    }
    .btn--sm { align-self: flex-start; }

    /* —— Hero —— */
    .hero {
      position: relative;
      min-height: calc(100svh - var(--nav-h));
      display: grid;
      align-items: end;
      color: var(--on-dark);
      overflow: hidden;
      background: var(--surface-dark);
    }
    .hero__media { position: absolute; inset: 0; }
    .hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 28% 62%;
      transform: scale(1.03);
      animation: hero-settle 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero__shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(26, 27, 34, 0.28) 0%, rgba(26, 27, 34, 0.12) 38%, rgba(26, 27, 34, 0.88) 100%),
        linear-gradient(90deg, rgba(26, 27, 34, 0.42) 0%, transparent 52%);
    }
    .hero__content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 0 clamp(3rem, 8vw, 5rem);
      animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .hero__copy {
      padding-inline: var(--gutter);
      max-width: 42rem;
    }
    .hero__headline {
      margin: 0 0 0.85rem;
      font-size: clamp(2.25rem, 5.5vw, 4rem);
      font-weight: 700;
      line-height: 1.05;
      color: var(--on-dark);
      max-width: 22ch;
    }
    .hero__lede {
      margin: 0 0 1.75rem;
      font-size: 1.0625rem;
      font-weight: 300;
      line-height: 1.55;
      color: var(--on-dark-soft);
      max-width: 48ch;
    }

    /* —— Sections —— */
    .section {
      padding-block: var(--section);
      background: var(--canvas);
      scroll-margin-top: calc(var(--nav-h) + 0.5rem);
    }
    .section--soft { background: var(--surface-soft); }
    .section--dark {
      background: var(--surface-dark);
      color: var(--on-dark);
    }

    .section__eyebrow {
      margin: 0 0 0.65rem;
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--primary);
    }
    .section--dark .section__eyebrow { color: var(--accent-on-dark); }
    .section__eyebrow a { color: inherit; }
    .section__eyebrow a:hover,
    .section__eyebrow a:focus-visible { color: var(--ink); }

    .section__title {
      margin: 0 0 0.75rem;
      font-size: clamp(1.85rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--ink);
      max-width: 18ch;
    }
    .section--dark .section__title { color: var(--on-dark); }

    .section__lede {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 46ch;
    }
    .section--dark .section__lede { color: var(--on-dark-soft); }

    .reveal {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .section.is-in .reveal { opacity: 1; transform: none; }

    /* —— Why —— */
    #why .section__title { max-width: 22ch; }
    #why .section__lede { max-width: 52ch; }

    .why-grid {
      margin-top: 2.75rem;
      display: grid;
      gap: 1px;
      background: var(--hairline);
      border: 1px solid var(--hairline);
      grid-template-columns: 1fr;
    }
    @media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

    .why-card {
      background: var(--surface-card);
      padding: 1.75rem 1.45rem 1.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      min-height: 100%;
    }
    .why-card__num {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--primary);
      line-height: 1;
    }
    .why-card h3 {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.25;
      color: var(--ink);
    }
    .why-card p {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 300;
      line-height: 1.5;
      color: var(--muted);
    }

    /* —— Services —— */
    .service-grid {
      margin-top: 2.75rem;
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }
    /* Five cards, so each breakpoint needs a split that leaves no orphan cell. */
    @media (min-width: 640px) {
      .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-grid > :nth-child(5) { grid-column: span 2; }
      /* Full-width card: a letterbox crop keeps its photo level with the row above. */
      .service-grid > :nth-child(5) .service-card__media { aspect-ratio: 8 / 3; }
    }
    @media (min-width: 1040px) {
      /* Six tracks divide evenly by both three and two. */
      .service-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
      .service-grid > * { grid-column: span 2; }
      .service-grid > :nth-child(4),
      .service-grid > :nth-child(5) { grid-column: span 3; }
      /* Wider cards need a shallower crop or their photos tower over row one. */
      .service-grid > :nth-child(4) .service-card__media,
      .service-grid > :nth-child(5) .service-card__media { aspect-ratio: 16 / 9; }
    }
    @media (min-width: 1340px) {
      .service-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .service-grid > *,
      .service-grid > :nth-child(4),
      .service-grid > :nth-child(5) { grid-column: auto; }
      .service-grid > :nth-child(4) .service-card__media,
      .service-grid > :nth-child(5) .service-card__media { aspect-ratio: 4 / 3; }
    }

    .service-card {
      display: flex;
      flex-direction: column;
      background: var(--surface-card);
      min-height: 100%;
    }
    .service-card__media {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--surface-strong);
    }
    .service-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 500ms ease;
    }
    .service-card:hover .service-card__media img { transform: scale(1.03); }
    /* Upright shot where the subject sits above centre. */
    .service-card__media--high img { object-position: center 36%; }
    .service-card__body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.25rem 1.15rem 1.35rem;
      flex: 1;
      background: var(--surface-card);
    }
    .service-card h3 {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
    }
    .service-card p {
      margin: 0;
      flex: 1;
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--muted);
    }
    a.service-card { color: inherit; }
    a.service-card:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 3px;
    }
    .service-card__tags {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.45;
    }

    /* —— Trust strip —— */
    .trust {
      background: var(--surface-card);
      border-bottom: 1px solid var(--hairline);
      padding: 1.15rem 0;
    }
    .trust__list {
      display: grid;
      /* One per row until each claim fits on a single line at two-up. */
      grid-template-columns: 1fr;
      gap: 0.7rem 1.25rem;
      /* Block-only reset: `margin: 0` would kill the inline auto margins that
         .wrap uses to line this strip up with the rest of the page. */
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }
    @media (min-width: 560px) {
      .trust__list {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (min-width: 1100px) {
      .trust__list {
        grid-template-columns: repeat(4, max-content);
        justify-content: space-between;
        gap: 0 1.5rem;
      }
      .trust__list li {
        white-space: nowrap;
      }
    }
    .trust__list li {
      display: flex;
      /* Baseline, not centre: keeps the tick on the first line if a claim wraps. */
      align-items: baseline;
      gap: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
    }
    .trust__list li::before {
      content: "✔";
      color: var(--primary);
      font-size: 0.95rem;
      line-height: 1;
    }

    /* —— Inner service pages —— */
    .page-hero {
      padding: clamp(2.5rem, 6vw, 4.5rem) 0 2.5rem;
      background: var(--canvas);
      border-bottom: 1px solid var(--hairline);
    }
    .page-hero h1 {
      margin: 0 0 0.75rem;
      font-size: clamp(2rem, 4.5vw, 3.25rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--ink);
      max-width: 16ch;
    }
    .page-hero p {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 46ch;
    }
    .page-body {
      display: grid;
      gap: 2rem;
      margin-top: 2.5rem;
    }
    @media (min-width: 860px) {
      .page-body {
        grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
        align-items: start;
        gap: 3rem;
      }
    }
    .page-body ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.85rem;
    }
    .page-body li {
      padding-left: 1.25rem;
      position: relative;
      font-weight: 300;
      color: var(--body);
    }
    .page-body li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.8rem;
    }
    .page-prose p {
      margin: 0 0 1.1rem;
      max-width: 58ch;
      font-weight: 300;
      line-height: 1.65;
      color: var(--body);
    }
    /* Scoped past `.page-prose p`, which otherwise wins on specificity. */
    .page-prose p.page-prose__kicker {
      margin-top: 1.75rem;
      padding-left: 0.9rem;
      border-left: 2px solid var(--primary);
      font-weight: 700;
      color: var(--ink);
    }
    .page-prose p.page-prose__lead-in {
      margin-bottom: 0.9rem;
      font-weight: 700;
      color: var(--ink);
    }
    .page-prose ul {
      max-width: 58ch;
      margin-bottom: 1.4rem;
    }
    .page-photo {
      width: min(100%, 26rem);
      margin-inline: auto;
      background: var(--surface-strong);
      border: 1px solid var(--hairline);
    }
    @media (min-width: 860px) {
      .page-photo { margin-inline: 0; }
    }
    .page-photo img {
      display: block;
      width: 100%;
      height: auto;
    }
    .page-cta {
      margin-top: 2rem;
    }

    /* —— Premium outdoor-lighting detail —— */
    .service-detail {
      padding: clamp(3.5rem, 7vw, 7rem) 0;
      background: var(--canvas);
      border-top: 1px solid var(--hairline);
    }
    .service-detail__grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    .service-detail__copy {
      max-width: 47rem;
    }
    .service-detail h1 {
      max-width: 13ch;
      margin: 0 0 1.25rem;
      font-size: clamp(2.75rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--ink);
    }
    .service-detail__lede {
      max-width: 50ch;
      margin: 0;
      font-size: clamp(1.125rem, 1.5vw, 1.25rem);
      font-weight: 300;
      line-height: 1.6;
      color: var(--muted);
    }
    .service-detail__list {
      display: grid;
      gap: 1.05rem;
      margin: 2.25rem 0 0;
      padding: 0;
      list-style: none;
    }
    .service-detail__list li {
      position: relative;
      padding-left: 1.5rem;
      font-size: 1.0625rem;
      font-weight: 300;
      line-height: 1.5;
      color: var(--body);
    }
    .service-detail__list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 700;
    }
    .service-detail__cta {
      margin-top: 2.5rem;
    }
    .service-detail__cta .btn {
      min-height: 3.4rem;
      padding: 1rem 1.5rem;
      font-size: 0.9375rem;
    }
    .service-detail__photo {
      width: min(100%, 472px);
      margin: 0 auto;
      overflow: hidden;
      background: var(--surface-card);
      border: 1px solid var(--hairline);
      border-radius: 8px;
    }
    .service-detail__photo img {
      display: block;
      width: 100%;
      height: auto;
    }
    .service-detail__photo figcaption {
      padding: 0.9rem 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--muted);
    }
    @media (min-width: 920px) {
      .service-detail__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 472px);
        gap: clamp(3rem, 6vw, 6rem);
      }
      .service-detail__photo { margin: 0; }
    }

    /* —— Work —— */
    .work-grid {
      width: min(100%, 60.25rem);
      margin-top: 2.75rem;
      margin-inline: auto;
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 720px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1080px) {
      .work-grid {
        width: min(100%, 72rem);
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .work-item {
      position: relative;
      overflow: hidden;
      background: var(--surface-dark);
    }
    .work-item > a { display: block; }
    .work-item img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      transition: transform 500ms ease;
    }
    .work-item:hover img { transform: scale(1.03); }
    .work-item figcaption {
      position: absolute;
      inset: auto 0 0;
      padding: 1.1rem 1rem;
      background: linear-gradient(180deg, transparent, rgba(26, 33, 41, 0.92));
      color: var(--on-dark);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.3rem;
    }
    .work-item figcaption span {
      white-space: nowrap;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.6875rem;
    }

    /* —— Project detail —— */
    .project-hero {
      padding: clamp(4rem, 8vw, 7.5rem) 0;
      background: var(--canvas);
      border-block: 1px solid var(--hairline);
    }
    .project-hero__inner {
      display: grid;
      gap: 3rem;
      align-items: end;
    }
    .project-hero h1 {
      max-width: 14ch;
      margin: 0;
      font-size: clamp(2.75rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--ink);
    }
    .project-hero__lede {
      max-width: 48ch;
      margin: 1.25rem 0 0;
      font-size: clamp(1.125rem, 1.5vw, 1.25rem);
      font-weight: 300;
      line-height: 1.6;
      color: var(--muted);
    }
    .project-meta {
      width: min(100%, 26rem);
      margin: 0;
      border-top: 1px solid var(--hairline-strong);
    }
    .project-meta div {
      display: grid;
      grid-template-columns: 5.5rem 1fr;
      gap: 1.25rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--hairline);
    }
    .project-meta dt {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--primary);
    }
    .project-meta dd {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 300;
      color: var(--ink);
    }
    @media (min-width: 900px) {
      .project-hero__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 5rem;
      }
    }

    .project-gallery-section {
      padding: clamp(4rem, 7vw, 7rem) 0;
      background: var(--surface-soft);
    }
    .project-gallery-section--tight {
      padding-top: 0;
    }
    .project-gallery__heading {
      max-width: 46rem;
      margin-bottom: 2.75rem;
    }
    .project-gallery__heading h2,
    .project-gallery__cta h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 700;
      line-height: 1.08;
      color: var(--ink);
    }
    .project-gallery__heading > p:last-child {
      max-width: 52ch;
      margin: 1rem 0 0;
      font-size: 1.0625rem;
      font-weight: 300;
      color: var(--muted);
    }
    .project-gallery {
      columns: 1;
      column-gap: 1.25rem;
    }
    @media (min-width: 680px) { .project-gallery { columns: 2; } }
    @media (min-width: 1080px) { .project-gallery { columns: 3; } }
    /* Row-major grid so numbered captions read left to right. */
    .project-gallery--grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      columns: auto;
    }
    .project-gallery--grid figure { margin-bottom: 0; }
    @media (min-width: 680px) {
      .project-gallery--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1080px) {
      .project-gallery--grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .project-gallery--grid.project-gallery--narrow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    .project-gallery--grid.project-gallery--narrow { width: min(100%, 61.25rem); }
    .project-gallery--two {
      width: min(100%, 61.25rem);
    }
    @media (min-width: 680px) {
      .project-gallery--two { columns: 2; }
    }
    /* Two uprights over a full-width landscape shot. */
    .project-gallery--outdoor {
      width: min(100%, 61.25rem);
      columns: auto;
    }
    @media (min-width: 680px) {
      .project-gallery--outdoor {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
      }
      .project-gallery--outdoor figure { margin-bottom: 0; }
      .project-gallery--outdoor figure:last-child { grid-column: 1 / -1; }
    }
    /* One framed row of photos sharing a single caption. */
    .project-gallery--strip {
      columns: auto;
    }
    .project-gallery--strip figure { margin-bottom: 0; }
    .project-gallery__row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: var(--hairline);
    }
    @media (min-width: 680px) {
      .project-gallery__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    .project-gallery--strip figcaption {
      justify-content: flex-start;
      border-top: 1px solid var(--hairline);
    }
    .project-gallery figure {
      break-inside: avoid;
      margin: 0 0 1.25rem;
      background: var(--surface-card);
      border: 1px solid var(--hairline);
    }
    .project-gallery img {
      display: block;
      width: 100%;
      height: auto;
    }
    .project-gallery figcaption {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0.95rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      color: var(--ink);
    }
    .project-gallery figcaption span {
      flex-shrink: 0;
      color: var(--primary);
      letter-spacing: 1px;
    }
    .project-gallery__cta {
      display: grid;
      gap: 2rem;
      align-items: end;
      margin-top: clamp(3.5rem, 7vw, 6rem);
      padding-top: 2.5rem;
      border-top: 1px solid var(--hairline-strong);
    }
    .project-gallery__cta h2 { max-width: 16ch; }
    @media (min-width: 760px) {
      .project-gallery__cta {
        grid-template-columns: minmax(0, 1fr) auto;
      }
    }

    /* —— Reviews —— */
    .reviews {
      margin-top: 2.75rem;
      display: grid;
      gap: 1.25rem;
    }
    @media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); } }

    .review {
      background: var(--surface-card);
      border-top: 3px solid var(--primary);
      padding: 1.75rem 1.5rem;
      display: flex;
      flex-direction: column;
    }
    .review cite { margin-top: auto; }
    .review__stars {
      margin: 0 0 0.85rem;
      color: var(--primary);
      letter-spacing: 0.12em;
      font-size: 0.95rem;
    }
    .reviews-banner {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-top: 1.5rem;
    }
    .reviews-banner__stars {
      margin: 0;
      color: var(--primary);
      font-size: 1.5rem;
      letter-spacing: 0.14em;
      line-height: 1;
    }
    .reviews-banner span {
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .review blockquote {
      margin: 0 0 1.15rem;
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      font-weight: 300;
      line-height: 1.4;
      color: var(--ink);
    }
    .review blockquote p { margin: 0; }
    .reviews-banner a {
      color: var(--ink);
      font-weight: 700;
      letter-spacing: 0;
      text-transform: none;
      text-decoration: underline;
      text-decoration-color: var(--primary);
      text-decoration-thickness: 1px;
      text-underline-offset: 0.2em;
    }
    .reviews-banner a:hover,
    .reviews-banner a:focus-visible {
      color: var(--primary);
    }
    .review cite {
      font-style: normal;
      display: grid;
      gap: 0.2rem;
    }
    .review cite strong {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink);
    }
    .review cite span {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: var(--primary);
    }

    /* —— About —— */
    .about {
      margin-top: 2.75rem;
      display: grid;
      gap: 2rem;
      align-items: center;
    }
    @media (min-width: 860px) {
      .about { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
    }
    .about__photo {
      width: min(100%, 682px);
      overflow: hidden;
      background: var(--surface-strong);
    }
    .about__photo img {
      display: block;
      width: 100%;
      height: auto;
    }
    .about__copy p {
      margin: 0 0 1rem;
      font-weight: 300;
      color: var(--body);
      max-width: 46ch;
    }
    /* —— Credentials —— */
    .creds {
      margin-top: clamp(2.5rem, 5vw, 4rem);
      padding-top: 2.5rem;
      border-top: 1px solid var(--hairline-strong);
    }
    .creds__list {
      margin: 1.5rem 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: var(--hairline);
    }
    @media (min-width: 640px) {
      .creds__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1040px) {
      .creds__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }
    .cred {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      padding: 1.35rem 1.25rem;
      background: var(--surface-card);
    }
    .cred__mark {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--ink);
    }
    /* Drop-in slot for official accreditation artwork. Swap the .cred__mark span
       for an <img class="cred__logo">; a fixed optical height keeps marks of
       different proportions sitting on one line. */
    .cred__logo {
      display: block;
      /* The cell is a column flexbox, so without this the image stretches to the
         full cell width instead of keeping its own proportions. */
      align-self: flex-start;
      height: 2.75rem;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: left center;
    }
    .cred__label {
      font-size: 0.8125rem;
      font-weight: 300;
      line-height: 1.45;
      color: var(--muted);
    }

    /* Inline links inside body copy need to read as links. */
    .about__copy p a,
    .page-prose p a,
    .project-gallery__heading a {
      color: var(--ink);
      text-decoration: underline;
      text-decoration-color: var(--primary);
      text-decoration-thickness: 1px;
      text-underline-offset: 0.2em;
      transition: color 160ms ease;
    }
    .about__copy p a:hover,
    .page-prose p a:hover,
    .project-gallery__heading a:hover,
    .about__copy p a:focus-visible,
    .page-prose p a:focus-visible,
    .project-gallery__heading a:focus-visible {
      color: var(--primary);
    }
    .about__meta {
      margin: 1.5rem 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }
    .about__meta li {
      display: grid;
      grid-template-columns: 7.5rem 1fr;
      gap: 0.75rem;
      font-size: 0.875rem;
      padding-top: 0.65rem;
      border-top: 1px solid var(--hairline);
      color: var(--body);
      font-weight: 300;
    }
    .about__meta strong {
      font-weight: 700;
      color: var(--ink);
    }

    /* —— FAQ —— */
    .faq {
      margin-top: 2.5rem;
      border-top: 1px solid var(--hairline);
    }
    .faq details { border-bottom: 1px solid var(--hairline); }
    .faq summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.15rem 0;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
    }
    .faq summary::after {
      content: "+";
      color: var(--primary);
      font-size: 1.25rem;
      line-height: 1;
    }
    .faq details[open] summary::after { content: "–"; }
    .faq details p {
      margin: 0 0 1.15rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 54ch;
    }

    /* —— Contact / quote (RR pattern, BMW chrome) —— */
    .section--contact {
      background: var(--surface-dark);
      color: var(--on-dark);
      padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
    }

    .contact {
      margin-top: 2.5rem;
      display: grid;
      gap: 2.25rem;
      background: var(--surface-dark-elevated);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: clamp(1.6rem, 4vw, 2.6rem);
      scroll-margin-top: calc(var(--nav-h) + 0.5rem);
    }
    @media (min-width: 860px) {
      .contact { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
    }

    .contact-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .contact__lead {
      margin: 0.75rem 0 1.5rem;
      font-weight: 300;
      color: var(--on-dark-soft);
      max-width: 36ch;
    }
    .contact__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.75rem;
    }

    .facts { margin: 0; display: grid; gap: 1.1rem; }
    .facts dt {
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent-on-dark);
      margin-bottom: 0.25rem;
      font-weight: 700;
    }
    .facts dd {
      margin: 0;
      font-weight: 700;
      color: var(--on-dark);
    }
    .facts a:hover,
    .facts a:focus-visible { color: var(--primary); }

    .form {
      display: grid;
      gap: 0.9rem;
      align-content: start;
    }
    .form__title {
      margin: 0 0 0.25rem;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--on-dark);
    }
    .form__note {
      margin: 0 0 0.35rem;
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--on-dark-soft);
    }
    .form label {
      display: grid;
      gap: 0.4rem;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--on-dark-soft);
    }
    .form input,
    .form textarea {
      width: 100%;
      padding: 0.85rem 0.95rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 0;
      background: var(--surface-dark);
      color: var(--on-dark);
      font: inherit;
      font-weight: 300;
      text-transform: none;
      letter-spacing: normal;
    }
    .form input::placeholder,
    .form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
    .form input:focus,
    .form textarea:focus {
      outline: 2px solid var(--primary);
      outline-offset: 1px;
    }
    .form .btn { justify-self: start; margin-top: 0.25rem; }

    .form__hint {
      margin: -0.35rem 0 0;
      font-size: 0.8125rem;
      font-weight: 300;
      color: var(--on-dark-soft);
    }
    .form-status {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--primary);
    }
    .form-status.err { color: #ffb4b4; }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* —— Footer —— */
    .footer {
      background: var(--carbon);
      color: var(--muted);
      padding: 4rem var(--gutter) 2rem;
      border-top: 1px solid var(--hairline);
    }
    .footer__grid {
      width: min(100%, var(--max));
      margin-inline: auto;
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 800px) {
      .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
    }
    .footer__brand {
      width: min(100%, 13rem);
      margin-bottom: 0.85rem;
      background: var(--carbon);
      padding: 0.65rem 0.75rem;
    }
    .footer__brand img { width: 100%; height: auto; }
    .footer h3 {
      margin: 0 0 0.85rem;
      color: var(--ink);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .footer ul { margin: 0; padding: 0; list-style: none; }
    .footer li + li { margin-top: 0.5rem; }
    .footer a,
    .footer p,
    .footer li {
      font-size: 0.875rem;
      font-weight: 300;
    }
    .footer a:hover,
    .footer a:focus-visible { color: var(--primary); }
    /* WCAG 2.2 target size: list and utility links need a 24px minimum hit area. */
    .footer li a,
    .footer__base a {
      display: inline-flex;
      align-items: center;
      min-height: 1.75rem;
    }
    .footer__base {
      width: min(100%, var(--max));
      margin: 2.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--hairline);
      font-size: 0.75rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      justify-content: space-between;
    }

    @keyframes hero-settle { to { transform: scale(1); } }
    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: none; }
    }
