    :root {
      --black: #000000;
      --gold: #d4af37;
      --teal: #0c3b40;
      --offwhite: #f7f4ec;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: #050608;
      color: #ffffff;
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    .wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.25rem 3rem;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(0, 0, 0, 0.88);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Playfair Display", serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--gold);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .brand-text span:first-child {
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      font-size: 0.82rem;

    }

    .nav-links a {
      opacity: 0.9;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), #f1d27a);
      color: #111;
    }

    .btn-primary:hover {
      filter: brightness(1.05);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      border-color: var(--teal);
      color: #f6f6f6;
    }

    .btn-outline:hover {
      background: var(--teal);
    }

    /* HERO */
    .hero {
      padding: 3.5rem 1.25rem 3rem;
      background: radial-gradient(circle at top, #202020 0, #020304 58%, #000000 100%);
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.7rem;
      color: var(--gold);
      margin-bottom: 0.7rem;
    }

    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: 2.4rem;
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero-subheadline {
      font-size: 1.1rem;
      margin-bottom: 0.85rem;
      color: #e6e6e6;
    }

    .hero-tagline {
      font-size: 0.9rem;
      color: #c9c9c9;
      margin-bottom: 1.3rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.3rem;
    }

    .hero-meta {
      font-size: 0.8rem;
      color: #a8a8a8;
    }

    .hero-meta strong {
      color: var(--offwhite);
    }

    .hero-card {
      border-radius: 1.5rem;
      border: 1px solid rgba(212, 175, 55, 0.4);
      padding: 1.75rem 1.4rem;
      background: radial-gradient(circle at top left, rgba(212,175,55,0.16), transparent 55%), #050608;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    }

    .hero-card h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.25rem;
      margin-bottom: 0.2rem;
    }

    .hero-card p {
      font-size: 0.83rem;
      color: #d2d2d2;
      margin-bottom: 0.9rem;
    }

    .qr-wrapper {
      margin-top: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .qr-wrapper img {
      width: 92px;
      height: 92px;
      border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.18);
      object-fit: cover;
    }

    .qr-wrapper span {
      font-size: 0.8rem;
      color: #cfcfcf;
    }

    /* SHARED SECTION STYLES */
    section {
      padding: 2.75rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .section-heading {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-heading h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      margin-bottom: 0.2rem;
    }

    .section-heading p {
      font-size: 0.85rem;
      color: #c5c5c5;
    }

    /* HOW IT WORKS */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.6rem;
    }

    .step-card {
      border-radius: 1.2rem;
      padding: 1.4rem 1.2rem;
      background: #050608;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .step-icon {
      font-size: 1.4rem;
      margin-bottom: 0.7rem;
    }

    .step-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
      color: var(--offwhite);
    }

    .step-text {
      font-size: 0.82rem;
      color: #bdbdbd;
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      border-radius: 1.1rem;
      padding: 1.2rem 1.2rem;
      background: #050608;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-card h3 {
      font-size: 0.98rem;
      margin-bottom: 0.4rem;
      color: var(--gold);
    }

    .service-card ul {
      list-style: none;
      font-size: 0.82rem;
      color: #d4d4d4;
    }

    .service-card li::before {
      content: "✔";
      color: var(--gold);
      margin-right: 0.4rem;
    }

    /* BOOKING */
    .booking-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
      gap: 2rem;
      align-items: stretch;
    }

    .booking-copy {
      font-size: 0.87rem;
      color: #d1d1d1;
    }

    .booking-copy p + p {
      margin-top: 0.7rem;
    }

    .booking-copy ul {
      margin-top: 0.8rem;
      list-style: none;
      font-size: 0.82rem;
    }

    .booking-copy li::before {
      content: "• ";
      color: var(--gold);
    }

    .booking-embed {
      border-radius: 1.1rem;
      border: 1px solid rgba(255,255,255,0.12);
      overflow: hidden;
      background: #020203;
    }

    .booking-placeholder {
      padding: 1.2rem;
      font-size: 0.82rem;
      color: #c4c4c4;
    }

    .booking-placeholder strong {
      color: var(--gold);
    }

    /* FORMS */
    .form-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
      gap: 2rem;
      align-items: flex-start;
    }

    form {
      font-size: 0.85rem;
    }

    .field {
      margin-bottom: 0.9rem;
      
    }

    label {
      display: block;
      margin-bottom: 0.25rem;
      font-size: 0.8rem;
      color: #f0f0f0;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      padding: 0.7rem 0.8rem;
      border-radius: 0.6rem;
      border: 1px solid rgba(255,255,255,0.18);
      background: #050608;
      color: #fdfdfd;
      font-family: inherit;
      font-size: 0.84rem;
    }

    textarea {
      min-height: 90px;
      resize: vertical;
    }

    input[type="file"] {
      color: #d0d0d0;
      font-size: 0.8rem;
    }

    .helper {
      font-size: 0.74rem;
      color: #b3b3b3;
      margin-top: 0.25rem;
    }

    /* CLIENT PORTAL */
    .portal {
      text-align: center;
      font-size: 0.88rem;
      color: #d3d3d3;
    }

    .portal p {
      margin-bottom: 1rem;
    }

    .portal small {
      display: block;
      margin-top: 0.4rem;
      font-size: 0.75rem;
      color: #aaaaaa;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 1.4rem 1.25rem 2rem;
      font-size: 0.78rem;
      color: #b4b4b4;
    }

    footer .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      align-items: center;
    }

    footer span strong {
      color: var(--gold);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-inner,
      .booking-wrap,
      .form-grid,
      .services-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 2.7rem;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .nav-links {
        display: none; /* keep simple for mobile */
      }
    }

    @media (max-width: 600px) {
      .hero-card {
        margin-top: 1rem;
      }
    }
    
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

/* Left column */
.nav-left {
  display: flex;
  align-items: center;
}

.nev-logo img {
  max-height: 50px;
}

/* Right column */
.nav-links {
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;

}

.nav-links a:hover {
  color: #b0b0b0;
}