*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #9a8c6e;
      --gold-light: #b5a882;
      --ink: #1a1a18;
      --cream: #faf9f6;
      --rule: #d4cfc4;
      --muted: #6b6760;
      --dark-bg: #1a1a18;
      --dark-border: #3a3a36;
      --dark-placeholder: #5a5a56;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      color: var(--ink);
      background: var(--cream);
      font-weight: 300;
    }

    /* ── NAV ── */
    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      border-bottom: 0.5px solid var(--rule);
      position: sticky;
      top: 0;
      background: var(--cream);
      z-index: 100;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--cream);
      padding: 10px 22px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: #333330; }

    /* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }
    .hero-text {
      padding: 4.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 0.5px solid var(--rule);
    }
    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 7vw, 72px);
      font-weight: 500;
      text-transform: uppercase;
      line-height: 1.02;
      color: var(--ink);
    }
    .hero-name em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-tagline {
      font-size: 14px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
      margin-top: 1.75rem;
      max-width: 360px;
    }
    .hero-location {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 2rem;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-location::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 0.5px;
      background: var(--gold);
    }
    .hero-services {
      display: flex;
      gap: 1rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .service-pill {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      border: 0.5px solid var(--rule);
      padding: 6px 14px;
    }

    /* ── BOOKING PANEL ── */
    .hero-booking {
      padding: 3.5rem 2.75rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--dark-bg);
    }
    .booking-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }
    .booking-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 2rem;
      line-height: 1.3;
    }
    .booking-field {
      margin-bottom: 1rem;
    }
    .booking-field label {
      display: block;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .booking-field input,
    .booking-field select,
    .booking-field textarea {
      width: 100%;
      background: transparent;
      border: 0.5px solid var(--dark-border);
      color: var(--cream);
      padding: 10px 12px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 300;
      outline: none;
      appearance: none;
      transition: border-color 0.2s;
    }
    .booking-field input:focus,
    .booking-field select:focus,
    .booking-field textarea:focus {
      border-color: var(--gold);
    }
    .booking-field input::placeholder,
    .booking-field textarea::placeholder { color: var(--dark-placeholder); }
    .booking-field select option { background: var(--dark-bg); }
    .booking-field textarea { resize: vertical; min-height: 80px; }
    .booking-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .booking-submit {
      width: 100%;
      background: var(--gold);
      color: var(--cream);
      border: none;
      padding: 14px;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 0.75rem;
      transition: background 0.2s;
    }
    .booking-submit:hover { background: var(--gold-light); }

    /* ── SERVICES ── */
    .services-section {
      border-top: 0.5px solid var(--rule);
    }
    .services-category + .services-category {
      border-top: 0.5px solid var(--rule);
    }
    .services-category-header {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      padding: 2.25rem 2.25rem 0;
    }
    .services-category-header .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .services-category-header .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--ink);
      margin-top: 0;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .services-grid.cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
      padding: 2rem 2.25rem 2.25rem;
      border-right: 0.5px solid var(--rule);
      border-bottom: 0.5px solid var(--rule);
    }
    .services-grid .service-card:nth-child(3n) { border-right: none; }
    .services-grid .service-card:nth-last-child(-n+3) { border-bottom: none; }
    .services-grid .service-card:last-child { border-right: none; }
    .services-grid.cols-2 .service-card:nth-child(2n) { border-right: none; }
    .service-number {
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 300;
      color: var(--ink);
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    .service-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
    }
    .service-link {
      display: inline-block;
      margin-top: 1.25rem;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 0.5px solid var(--gold);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .service-link:hover { color: var(--ink); border-color: var(--ink); }

    .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      color: var(--ink);
      margin-top: 0.4rem;
    }

    /* ── ABOUT STRIP ── */
    .about-strip {
      display: grid;
      grid-template-columns: 220px 320px 1fr;
      border-top: 0.5px solid var(--rule);
    }
    .about-label {
      padding: 3rem 2rem;
      border-right: 0.5px solid var(--rule);
      display: flex;
      align-items: flex-start;
    }
    .about-photo {
      border-right: 0.5px solid var(--rule);
      min-height: 400px;
      overflow: hidden;
    }
    .about-label span {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .about-content {
      padding: 3rem 3rem;
    }
    .about-pull {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 300;
      font-style: italic;
      color: var(--ink);
      line-height: 1.45;
      max-width: 580px;
    }
    .about-body {
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.9;
      margin-top: 1.75rem;
      max-width: 520px;
    }
    .about-cta {
      display: inline-block;
      margin-top: 2rem;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      border: 0.5px solid var(--ink);
      padding: 10px 24px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .about-cta:hover { background: var(--ink); color: var(--cream); }

    /* ── FOOTER ── */
    footer {
      border-top: 0.5px solid var(--rule);
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-left {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .footer-location {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }
    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .footer-links a {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--ink); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .nav { padding: 1.25rem 1.5rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-text { padding: 3rem 1.5rem; border-right: none; border-bottom: 0.5px solid var(--rule); }
      .hero-booking { padding: 2.5rem 1.5rem; }
      .services-grid { grid-template-columns: 1fr; }
      .services-category-header { padding: 2rem 1.5rem 0; }
      .service-card { border-right: none; border-bottom: 0.5px solid var(--rule); padding-left: 1.5rem; padding-right: 1.5rem; }
      .about-strip { grid-template-columns: 1fr; }
      .about-label { display: none; }
      .about-photo { display: none; }
      .about-strip { grid-template-columns: 1fr; }
      .about-content { padding: 2.5rem 1.5rem; }
      footer { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
      .booking-row { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; }
    }
