    :root {
      --black: #080808;
      --ink: #101010;
      --panel: #151515;
      --panel-2: #1e1e1e;
      --line: #343434;
      --line-soft: #242424;
      --text: #f5f2eb;
      --muted: #b7b1a8;
      --subtle: #817b73;
      --red: #e23b32;
      --red-dark: #a82621;
      --amber: #d6a443;
      --green: #5ec488;
      --cream: #f3eadc;
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--black);
      color: var(--text);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
      line-height: 1.5;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 42px 42px;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.92) 78%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
      letter-spacing: 0;
    }

    .shell {
      width: min(100% - 32px, 1440px);
      margin-inline: auto;
    }

    .mono {
      font-family: "JetBrains Mono", monospace;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(8, 8, 8, 0.82);
      backdrop-filter: blur(18px);
    }

    .ticker {
      overflow: hidden;
      border-bottom: 1px solid var(--line-soft);
      color: var(--subtle);
      background: rgba(255, 255, 255, 0.03);
    }

    .ticker-track {
      display: flex;
      width: max-content;
      min-width: 200%;
      animation: ticker 36s linear infinite;
    }

    .ticker span {
      padding: 8px 22px;
      font-size: 11px;
      white-space: nowrap;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .nav {
      height: 112px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .brand-logo {
      display: block;
      width: clamp(180px, 19vw, 260px);
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      border: 1px solid var(--line);
      background: var(--line);
    }

    .nav-links a {
      padding: 10px 16px;
      background: var(--black);
      color: var(--muted);
      font-size: 13px;
      transition: color 160ms ease, background 160ms ease;
    }

    .nav-links a:hover {
      color: var(--text);
      background: var(--panel);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 700;
      cursor: pointer;
      transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .button svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      background: var(--red);
      color: white;
      border-color: var(--red);
    }

    .button-primary:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
    }

    .button-secondary {
      background: transparent;
      color: var(--text);
      border-color: var(--line);
    }

    .button-secondary:hover {
      background: var(--panel);
    }

    .hero {
      min-height: 100vh;
      padding-top: 160px;
      display: grid;
      align-items: stretch;
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
      min-height: calc(100vh - 160px);
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
    }

    .hero-copy {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 48px;
      padding: 72px 44px 38px;
      overflow: hidden;
      background: rgba(8, 8, 8, 0.62);
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.18;
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
    }

    .hero-copy > * {
      position: relative;
      z-index: 1;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 820px;
      margin-bottom: 26px;
      font-size: clamp(48px, 8vw, 118px);
      line-height: 0.93;
      letter-spacing: 0;
      font-weight: 800;
    }

    h1 span {
      color: var(--red);
    }

    .lead {
      max-width: 650px;
      margin-bottom: 34px;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 22px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .hero-meta div {
      min-height: 98px;
      display: flex;
      align-items: center;
      padding: 16px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.025);
    }

    .hero-meta strong {
      color: var(--text);
      font-size: 15px;
      line-height: 1.25;
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
      border-left: 1px solid var(--line);
      overflow: hidden;
      background: var(--panel);
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(0.2) contrast(1.12) brightness(0.72);
      transform: scale(1.02);
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.9));
    }

    .visual-panel {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 1;
      display: grid;
      gap: 12px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      background: rgba(8, 8, 8, 0.72);
      backdrop-filter: blur(12px);
    }

    .visual-panel-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-width: 0;
    }

    .visual-panel span {
      color: var(--subtle);
      font-size: 12px;
    }

    .visual-panel strong {
      color: var(--text);
      font-size: 17px;
      min-width: 0;
      overflow-wrap: anywhere;
      text-align: right;
    }

    section {
      border-bottom: 1px solid var(--line);
    }

    .section-pad {
      padding: 96px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.52fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 44px;
    }

    .eyebrow {
      margin-bottom: 12px;
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
    }

    h2 {
      margin-bottom: 0;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.02;
      letter-spacing: 0;
      font-weight: 800;
    }

    .section-head p,
    .muted {
      color: var(--muted);
    }

    .parts-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .part-tile {
      min-height: 310px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(18, 18, 18, 0.76);
      transition: background 180ms ease, color 180ms ease;
    }

    .part-tile:hover {
      background: #202020;
    }

    .tile-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .tile-index {
      color: var(--subtle);
      font-size: 12px;
    }

    .icon-box {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--text);
      background: var(--black);
    }

    .icon-box svg {
      width: 21px;
      height: 21px;
    }

    .part-tile h3 {
      margin-bottom: 10px;
      font-size: 20px;
      line-height: 1.18;
    }

    .part-tile p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
    }

    .split-media {
      min-height: 680px;
      position: relative;
      overflow: hidden;
      border-right: 1px solid var(--line);
      background: var(--panel);
    }

    .split-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(0.18) contrast(1.1) brightness(0.78);
    }

    .split-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.02));
    }

    .split-copy {
      padding: 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: rgba(15, 15, 15, 0.82);
    }

    .check-list {
      display: grid;
      gap: 16px;
      margin: 34px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 26px minmax(0, 1fr);
      gap: 13px;
      color: var(--muted);
    }

    .check-list svg {
      width: 21px;
      height: 21px;
      color: var(--amber);
      margin-top: 2px;
    }

    .area-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .area {
      min-height: 156px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 22px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.025);
    }

    .area strong {
      font-size: 21px;
    }

    .enquiry {
      background: linear-gradient(180deg, #101010, #080808);
    }

    .enquiry-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
      gap: 34px;
      align-items: start;
    }

    .contact-panel {
      position: sticky;
      top: 122px;
      display: grid;
      gap: 16px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
    }

    .contact-panel h2 {
      font-size: clamp(32px, 4vw, 52px);
    }

    .contact-line {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      min-width: 0;
    }

    .contact-line a,
    .footer-links a {
      overflow-wrap: anywhere;
    }

    .contact-line svg {
      flex: 0 0 auto;
      width: 20px;
      height: 20px;
      color: var(--amber);
      margin-top: 2px;
    }

    .form-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      overflow: hidden;
    }

    form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
    }

    .field {
      display: grid;
      gap: 8px;
      padding: 18px;
      background: #111;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--subtle);
      font-size: 12px;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid transparent;
      border-radius: 0;
      background: transparent;
      color: var(--text);
      outline: none;
      font-size: 16px;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: #6c665f;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-bottom-color: var(--red);
    }

    select {
      color-scheme: dark;
    }

    .form-actions {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 16px;
      align-items: center;
      padding: 18px;
      background: #111;
    }

    footer {
      padding: 28px 0;
      color: var(--subtle);
      background: #050505;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
    }

    @media (min-width: 1600px) {
      .shell {
        width: min(100% - 64px, 1600px);
      }

      h1 {
        max-width: 980px;
      }

      .lead {
        max-width: 720px;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.82fr);
      }

      .hero-copy {
        padding: 88px 56px 44px;
      }
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .split,
      .enquiry-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding: 56px 24px 28px;
      }

      .hero-visual,
      .split-media {
        min-height: 500px;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--line);
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .parts-grid,
      .area-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-panel {
        position: static;
      }
    }

    @media (max-width: 640px) {
      .shell {
        width: min(100% - 24px, 1200px);
      }

      .topbar {
        position: sticky;
      }

      .ticker {
        display: none;
      }

      .nav {
        height: auto;
        gap: 10px;
        padding: 12px 0;
      }

      .brand-logo {
        width: clamp(148px, 44vw, 190px);
      }

      .button-secondary {
        display: none;
      }

      .nav-actions {
        flex: 0 0 auto;
        gap: 8px;
      }

      .button {
        min-height: 40px;
        padding: 0 12px;
      }

      .hero {
        min-height: 0;
        padding-top: 0;
      }

      .hero-grid {
        min-height: 0;
      }

      .hero-copy {
        padding: 52px 18px 24px;
      }

      h1 {
        font-size: clamp(45px, 16vw, 70px);
      }

      .lead {
        font-size: 17px;
      }

      .hero-meta,
      .parts-grid,
      .area-strip,
      form {
        grid-template-columns: 1fr;
      }

      .hero-meta strong {
        font-size: 16px;
      }

      .hero-visual,
      .split-media {
        min-height: 390px;
      }

      .visual-panel {
        left: 14px;
        right: 14px;
        bottom: 14px;
        gap: 16px;
        padding: 16px;
      }

      .visual-panel-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }

      .visual-panel strong {
        font-size: 15px;
        line-height: 1.25;
        text-align: left;
      }

      .section-pad {
        padding: 70px 0;
      }

      .split-copy {
        padding: 26px;
      }

      .field-full,
      .form-actions {
        grid-column: auto;
      }

      .footer-inner,
      .footer-links {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 380px) {
      .shell {
        width: min(100% - 18px, 1200px);
      }

      .brand-logo {
        width: 140px;
      }

      .nav .button-primary {
        padding-inline: 10px;
      }

      h1 {
        font-size: clamp(40px, 15vw, 58px);
      }
    }

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