  :root {
    --purple: #4a1a5c;
    --purple-mid: #6b2880;
    --purple-light: #8a3da0;
    --purple-pale: #f3eaf6;
    --gold: #c9a84c;
    --gold-light: #e8c96e;
    --cream: #fdf9f5;
    --text: #1a0d22;
    --text-mid: #5a3d6a;
    --text-light: #9a7aaa;
    --white: #ffffff;
    --border: rgba(74,26,92,0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── PAGE SYSTEM ─── */
  .page { display: none; }
  .page.active { display: block; }

  /* ─── SCAMMER BANNER ─── */
  .scam-banner {
    background: #7a1a1a;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .scam-banner strong { color: #ffcfcf; }
  .scam-banner a { color: #ffc0c0; text-decoration: underline; cursor: pointer; }

  /* ─── NAV ─── */
  nav {
    background: var(--purple);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5%;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
  }
  .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon svg { width: 22px; height: 22px; fill: var(--gold); }
  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1.1;
  }
  .logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a.active { color: var(--white); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

  .btn-primary {
    background: var(--gold);
    color: var(--purple);
    border: none;
    padding: 11px 24px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .btn-primary:hover { background: var(--gold-light); color: var(--purple); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    padding: 11px 24px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .btn-outline:hover { background: var(--purple); color: var(--white); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

  /* ─── HERO ─── */
  .hero {
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    gap: 60px;
  }
  .hero-content {}
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-pale);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--purple);
    margin-bottom: 20px;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  .hero-visual {
    position: relative;
    height: 520px;
  }
  .hero-img-main {
    width: 75%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 80px 12px 80px;
    display: block;
    margin-left: auto;
    box-shadow: 0 30px 60px rgba(74,26,92,0.25);
  }
  .hero-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(74,26,92,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
  }
  .hero-badge-icon {
    width: 42px;
    height: 42px;
    background: var(--purple-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  .hero-badge-text strong { display: block; font-size: 0.95rem; color: var(--purple); font-weight: 700; }
  .hero-badge-text span { font-size: 0.75rem; color: var(--text-light); }

  /* ─── SECTION TITLES ─── */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--purple);
    line-height: 1.15;
  }
  .section-sub {
    color: var(--text-mid);
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.6;
  }

  /* ─── SERVICES SECTION ─── */
  .services-section {
    padding: 90px 5%;
    background: var(--white);
  }
  .services-section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .service-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    background: var(--cream);
    text-decoration: none;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(74,26,92,0.15); }
  .service-card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: var(--purple-pale);
  }
  .service-card-body { padding: 16px; }
  .service-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 4px;
  }
  .service-card-count {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section {
    padding: 90px 5%;
    background: var(--purple);
  }
  .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .testimonials-section .section-label { color: var(--gold-light); }
  .testimonials-section .section-label::before { background: var(--gold-light); }
  .testimonials-section .section-title { color: var(--white); }
  .testimonials-section .section-sub { color: rgba(255,255,255,0.65); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px;
    backdrop-filter: blur(10px);
  }
  .testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--purple);
    font-size: 1rem;
    flex-shrink: 0;
  }
  .testimonial-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
  .testimonial-service { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

  /* ─── FAQ ─── */
  .faq-section {
    padding: 90px 5%;
    background: var(--cream);
  }
  .faq-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .faq-inner .section-label { display: flex; justify-content: center; }
  .faq-list { margin-top: 48px; text-align: left; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    gap: 16px;
  }
  .faq-q:hover { color: var(--purple); }
  .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--purple-pale);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
    line-height: 1;
    font-weight: 400;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple); color: var(--white); }
  .faq-a {
    color: var(--text-mid);
    font-size: 0.93rem;
    line-height: 1.75;
    padding-top: 14px;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* ─── VISIT / MAP ─── */
  .visit-section {
    padding: 90px 5%;
    background: var(--white);
  }
  .visit-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .visit-info {}
  .visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
  }
  .visit-icon {
    width: 44px;
    height: 44px;
    background: var(--purple-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .visit-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
  .visit-value { color: var(--text); font-size: 0.95rem; line-height: 1.5; font-weight: 500; }

  .map-placeholder {
    height: 320px;
    background: var(--purple-pale);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px dashed var(--border);
  }
  .map-placeholder span { font-size: 2.5rem; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 60px 5% 30px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .footer-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
  }
  footer p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
  .footer-heading {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; align-items: flex-start; }
  .footer-contact-item span:first-child { flex-shrink: 0; font-size: 1rem; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; cursor: pointer; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ─── STICKY BOOK BUTTON ─── */
  .sticky-book {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
  }
  .sticky-book button {
    background: var(--gold);
    color: var(--purple);
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
  }
  .sticky-book button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.5); }


  /* ─── STICKY CATEGORY TABS ─── */
  .sticky-tabs {
    position: sticky;
    top: 72px;
    z-index: 900;
    background: var(--white);
    padding: 0 5%;
    margin: 0 -5%;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(74,26,92,0.08);
  }
  .services-page-body {
    padding-top: 0 !important;
  }
  .services-page-body > .sticky-tabs {
    padding-top: 16px;
  }
  .services-page-content {
    padding: 40px 0;
  }

  /* ─── SERVICES PAGE ─── */
  .services-page-hero {
    background: var(--purple);
    padding: 80px 5% 60px;
    text-align: center;
  }
  .services-page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
  }
  .services-page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

  .services-page-body {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
  }
  .category-tab {
    padding: 10px 18px 12px;
    border: none;
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-mid);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.02em;
  }
  .category-tab:hover { color: var(--purple); }
  .category-tab.active { color: var(--purple); border-bottom-color: var(--gold); }

  .service-category { margin-bottom: 60px; display: none; }
  .service-category.visible { display: block; }
  .service-category h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .service-category h2::after { content: ''; flex: 1; height: 1px; background: var(--border); }

  .service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .service-item-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .service-item-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74,26,92,0.12); }
  .service-item-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: var(--purple-pale);
  }
  .service-item-body { padding: 20px; }
  .service-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 6px;
  }
  .service-item-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
  .service-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple);
  }
  .service-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }
  .btn-book {
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .btn-book:hover { background: var(--purple-light); }

  /* ─── BOOKING MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,13,34,0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    margin: auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(26,13,34,0.3);
  }
  .modal-header {
    background: var(--purple);
    padding: 28px 32px;
    color: var(--white);
  }
  .modal-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .modal-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.25); }

  .modal-steps {
    display: flex;
    gap: 0;
  }
  .modal-step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    position: relative;
  }
  .step-circle.done { background: var(--gold); color: var(--purple); }
  .step-circle.active { background: var(--white); color: var(--purple); }
  .step-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); text-align: center; font-weight: 500; }
  .step-circle.active + .step-label { color: var(--white); }
  .step-circle.done + .step-label { color: rgba(255,255,255,0.8); }

  .modal-body { padding: 32px; }

  .booking-step { display: none; }
  .booking-step.active { display: block; }

  /* Step 1 – Policy */
  .policy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .policy-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
  }
  .policy-header span { font-size: 1.8rem; }
  .policy-list { list-style: none; }
  .policy-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    align-items: flex-start;
  }
  .policy-num {
    width: 26px;
    height: 26px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .policy-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 28px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
  }
  .policy-checkbox input { width: 18px; height: 18px; accent-color: var(--purple); cursor: pointer; }

  /* Step 2 – Form */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-label { font-size: 0.8rem; font-weight: 600; color: var(--text); letter-spacing: 0.04em; }
  .form-input {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus { border-color: var(--purple); background: var(--white); }
  .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a1a5c' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .form-select:focus { border-color: var(--purple); }
  .service-selected-badge {
    background: var(--purple-pale);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-selected-badge strong { color: var(--purple); }

  /* Step 3 – Calendar */
  .calendar-wrap { margin-bottom: 24px; }
  .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .cal-month-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple);
  }
  .cal-nav {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--border);
    background: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 0.9rem;
    transition: background 0.2s;
  }
  .cal-nav:hover { background: var(--purple-pale); }
  .cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
  }
  .cal-days-header span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .cal-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.87rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text);
    transition: background 0.15s, color 0.15s;
    border: 1.5px solid transparent;
  }
  .cal-cell:hover:not(.empty):not(.past) { background: var(--purple-pale); color: var(--purple); }
  .cal-cell.past { color: var(--text-light); cursor: default; }
  .cal-cell.empty { cursor: default; }
  .cal-cell.available { background: rgba(74,26,92,0.06); }
  .cal-cell.selected { background: var(--purple) !important; color: var(--white) !important; border-color: var(--purple); }
  .cal-cell.today { border-color: var(--gold); font-weight: 700; }

  .time-slots-wrap { margin-bottom: 24px; }
  .time-slots-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .time-slot {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.15s;
    background: var(--cream);
  }
  .time-slot:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }
  .time-slot.selected { background: var(--purple); color: var(--white); border-color: var(--purple); }
  .time-slot.unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

  .agree-section {
    background: var(--cream);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
  }
  .agree-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .agree-row:last-child { margin-bottom: 0; }
  .agree-row input { width: 16px; height: 16px; accent-color: var(--purple); cursor: pointer; margin-top: 2px; flex-shrink: 0; }

  /* Confirmation */
  .confirmation-screen {
    text-align: center;
    padding: 12px 0;
  }
  .confirmation-screen .check-icon {
    width: 70px;
    height: 70px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
  }
  .confirmation-screen h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 10px;
  }
  .confirmation-screen p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; margin-bottom: 8px; }
  .booking-summary-box {
    background: var(--purple-pale);
    border-radius: 10px;
    padding: 20px;
    margin: 24px 0;
    text-align: left;
  }
  .booking-summary-box .row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(74,26,92,0.1);
  }
  .booking-summary-box .row:last-child { border-bottom: none; }
  .booking-summary-box .row span:first-child { color: var(--text-light); font-weight: 500; }
  .booking-summary-box .row span:last-child { color: var(--purple); font-weight: 600; }

  /* Modal footer */
  .modal-footer {
    padding: 0 32px 32px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
  }
  .btn-back {
    background: transparent;
    color: var(--text-mid);
    border: 1.5px solid var(--border);
    padding: 11px 22px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-back:hover { border-color: var(--purple); color: var(--purple); }
  .btn-next {
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.04em;
  }
  .btn-next:hover { background: var(--purple-light); }
  .btn-next:disabled { opacity: 0.5; cursor: not-allowed; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 48px 5%; }
    .hero-visual { height: 360px; order: -1; }
    .hero-img-main { width: 100%; border-radius: 12px 60px 12px 60px; }
    .hero h1 { font-size: 2.5rem; }
    .visit-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--purple); padding: 24px 5%; flex-direction: column; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(74,26,92,0.3); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .modal-body { padding: 24px 20px; }
    .modal-footer { padding: 0 20px 24px; }
    .modal-header { padding: 20px; }
    .hero-btns { flex-direction: column; }
    .services-header { flex-direction: column; align-items: flex-start; }
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .page.active .hero-content { animation: fadeUp 0.6s ease both; }
  .page.active .hero-visual { animation: fadeUp 0.6s 0.15s ease both; }