/* Align booking page styles (/book). Self-contained: tokens + chrome + booking. */
:root {
      --cream:       #FAF6F1;
      --cream-deep:  #F2EBE0;
      --white:       #FFFFFF;
      --gold:        #C4A882;
      --gold-light:  #D9C4A3;
      --sand:        #F0E9DE;
      --sage-medium: #7D8F76;
      --text:        #3A3530;
      --text-muted:  #6E6A61;
      --border:      #E8E0D5;
    }

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

    body {
      background: var(--cream);
      color: var(--text);
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      line-height: 1.85;
    }

    /* NAV */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 72px;
      background: rgba(250,246,241,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(232,224,213,0.6);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-logo { display: flex; flex-direction: row; align-items: center; gap: 12px; text-decoration: none; }
    .logo-word { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; font-style: italic; color: var(--text); line-height: 1; letter-spacing: 0.01em; }
    .logo-sub { font-family: 'Raleway', sans-serif; font-size: 8px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); line-height: 1; }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a {
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sage-medium); }
    .nav-links a.active { color: var(--gold); font-weight: 600; }

    /* BUTTONS */
    .btn-gold {
      display: inline-block;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--white);
      border: 1px solid var(--gold);
      padding: 18px 44px;
      text-decoration: none;
      transition: background 0.3s, border-color 0.3s;
      cursor: pointer;
      text-align: center;
    }
    .btn-gold:hover { background: var(--sage-medium); border-color: var(--sage-medium); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(125,143,118,0.32); }
    .btn-cream {
      display: inline-block;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      background: var(--cream);
      color: var(--sage-medium);
      border: 1px solid var(--cream);
      padding: 18px 44px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
      cursor: pointer;
    }
    .btn-cream:hover { background: transparent; color: var(--cream); }

    /* EYEBROW */
    .eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }

    /* PAGE HERO */
    .page-hero {
      position: relative;
      padding: 72px 72px 64px;
      background: linear-gradient(135deg, var(--cream-deep) 0%, var(--sand) 60%, var(--cream) 100%);
      display: flex;
      align-items: center;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,168,130,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 30%;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(125,143,118,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }
    .page-hero-content .eyebrow { color: var(--gold); margin-bottom: 28px; }
    .page-hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .page-hero-content h1 em { font-style: italic; color: inherit; }
    .page-hero-content p {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.9;
      max-width: 560px;
    }

    /* DIVIDER */
    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 60px 72px;
    }
    .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .divider-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

    /* BOOKING SECTION */
    .booking-section {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 72px 40px;
    }
    .booking-intro {
      text-align: center;
      margin-bottom: 44px;
    }
    .booking-intro .booking-meta {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: 'Raleway', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .booking-intro .booking-meta span { position: relative; }
    .booking-intro .booking-meta span + span::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 50%;
      width: 4px;
      height: 4px;
      background: var(--gold);
      transform: translateY(-50%) rotate(45deg);
    }

    /* The card that wraps the plugin's booking widget. */
    .booking-widget {
      background: var(--cream-deep);
      border: 1px solid rgba(58, 53, 48, 0.05);
      box-shadow: 0 18px 48px rgba(58, 53, 48, 0.07);
      padding: 44px 40px;
    }

    /* Shown until the booking calendar block is added to the page. */
    .booking-setup-note {
      text-align: center;
      font-size: 14.5px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 2;
      padding: 40px 10px;
    }
    .booking-setup-note a { color: var(--gold); text-decoration: none; }
    .booking-setup-note a:hover { text-decoration: underline; }

    .booking-alt {
      text-align: center;
      font-size: 13.5px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.9;
      margin-top: 32px;
    }
    .booking-alt a { color: var(--gold); text-decoration: none; }
    .booking-alt a:hover { text-decoration: underline; }

    /* ------------------------------------------------------------------
       The booking calendar renders inside a Simply Schedule Appointments
       iframe, so it cannot be styled from this file. Its Align brand layer
       (gold accent, hidden AM/PM icons, Raleway, cream blend) lives in
       ssa/booking-app/custom.css, which SSA loads inside that iframe.
       Only the .booking-widget card above (the frame around the iframe)
       is styled here.
       ------------------------------------------------------------------ */

    /* CTA */
    .cta-banner {
      background: var(--sage-medium);
      padding: 100px 72px;
      text-align: center;
    }
    .cta-banner .eyebrow { justify-content: center; color: var(--gold-light); }
    .cta-banner h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      max-width: 600px;
      margin: 0 auto 16px;
    }
    .cta-banner p {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      margin-bottom: 44px;
    }

    /* FOOTER */
    footer {
      background: #5c5248;
      padding: 26px 72px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo { display: flex; flex-direction: row; align-items: baseline; gap: 12px; text-decoration: none; }
    .footer-logo .logo-word { color: var(--cream); }
    .footer-logo .logo-sub { color: var(--gold-light); }
    footer p { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: rgba(255,255,255,0.62); }
    footer a { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--white); }

    /* EMBED MODE (rendered inside the on-page booking modal iframe) */
    body.book-embed { background: var(--cream); }
    .book-embed-inner { padding: 22px 20px 30px; max-width: 640px; margin: 0 auto; }
    .book-embed-inner .booking-setup-note { padding: 30px 10px; }

    @media (max-width: 768px) {
      body { overflow-x: hidden; }
      nav { padding: 16px 20px; }
      .nav-links { display: none !important; }
      .nav-toggle { display: flex !important; }

      .page-hero { padding: 80px 20px 60px; }
      .page-hero-content h1 { font-size: 2.6rem; }
      .page-hero-content p { font-size: 15px; max-width: 100%; }

      .divider { padding: 32px 20px; }

      .booking-section { padding: 0 20px 24px; }
      .booking-widget { padding: 28px 18px; }

      .btn-gold, .btn-white-outline, .btn-sage-outline, .btn-cream, .btn-outline, .btn-outline-gold { padding: 15px 28px; font-size: 11px; letter-spacing: 0.2em; }

      .cta-banner { padding: 60px 20px; }
      .cta-banner h2 { font-size: 2rem; }

      footer { padding: 28px 20px; flex-direction: column; gap: 12px; text-align: center; }
    }

    /* MOBILE NAV TOGGLE */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 4px;
      z-index: 101;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* MOBILE NAV OVERLAY */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(250,246,241,0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 44px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--sage-medium); }
    .mobile-nav a.active { color: var(--gold); font-weight: 600; }
