    :root {
      --background: #050505;
      --panel: #111111;
      --panel-soft: #181818;
      --gold: #d4af37;
      --gold-light: #f1d675;
      --text: #f6f1df;
      --muted: #c7bea2;
      --border: rgba(212, 175, 55, 0.45);
      --focus: #ffffff;
      --shadow: rgba(212, 175, 55, 0.18);
      --max-width: 1080px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.13), transparent 36rem),
        var(--background);
      color: var(--text);
      line-height: 1.65;
    }

    a {
      color: inherit;
    }

    a:focus,
    button:focus {
      outline: 3px solid var(--focus);
      outline-offset: 4px;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 1rem;
      background: var(--gold);
      color: #000;
      padding: 0.8rem 1rem;
      z-index: 999;
      border-radius: 0.5rem;
      font-weight: 700;
    }

    .skip-link:focus {
      left: 1rem;
    }

    .site-header {
      padding: 1.25rem;
      border-bottom: 1px solid var(--border);
      background: rgba(5, 5, 5, 0.86);
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--gold-light);
      text-decoration: none;
    }

    .brand-photo {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
      flex-shrink: 0;
    }

    .mini-nav {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .mini-nav a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 700;
      padding: 0.35rem 0.6rem;
      border-radius: 999px;
    }

    .mini-nav a:hover {
      color: var(--gold-light);
      background: rgba(212, 175, 55, 0.1);
    }

    main {
      min-height: 100vh;
    }

    .service-choice {
      min-height: calc(100vh - 5rem);
      display: grid;
      place-items: center;
      padding: 3rem 1.25rem;
    }

    .choice-card {
      width: 100%;
      max-width: 760px;
      background: linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(24, 24, 24, 0.94));
      border: 1px solid var(--border);
      border-radius: 1.4rem;
      padding: clamp(1.5rem, 5vw, 3rem);
      box-shadow: 0 0 2rem var(--shadow);
      text-align: center;
    }

    h1,
    h2,
    h3 {
      line-height: 1.2;
      margin: 0 0 1rem;
    }

    h1 {
      font-size: clamp(2rem, 6vw, 4rem);
      color: var(--gold-light);
    }

    h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: var(--gold-light);
    }

    .lead {
      font-size: 1.18rem;
      color: var(--muted);
      margin: 0 auto 2rem;
      max-width: 56rem;
    }

    .service-options {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    .service-option {
      display: block;
      text-decoration: none;
      padding: 1.2rem 1.4rem;
      border-radius: 1rem;
      border: 1px solid var(--border);
      background: #090909;
      color: var(--text);
      font-size: clamp(1.15rem, 3vw, 1.5rem);
      font-weight: 800;
      transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
    }

    .service-option:hover {
      transform: translateY(-2px);
      border-color: var(--gold-light);
      background: rgba(212, 175, 55, 0.1);
    }

    .section {
      padding: 5rem 1.25rem;
    }

    .service-detail[hidden],
    .service-choice[hidden] {
      display: none;
    }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .content-panel {
      background: rgba(17, 17, 17, 0.94);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: clamp(1.4rem, 4vw, 2.5rem);
      box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.35);
    }

    .placeholder {
      border-left: 4px solid var(--gold);
      background: rgba(212, 175, 55, 0.08);
      padding: 1rem 1.2rem;
      margin: 1.5rem 0;
      color: var(--text);
      border-radius: 0.75rem;
    }

    .intro-text {
      font-size: 1.08rem;
      color: var(--text);
      margin: 1.5rem 0;
      max-width: 48rem;
    }

    .intro-text p {
      margin: 0 0 1rem;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.25rem;
      padding: 0.85rem 1.2rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      border: 1px solid var(--gold-light);
      background: var(--gold);
      color: #080808;
    }

    .button.secondary {
      background: transparent;
      color: var(--gold-light);
    }

    .button:hover {
      filter: brightness(1.08);
    }


    .contact-details {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(212, 175, 55, 0.28);
    }

    .contact-details h3 {
      font-size: 1.2rem;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }

    .contact-details p {
      margin: 0.35rem 0;
      color: var(--text);
    }

    .contact-details a {
      color: var(--gold-light);
      font-weight: 700;
      text-decoration: none;
    }

    .contact-details a:hover {
      text-decoration: underline;
    }

    .social-links {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(212, 175, 55, 0.28);
    }

    .social-links h3 {
      font-size: 1.2rem;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.8rem;
      padding: 0.65rem 1rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      border: 1px solid var(--border);
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold-light);
    }

    .social-link:hover {
      border-color: var(--gold-light);
      background: rgba(212, 175, 55, 0.14);
    }

    .offer-block {
      margin: 1.75rem 0;
      max-width: 48rem;
    }

    .offer-block h3 {
      font-size: 1.2rem;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }

    .offer-block ul,
    .offer-block ol {
      margin: 0;
      padding-left: 1.4rem;
      color: var(--text);
    }

    .offer-block li {
      margin: 0.45rem 0;
    }

    .offer-block li strong {
      color: var(--gold-light);
    }

    .offer-block p {
      margin: 0.9rem 0 0;
      color: var(--text);
    }

    .accreditations {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(212, 175, 55, 0.28);
    }

    .accreditations h3 {
      font-size: 1.2rem;
      color: var(--gold-light);
      margin-bottom: 0.4rem;
    }

    .accreditations .accreditations-note {
      color: var(--muted);
      margin: 0 0 0.9rem;
    }

    .accreditation-list {
      margin: 0;
      padding-left: 1.4rem;
      color: var(--text);
    }

    .accreditation-list li {
      margin: 0.35rem 0;
    }

    .track {
      margin-top: 2rem;
      padding-top: 1.75rem;
      border-top: 1px solid rgba(212, 175, 55, 0.28);
    }

    .track > h3 {
      font-size: 1.4rem;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .track-intro {
      color: var(--text);
      max-width: 48rem;
      margin: 0 0 0.75rem;
    }

    .offer-block h4 {
      font-size: 1.12rem;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
    }

    .enquiry-line {
      max-width: 48rem;
      margin: 1.25rem 0 0;
      color: var(--text);
    }

    .back-link {
      display: inline-block;
      margin-top: 2rem;
      color: var(--muted);
      font-weight: 700;
    }

    .coming-soon {
      color: var(--muted);
    }

    footer {
      padding: 2rem 1.25rem;
      border-top: 1px solid var(--border);
      color: var(--muted);
      text-align: center;
    }

    footer p {
      margin: 0;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .footer-links a {
      color: var(--gold-light);
      font-weight: 700;
      text-decoration: none;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    @media (min-width: 720px) {
      .service-options {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .service-option {
        transition: none;
      }

      .service-option:hover {
        transform: none;
      }
    }
