﻿:root {
      --ink: #14171c;
      --ink-soft: #1e232b;
      --blue: #3a6ea5;
      --blue-hover: #4a7eb8;
      --steel: #8b929c;
      --ash: #cfd3d8;
      --paper: #e9ecef;
      --mist: #f3f5f7;
      --line: rgba(58, 110, 165, 0.22);
      --text: #eef1f4;
      --muted: rgba(238, 241, 244, 0.66);
      --dark-text: #1a1e24;
      --dark-muted: #5c6570;
      --display: "Syne", system-ui, sans-serif;
      --sans: "Outfit", system-ui, sans-serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --panel-duration: 0.45s;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
    body {
      font-family: var(--sans);
      background: var(--ink);
      color: var(--text);
      line-height: 1.55;
      font-weight: 400;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    :focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
    }

    .wrap {
      width: min(1120px, calc(100% - 2.5rem));
      margin-inline: auto;
    }
    .wrap-wide {
      width: min(1280px, calc(100% - 2.5rem));
      margin-inline: auto;
    }

    /* â€”â€” Nav â€”â€” */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 40;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.5rem;
      background: linear-gradient(to bottom, rgba(20,23,28,0.88), transparent);
      transition: background 0.4s var(--ease), backdrop-filter 0.4s;
    }
    .site-header.is-scrolled {
      background: rgba(20, 23, 28, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(58, 110, 165, 0.18);
    }
    .nav-brand {
      font-family: var(--display);
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }
    .nav-brand span { color: var(--blue); font-weight: 700; }
    .nav-links {
      display: none;
      align-items: center;
      gap: 0.35rem 1.35rem;
      list-style: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .nav-links > li { position: relative; }
    .nav-links a {
      opacity: 0.72;
      transition: opacity 0.25s, color 0.25s;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible { opacity: 1; }
    .nav-parent {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.45rem 0;
      background: none;
      border: none;
      color: inherit;
      cursor: pointer;
      opacity: 0.72;
      font: inherit;
      letter-spacing: inherit;
      text-transform: inherit;
      transition: opacity 0.25s;
    }
    .nav-parent:hover,
    .nav-parent:focus-visible,
    .has-dropdown:hover > .nav-parent,
    .has-dropdown:focus-within > .nav-parent,
    .has-dropdown.is-open > .nav-parent {
      opacity: 1;
      color: #fff;
    }
    .nav-chevron {
      display: inline-block;
      width: 0.45rem;
      height: 0.45rem;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      opacity: 0.7;
      transition: transform 0.25s var(--ease);
    }
    .has-dropdown.is-open .nav-chevron,
    .has-dropdown:hover .nav-chevron,
    .has-dropdown:focus-within .nav-chevron {
      transform: rotate(225deg) translateY(-1px);
    }
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 0.55rem);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 13.5rem;
      padding: 0.55rem 0;
      list-style: none;
      background: rgba(20, 23, 28, 0.97);
      border: 1px solid rgba(58, 110, 165, 0.28);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
      z-index: 50;
      text-transform: none;
      letter-spacing: 0.02em;
    }
    .nav-dropdown::before {
      content: "";
      position: absolute;
      top: -0.55rem;
      left: 0;
      right: 0;
      height: 0.55rem;
    }
    .has-dropdown:hover > .nav-dropdown,
    .has-dropdown:focus-within > .nav-dropdown,
    .has-dropdown.is-open > .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown a {
      display: block;
      padding: 0.65rem 1.1rem;
      opacity: 0.78;
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
    }
    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
      opacity: 1;
      background: rgba(58, 110, 165, 0.16);
      color: #fff;
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1.15rem;
      background: var(--blue);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: transform 0.3s var(--ease), background 0.25s;
    }
    .nav-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }
    @media (min-width: 900px) {
      .nav-links { display: flex; }
      #primary-nav { margin-left: auto; margin-right: 1.35rem; }
      .nav-mobile-toggle { display: none; }
    }
    @media (max-width: 899px) {
      .nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        margin-left: auto;
        margin-right: 0.65rem;
        border: 1px solid rgba(238, 241, 244, 0.22);
        background: transparent;
        color: var(--text);
        cursor: pointer;
      }
      .nav-mobile-toggle span,
      .nav-mobile-toggle span::before,
      .nav-mobile-toggle span::after {
        display: block;
        width: 1.1rem;
        height: 1.5px;
        background: currentColor;
        position: relative;
      }
      .nav-mobile-toggle span::before,
      .nav-mobile-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
      }
      .nav-mobile-toggle span::before { top: -5px; }
      .nav-mobile-toggle span::after { top: 5px; }
      .site-header.nav-open {
        background: rgba(20, 23, 28, 0.98);
        backdrop-filter: blur(12px);
        flex-wrap: wrap;
        row-gap: 0.85rem;
      }
      .site-header.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        order: 3;
        gap: 0;
        padding-bottom: 0.75rem;
        border-top: 1px solid rgba(58, 110, 165, 0.2);
      }
      .site-header.nav-open .nav-links > li {
        border-bottom: 1px solid rgba(58, 110, 165, 0.12);
      }
      .site-header.nav-open .nav-parent,
      .site-header.nav-open .nav-links > li > a {
        display: flex;
        width: 100%;
        padding: 0.9rem 0.15rem;
        opacity: 0.9;
        justify-content: space-between;
      }
      .site-header.nav-open .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        border: none;
        border-top: 1px solid rgba(58, 110, 165, 0.12);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.22);
        padding: 0.25rem 0 0.55rem;
      }
      .site-header.nav-open .has-dropdown:not(.is-open) > .nav-dropdown {
        display: none;
        opacity: 0;
        visibility: hidden;
      }
      .site-header.nav-open .has-dropdown.is-open > .nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
      .site-header.nav-open .nav-dropdown a {
        padding-left: 0.85rem;
        white-space: normal;
      }
    }

    /* â€”â€” Hero â€”â€” */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: end;
      overflow: hidden;
      padding: 0;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 72% 35%;
      transform: scale(1.06);
      animation: heroKen 18s var(--ease) forwards;
    }
    @keyframes heroKen {
      to { transform: scale(1); }
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(20,23,28,0.86) 0%, rgba(20,23,28,0.5) 40%, rgba(20,23,28,0.1) 100%),
        linear-gradient(to top, rgba(20,23,28,0.9) 0%, transparent 40%);
    }
    .hero-grain {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0.025;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 7rem 0 4.5rem;
      width: min(1120px, calc(100% - 2.5rem));
      margin-inline: auto;
    }
    .hero-brand {
      font-family: var(--display);
      font-size: clamp(3.2rem, 10vw, 6.8rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.04em;
      max-width: 12ch;
      opacity: 0;
      animation: rise 1s 0.15s var(--ease) forwards;
    }
    .hero-brand span {
      font-style: normal;
      color: var(--blue);
      font-weight: 800;
    }
    .hero-copy {
      margin-top: 1.75rem;
      max-width: 32rem;
      opacity: 0;
      animation: rise 1s 0.35s var(--ease) forwards;
    }
    .hero-copy h1 {
      font-family: var(--sans);
      font-size: clamp(1.05rem, 2.2vw, 1.25rem);
      font-weight: 500;
      letter-spacing: 0.01em;
      line-height: 1.35;
      margin-bottom: 0.85rem;
    }
    .hero-copy p {
      color: var(--muted);
      font-size: 1rem;
      font-weight: 300;
      max-width: 28rem;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-top: 2rem;
      opacity: 0;
      animation: rise 1s 0.5s var(--ease) forwards;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: var(--blue);
      color: #fff;
      border: 1px solid var(--blue);
    }
    .btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(238, 241, 244, 0.28);
    }
    .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
    .hero-rail {
      position: absolute;
      right: 1.5rem;
      bottom: 4.5rem;
      z-index: 2;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0;
      animation: fade 1.2s 0.8s var(--ease) forwards;
    }
    @media (max-width: 700px) { .hero-rail { display: none; } }

    @keyframes rise {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* â€”â€” Shared section chrome â€”â€” */
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.85rem;
    }
    .section-title {
      font-family: var(--display);
      font-size: clamp(2rem, 4.5vw, 3.1rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 1rem;
    }
    .section-lead {
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 36rem;
      color: var(--muted);
    }
    .section-lead.dark { color: var(--dark-muted); }

    /* â€”â€” Section accordion panels â€”â€” */
    .panel-section {
      padding: 0;
      border-bottom: 1px solid var(--line);
    }
    .panel-section--ink { background: var(--ink); color: var(--text); }
    .panel-section--soft { background: var(--ink-soft); color: var(--text); }
    .panel-section--paper { background: var(--paper); color: var(--dark-text); }
    .panel-section--mist { background: var(--mist); color: var(--dark-text); }
    .panel-section--paper .eyebrow,
    .panel-section--mist .eyebrow { color: var(--blue); }

    .section-accordion {
      border: none;
      padding: 0;
    }
    .section-accordion > summary {
      list-style: none;
      cursor: pointer;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 1rem 1.5rem;
      padding: 1.65rem 0;
      width: min(1120px, calc(100% - 2.5rem));
      margin-inline: auto;
      font-family: var(--display);
      font-size: clamp(1.35rem, 3vw, 1.85rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      transition: color 0.25s var(--ease);
    }
    .section-accordion > summary::-webkit-details-marker { display: none; }
    .section-accordion > summary .summary-meta {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      min-width: 0;
    }
    .section-accordion > summary .summary-eyebrow {
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .section-accordion > summary .summary-title {
      font: inherit;
      margin: 0;
    }
    .section-accordion > summary .summary-hint {
      font-family: var(--sans);
      font-size: 0.88rem;
      font-weight: 300;
      letter-spacing: 0;
      color: var(--muted);
      max-width: 36rem;
    }
    .panel-section--paper .section-accordion > summary .summary-hint,
    .panel-section--mist .section-accordion > summary .summary-hint {
      color: var(--dark-muted);
    }
    .accordion-icon {
      width: 2.5rem;
      height: 2.5rem;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--blue);
      transition: transform var(--panel-duration) var(--ease), background 0.25s, border-color 0.25s;
    }
    .panel-section--paper .accordion-icon,
    .panel-section--mist .accordion-icon {
      border-color: rgba(58, 110, 165, 0.28);
      background: rgba(255, 255, 255, 0.55);
    }
    .accordion-icon svg {
      width: 1rem;
      height: 1rem;
      transition: transform var(--panel-duration) var(--ease);
    }
    .section-accordion[open] > summary .accordion-icon {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }
    .section-accordion[open] > summary .accordion-icon svg {
      transform: rotate(45deg);
    }
    .section-accordion > summary:hover .accordion-icon {
      border-color: var(--blue);
    }

    .accordion-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows var(--panel-duration) var(--ease);
    }
    .section-accordion[open] > .accordion-body {
      grid-template-rows: 1fr;
    }
    .accordion-body-inner {
      overflow: hidden;
      opacity: 0;
      transform: translateY(-0.4rem);
      transition:
        opacity calc(var(--panel-duration) * 0.85) var(--ease),
        transform var(--panel-duration) var(--ease);
    }
    .section-accordion[open] > .accordion-body > .accordion-body-inner {
      opacity: 1;
      transform: translateY(0);
      padding-bottom: 3.25rem;
    }

    /* Trust (always open strip) */
    #trust {
      padding: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--ink-soft);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: 1fr;
    }
    @media (min-width: 720px) {
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .trust-item {
      padding: 1.75rem 1.5rem;
      border-bottom: 1px solid var(--line);
    }
    @media (min-width: 720px) {
      .trust-item {
        border-bottom: none;
        border-right: 1px solid var(--line);
        padding: 2rem 1.6rem;
      }
      .trust-item:last-child { border-right: none; }
    }
    .trust-item strong {
      display: block;
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      margin-bottom: 0.35rem;
    }
    .trust-item span {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 300;
    }

    /* Offerings */
    .services-grid {
      display: grid;
      gap: 0;
      margin-top: 0.5rem;
      border-top: 1px solid var(--line);
    }
    .service {
      display: grid;
      gap: 0.75rem;
      padding: 1.75rem 0;
      border-bottom: 1px solid var(--line);
      transition: padding-left 0.35s var(--ease);
    }
    @media (min-width: 800px) {
      .service {
        grid-template-columns: 5rem 1fr 1.4fr;
        align-items: baseline;
        gap: 2rem;
        padding: 2rem 0;
      }
      .service:hover { padding-left: 0.75rem; }
    }
    .service-num {
      font-family: var(--display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: -0.02em;
    }
    .service h3 {
      font-family: var(--display);
      font-size: clamp(1.35rem, 2.8vw, 1.75rem);
      font-weight: 700;
      letter-spacing: -0.03em;
    }
    .service p {
      color: var(--muted);
      font-weight: 300;
      font-size: 0.98rem;
    }

    /* Locations */
    .loc-grid {
      display: grid;
      gap: 1.25rem;
      margin-top: 1.75rem;
    }
    @media (min-width: 700px) {
      .loc-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1000px) {
      .loc-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .loc-card {
      position: relative;
      min-height: 280px;
      overflow: hidden;
      background: var(--ink);
      color: var(--text);
    }
    .loc-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
      transition: transform 0.8s var(--ease), opacity 0.4s;
    }
    .loc-card:hover img {
      transform: scale(1.06);
      opacity: 0.7;
    }
    .loc-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,23,28,0.95) 0%, rgba(20,23,28,0.28) 60%);
    }
    .loc-body {
      position: relative;
      z-index: 1;
      height: 100%;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
    }
    .loc-body h3 {
      font-family: var(--display);
      font-size: 1.55rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 0.4rem;
    }
    .loc-body p {
      font-size: 0.88rem;
      color: var(--muted);
      font-weight: 300;
    }

    /* Work */
    .work-stage {
      margin-top: 1.75rem;
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 900px) {
      .work-stage {
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: 1fr 1fr;
        min-height: 560px;
      }
      .work-main { grid-row: 1 / -1; }
    }
    .work-tile {
      position: relative;
      overflow: hidden;
      min-height: 220px;
      background: #000;
      margin: 0;
    }
    .work-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.9s var(--ease);
    }
    .work-tile:hover img { transform: scale(1.04); }
    .work-caption {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(243,240,235,0.85);
      background: rgba(20,23,28,0.5);
      padding: 0.4rem 0.65rem;
      backdrop-filter: blur(6px);
    }
    .soft-note {
      margin-top: 1.25rem;
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 300;
      max-width: 40rem;
    }

    /* About */
    .about-grid {
      display: grid;
      gap: 2.5rem;
      margin-top: 0.25rem;
    }
    @media (min-width: 900px) {
      .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        align-items: end;
      }
    }
    .about-copy p {
      color: var(--dark-muted);
      font-weight: 300;
      font-size: 1.05rem;
      margin-top: 1.25rem;
      max-width: 34rem;
    }
    .about-stat {
      border-top: 1px solid rgba(58, 110, 165, 0.18);
      padding-top: 1.5rem;
    }
    .about-stat strong {
      display: block;
      font-family: var(--display);
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--blue);
      margin-bottom: 0.4rem;
    }
    .about-stat span {
      font-size: 0.92rem;
      color: var(--dark-muted);
      font-weight: 300;
    }

    /* Process */
    .process-list {
      display: grid;
      gap: 0;
      margin-top: 1.75rem;
    }
    @media (min-width: 800px) {
      .process-list { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    }
    .step {
      padding: 1.75rem 0;
      border-top: 1px solid var(--line);
    }
    @media (min-width: 800px) {
      .step {
        border-top: none;
        border-left: 1px solid var(--line);
        padding: 0 0 0 1.5rem;
      }
      .step:first-child { border-left: none; padding-left: 0; }
    }
    .step h3 {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      margin: 0.6rem 0 0.55rem;
    }
    .step p {
      color: var(--muted);
      font-weight: 300;
      font-size: 0.95rem;
    }
    .step-label {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--blue);
      font-weight: 600;
    }

    /* Investment */
    .invest-panel {
      margin-top: 1.75rem;
      display: grid;
      gap: 2rem;
      padding: 2rem;
      background: #fff;
      border: 1px solid rgba(26, 23, 20, 0.08);
    }
    @media (min-width: 800px) {
      .invest-panel {
        grid-template-columns: 1.3fr 1fr;
        padding: 2.75rem;
        align-items: center;
      }
    }
    .invest-panel h3 {
      font-family: var(--display);
      font-size: clamp(1.65rem, 3.2vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 0.85rem;
    }
    .invest-panel p {
      color: var(--dark-muted);
      font-weight: 300;
    }
    .invest-list {
      list-style: none;
      display: grid;
      gap: 0.85rem;
    }
    .invest-list li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      font-size: 0.95rem;
      color: var(--dark-muted);
      font-weight: 300;
    }
    .invest-list li::before {
      content: "";
      width: 0.55rem;
      height: 0.55rem;
      margin-top: 0.4rem;
      flex-shrink: 0;
      background: var(--blue);
    }

    /* Nested FAQ items */
    .faq-list {
      margin-top: 0.75rem;
      border-top: 1px solid var(--line);
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 1.15rem 0;
    }
    .faq-item > summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
      align-items: center;
      font-family: var(--display);
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      padding: 0;
      width: auto;
      margin: 0;
    }
    .faq-item > summary::-webkit-details-marker { display: none; }
    .faq-item > summary::after {
      content: "+";
      font-family: var(--sans);
      font-size: 1.35rem;
      color: var(--blue);
      transition: transform 0.25s var(--ease);
      flex-shrink: 0;
    }
    .faq-item[open] > summary::after { transform: rotate(45deg); }
    .faq-item p {
      margin-top: 0.85rem;
      max-width: 40rem;
      color: var(--muted);
      font-weight: 300;
    }

    /* Enquire */
    .enquire-grid {
      display: grid;
      gap: 2.5rem;
      margin-top: 0.5rem;
    }
    @media (min-width: 900px) {
      .enquire-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: start;
      }
    }
    .enquire-aside p {
      color: var(--muted);
      font-weight: 300;
      margin-top: 1rem;
      max-width: 28rem;
    }
    .enquire-contact {
      margin-top: 2rem;
      display: grid;
      gap: 0.85rem;
    }
    .enquire-contact a {
      font-family: var(--display);
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--blue);
      transition: color 0.25s;
    }
    .enquire-contact a:hover { color: var(--blue-hover); }
    .enquire-contact span {
      display: block;
      font-family: var(--sans);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }
    form {
      display: grid;
      gap: 1rem;
      padding: 1.75rem;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.02);
    }
    label {
      display: grid;
      gap: 0.4rem;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
    }
    input, textarea, select {
      width: 100%;
      padding: 0.85rem 0.95rem;
      background: var(--ink-soft);
      border: 1px solid rgba(58, 110, 165, 0.22);
      color: var(--text);
      outline: none;
      transition: border-color 0.25s;
    }
    input:focus, textarea:focus, select:focus {
      border-color: var(--blue);
    }
    textarea { min-height: 130px; resize: vertical; }
    form .btn { width: 100%; margin-top: 0.35rem; border: none; cursor: pointer; }
    .form-note {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 300;
      margin-top: 0.25rem;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      padding: 1.75rem 0 2.5rem;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 300;
      background: var(--ink);
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: baseline;
    }
    .footer-brand {
      font-family: var(--display);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    /* Wide wrap for work accordion summary */
    #work .section-accordion > summary {
      width: min(1280px, calc(100% - 2.5rem));
    }
    #work .accordion-body-inner > .wrap-wide {
      width: min(1280px, calc(100% - 2.5rem));
      margin-inline: auto;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
      html { scroll-behavior: auto; }
      .hero-media img { transform: none; }
      .hero-brand, .hero-copy, .hero-actions, .hero-rail { opacity: 1; }
      .accordion-body { grid-template-rows: none; }
      .accordion-body-inner {
        opacity: 1;
        transform: none;
        display: none;
      }
      .section-accordion[open] > .accordion-body > .accordion-body-inner {
        display: block;
        padding-bottom: 3.25rem;
      }
    }

/* —— Multi-page interior —— */
.site-header.solid,
.site-header.is-scrolled {
  background: rgba(20, 23, 28, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 110, 165, 0.18);
}
.page-hero {
  padding: 8.5rem 0 3.5rem;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--muted);
  font-weight: 300;
  max-width: 36rem;
  font-size: 1.05rem;
}
.page-section { padding: 4.5rem 0; }
.page-section--paper { background: var(--paper); color: var(--dark-text); }
.page-section--mist { background: var(--mist); color: var(--dark-text); }
.page-section--soft { background: var(--ink-soft); }
.page-section .section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-section .section-lead { color: var(--muted); font-weight: 300; max-width: 36rem; margin-bottom: 2rem; }
.page-section--paper .section-lead,
.page-section--mist .section-lead { color: var(--dark-muted); }
.home-teasers {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 800px) {
  .home-teasers { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.teaser {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 11rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.teaser:hover { border-color: var(--blue); transform: translateY(-2px); }
.teaser h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.4rem 0 0.65rem;
}
.teaser p { color: var(--muted); font-weight: 300; font-size: 0.92rem; flex: 1; }
.teaser .teaser-link {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.home-band { padding: 5rem 0; }
.home-band .section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.home-cta-band {
  padding: 4.5rem 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  text-align: center;
}
.home-cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.home-cta-band p { color: var(--muted); margin-bottom: 1.75rem; font-weight: 300; }
.scroll-target { scroll-margin-top: 6rem; }

.section-more {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.section-more a { color: var(--blue); }
.section-more a:hover { text-decoration: underline; }
.section-more.dark a { color: var(--blue); }
.page-section--mist .about-copy .eyebrow { color: var(--blue); }
.page-section--mist .section-title { color: var(--dark-text); }
.page-section--mist .about-copy p { color: var(--dark-muted); }
.page-section--paper .section-title { color: var(--dark-text); }
#faq-home .faq-list { margin-top: 1.5rem; }
#get-a-quote .enquire-aside p { color: var(--muted); font-weight: 300; margin-top: 0.75rem; max-width: 28rem; }

/* —— Shared interior helpers —— */
.page-hero h1 { max-width: 22ch; }
.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.jump-links a {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(238, 241, 244, 0.2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.jump-links a:hover { border-color: var(--blue); color: var(--blue); }
.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.chip-list li {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(58, 110, 165, 0.1);
  color: var(--blue);
}
.mini-title {
  margin-top: 1.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark-text);
}
.text-link {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.text-link:hover { color: var(--blue-hover); }
.narrow { max-width: 760px; }
.faq-list.light { border-top-color: rgba(26, 30, 36, 0.12); }
.faq-list.light .faq-item { border-bottom-color: rgba(26, 30, 36, 0.12); }
.faq-list.light .faq-item > summary { color: var(--dark-text); }
.faq-list.light .faq-item p { color: var(--dark-muted); }

/* —— Areas: alternating editorial rows —— */
.area-list { display: grid; gap: 5rem; }
.area-row { display: grid; gap: 2rem; align-items: center; }
.area-media { overflow: hidden; aspect-ratio: 4 / 3; }
.area-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.area-row:hover .area-media img { transform: scale(1.03); }
.area-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.area-body h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--dark-text);
  margin: 0.6rem 0 1rem;
}
.area-body > p { color: var(--dark-muted); font-weight: 300; margin-top: 0.9rem; max-width: 36rem; }
@media (min-width: 900px) {
  .area-row { grid-template-columns: 1.05fr 1fr; gap: 4.5rem; }
  .area-media { aspect-ratio: 4 / 5; }
  .area-row--flip .area-media { order: 2; }
}

/* —— Work: numbered scope cards —— */
.scope-grid { display: grid; gap: 1.5rem; }
.scope-card {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.scope-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.scope-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.scope-media img { width: 100%; height: 100%; object-fit: cover; }
.scope-num {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.scope-body { padding: 1.75rem 1.75rem 2rem; }
.scope-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
.scope-body h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}
.scope-body > p { color: var(--muted); font-weight: 300; }
.scope-card .chip-list li { background: rgba(58, 110, 165, 0.16); color: #9fc0e3; }
@media (min-width: 760px) {
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .scope-grid { grid-template-columns: repeat(6, 1fr); }
  .scope-card { grid-column: span 2; }
  .scope-card:nth-child(1), .scope-card:nth-child(4) { grid-column: span 4; flex-direction: row; }
  .scope-card:nth-child(1) .scope-media, .scope-card:nth-child(4) .scope-media { flex: 1.1; aspect-ratio: auto; min-height: 100%; }
  .scope-card:nth-child(1) .scope-body, .scope-card:nth-child(4) .scope-body { flex: 1; align-self: center; padding: 2.5rem; }
}

/* —— About: story, values, corridor band —— */
.story-grid { display: grid; gap: 2.5rem; align-items: center; }
.story-media { overflow: hidden; aspect-ratio: 4 / 5; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
}
.value-grid { display: grid; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 800px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: #fff; padding: 0 0 1.75rem; }
.value-media { aspect-ratio: 1 / 1; overflow: hidden; margin-bottom: 1.4rem; }
.value-media img { width: 100%; height: 100%; object-fit: cover; }
.value-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  padding: 0 1.5rem;
}
.value-card p { color: var(--dark-muted); font-weight: 300; margin-top: 0.6rem; padding: 0 1.5rem; }
.promise-strip {
  list-style: none;
  display: grid;
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(26, 30, 36, 0.1);
  border: 1px solid rgba(26, 30, 36, 0.1);
}
.promise-strip li { background: var(--paper); padding: 1.25rem 1.4rem; }
.promise-strip strong { display: block; font-family: var(--display); color: var(--dark-text); font-size: 1.05rem; }
.promise-strip span { color: var(--dark-muted); font-size: 0.88rem; font-weight: 300; }
@media (min-width: 800px) { .promise-strip { grid-template-columns: repeat(4, 1fr); } }
.corridor-band {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.corridor-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.corridor-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 23, 28, 0.92) 0%, rgba(20, 23, 28, 0.35) 55%, rgba(20, 23, 28, 0.15) 100%);
}
.corridor-inner { position: relative; z-index: 1; padding: 6rem 0 3.5rem; }
.corridor-inner .eyebrow { color: #9fc0e3; }
.corridor-inner h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
}
.corridor-inner p { color: var(--muted); font-weight: 300; max-width: 34rem; margin-top: 1rem; }
.corridor-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.corridor-links a {
  display: block;
  padding: 0.55rem 1rem;
  background: rgba(20, 23, 28, 0.55);
  border: 1px solid rgba(238, 241, 244, 0.22);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  font-weight: 500;
}
.corridor-links a:hover { border-color: var(--blue); color: #fff; background: var(--blue); }

/* —— Process: numbered timeline —— */
.timeline { list-style: none; position: relative; display: grid; gap: 3.5rem; }
.timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 1.35rem;
  width: 1px;
  background: rgba(58, 110, 165, 0.35);
}
.tl-step { position: relative; display: grid; grid-template-columns: 2.7rem 1fr; gap: 1.5rem; }
.tl-marker {
  position: relative;
  z-index: 1;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
}
.tl-content { display: grid; gap: 1.5rem; align-items: center; }
.tl-text h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark-text);
  margin: 0.4rem 0 0.75rem;
}
.tl-text > p { color: var(--dark-muted); font-weight: 300; max-width: 34rem; }
.tick-list { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.45rem; }
.tick-list li { position: relative; padding-left: 1.6rem; color: var(--dark-text); font-size: 0.93rem; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.8rem;
  height: 0.45rem;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.tl-media { overflow: hidden; aspect-ratio: 3 / 2; }
.tl-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .tl-content { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}

/* —— Footer site map —— */
.site-footer { padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(2, 1fr); }
.footer-about { grid-column: 1 / -1; }
.footer-about p:not(.footer-brand) { margin-top: 0.6rem; max-width: 20rem; }
.footer-cta { margin-top: 1.25rem; }
.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.5rem; }
.footer-col a { color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-col a.btn { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(5, 1fr); }
  .footer-about { grid-column: auto; }
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
