  :root {
    --burgundy: #4A0210;
    --burgundy-light: #6E0A1C;
    --burgundy-pale: #F5ECEe;
    --burgundy-mid: #E8D0D5;
    --gold: #C9A84C;
    --dark: #240005;
    --mid: #555555;
    --light: #F9F6F4;
    --white: #FFFFFF;
    --border: #E5DADA;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lora', serif;
    background: var(--white);
    color: var(--dark);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--burgundy); }

  /* ── HAMBURGER (mobile) ── */
  .nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 1002; }
  .nav-burger span { display: block; width: 24px; height: 2px; background: var(--burgundy); margin: 5px 0; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
  @media (max-width: 900px) {
    /* backdrop-filter on nav would trap the fixed full-screen menu inside the 68px bar */
    nav { backdrop-filter: none; background: rgba(255,255,255,0.97); }
    .nav-burger { display: block; position: relative; z-index: 1002; }
    .nav-logo { position: relative; z-index: 1002; }
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      padding: 110px 28px 36px;
      background: var(--white);
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
    }
    nav.nav-open .nav-links {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
    }
    .nav-links li {
      width: 100%;
      text-align: center;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    nav.nav-open .nav-links li { opacity: 1; transform: none; }
    nav.nav-open .nav-links li:nth-child(1) { transition-delay: 0.08s; }
    nav.nav-open .nav-links li:nth-child(2) { transition-delay: 0.14s; }
    nav.nav-open .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    nav.nav-open .nav-links li:nth-child(4) { transition-delay: 0.26s; }
    nav.nav-open .nav-links li:nth-child(5) { transition-delay: 0.32s; }
    nav.nav-open .nav-links li:nth-child(6) { transition-delay: 0.38s; }
    nav.nav-open .nav-links li:nth-child(7) { transition-delay: 0.44s; }
    nav.nav-open .nav-links li:nth-child(8) { transition-delay: 0.5s; }
    .nav-links a { display: block; padding: 14px 0; font-size: 1.3rem; font-family: 'Playfair Display', serif; color: var(--dark); }
    .nav-links li:has(a.nav-cta) { margin-top: 18px; }
    .nav-links a.nav-cta {
      display: block;
      width: 100%;
      padding: 16px 0;
      border-radius: 999px;
      background: var(--burgundy);
      color: var(--white);
      font-family: 'Lora', serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }
    nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }

  .nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--burgundy-light) !important; color: var(--white) !important; }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 60px 80px 60px;
  }

  .hero-photo-collage {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
  }

  /* 6-photo staggered grid */
  .hero-photo-collage .col {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero-photo-collage .col-1 {
    left: 0;
    width: 33.5%;
    top: -40px;
  }

  .hero-photo-collage .col-2 {
    left: calc(33.5% + 8px);
    width: 33%;
    top: 40px;
  }

  .hero-photo-collage .col-3 {
    left: calc(66.5% + 16px);
    width: 33.5%;
    top: -20px;
  }

  .collage-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.85) saturate(0.95);
    transition: filter 0.3s;
  }

  .collage-img:hover { filter: brightness(1) saturate(1.1); }

  /* Gradient fade on left edge to blend into content */
  .hero-photo-collage::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, var(--white), transparent);
    z-index: 2;
    pointer-events: none;
  }

  /* Dark gradient at top and bottom for polish */
  .hero-photo-collage::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--burgundy-pale);
    border: 1px solid var(--burgundy-mid);
    color: var(--burgundy);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .hero-eyebrow::before { content: "♟"; font-size: 0.9rem; }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 20px;
  }

  h1 em {
    font-style: italic;
    color: var(--burgundy);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--mid);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-primary {
    background: var(--burgundy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--burgundy-light); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--burgundy);
    padding: 13px 28px;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid var(--burgundy);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-outline:hover { background: var(--burgundy-pale); }

  .hero-stats {
    display: flex;
    gap: 40px;
  }

  .stat { }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--mid);
    margin-top: 4px;
    font-weight: 400;
  }

  /* ── SECTIONS SHARED ── */
  section { padding: 90px 40px; }

  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .section-lead {
    font-size: 1.05rem;
    color: var(--mid);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 48px;
  }

  /* ── ABOUT ── */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }

  .about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(123,45,62,0.25);
  }

  .about-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
  }

  .about-text h2 { margin-bottom: 20px; }

  .about-quote {
    border-left: 3px solid var(--burgundy);
    padding-left: 20px;
    margin: 28px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--burgundy);
    line-height: 1.6;
  }

  .about-body {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  /* ── EVENTS ── */
  #events { background: var(--light); }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .event-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .event-card:hover {
    box-shadow: 0 12px 32px rgba(123,45,62,0.1);
    transform: translateY(-3px);
  }

  .event-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
  }

  .event-city {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 6px;
  }

  .event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .event-card p {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .event-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .event-tag {
    background: var(--burgundy-pale);
    color: var(--burgundy);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
  }

  /* ── WOMEN'S CIRCLE ── */
  #womens-circle {
    background: linear-gradient(135deg, var(--burgundy) 0%, #5C1F2E 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  #womens-circle::before {
    content: '♛';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    opacity: 0.05;
    line-height: 1;
  }

  #womens-circle .section-eyebrow {
    color: var(--gold);
  }

  #womens-circle h2 { color: var(--white); }

  #womens-circle .section-lead { color: rgba(255,255,255,0.75); }

  .womens-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .womens-feature {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 24px;
  }

  .womens-feature-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
  }

  .womens-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .womens-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── JOIN ── */
  #join { background: var(--white); }

  .join-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

  .join-perks {
    list-style: none;
    margin: 28px 0 36px;
  }

  .join-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--mid);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .join-perks li:last-child { border-bottom: none; }

  .perk-icon {
    color: var(--burgundy);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .form-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
  }

  .form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
  }

  .form-card .form-sub {
    font-size: 0.875rem;
    color: var(--mid);
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
  }

  input, select, textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }

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

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

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .chess-username-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
  }

  .chess-username-row .form-group { flex: 1; margin: 0; }

  .fetch-btn {
    padding: 10px 14px;
    background: var(--burgundy-pale);
    color: var(--burgundy);
    border: 1.5px solid var(--burgundy-mid);
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    height: 42px;
  }

  .fetch-btn:hover { background: var(--burgundy-mid); }

  .rating-display {
    display: none;
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--burgundy-pale);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--burgundy);
    font-weight: 500;
  }

  .checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--mid);
    cursor: pointer;
  }

  .checkbox-label input[type="checkbox"] {
    width: auto;
    padding: 0;
    accent-color: var(--burgundy);
  }

  .form-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
  }

  /* ── DIRECTORY ── */
  #directory { background: var(--light); }

  .directory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .member-count-badge {
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
  }

  .directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
  }

  .member-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s;
  }

  .member-card:hover { box-shadow: 0 8px 24px rgba(123,45,62,0.08); }

  .member-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy-pale), var(--burgundy-mid));
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--burgundy);
    border: 2px solid var(--burgundy-mid);
  }

  .member-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 2px;
  }

  .member-location {
    font-size: 0.75rem;
    color: var(--mid);
    margin-bottom: 8px;
  }

  .member-rating {
    display: inline-block;
    background: var(--burgundy-pale);
    color: var(--burgundy);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
  }

  .directory-blur-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--light) 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
  }

  .blur-cards {
    filter: blur(6px);
    pointer-events: none;
  }

  .directory-cta-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(123,45,62,0.08);
  }

  .directory-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .directory-cta-box p {
    font-size: 0.875rem;
    color: var(--mid);
    margin-bottom: 20px;
  }

  /* ── FRANCHISE / START YOUR CHAPTER ── */
  #franchise { background: var(--white); }

  .franchise-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .franchise-steps {
    list-style: none;
    margin: 28px 0;
  }

  .franchise-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
  }

  .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--burgundy-pale);
    color: var(--burgundy);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .franchise-step h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
  }

  .franchise-step p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.6;
  }

  .waitlist-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
  }

  .waitlist-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .waitlist-card .form-sub {
    font-size: 0.875rem;
    color: var(--mid);
    margin-bottom: 24px;
  }

  .future-products {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .future-products p {
    font-size: 0.75rem;
    color: var(--mid);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .product-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--mid);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 48px 40px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
  }

  .footer-logo span { color: var(--gold); }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }

  /* ── SUCCESS MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
  }

  .modal-overlay.active { display: flex; }

  .modal-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    animation: modalIn 0.3s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .modal-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

  .modal-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .modal-box p {
    font-size: 0.9rem;
    color: var(--mid);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }




  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    section { padding: 60px 20px; }
    #home { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 100px 20px 40px; }
    .hero-photo-collage { height: 420px; }
    .about-grid, .join-grid, .franchise-grid { grid-template-columns: 1fr; gap: 40px; }
    .events-grid, .womens-features { grid-template-columns: 1fr; }
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 24px; }
  }
  .carousel-outer { overflow: hidden; cursor: grab; user-select: none; }
  .carousel-outer:active { cursor: grabbing; }
  .carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); padding-left: 40px; }
  .carousel-slide { position: relative; flex: 0 0 calc(25% - 12px); margin-right: 16px; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; background: #111; }
  .carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.4s ease; filter: brightness(0.88); }
  .carousel-slide:hover img { transform: scale(1.04); filter: brightness(1); }
  .slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 18px 16px; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em; opacity: 0; transition: opacity 0.3s; }
  .carousel-slide:hover .slide-caption { opacity: 1; }
  .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; padding: 0 40px; }
  .carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.7); font-size: 1.1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
  .carousel-btn:hover { border-color: #C9A84C; color: #C9A84C; }
  .carousel-dots { display: flex; gap: 8px; align-items: center; }
  .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.25s; border: none; padding: 0; }
  .dot.active { background: #C9A84C; width: 20px; border-radius: 3px; }

  /* ── WOMEN'S FACES GRID ── */
  .womens-faces-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-top: 48px;
  }
  .face-card {
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  .face-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.88) saturate(0.9);
    transition: transform 0.4s ease, filter 0.3s;
  }
  .face-card:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
  }
  .womens-faces-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
  }
  @media (max-width: 900px) {
    .womens-faces-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 900px) {
    .carousel-track { padding-left: 20px; }
    .carousel-slide { flex: 0 0 calc(82% - 8px); }
  }


/* ── WEEKLY CALENDAR ── */
.calendar-wrap { margin: 50px auto 30px; max-width: 1100px; }
.weekly-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  background: var(--burgundy-pale);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--burgundy-mid);
}
.cal-day {
  background: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cal-day.has-event {
  border-color: var(--burgundy);
  box-shadow: 0 8px 24px rgba(123, 45, 62, 0.12);
}
.cal-day.has-event:hover { transform: translateY(-4px); }
.cal-day-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--burgundy);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cal-day-num {
  color: var(--mid);
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.cal-event {
  margin-top: auto;
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.35;
}
.cal-event strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.cal-event-time { opacity: 0.85; font-size: 0.7rem; margin-top: 4px; }
.cal-empty { color: var(--mid); font-size: 0.85rem; margin: auto 0; }
.cal-event.gold { background: var(--gold); color: var(--dark); }

@media (max-width: 900px) {
  .weekly-calendar { grid-template-columns: repeat(2, 1fr); }
  .cal-day { min-height: 130px; }
}
@media (max-width: 500px) {
  .weekly-calendar { grid-template-columns: 1fr; }
}

/* sub-page hero (smaller than home) */
.sub-hero {
  padding: 140px 40px 60px;
  text-align: center;
  background: var(--burgundy-pale);
}
.sub-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; color: var(--burgundy); }
.sub-hero p { max-width: 720px; margin: 0 auto; color: var(--mid); font-size: 1.1rem; line-height: 1.6; }

/* Women's Circle two-column split */
.womens-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.womens-split-left { color: rgba(255,255,255,0.85); }
.womens-split-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--white);
  font-weight: 600;
}
.womens-features-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.womens-features-stack .womens-feature { padding: 18px 22px; }
.womens-features-stack .womens-feature h4 { margin-bottom: 6px; }
.womens-features-stack .womens-feature p { font-size: 0.88rem; }

.womens-split-right { position: sticky; top: 100px; }

/* Instagram reel embed */
.ig-embed-wrap {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.ig-embed {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  background: var(--white);
}
.ig-caption {
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  color: var(--mid);
  padding: 12px 18px 16px;
  margin: 0;
  text-align: center;
  background: var(--white);
}

@media (max-width: 900px) {
  .womens-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .womens-split-right { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
}
@media (max-width: 500px) {
  .ig-embed { height: 640px; }
}

/* ── MONTH CALENDAR ── */
.month-cal-wrap { max-width: 1100px; margin: 50px auto 40px; background: var(--white); border: 1px solid var(--burgundy-mid); border-radius: 16px; padding: 26px; box-shadow: 0 10px 40px rgba(123,45,62,0.08); }
.month-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.month-cal-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--burgundy); }
.month-nav-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--burgundy-mid); background: var(--white); color: var(--burgundy); font-size: 1.3rem; cursor: pointer; transition: all 0.2s; }
.month-nav-btn:hover { background: var(--burgundy); color: var(--white); }
.month-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.mc-dow { text-align: center; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); padding: 6px 0; }
.mc-cell { min-height: 74px; border-radius: 10px; background: var(--burgundy-pale); padding: 6px; position: relative; display: flex; flex-direction: column; gap: 3px; }
.mc-blank { background: transparent; }
.mc-daynum { font-size: 0.8rem; color: var(--mid); }
.mc-today { outline: 2px solid var(--gold); }
.mc-past { opacity: 0.45; }
.mc-has-event { background: var(--burgundy); color: #fff; cursor: pointer; transition: transform 0.15s; }
.mc-has-event:not(.mc-past):hover { transform: translateY(-2px); }
.mc-has-event .mc-daynum { color: inherit; opacity: 0.8; }
.mc-has-event .mc-event-pill { background: transparent; box-shadow: none; }
.mc-event-pill { display: block; font-size: 0.66rem; line-height: 1.3; background: rgba(255,255,255,0.14); color: var(--white); border-radius: 8px; padding: 6px 8px; overflow: hidden; }
.mc-ev-title { display: block; font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 600; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.mc-ev-meta { display: flex; align-items: center; gap: 4px; font-size: 0.64rem; opacity: 0.9; line-height: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-ev-meta svg { flex-shrink: 0; }
@media (max-width: 760px) {
  .mc-cell { min-height: 50px; }
  .mc-event-pill { display: none; }
  .mc-has-event::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); }
}

/* ── MOBILE EVENT LIST (replaces the grid on small screens) ── */
.mc-agenda { display: none; }
@media (max-width: 760px) {
  .month-cal-header, .month-cal-grid { display: none; }
  .mc-agenda { display: block; }
  .mc-agenda-pills { display: flex; gap: 8px; margin-bottom: 14px; }
  .mc-agenda-pill { flex: 1; padding: 9px 6px; border-radius: 999px; border: 1px solid var(--burgundy-mid); background: var(--white); color: var(--burgundy); font-family: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.15s; }
  .mc-agenda-pill.active { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
  .mc-agenda-row { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; background: var(--white); border: 1px solid var(--burgundy-mid); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; cursor: pointer; font-family: inherit; }
  .mc-agenda-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--burgundy); color: var(--white); display: flex; align-items: center; justify-content: center; }
  .mc-agenda-info { flex: 1; min-width: 0; }
  .mc-agenda-title { display: block; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.98rem; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mc-agenda-meta { display: block; font-size: 0.78rem; color: var(--mid); }
  .mc-agenda-go { color: var(--burgundy); font-size: 1.4rem; line-height: 1; }
  .mc-agenda-empty { text-align: center; color: var(--mid); font-size: 0.9rem; padding: 14px 0; }
  .mc-agenda-more { text-align: center; margin-top: 4px; }
  .mc-agenda-more a { color: var(--burgundy); font-size: 0.88rem; text-decoration: underline; text-underline-offset: 3px; }
}

/* ── EVENT CARD ACTIONS ── */
.event-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.event-actions .btn-primary, .event-actions .btn-outline { padding: 10px 22px; font-size: 0.85rem; cursor: pointer; border: none; }
.event-actions .btn-outline { border: 1px solid var(--burgundy-mid); }
.events-loading { text-align: center; color: var(--mid); grid-column: 1 / -1; padding: 30px 0; }

/* ── PACKAGES ── */
.packages-heading { font-family: 'Playfair Display', serif; color: var(--dark); margin-bottom: 24px; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; max-width: 900px; }
.package-card { background: var(--white); border: 1px solid var(--burgundy-mid); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; gap: 10px; transition: transform 0.2s, box-shadow 0.2s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(123,45,62,0.12); }
.package-sessions { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.package-card h3 { font-family: 'Playfair Display', serif; color: var(--burgundy); }
.package-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; flex-grow: 1; }
.package-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark); }

/* ── BOOKING MODAL ── */
.booking-overlay { position: fixed; inset: 0; background: rgba(38,20,25,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.booking-overlay.active { display: flex; }
.booking-modal { background: var(--white); border-radius: 18px; max-width: 620px; width: 100%; padding: 36px 44px; position: relative; max-height: 92vh; overflow-y: auto; }
.booking-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.8rem; color: var(--mid); cursor: pointer; line-height: 1; }
.booking-title { font-family: 'Playfair Display', serif; color: var(--burgundy); font-size: 1.5rem; margin: 4px 0 6px; }
.booking-sub { color: var(--mid); font-size: 0.92rem; margin-bottom: 6px; }
.booking-map { display: inline-block; font-size: 0.85rem; color: var(--burgundy); text-decoration: underline; margin-bottom: 8px; }
.booking-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--dark); margin: 10px 0 18px; }
.booking-modal .form-row { margin-bottom: 14px; }
.booking-modal .form-row label { display: block; font-size: 0.78rem; color: var(--mid); margin-bottom: 4px; }
.booking-modal .form-row input, .booking-modal .form-row select { width: 100%; padding: 11px 13px; border: 1px solid var(--burgundy-mid); border-radius: 9px; font: inherit; font-size: 0.92rem; background: var(--white); }
.booking-modal .phone-row { display: flex; gap: 8px; position: relative; }
.booking-modal .phone-row input { flex: 1; min-width: 0; }
.cc-btn { flex-shrink: 0; width: auto; padding: 11px 12px; border: 1px solid var(--burgundy-mid); border-radius: 9px; background: var(--white); font: inherit; font-size: 0.92rem; cursor: pointer; white-space: nowrap; }
.cc-panel { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40; background: var(--white); border: 1px solid var(--burgundy-mid); border-radius: 12px; box-shadow: 0 12px 34px rgba(0,0,0,0.14); padding: 10px; }
.cc-panel input { width: 100%; padding: 10px 12px; border: 1px solid var(--burgundy-mid); border-radius: 8px; font: inherit; font-size: 0.9rem; margin-bottom: 8px; }
.cc-list { max-height: 210px; overflow-y: auto; }
.cc-item { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 10px 10px; border: none; background: none; font: inherit; font-size: 0.9rem; cursor: pointer; border-radius: 8px; text-align: left; gap: 10px; }
.cc-item:hover { background: var(--burgundy-pale); }
.cc-code { color: var(--mid); }
.cc-empty { padding: 12px; color: var(--mid); font-size: 0.88rem; text-align: center; }
.booking-error { background: #fbecec; color: #a33; border-radius: 8px; padding: 10px 14px; font-size: 0.85rem; margin-bottom: 12px; }
.booking-secure-note { font-size: 0.76rem; color: var(--mid); text-align: center; margin-top: 12px; }

/* ── CONFIRMATION PAGE ── */
.confirm-section { display: flex; align-items: flex-start; justify-content: center; padding: 96px 20px 60px; background: var(--white); }
.confirm-cal { margin: 2px 0 10px; }
.confirm-cal-toggle { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--burgundy); border: 1px solid var(--burgundy); border-radius: 999px; padding: 12px 26px; font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer; }
.confirm-cal-options { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 12px; }
.confirm-cal-options a { display: inline-block; padding: 10px 18px; border: 1px solid var(--burgundy-mid); border-radius: 999px; color: var(--dark); text-decoration: none; font-size: 0.86rem; background: var(--burgundy-pale); }
.confirm-card { background: var(--white); max-width: 520px; width: 100%; padding: 20px 0; text-align: center; }
.confirm-card h1 { font-family: 'Playfair Display', serif; color: var(--burgundy); margin-bottom: 12px; font-size: 1.9rem; }
.confirm-card p { color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
.confirm-polly { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; border: 3px solid var(--burgundy-mid); }
.confirm-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.6rem !important; }
.confirm-rows { text-align: left; margin: 26px 0 20px; }
.confirm-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.confirm-row:first-child { border-top: 1px solid var(--border); }
.confirm-row:last-child { border-bottom: 1px solid var(--border); }
.confirm-row-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--burgundy); color: var(--white); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.confirm-row-body { color: var(--dark); font-size: 0.94rem; line-height: 1.5; }
.confirm-row-label { display: block; color: var(--mid); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.confirm-map-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--burgundy); color: var(--white); text-decoration: none; border-radius: 999px; padding: 12px 26px; font-size: 0.9rem; font-weight: 600; margin: 4px 0 14px; }
.confirm-map-btn:hover { background: var(--burgundy-light); }
.confirm-signoff { margin: 22px 0 20px; }
.confirm-signoff p { font-family: 'Playfair Display', serif; color: var(--dark); font-size: 1.05rem; margin: 0 0 14px; }
.confirm-signoff .confirm-polly { margin: 0 auto 8px; }
.confirm-signoff-name { color: var(--burgundy); font-style: italic; margin-bottom: 4px !important; }
.confirm-signoff-role { font-family: inherit !important; font-size: 0.78rem !important; color: var(--text-soft, #8a7d80); letter-spacing: 0.04em; }
.confirm-details { text-align: left; background: var(--burgundy-pale); border-radius: 12px; padding: 18px 22px; margin: 18px 0; }
.confirm-details div { padding: 6px 0; color: var(--dark); font-size: 0.92rem; }
.confirm-details span { display: inline-block; width: 64px; color: var(--mid); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.confirm-details a { color: var(--burgundy); }
.confirm-test-note { background: #fdf3e0; color: #9c6b12; border-radius: 8px; padding: 10px 14px; font-size: 0.84rem; }
.confirm-spinner { width: 44px; height: 44px; border: 4px solid var(--burgundy-mid); border-top-color: var(--burgundy); border-radius: 50%; margin: 0 auto 22px; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── BRAND TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 700; }
/* ── LOGO IMAGES ── */
.nav-logo img { height: 34px; display: block; }
.footer-logo img { height: 40px; display: block; margin: 0 auto 6px; }
.footer-logo-sm img { height: 26px; margin: 0; }
.footer-inner-row { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; gap: 22px; text-align: center; padding: 0; }
.footer-inner-row .footer-logo { margin: 0; }
.footer-social { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 0; }
.footer-social a { color: rgba(255,255,255,0.85); display: inline-flex; }
.footer-social a:hover { color: var(--gold); }

/* ── ADMIN TOGGLE ── */
.toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #ccc; border-radius: 999px; cursor: pointer; transition: background 0.2s; }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: transform 0.2s; }
.toggle input:checked + .toggle-slider { background: var(--burgundy); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── SIGNATURE EVENT BOXES ── */
.signature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 44px 0 10px; }
.signature-card { display: block; border-radius: 16px; padding: 38px 34px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.signature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(36,0,5,0.18); }
.signature-eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.signature-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.signature-card p:not(.signature-eyebrow) { font-size: 0.95rem; line-height: 1.65; margin-bottom: 18px; }
.signature-link { font-size: 0.85rem; letter-spacing: 0.04em; text-decoration: underline; text-underline-offset: 4px; }
.signature-light { background: var(--white); border: 1px solid var(--burgundy-mid); }
.signature-light h3, .signature-light .signature-link { color: var(--burgundy); }
.signature-light p:not(.signature-eyebrow) { color: var(--mid); }
.signature-dark { background: var(--burgundy); }
.signature-dark h3, .signature-dark .signature-link { color: var(--white); }
.signature-dark p:not(.signature-eyebrow) { color: rgba(255,255,255,0.85); }
@media (max-width: 760px) { .signature-grid { grid-template-columns: 1fr; } }

/* ── EVENT DETAIL PAGES ── */
.detail-hero { padding: 150px 24px 50px; text-align: center; background: var(--burgundy-pale); }
.detail-hero .section-eyebrow { margin-bottom: 10px; }
.detail-hero h1 { color: var(--burgundy); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.detail-hero p { max-width: 620px; margin: 0 auto; color: var(--mid); font-size: 1.05rem; line-height: 1.7; }
.detail-body { max-width: 960px; margin: 0 auto; padding: 50px 24px 90px; }
.detail-video { position: relative; border-radius: 16px; background: var(--dark); aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); margin-bottom: 50px; }
.detail-video .play-circle { width: 74px; height: 74px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 14px; color: var(--white); }
.detail-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.detail-info h2 { color: var(--burgundy); font-size: 1.6rem; margin-bottom: 14px; }
.detail-info p { color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.detail-facts { background: var(--white); border: 1px solid var(--burgundy-mid); border-radius: 14px; padding: 28px; height: fit-content; }
.detail-facts div { padding: 9px 0; border-bottom: 1px solid var(--burgundy-pale); font-size: 0.94rem; color: var(--dark); }
.detail-facts div:last-child { border-bottom: none; }
.detail-facts span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); }
.detail-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 50px; }
.detail-photos img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }
.detail-cta { text-align: center; }
@media (max-width: 760px) {
  .detail-info { grid-template-columns: 1fr; }
  .detail-photos { grid-template-columns: 1fr 1fr; }
}

/* ── CALENDAR POPOVER ── */
.cal-pop-modal { max-width: 940px; width: 96%; }
.cal-pop-wrap { margin: 14px 0 10px; padding: 16px; box-shadow: none; }
.cal-pop-modal .section-eyebrow { margin-top: 6px; }

/* Full-screen booking calendar on mobile (must come after the rules above) */
@media (max-width: 760px) {
  .cal-pop-modal .booking-secure-note { display: none; }
  .booking-overlay.cal-pop-overlay-full { padding: 0; }
  .booking-modal.cal-pop-modal { max-width: none; width: 100%; height: 100%; max-height: none; border-radius: 0; padding: 72px 20px 28px; }
  .cal-pop-modal .cal-pop-wrap { border: none; box-shadow: none; padding: 10px 0; margin: 14px 0 10px; }
}
