:root {
      /* Faith Inclusive Hair — single source; swap hexes when brand kit arrives */
      --brand-primary:   #8B6D66;
      --brand-secondary: #C9A99A;
      --brand-surface:   #E8DDD5;
      --brand-deep:      #5F4842;
      --brand-accent:    #6E2A34;
      --brand-gold:      #C9A24B;
      /* Contrast helpers — not brand kit colors */
      --text-on-primary: #FFFFFF;
      --text-on-dark: #FFFFFF;
      /* Deep brown for text on warm cream / taupe surfaces (nav, about, cards) */
      --text-on-cream: #2C211E;
      --heading-on-cream: var(--text-on-cream);
      --body-on-cream: var(--text-on-cream);
      --muted-on-cream: #4A3833;
      /* Filled CTAs use deep brown so they read as active, not washed-out primary */
      --btn-fill: var(--brand-deep);
      --btn-fill-hover: #4A3833;
      --text-on-btn: #FFFFFF;
      --btn-disabled-bg: #A89890;
      --btn-disabled-fg: #F5F0E8;
      --color-primary: var(--brand-primary);
      --leaf-1: var(--brand-primary);
      --leaf-2: var(--brand-primary);
      --leaf-3: var(--brand-secondary);
      --cream-1: var(--brand-secondary);
      --cream-2: var(--brand-surface);
      --ink: var(--text-on-cream);
      --muted: var(--muted-on-cream);
      --section-pad: 3rem;
      --side-pad: 1.25rem;
      --cream: var(--cream-1);
      --text: var(--ink);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "DM Sans", system-ui, sans-serif;
      color: var(--text-on-cream);
      background: var(--cream-1);
      line-height: 1.6;
    }
    button,
    .btn,
    input[type="button"],
    input[type="submit"],
    input[type="reset"],
    [role="button"] {
      cursor: pointer;
    }
    button:disabled,
    .btn:disabled,
    input:disabled {
      cursor: not-allowed;
    }
    h1, h2, h3, .logo-text { font-family: "Cormorant Garamond", Georgia, serif; }
    a { color: var(--brand-deep); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .nav-wrap {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 101;
      background: #FBF8F3;
      border-bottom: 1px solid #E8DDD5;
    }
    .broadcast-bar {
      width: 100%;
      background: #2B211A;
      color: #DED7D2;
      text-align: center;
      padding: 9px 0;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-family: "DM Sans", system-ui, sans-serif;
    }
    .broadcast-viewport {
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
    }
    .broadcast-track {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      will-change: transform;
    }
    .broadcast-bar:not(.is-marquee) .broadcast-track {
      justify-content: center;
      width: 100%;
      padding: 0 16px;
      box-sizing: border-box;
    }
    .broadcast-bar:not(.is-marquee) .broadcast-text-clone {
      display: none;
    }
    .broadcast-bar.is-marquee .broadcast-track {
      animation: broadcast-marquee var(--broadcast-duration, 18s) linear infinite;
    }
    .broadcast-bar.is-marquee #broadcastText,
    .broadcast-bar.is-marquee .broadcast-text-clone {
      padding-right: 3.5rem;
    }
    @keyframes broadcast-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .broadcast-bar.is-marquee .broadcast-track {
        animation: none;
        justify-content: center;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
      }
      .broadcast-bar.is-marquee .broadcast-text-clone {
        display: none;
      }
    }
    #broadcastText,
    .broadcast-text-clone {
      transition: opacity 0.5s ease;
      display: inline-block;
      white-space: nowrap;
      flex-shrink: 0;
    }
    nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.85rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      min-width: 0;
    }
    .nav-logo {
      display: block;
      width: 40px;
      height: 40px;
      max-height: 40px;
      max-width: 40px;
      object-fit: cover;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1px solid #E8DDD5;
    }
    .logo-text {
      font-size: 1.35rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #2B211A;
      white-space: nowrap;
    }
    .logo-text-top,
    .logo-text-hair {
      white-space: nowrap;
    }
    .logo-text-hair {
      color: #6E2A34;
    }
    @media (max-width: 900px) {
      .brand {
        flex: 1 1 auto;
        gap: 0.45rem;
      }
      .nav-logo {
        max-height: 52px;
        max-width: 50px;
      }
      .logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        white-space: normal;
        font-size: 1.05rem;
        line-height: 1.05;
        letter-spacing: 0.01em;
        text-align: center;
      }
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.35rem;
      list-style: none;
      margin-left: auto;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: #2B211A;
      font-family: "DM Sans", system-ui, sans-serif;
      text-decoration: none;
    }
    .nav-links a:hover { color: #6E2A34; text-decoration: none; }
    .nav-mobile-only { display: none; }
    .nav-book-now {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 1rem;
      background: #2B211A;
      color: #fff !important;
      padding: 0.65rem 1.15rem;
      border-radius: 2px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none !important;
      font-size: 0.85rem;
      white-space: nowrap;
      flex-shrink: 0;
      font-family: "DM Sans", system-ui, sans-serif;
    }
    .nav-book-now:hover {
      background: #1A1614;
      text-decoration: none !important;
    }
    .nav-cta {
      background: var(--btn-fill);
      color: var(--text-on-btn) !important;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none !important;
    }
    .nav-cta:hover { background: var(--btn-fill-hover); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    .hamburger span {
      width: 24px;
      height: 2px;
      background: #2B211A;
    }
    @media (max-width: 900px) {
      .hamburger { display: flex; order: 3; }
      .nav-book-now {
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
        padding: 8px 14px;
        font-size: 0.78rem;
      }
      .nav-links {
        order: 4;
        margin-left: 0;
        position: fixed;
        top: 96px;
        right: 1rem;
        left: 1rem;
        background: var(--cream-1);
        border: 1px solid var(--cream-2);
        border-radius: 12px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        display: none;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      }
      .nav-links.open { display: flex; }
      .nav-mobile-only { display: list-item; }
      .nav-links {
        background: #FBF8F3;
      }
    }

    .hero-carousel {
      position: relative;
      width: 100%;
      height: calc(100svh - 96px);
      max-height: 620px;
      min-height: 420px;
      overflow: hidden;
      margin-top: 0;
      z-index: 0;
      background: #5F4842;
    }
    .hero-slides,
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .hero-slide {
      background-size: cover;
      background-position: center 22%;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      will-change: opacity;
    }
    .hero-slide.active { opacity: 1; }
    @media (prefers-reduced-motion: reduce) {
      .hero-slide { transition: none; }
    }
    /* Desktop — aviibraids-style 3×2 grid with rotating highlight */
    @media (min-width: 768px) {
      .hero-carousel.hero-grid-mode {
        height: 100vh;
        max-height: none;
        min-height: 560px;
      }
      .hero-carousel.hero-grid-mode .hero-content {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        justify-content: center;
      }
      .hero-carousel.hero-grid-mode .hero-slides {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 3px;
        position: absolute;
        inset: 0;
      }
      .hero-carousel.hero-grid-mode .hero-slide {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100%;
        min-height: 0;
        opacity: 0.45;
        background-size: cover;
        background-position: center 18%;
        background-repeat: no-repeat;
        transition: opacity 0.8s ease;
      }
      .hero-carousel.hero-grid-mode .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.22);
        transition: opacity 0.8s ease;
        pointer-events: none;
      }
      .hero-carousel.hero-grid-mode .hero-slide.active {
        opacity: 1;
      }
      .hero-carousel.hero-grid-mode .hero-slide.active::after {
        opacity: 0;
      }
      .hero-carousel.hero-grid-mode .hero-dots {
        display: none;
      }
      .hero-carousel.hero-grid-mode .hero-overlay {
        background:
          linear-gradient(90deg, rgba(20,12,10,0.55) 0%, rgba(20,12,10,0.2) 45%, rgba(20,12,10,0.25) 100%),
          linear-gradient(to top, rgba(20,12,10,0.45) 0%, rgba(20,12,10,0.08) 50%, rgba(20,12,10,0.2) 100%);
      }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(20,12,10,0.55) 0%, rgba(20,12,10,0.22) 48%, rgba(20,12,10,0.18) 100%),
        linear-gradient(to top, rgba(20,12,10,0.62) 0%, rgba(20,12,10,0.12) 48%, rgba(20,12,10,0.2) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 0.7rem;
      padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.75rem);
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
      z-index: 2;
      color: #fff;
      text-align: left;
    }
    .hero-dots {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-top: 0.15rem;
    }
    .hero-dot {
      width: 0.55rem;
      height: 0.55rem;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
    }
    .hero-dot.is-active {
      width: 1.35rem;
      background: #fff;
    }
    .hero-dot:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }
    .hero-brand {
      margin: 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2rem, 5vw, 3.1rem);
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #fff;
      text-shadow: 0 1px 12px rgba(0,0,0,0.35);
      line-height: 1.1;
    }
    .hero-tagline {
      margin: 0;
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1rem;
      color: rgba(255,255,255,0.92);
      max-width: 28rem;
    }
    .hero-book-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.35rem;
      padding: 0.85rem 1.5rem;
      background: var(--brand-accent, #6E2A34);
      color: #fff !important;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-decoration: none !important;
      border-radius: 4px;
    }
    .hero-book-cta:hover {
      background: var(--brand-deep, #5F4842);
      text-decoration: none !important;
    }

    .hero-bottom-row {
      display: none;
    }
    /* Braiders Studio — always-visible fixed launcher (not pinned to hero) */
    .braiderai-widget {
      --braiderai-primary: #6E2A34 !important;
      --primary: #6E2A34 !important;
    }
    .braiderai-widget .bai-launcher {
      position: fixed !important;
      /* sit above the fixed Braiders credit bar */
      bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px)) !important;
      right: 16px !important;
      left: auto !important;
      top: auto !important;
      z-index: 99999 !important;
      width: 56px !important;
      height: 56px !important;
      min-width: 56px !important;
      min-height: 56px !important;
      border-radius: 50% !important;
      background: var(--brand-accent, #6E2A34) !important;
      color: #fff !important;
      box-shadow: 0 8px 24px rgba(20, 12, 10, 0.35) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    .braiderai-widget .bai-panel {
      z-index: 100000 !important;
      bottom: calc(4.75rem + 72px + env(safe-area-inset-bottom, 0px)) !important;
      right: 16px !important;
    }
    .hero-location-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      width: fit-content;
      max-width: min(100%, 28rem);
      margin: 0.25rem 0 0;
      padding: 0.8rem 1.15rem;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.95);
      color: #5F4842;
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.35;
      text-align: left;
      text-decoration: none;
      border-radius: 999px;
      box-shadow:
        0 10px 28px rgba(20, 12, 10, 0.28),
        0 0 0 1px rgba(110, 42, 52, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .hero-location-pill:hover {
      text-decoration: none;
      background: #fff;
      color: #6E2A34;
      transform: translateY(-1px);
      box-shadow:
        0 14px 32px rgba(20, 12, 10, 0.32),
        0 0 0 1px rgba(110, 42, 52, 0.2);
    }
    .hero-location-dot {
      width: 10px;
      height: 10px;
      flex-shrink: 0;
      border-radius: 50%;
      background: #6E2A34;
      box-shadow: 0 0 0 4px rgba(110, 42, 52, 0.18);
    }

    @media (max-width: 480px) {
      .hero-location-pill {
        font-size: 0.8rem;
        padding: 0.7rem 0.95rem;
        max-width: 100%;
        border-radius: 14px;
      }
      .braiderai-widget .bai-launcher {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
      }
    }
    .services-marquee-wrap {
      overflow: hidden;
      background: #2B211A;
      padding: 12px 0;
      white-space: nowrap;
    }
    .services-marquee {
      display: inline-flex;
      align-items: center;
      gap: 1.25rem;
      animation: marqueeScroll 36s linear infinite;
    }
    .services-marquee[data-state="loading"],
    .services-marquee[data-state="empty"] {
      animation: none;
      min-height: 1em;
    }
    .services-marquee span {
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      text-transform: none;
      color: #DED7D2;
      font-weight: 500;
      font-family: "DM Sans", system-ui, sans-serif;
    }
    .services-marquee .dot {
      opacity: 1;
      color: #DED7D2;
      font-size: 0.7rem;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .services-marquee {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 1rem;
      }
    }
    .btn {
      display: inline-block;
      padding: 0.75rem 1.35rem;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: inherit;
      font-size: 0.95rem;
    }
    .btn-primary { background: var(--btn-fill); color: var(--text-on-btn); }
    .btn-primary:hover:not(:disabled) { background: var(--btn-fill-hover); }
    .btn-primary:disabled {
      background: var(--btn-disabled-bg);
      color: var(--btn-disabled-fg);
      opacity: 1;
      cursor: not-allowed;
    }
    .inline-success {
      background: rgba(110, 42, 52, 0.12);
      border: 1px solid rgba(110, 42, 52, 0.35);
      border-radius: 8px;
      padding: 0.65rem 0.85rem;
      font-size: 0.9rem;
      color: var(--brand-deep);
      line-height: 1.45;
    }
    .inline-error {
      background: rgba(180, 60, 60, 0.08);
      border: 1px solid rgba(180, 60, 60, 0.25);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      color: #8a2a2a;
      font-size: 0.88rem;
      margin-top: 0.75rem;
    }
    .slots-loading {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: 0.88rem;
      padding: 0.5rem 0;
    }
    .loading-spinner {
      width: 14px;
      height: 14px;
      border: 2px solid var(--cream-2);
      border-top-color: var(--brand-deep);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: inline-block;
      flex-shrink: 0;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .btn-outline {
      background: transparent;
      color: var(--brand-deep);
      border: 2px solid var(--leaf-2);
    }
    .about-studio-photo {
      width: 100%;
      max-height: 280px;
      object-fit: cover;
      object-position: center;
      border-radius: 12px;
      margin-bottom: 2rem;
      display: block;
    }

    section { padding: 4rem 1.25rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--heading-on-cream);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    #about {
      background: var(--cream-1);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .meet-ceo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.75rem;
      max-width: 820px;
      margin: 0 auto;
      align-items: center;
    }
    @media (min-width: 720px) {
      .meet-ceo-grid {
        grid-template-columns: 200px 1fr;
        text-align: left;
        gap: 2.25rem;
      }
    }
    .meet-ceo-portrait {
      width: 160px;
      height: 160px;
      margin: 0 auto;
      border-radius: 50%;
      background: var(--brand-deep, #5F4842);
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .meet-ceo-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .meet-ceo-initials {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 2.75rem;
      letter-spacing: 0.06em;
      color: var(--brand-gold, #C9A24B);
    }
    .meet-ceo-name {
      margin: 0 0 0.75rem;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.65rem;
      color: var(--heading-on-cream);
    }
    .meet-ceo-copy p {
      color: var(--body-on-cream);
      line-height: 1.55;
    }
    .meet-ceo-address {
      margin-top: 1.25rem;
      padding: 1rem 1.15rem;
      background: var(--brand-surface, #E8DDD5);
      border-radius: 10px;
      color: var(--body-on-cream);
      font-style: normal;
      line-height: 1.45;
    }
    .meet-ceo-note {
      margin-top: 0.65rem;
      font-size: 0.875rem;
      color: var(--muted-on-cream);
    }
    .nav-crown {
      display: block;
      flex-shrink: 0;
    }
    .about-style-tags-line {
      margin: 0;
      font-size: 0.95rem;
      color: var(--body-on-cream);
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .style-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 1rem;
    }
    .style-tags span {
      background: var(--cream-2);
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      font-size: 0.85rem;
      color: var(--heading-on-cream);
    }

    #services { background: #F5EEE6; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: 1fr; }
    }
    .service-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      gap: 0;
      background: #fff;
      border-radius: 2px;
      padding: 0;
      border: none;
      overflow: hidden;
      transition: transform 0.25s;
      cursor: pointer;
      box-shadow: none;
    }
    .service-card:hover {
      border-top: none;
      transform: translateY(-3px);
    }
    .service-card-media {
      aspect-ratio: 1 / 1;
      background: #E8E4DF;
      overflow: hidden;
    }
    .service-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .service-card-media .ph {
      width: 100%;
      height: 100%;
      min-height: 160px;
      background: repeating-linear-gradient(
        -45deg,
        #EDE8E2,
        #EDE8E2 8px,
        #E4DED6 8px,
        #E4DED6 16px
      );
    }
    .service-card-body {
      padding: 1rem 1rem 1.15rem;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      flex: 1;
      background: #fff;
    }
    .service-card .num { display: none; }
    .service-card h3 {
      margin: 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      line-height: 1.25;
      color: #2B211A;
    }
    .service-card-desc {
      flex: 1 1 auto;
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.45;
      color: #5A4A44;
      white-space: pre-line;
      font-family: "DM Sans", system-ui, sans-serif;
    }
    .service-card-from-price {
      font-size: 0.92rem;
      font-weight: 700;
      color: #2B211A;
      margin: 0.25rem 0 0;
      font-family: "DM Sans", system-ui, sans-serif;
    }
    .service-card-price-varies {
      color: #6B5850;
      font-weight: 500;
    }
    .service-book-btn { display: none; }

    .consultation-section {
      padding: var(--section-pad) var(--side-pad);
      background-color: #fff;
      background-image:
        linear-gradient(180deg, rgba(201, 169, 154, 0.92) 0%, rgba(255, 255, 255, 1) 42%),
        radial-gradient(ellipse 80% 50% at 15% 10%, rgba(110, 42, 52, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 85%, rgba(110, 42, 52, 0.06) 0%, transparent 50%);
    }

    .consultation-card {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 2rem;
      border: 1px solid var(--cream-2);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .consultation-icon {
      font-size: 2.5rem;
      flex-shrink: 0;
      line-height: 1;
    }

    @media (max-width: 600px) {
      .consultation-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
        align-items: stretch;
      }
      .consultation-icon {
        font-size: 1.5rem;
        align-self: flex-start;
      }
    }

    .consultation-info h3 {
      font-family: Georgia, serif;
      color: var(--heading-on-cream);
      font-size: 1.1rem;
      font-weight: normal;
      margin: 0 0 0.5rem;
    }

    .consultation-info p {
      font-size: 0.875rem;
      color: var(--muted-on-cream);
      margin: 0 0 1rem;
      line-height: 1.6;
    }

    .consultation-includes {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
    }

    .consultation-includes li {
      font-size: 0.85rem;
      color: var(--body-on-cream);
      margin-bottom: 0.3rem;
    }

    .consultation-price {
      font-family: Georgia, serif;
      font-size: 1.75rem;
      color: var(--heading-on-cream);
    }

    .consultation-form-wrap {
      max-width: 500px;
      margin: 0 auto;
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid var(--cream-2);
    }

    .consultation-form-wrap h3 {
      font-family: Georgia, serif;
      color: var(--brand-deep);
      font-weight: normal;
      font-size: 1.1rem;
      margin: 0 0 1.25rem;
    }

    .consultation-form-wrap input,
    .consultation-form-wrap textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      font-size: 0.9rem;
      font-family: inherit;
      margin-bottom: 0.75rem;
      box-sizing: border-box;
      background: white;
    }

    .consultation-schedule-field {
      margin-bottom: 0.75rem;
    }
    .consultation-field-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.35rem;
    }
    .consultation-slots-wrap {
      margin-top: 0.65rem;
    }
    .consultation-slots-label {
      font-size: 0.85rem;
      color: var(--muted);
      margin: 0 0 0.5rem;
    }
    .consultation-slots-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }
    @media (min-width: 520px) {
      .consultation-slots-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
    .cons-slot-btn {
      padding: 0.55rem 0.35rem;
      border: 2px solid var(--brand-accent);
      border-radius: 8px;
      background: #fff;
      color: var(--brand-deep);
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
    }
    .cons-slot-btn:disabled {
      border-color: #d1d5db;
      background: #e5e7eb;
      color: #9ca3af;
      cursor: not-allowed;
    }
    .cons-slot-btn.cons-slot-selected {
      background: var(--brand-accent);
      color: #fff;
      border-color: var(--brand-accent);
    }
    .consultation-form-wrap input:focus,
    .consultation-form-wrap textarea:focus {
      outline: none;
      border-color: var(--brand-deep);
    }

    #gallery {
      background: var(--leaf-2);
      color: var(--text-on-primary);
    }
    #gallery .section-title,
    #gallery .section-subtitle,
    #gallery p,
    #gallery a { color: var(--text-on-primary); }
    #gallery .section-subtitle,
    #gallery p { opacity: 0.95; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }
    .gallery-item {
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      background: rgba(255,255,255,0.08);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      border-radius: 10px;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.04);
    }
    .booking-rewards-skeleton {
      border-radius: 16px;
      min-height: 200px;
      background: linear-gradient(90deg, rgba(110, 42, 52,0.15) 25%, rgba(110, 42, 52,0.28) 50%, rgba(110, 42, 52,0.15) 75%);
      background-size: 200% 100%;
      animation: booking-rewards-shimmer 1.2s ease-in-out infinite;
      margin: 1.25rem 0;
      display: none;
    }
    @keyframes booking-rewards-shimmer {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    .booking-rewards-card {
      margin: 1.25rem 0;
      padding: 1.35rem 1.5rem;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--leaf-2) 0%, var(--leaf-1) 100%);
      color: #fff;
      box-shadow: 0 8px 28px rgba(110, 42, 52, 0.2);
      display: none;
    }
    .booking-rewards-card .rewards-brand {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 1;
      color: var(--text-on-primary);
      margin-bottom: 0.75rem;
    }
    .booking-rewards-card .rewards-points-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.1rem;
      font-weight: 600;
      line-height: 1.1;
    }
    .booking-rewards-card .rewards-sub {
      font-size: 0.88rem;
      opacity: 1;
      color: rgba(255, 255, 255, 0.95);
      margin-top: 0.35rem;
    }
    .booking-rewards-card .rewards-muted {
      opacity: 1;
      color: rgba(255, 255, 255, 0.9);
    }
    .booking-rewards-card .rewards-section-title {
      font-size: 0.82rem;
      margin: 1.15rem 0 0.4rem;
      opacity: 0.95;
    }
    .booking-rewards-card .rewards-code-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.25rem;
    }
    .booking-rewards-card .rewards-code-value {
      font-family: ui-monospace, monospace;
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      font-weight: 600;
    }
    .booking-rewards-card .btn-rewards {
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.45);
      color: #fff;
      border-radius: 8px;
      padding: 0.35rem 0.75rem;
      font-size: 0.82rem;
      cursor: pointer;
    }
    .booking-rewards-card .btn-rewards:hover {
      background: rgba(255,255,255,0.3);
    }
    .booking-rewards-card .btn-rewards-primary {
      background: #fff;
      color: var(--brand-deep);
      border-color: #fff;
      font-weight: 600;
      margin-top: 0.5rem;
      cursor: pointer;
    }
    .booking-rewards-card .btn-rewards-primary:hover {
      opacity: 0.95;
    }
    .booking-rewards-card .rewards-tx-list {
      list-style: none;
      margin: 0.5rem 0 0;
      padding: 0;
      font-size: 0.82rem;
      line-height: 1.45;
      opacity: 0.95;
    }
    .booking-rewards-card .rewards-tx-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 0.35rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }
    .booking-rewards-card .rewards-tx-list li:last-child {
      border-bottom: none;
    }
    .booking-rewards-card .rewards-promo-box {
      margin-top: 0.65rem;
      padding: 0.75rem;
      background: rgba(0,0,0,0.12);
      border-radius: 10px;
      font-size: 0.84rem;
    }
    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      /* 2-col mobile: hide the odd 9th tile so the grid ends even */
      .gallery-grid .gallery-item:nth-child(n + 9) {
        display: none;
      }
    }
    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
      }
    }
    #ig-feed-container {
      min-height: 1px;
    }
    .ig-section {
      text-align: center;
      padding: 5rem 2rem;
      background: var(--cream-1);
      color: var(--ink);
    }
    .ig-section h2 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--brand-deep);
      margin: 0 0 0.5rem;
      font-weight: 600;
    }
    .ig-follow-strip {
      background: #1a1a1a;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 18px 16px;
      text-align: center;
      flex-wrap: wrap;
    }
    .ig-follow-label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 1;
      color: rgba(255, 255, 255, 0.95);
      margin: 0;
    }
    .ig-follow-strip .ig-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: 8px 20px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: border-color 0.2s, background 0.2s;
      margin-top: 0;
      cursor: pointer;
    }
    .ig-follow-strip .ig-follow-btn:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.08);
      text-decoration: none;
    }
    .ig-follow-btn {
      margin-top: 1.5rem;
      display: inline-block;
    }
    .ann-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(95, 72, 66, 0.62);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      animation: annFadeIn 0.3s ease;
    }
    @keyframes annFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    .ann-modal {
      background: #fff;
      border-radius: 12px;
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(95, 72, 66, 0.28);
      animation: annSlideUp 0.35s ease;
    }
    .ann-modal:has(.ann-modal-inner.text-only) {
      max-width: 420px;
    }
    @keyframes annSlideUp {
      from { transform: translateY(24px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    .ann-modal-close {
      position: absolute;
      top: 12px;
      right: 14px;
      background: rgba(95, 72, 66, 0.1);
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      color: #333;
      transition: background 0.15s;
    }
    .ann-modal-close:hover { background: rgba(95, 72, 66, 0.18); }
    .ann-modal-inner {
      display: flex;
      flex-direction: row;
      min-height: 300px;
    }
    .ann-modal-inner.text-only {
      min-height: 0;
    }
    .ann-modal-media {
      flex: 0 0 48%;
      max-width: 48%;
      min-height: 300px;
      border-radius: 12px 0 0 12px;
      overflow: hidden;
      background: var(--brand-deep);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ann-modal-media img,
    .ann-modal-media video {
      width: 100%;
      height: 100%;
      max-height: 420px;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .ann-modal-text {
      flex: 1;
      padding: 36px 28px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
    }
    .ann-modal-inner.text-only .ann-modal-text {
      padding: 1.75rem 1.5rem 1.5rem;
      text-align: center;
      align-items: center;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .ann-modal-type {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-block;
      width: fit-content;
    }
    .ann-modal-type.INFO { background: #F3ECE6; color: #5F4842; }
    .ann-modal-type.WARNING { background: #fef3c7; color: #92400e; }
    .ann-modal-type.SUCCESS { background: #E8F0EA; color: #3F6B4E; }
    .ann-modal-message {
      font-size: 1.05rem;
      line-height: 1.55;
      color: #2A201C;
      margin: 0;
      max-width: 28rem;
    }
    @media (max-width: 540px) {
      .ann-modal-inner {
        flex-direction: column;
      }
      .ann-modal-media {
        flex: 0 0 260px;
        max-width: 100%;
        min-height: 260px;
        border-radius: 12px 12px 0 0;
      }
      .ann-modal-media img,
      .ann-modal-media video {
        max-height: 260px;
      }
    }
    .ig-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      max-width: 800px;
      margin: 2rem auto;
    }
    .ig-item {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 8px;
      display: block;
      background: var(--cream-2);
      position: relative;
    }
    .ig-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.3s ease;
    }
    .ig-item:hover img {
      transform: scale(1.05);
    }
    .ig-item-zoomout img {
      object-position: center 30%;
      transform: none;
    }
    .ig-item-zoomout:hover img {
      transform: scale(1.05);
    }
    .ig-section .ig-item .ig-video-play {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(0,0,0,0.55);
      color: var(--cream-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      padding-left: 0.15rem;
      pointer-events: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .ig-handle {
      margin-top: 1.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.85rem;
    }
    .ig-social-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }
    .ig-social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 999px;
      border: 1.5px solid rgba(44, 33, 30, 0.22);
      color: var(--heading-on-cream);
      background: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    }
    .ig-social-icon svg {
      width: 1.2rem;
      height: 1.2rem;
      fill: currentColor;
      display: block;
    }
    .ig-social-icon:hover {
      border-color: var(--heading-on-cream);
      background: #fff;
      color: var(--heading-on-cream);
      transform: translateY(-2px);
      text-decoration: none;
    }
    .ig-tagline {
      margin: 0;
      font-family: "Great Vibes", cursive;
      font-size: clamp(1.65rem, 4vw, 2.15rem);
      line-height: 1.2;
      color: var(--heading-on-cream);
      letter-spacing: 0.02em;
    }
    .social-pill-link {
      display: inline-block;
      padding: 0.45rem 0.95rem;
      border-radius: 999px;
      border: 1px solid var(--cream-2);
      background: var(--cream-1);
      color: var(--brand-deep);
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
    }
    .social-pill-link:hover {
      border-color: var(--brand-deep);
      color: var(--brand-deep);
    }
    .social-tagline {
      width: 100%;
      text-align: center;
      margin-top: 0.25rem;
      font-size: 0.85rem;
      color: var(--muted);
    }
    .footer-social-row {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .footer-social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 999px;
      border: 1px solid #555;
      color: #ddd;
      background: transparent;
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }
    .footer-social-icon svg {
      width: 1.15rem;
      height: 1.15rem;
      fill: currentColor;
      display: block;
    }
    .footer-social-icon:hover {
      border-color: #aaa;
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      text-decoration: none;
    }

    #policies { background: #F5EEE6; }
    .policies-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.15rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    /* 7 cards: row of 3, then 2, then 2 */
    .policies-grid .policy-item {
      grid-column: span 2;
    }
    .policies-grid .policy-item:nth-child(n + 4) {
      grid-column: span 3;
    }
    @media (max-width: 900px) {
      .policies-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .policies-grid .policy-item,
      .policies-grid .policy-item:nth-child(n + 4) {
        grid-column: auto;
      }
    }
    @media (max-width: 640px) {
      .policies-grid {
        grid-template-columns: 1fr;
      }
    }
    .policy-card,
    .policy-item {
      background: #fff;
      border: none;
      border-radius: 2px;
      padding: 1.35rem 1.25rem;
    }
    .policy-card h4,
    .policy-item .policy-title {
      color: #2B211A;
      margin-bottom: 0.55rem;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      line-height: 1.25;
      display: block;
    }
    .policy-body {
      margin: 0;
      color: #5A4A44;
      font-size: 0.9rem;
      line-height: 1.55;
      font-family: "DM Sans", system-ui, sans-serif;
    }

    .section-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted-on-cream);
      margin-bottom: 0.35rem;
    }

    .section-subtitle {
      max-width: 36rem;
      margin: 0 auto 1.75rem;
      color: var(--muted);
      text-align: center;
      font-size: 1rem;
      line-height: 1.65;
    }

    .reviews-section {
      padding: var(--section-pad) var(--side-pad);
      background: var(--cream);
    }

    .reviews-carousel-wrap {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .reviews-carousel {
      flex: 1;
      overflow: hidden;
    }

    /* Reviews carousel grid — CSS only (no inline styles from JS) */
    #reviews-carousel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      min-height: auto;
    }

    @media (max-width: 900px) {
      #reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      #reviews-carousel {
        grid-template-columns: 1fr !important;
      }

      .reviews-carousel {
        min-height: auto !important;
      }

      .review-card {
        min-height: auto !important;
        padding: 16px;
      }

      .review-card-inner {
        flex-direction: column !important;
        gap: 0 !important;
      }

      .review-card-main {
        width: 100%;
      }

      .review-card-image-zone {
        width: 100% !important;
        margin-top: 12px;
      }

      .review-image-zone-stack {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
      }

      .review-image-zone-thumb {
        width: calc(33.333% - 6px) !important;
        height: 90px !important;
        aspect-ratio: 1;
      }

      .review-image-zone-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
      }

      .review-image-zone-more {
        font-size: 12px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 4px;
        padding: 2px 6px;
        right: 6px;
        bottom: 6px;
      }
    }

    .reviews-nav {
      background: white;
      border: 1.5px solid var(--cream-2);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 1.25rem;
      cursor: pointer;
      color: var(--brand-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s;
      line-height: 1;
      padding: 0;
    }

    .reviews-nav:hover {
      background: var(--leaf-2);
      color: white;
    }

    .reviews-nav:disabled {
      opacity: 0.3;
      cursor: default;
    }

    .reviews-dots {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.75rem;
    }

    .reviews-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cream-2);
      cursor: pointer;
      transition: background 0.2s;
      border: none;
      padding: 0;
    }

    .reviews-dot.active {
      background: var(--leaf-2);
    }

    .review-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      border: 1px solid var(--cream-2);
      border-left: 3px solid color-mix(in srgb, var(--brand-primary) 12.5%, transparent);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: opacity 0.3s;
    }

    /* Review card layout — desktop default */
    .review-card-inner {
      display: flex;
      flex-direction: row;
      gap: 16px;
      align-items: flex-start;
    }

    .review-card-main {
      flex: 1;
      min-width: 0;
    }

    /* Review images — stacked thumbs + lightbox */
    .review-card-image-zone {
      flex-shrink: 0;
      width: 96px;
    }

    .review-image-zone-stack {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: stretch;
    }

    .review-image-zone-thumb {
      position: relative;
      display: block;
      width: 96px;
      height: 96px;
      padding: 0;
      margin: 0;
      border: none;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      background: var(--cream-2);
      flex-shrink: 0;
    }

    .review-image-zone-thumb:focus-visible {
      outline: 2px solid var(--leaf-2);
      outline-offset: 2px;
    }

    .review-image-zone-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-image-zone-more {
      position: absolute;
      right: 6px;
      bottom: 6px;
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      background: rgba(0, 0, 0, 0.72);
      pointer-events: none;
      line-height: 1.2;
    }

    .review-lightbox {
      position: fixed;
      inset: 0;
      z-index: 10050;
      opacity: 0;
      visibility: hidden;
      transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
      pointer-events: none;
    }

    .review-lightbox.review-lightbox--open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .review-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      cursor: pointer;
    }

    .review-lightbox-panel {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 4rem;
      pointer-events: none;
    }

    .review-lightbox-img {
      max-width: 90vw;
      max-height: 90vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 12px;
      pointer-events: auto;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    }

    .review-lightbox-close {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 10052;
      width: 32px;
      height: 32px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      transition: background 0.15s;
    }

    .review-lightbox-close:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    .review-lightbox-prev,
    .review-lightbox-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10052;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      transition: background 0.15s;
    }

    .review-lightbox-prev {
      left: 0.75rem;
    }

    .review-lightbox-next {
      right: 0.75rem;
    }

    .review-lightbox-prev:hover,
    .review-lightbox-next:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    @media (max-width: 600px) {
      .review-lightbox-panel {
        padding: 2.5rem 1rem;
      }

      .review-lightbox-prev {
        left: 0.35rem;
      }

      .review-lightbox-next {
        right: 0.35rem;
      }
    }

    .review-stars {
      color: #f4a82a;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }

    .review-content {
      font-size: 0.875rem;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      cursor: pointer;
    }

    .review-content.expanded {
      display: block;
      -webkit-line-clamp: unset;
      overflow: visible;
      cursor: default;
    }

    .review-author {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 600;
    }

    .review-service-tag {
      font-size: 0.72rem;
      color: var(--brand-deep);
      background: rgba(110, 42, 52, 0.08);
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
      margin-top: 0.25rem;
      display: inline-block;
    }

    .reviews-summary {
      text-align: center;
      margin-bottom: 2rem;
    }

    .reviews-avg {
      font-family: Georgia, serif;
      font-size: 3rem;
      color: var(--brand-deep);
      line-height: 1;
    }

    .reviews-avg-stars {
      color: #f4a82a;
      font-size: 1.25rem;
      margin: 0.25rem 0;
    }

    .reviews-count {
      font-size: 0.85rem;
      color: var(--muted);
    }

    #contact-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 200;
      align-items: center;
      justify-content: center;
      flex-direction: row;
    }

    #booking {
      background: #F5EEE6;
      background-image: none;
    }
    .booking-steps {
      max-width: 560px;
      margin: 0 auto;
      background: transparent;
      border-radius: 0;
      padding: 0.5rem 0 1.5rem;
      border: none;
    }
    #step1Intro {
      margin-bottom: 1rem !important;
      color: #5A4A44 !important;
      font-size: 0.9rem !important;
      font-family: "DM Sans", system-ui, sans-serif;
      text-align: left;
    }
    .cat-booking-block { margin-bottom: 1.25rem; }
    .cat-acc-item {
      margin-bottom: 0.65rem;
      border-radius: 8px;
      border: 1px solid #E6DDD4;
      overflow: hidden;
      background: #fff;
      box-shadow: none;
    }
    .cat-acc-head {
      width: 100%;
      text-align: left;
      font-family: "DM Sans", system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      line-height: 1.35;
      color: #1A1614;
      padding: 1.05rem 1.15rem;
      background: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
    }
    .cat-acc-head > span:first-child {
      text-transform: uppercase;
      flex: 1;
      min-width: 0;
    }
    .cat-acc-head:hover {
      background: #FFFCFA;
    }
    .cat-acc-head .chev {
      font-size: 1rem;
      opacity: 0.45;
      color: #9A8B82;
      flex-shrink: 0;
      font-weight: 400;
    }
    .cat-acc-body {
      padding: 0.85rem 1rem 1rem;
      background: #FFFCFA;
      border-top: 1px solid #EFE7DF;
    }
    .cat-acc-body[hidden] { display: none !important; }
    .booking-step1-inquiry-actions {
      margin-top: 0.75rem;
    }
    .booking-step1-inquiry-actions #toStep2 {
      width: 100%;
      flex: 1 1 100% !important;
      border-radius: 8px;
      padding: 0.95rem 1.25rem;
      font-family: "DM Sans", system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
    }
    .booking-step1-inquiry-actions #toStep2:disabled {
      background: #C9B8A8;
      color: #4A3F38;
      cursor: not-allowed;
      opacity: 1;
    }
    .booking-step1-inquiry-actions #toStep2:not(:disabled) {
      background: #2B211A;
      color: #fff;
    }
    .booking-next-available-hint {
      margin: 0 auto 0.85rem;
      text-align: center;
      line-height: 1.45;
      max-width: 100%;
      padding: 0 0.25rem;
    }
    .booking-next-fomo {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.95rem 0.45rem 0.65rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff4e0 0%, #F9F2EE 100%);
      border: 1px solid rgba(110, 42, 52, 0.22);
      font-size: 0.88rem;
      font-weight: 600;
      color: #5F4842;
      text-align: left;
      max-width: 100%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }
    .booking-next-fomo-dot {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: var(--leaf-2);
      flex-shrink: 0;
      animation: bookingFomoPulse 1.6s ease-in-out infinite;
    }
    @keyframes bookingFomoPulse {
      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.4;
        transform: scale(0.82);
      }
    }
    .booking-step-progress-wrap {
      margin-bottom: 1.5rem;
    }
    .booking-step-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.45rem;
      margin-bottom: 0.65rem;
    }
    .booking-step-seg {
      height: 4px;
      border-radius: 2px;
      background: #E6DDD4;
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }
    .booking-step-seg.completed {
      background: #C9B8A8;
    }
    .booking-step-seg.active {
      background: #2B211A;
      box-shadow: none;
    }
    .booking-step-seg.upcoming {
      background: rgba(0, 0, 0, 0.08);
    }
    .step-indicator {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--brand-deep);
      letter-spacing: 0.02em;
      text-align: center;
    }
    .step-panel { display: none; }
    .step-panel.active { display: block; }
    .service-pick-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    @media (max-width: 600px) { .service-pick-grid { grid-template-columns: 1fr; } }
    .pick-card {
      border: 2px solid var(--cream-2);
      border-radius: 12px;
      padding: 1rem;
      cursor: pointer;
      text-align: left;
      background: #fff;
      font-family: inherit;
    }
    .pick-card.selected { border-color: var(--brand-deep); background: rgba(110, 42, 52, 0.08); }

    .step1-selected-wrap {
      background: #fff;
      border: 2px solid var(--leaf-1);
      border-radius: 12px;
      padding: 1.25rem;
      text-align: left;
      max-width: 520px;
      margin: 0 auto;
    }
    .step1-selected-wrap > div:nth-child(2) {
      flex-direction: column !important;
      align-items: stretch !important;
      min-height: auto !important;
      max-width: 100%;
    }
    .step1-selected-wrap > div:nth-child(2) .appt-img {
      width: 100% !important;
      min-width: 100% !important;
    }
    .step1-selected-wrap .sel-cat { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.35rem; }
    .step1-selected-wrap .sel-title { font-weight: 700; color: var(--brand-deep); font-size: 1.1rem; margin-bottom: 0.5rem; }
    .step1-selected-wrap .sel-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
    .step1-selected-wrap .sel-desc { font-size: 0.9rem; line-height: 1.55; color: var(--ink); margin-bottom: 1rem; white-space: pre-line; }
    .change-appt-link {
      display: inline-block;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
      color: var(--brand-deep);
      cursor: pointer;
      text-decoration: underline;
      font-weight: 600;
    }
    .cat-booking-header {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--brand-deep);
      margin-bottom: 0.75rem;
      padding-bottom: 0.35rem;
      border-bottom: 2px solid var(--cream-2);
    }
    .appt-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 520px;
      margin: 0 auto;
      width: 100%;
    }
    .appt-card {
      display: flex;
      flex-direction: column;
      border: 1.5px solid var(--cream-2);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
      background: #fff;
      min-height: 0;
      align-items: stretch;
      position: relative;
    }
    .appt-card:hover {
      border-color: var(--brand-deep);
      box-shadow: 0 4px 16px rgba(110, 42, 52, 0.1);
    }
    .appt-card.selected {
      border-color: var(--brand-deep);
      border-width: 2px;
      box-shadow: 0 0 0 3px rgba(110, 42, 52, 0.15);
    }
    .appt-img {
      width: 100%;
      min-width: 100%;
      flex-shrink: 0;
      align-self: stretch;
      overflow: visible;
    }
    .appt-img img {
      width: 100%;
      height: auto;
      object-fit: unset;
      display: block;
      transform: none;
    }
    .appt-card:hover .appt-img img {
      transform: none;
    }
    .appt-info {
      flex: 1;
      width: 100%;
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.2rem;
      min-width: 0;
      box-sizing: border-box;
    }
    .appt-name {
      font-family: Georgia, serif;
      font-size: 0.95rem;
      color: var(--brand-deep);
      font-weight: normal;
      line-height: 1.3;
    }
    .appt-meta {
      font-size: 0.78rem;
      color: var(--muted);
    }
    .appt-price {
      font-size: 0.9rem;
      color: var(--brand-deep);
      font-weight: 600;
    }
    .appt-desc {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.4;
      flex: 1;
      white-space: pre-line;
      margin-top: 0.25rem;
    }
    .appt-select-btn {
      margin-top: 0.5rem;
      padding: 0.5rem;
      background: var(--btn-fill);
      color: var(--text-on-btn);
      border: none;
      border-radius: 6px;
      font-size: 0.8rem;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s;
      width: 100%;
    }
    .appt-select-btn:hover {
      background: var(--btn-fill-hover);
    }
    .appt-card.selected .appt-select-btn {
      background: var(--btn-fill-hover);
    }
    .byob-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: var(--cream-2);
      color: var(--brand-deep);
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      margin-left: 0.35rem;
    }
    .addon-panel {
      margin-top: 1.25rem;
      padding: 1.25rem;
      background: var(--cream-2);
      border-radius: 12px;
      border: 1px solid rgba(110, 42, 52, 0.25);
    }
    .addon-panel[hidden] { display: none !important; }
    .color-inquiry-mini-cal {
      margin-top: 0.35rem;
 }
    .color-inquiry-mini-cal .ci-cal-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      gap: 0.5rem;
    }
    .color-inquiry-mini-cal .ci-cal-nav strong {
      font-size: 0.9rem;
    }
    .color-inquiry-mini-cal .ci-cal-weekdays,
    .color-inquiry-mini-cal .ci-cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      text-align: center;
      font-size: 0.78rem;
    }
    .color-inquiry-mini-cal .ci-cal-weekdays div {
      font-weight: 600;
      opacity: 0.65;
      padding: 2px 0;
    }
    .color-inquiry-mini-cal .ci-cal-day {
      border: 1px solid rgba(26, 46, 34, 0.15);
      border-radius: 6px;
      padding: 6px 2px;
      background: #fff;
      cursor: pointer;
      font-size: 0.82rem;
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
    }
    .color-inquiry-mini-cal .ci-cal-day:disabled {
      cursor: not-allowed;
      opacity: 0.45;
      background: #e5e7eb;
      color: #6b7280;
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-avail:not(:disabled) {
      background: #F9F2EE;
      border-color: var(--brand-accent);
      color: var(--brand-deep);
      font-weight: 600;
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-selected {
      box-shadow: 0 0 0 2px var(--brand-accent);
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-today {
      text-decoration: underline;
    }
    .addon-heading {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--brand-deep);
      margin-bottom: 0.75rem;
    }
    .addon-row {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.45rem 0;
      border-bottom: 1px solid rgba(110, 42, 52, 0.12);
      font-size: 0.9rem;
    }
    .addon-row:last-of-type { border-bottom: none; }
    .addon-row input[type="checkbox"] {
      accent-color: var(--brand-deep);
      width: 1.1rem;
      height: 1.1rem;
      margin-top: 0.15rem;
      flex-shrink: 0;
      cursor: pointer;
    }
    .addon-row .addon-label { flex: 1; min-width: 0; color: var(--ink); line-height: 1.35; }
    .addon-price,
    .addon-price-meta {
      flex-shrink: 0;
      font-weight: 600;
      font-size: 0.88rem;
    }
    .addon-price-meta {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      flex-wrap: nowrap;
      flex-shrink: 0;
      justify-content: flex-end;
      text-align: right;
      color: var(--muted);
      white-space: nowrap;
    }
    .addon-price-amt,
    .addon-duration {
      white-space: nowrap;
    }
    .addon-meta-sep {
      width: 1px;
      align-self: stretch;
      min-height: 0.9em;
      background: rgba(110, 42, 52, 0.35);
      flex-shrink: 0;
    }
    .addon-price.free,
    .addon-price-meta.free {
      color: var(--brand-deep);
    }
    .addon-price.paid { color: var(--muted); }
    .addon-total-line {
      margin-top: 1rem;
      padding-top: 0.85rem;
      border-top: 2px solid rgba(255,255,255,0.6);
      color: var(--brand-deep);
      line-height: 1.4;
    }
    .addon-total-heading {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted-on-cream);
      margin-bottom: 0.55rem;
    }
    .addon-total-breakdown {
      display: grid;
      grid-template-columns: minmax(0, 1fr) max-content max-content;
      column-gap: 0.75rem;
      row-gap: 0.45rem;
      align-items: start;
    }
    .addon-total-row,
    .addon-total-sum {
      display: contents;
    }
    .addon-total-desc {
      min-width: 0;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--body-on-cream);
      overflow-wrap: anywhere;
      padding-right: 0.25rem;
    }
    .addon-total-price {
      justify-self: end;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--heading-on-cream);
      text-align: right;
    }
    .addon-total-time {
      justify-self: end;
      white-space: nowrap;
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--muted-on-cream);
      text-align: right;
      min-height: 1.2em;
    }
    .addon-total-time:not(:empty) {
      padding-left: 0.65rem;
      border-left: 1px solid rgba(110, 42, 52, 0.35);
    }
    .addon-total-sum > .addon-total-desc,
    .addon-total-sum > .addon-total-price,
    .addon-total-sum > .addon-total-time {
      margin-top: 0.45rem;
      padding-top: 0.65rem;
      border-top: 1px solid rgba(110, 42, 52, 0.18);
    }
    .addon-total-sum > .addon-total-desc {
      font-weight: 700;
      color: var(--heading-on-cream);
    }
    .addon-total-sum > .addon-total-price {
      font-size: 1.05rem;
      font-weight: 700;
    }
    .addon-total-sum > .addon-total-time {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--heading-on-cream);
    }
    .addon-total-sum > .addon-total-time:not(:empty) {
      border-left-color: rgba(110, 42, 52, 0.28);
    }
    .addon-section {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--cream-2);
    }
    .addon-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .addon-section-free {
      background: rgba(110, 42, 52,0.05);
      border-radius: 8px;
      padding: 1rem;
      border: 1px solid rgba(110, 42, 52,0.2);
    }
    .addon-section-title {
      font-family: Georgia, serif;
      font-size: 0.95rem;
      color: var(--brand-deep);
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .addon-required-badge {
      font-size: 0.7rem;
      background: var(--btn-fill);
      color: var(--text-on-btn);
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-weight: normal;
    }
    .addon-optional-badge {
      font-size: 0.7rem;
      background: var(--brand-surface);
      color: var(--muted-on-cream);
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-weight: normal;
    }
    .addon-section-note {
      font-size: 0.8rem;
      color: var(--muted-on-cream);
      margin: 0 0 0.75rem;
      line-height: 1.5;
    }
    .addon-warning {
      display: block;
      color: #8a5a00;
      background: rgba(180,120,0,0.08);
      border: 1px solid rgba(180,120,0,0.2);
      border-radius: 6px;
      padding: 0.4rem 0.6rem;
      margin-top: 0.4rem;
      font-size: 0.78rem;
    }
    .addon-options {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .addon-radio-label,
    .addon-check-label {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.875rem;
      transition: border-color 0.15s, background 0.15s;
    }
    .addon-radio-label:hover,
    .addon-check-label:hover {
      border-color: var(--brand-deep);
      background: rgba(110, 42, 52,0.04);
    }
    .addon-radio-label input,
    .addon-check-label input {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      accent-color: var(--brand-deep);
    }
    .addon-radio-name,
    .addon-check-name {
      flex: 1;
      color: var(--ink);
    }
    .addon-default {
      background: rgba(110, 42, 52,0.06);
      border-color: rgba(110, 42, 52,0.3);
    }
    .addon-needs-confirm {
      border-style: dashed;
      border-color: #e8c87a;
    }
    .addon-section .addon-price,
    .addon-section .addon-price-meta {
      font-size: 0.8rem;
      color: var(--brand-deep);
      font-weight: 600;
      flex-shrink: 0;
    }
    .addon-section .addon-price.free,
    .addon-section .addon-price-meta.free {
      color: var(--brand-primary);
      background: rgba(110, 42, 52,0.1);
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
    }
    .addon-recommended-note {
      font-size: 0.78rem;
      color: var(--brand-primary);
      background: rgba(110, 42, 52,0.08);
      border: 1px solid rgba(110, 42, 52,0.2);
      border-radius: 6px;
      padding: 0.5rem 0.75rem;
      margin-bottom: 0.5rem;
    }
    .addon-text-option { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(110, 42, 52, 0.15); }
    .addon-checkbox-label { display: flex; align-items: flex-start; gap: 0.65rem; cursor: pointer; font-size: 0.9rem; flex: 1; }
    .addon-checkbox-label input { margin-top: 0.15rem; }
    .addon-radio-label.addon-fullness-option {
      align-items: flex-start;
    }
    .addon-fullness-stack {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .addon-fullness-line1 {
      color: var(--ink);
      line-height: 1.35;
    }
    .addon-most-popular {
      font-size: 0.78rem;
      color: var(--brand-deep);
      font-weight: 600;
      margin-left: 0.35rem;
      white-space: nowrap;
    }
    .addon-fullness-price-line {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      flex-wrap: wrap;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--brand-deep);
    }
    .addon-fullness-price-line .addon-meta-sep {
      background: rgba(110, 42, 52, 0.3);
    }
    @media (max-width: 600px) {
      .addon-panel {
        padding: 1rem;
        overflow-x: hidden;
        max-width: 100%;
      }
      .addon-panel-inner {
        min-width: 0;
        max-width: 100%;
      }
      /* Stack price/time under the add-on name so meta doesn't overflow */
      .addon-radio-label:not(.addon-fullness-option),
      .addon-check-label,
      .addon-row {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 0.6rem;
        row-gap: 0.2rem;
        align-items: start;
      }
      .addon-radio-label:not(.addon-fullness-option) > input,
      .addon-check-label > input,
      .addon-row > input {
        grid-column: 1;
        grid-row: 1;
      }
      .addon-radio-label:not(.addon-fullness-option) > .addon-radio-name,
      .addon-check-label > .addon-check-name,
      .addon-check-label > div,
      .addon-row > .addon-label,
      .addon-row > .addon-checkbox-label {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        overflow-wrap: break-word;
      }
      .addon-radio-label:not(.addon-fullness-option) > .addon-price,
      .addon-radio-label:not(.addon-fullness-option) > .addon-price-meta,
      .addon-check-label > .addon-price,
      .addon-check-label > .addon-price-meta,
      .addon-row > .addon-price,
      .addon-row > .addon-price-meta,
      .addon-section .addon-radio-label:not(.addon-fullness-option) > .addon-price,
      .addon-section .addon-radio-label:not(.addon-fullness-option) > .addon-price-meta,
      .addon-section .addon-check-label > .addon-price,
      .addon-section .addon-check-label > .addon-price-meta {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        white-space: normal;
        flex-shrink: 1;
      }
      .addon-radio-label:not(.addon-fullness-option) > .addon-section-note {
        grid-column: 2;
        grid-row: 3;
        min-width: 0;
      }
      .addon-most-popular {
        white-space: normal;
        margin-left: 0.2rem;
      }
      .addon-fullness-line1,
      .addon-fullness-price-line {
        overflow-wrap: break-word;
      }
    }
    .pay-choice-row {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 0.35rem;
    }
    .pay-choice-btn {
      flex: 1;
      min-width: 140px;
      padding: 0.65rem 0.75rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      background: #fff;
      font-family: inherit;
      font-size: 0.875rem;
      line-height: 1.35;
      cursor: pointer;
      text-align: center;
      color: var(--ink);
      transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    }
    .pay-choice-btn:hover {
      border-color: var(--brand-deep);
      background: rgba(110, 42, 52, 0.04);
    }
    .pay-choice-btn.active {
      border-color: var(--brand-deep);
      background: rgba(110, 42, 52, 0.1);
      box-shadow: 0 0 0 1px rgba(110, 42, 52, 0.25);
      color: var(--brand-deep);
      font-weight: 600;
    }
    .terms-box {
      background: #fff;
      border: 1px solid var(--cream-2);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      margin: 0.85rem 0 1rem;
    }
    .terms-check {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      cursor: pointer;
      user-select: none;
    }
    .terms-check input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      accent-color: var(--brand-deep);
      flex: 0 0 auto;
    }
    .terms-copy { font-size: 0.88rem; color: var(--ink); line-height: 1.55; }
    .terms-copy .terms-quote { display:block; color: var(--muted); font-size: 0.85rem; margin: 0.4rem 0; }
    .terms-error { display:none; margin-top: 0.6rem; color:#8a2a2a; font-size:0.85rem; }
    #text-phone-number { width: 100%; max-width: 280px; }
    #contact-success { margin-top: 0.75rem; }
    .form-row { margin-bottom: 1rem; }
    .form-row label { display: block; font-size: 0.85rem; margin-bottom: 0.35rem; font-weight: 500; }
    .form-row input, .form-row select, .form-row textarea {
      width: 100%;
      padding: 0.65rem 0.75rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      font-family: inherit;
    }
    .calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 4px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      text-align: center;
      font-size: 0.85rem;
    }
    #calWeekdays > div,
    #rs-cal-weekdays > div {
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      min-width: 0;
      font-weight: 600;
      opacity: 0.6;
      font-size: 0.75rem;
    }
    .calendar-grid > div:empty {
      min-width: 0;
      aspect-ratio: 1;
    }
    .calendar-grid button {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      aspect-ratio: 1;
      height: auto;
      padding: 0;
      border: none;
      background: #fff;
      border-radius: 10px;
      cursor: pointer;
      font-family: inherit;
      /* Explicit brand ink — iOS Safari otherwise paints bare buttons link-blue */
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      font-size: clamp(0.72rem, 2.8vw, 0.85rem);
    }
    .calendar-grid button:disabled { opacity: 0.35; cursor: not-allowed; }
    .calendar-grid button.cal-day {
      cursor: pointer;
      border: 1px solid transparent;
      background: #fff;
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
    }
    .calendar-grid button.cal-day.bookable-available:not(.selected) {
      background: #F9F2EE;
      border-color: #C9A99A;
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
      font-weight: 700;
      box-shadow: inset 0 -3px 0 rgba(110, 42, 52, 0.16);
    }
    .calendar-grid button.cal-day:hover:not(:disabled) {
      border-color: var(--brand-deep);
    }
    .calendar-grid button.cal-day.selected {
      background: var(--btn-fill);
      color: var(--text-on-btn);
      -webkit-text-fill-color: var(--text-on-btn);
    }
    .calendar-grid button.cal-day.today:not(.selected) {
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
      font-weight: 600;
    }
    .calendar-grid button.cal-day.fully-booked {
      background: #f2eee7;
      color: #a4a097;
      cursor: pointer;
      text-decoration: line-through;
      border-color: #e4ddd2;
    }
    .calendar-grid button.cal-day.fully-booked.waitlist-available {
      background: #fff4d8;
      border-color: #e2bd63;
      color: #8a6500;
      text-decoration-color: rgba(138, 101, 0, 0.45);
      box-shadow: inset 0 -3px 0 rgba(226, 189, 99, 0.28);
    }
    .calendar-grid button.cal-day.fully-booked.waitlist-available.selected {
      background: #8a6500;
      color: #fffaf0;
      -webkit-text-fill-color: #fffaf0;
      text-decoration-color: rgba(255, 255, 255, 0.75);
    }
    .calendar-grid button.cal-day.fully-booked:disabled {
      background: #ece8df;
      color: #b7b2a8;
      cursor: not-allowed;
      border-color: transparent;
      box-shadow: none;
    }
    .cal-month-status {
      font-size: 0.82rem;
      color: var(--muted);
      margin: 0.35rem 0 0.5rem;
      min-height: 1.2em;
    }
    @keyframes cal-shimmer {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    .cal-day-skeleton {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      aspect-ratio: 1;
      height: auto;
      border-radius: 6px;
      background: linear-gradient(90deg, var(--brand-surface) 0%, var(--brand-secondary) 50%, var(--brand-surface) 100%);
      background-size: 200% 100%;
      animation: cal-shimmer 1.1s ease-in-out infinite;
    }
    .cal-legend {
      display: flex;
      gap: 1rem;
      margin-top: 0.75rem;
      font-size: 0.78rem;
      color: var(--muted);
      flex-wrap: wrap;
      align-items: center;
    }
    .cal-legend .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      white-space: nowrap;
    }
    .cal-legend .legend-label--short { display: none; }
    .legend-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .legend-dot.available { background: var(--brand-primary); }
    .legend-dot.booked { background: #8a6500; }
    .legend-dot.closed { background: #c9c3b8; }
    @media (max-width: 600px) {
      .cal-legend {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.65rem;
        font-size: 0.72rem;
        line-height: 1.2;
        width: 100%;
      }
      .cal-legend .legend-item {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
        gap: 0.3rem;
      }
      .cal-legend .legend-label--full { display: none; }
      .cal-legend .legend-label--short { display: inline; }
      .cal-legend .legend-dot {
        width: 8px;
        height: 8px;
      }
    }
    .slots { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
    .slots button {
      padding: 0.45rem 0.75rem;
      border: 1px solid var(--leaf-2);
      background: #fff;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.85rem;
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
    }
    .slots button.unavailable {
      text-decoration: line-through;
      opacity: 0.5;
      color: var(--muted);
      -webkit-text-fill-color: var(--muted);
      background: #f0ebe3;
      border-color: var(--cream-2);
      cursor: not-allowed;
      pointer-events: none;
    }
    .slot-availability-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 0.75rem;
      line-height: 1.45;
    }
    .slots button.time-pick.selected {
      background: var(--btn-fill);
      color: var(--text-on-btn);
      -webkit-text-fill-color: var(--text-on-btn);
    }
    .step2-waitlist-section {
      flex-basis: 100%;
      width: 100%;
      margin-top: 1.25rem;
      padding: 1.15rem 1.25rem;
      background: var(--cream-2);
      border: 1px solid rgba(110, 42, 52, 0.2);
      border-radius: 12px;
      box-sizing: border-box;
    }
    .step2-waitlist-section h3 {
      margin: 0 0 0.35rem;
      font-family: Georgia, serif;
      font-size: 1.1rem;
      color: var(--brand-deep);
      font-weight: 600;
    }
    .step2-waitlist-section .step2-waitlist-sub {
      margin: 0 0 1rem;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .step2-waitlist-slots {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    button.waitlist-slot-pick {
      padding: 0.5rem 0.9rem;
      border: 2px solid var(--leaf-2);
      background: transparent;
      color: var(--brand-deep);
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.85rem;
      font-family: inherit;
      font-weight: 600;
      transition: background 0.15s, color 0.15s;
    }
    button.waitlist-slot-pick:hover {
      background: rgba(110, 42, 52, 0.08);
    }
    button.waitlist-slot-pick.selected {
      background: var(--btn-fill);
      color: var(--text-on-btn);
    }
    .step2-waitlist-form .form-row { margin-bottom: 0.65rem; }
    .step2-waitlist-form label { display: block; font-size: 0.82rem; margin-bottom: 0.25rem; color: var(--ink); }
    .step2-waitlist-form input,
    .step2-waitlist-form textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0.45rem 0.55rem;
      border: 1px solid var(--cream-2);
      border-radius: 6px;
      font-family: inherit;
      font-size: 0.9rem;
    }
    .step2-waitlist-form textarea { min-height: 4rem; resize: vertical; }
    .step2-waitlist-actions { margin-top: 0.75rem; }
    .step2-waitlist-change-date {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.88rem;
      color: var(--brand-deep);
      cursor: pointer;
      text-decoration: underline;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
    }
    .step2-waitlist-change-date:hover {
      color: var(--brand-deep);
    }
    .step2-waitlist-msg { margin-top: 0.75rem; font-size: 0.88rem; line-height: 1.55; }
    .booking-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .msg-success { background: rgba(110, 42, 52, 0.15); color: var(--brand-deep); padding: 1rem; border-radius: 10px; margin-top: 1rem; }
    .msg-error { background: rgba(180, 60, 60, 0.12); color: #8a2a2a; padding: 1rem; border-radius: 10px; margin-top: 1rem; }

    .payment-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin: 1rem 0;
    }
    @media (max-width: 540px) {
      .payment-options { grid-template-columns: 1fr; }
    }
    .payment-option {
      border: 2px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem;
      cursor: pointer;
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      background: white;
      transition: all 0.2s;
    }
    .payment-option.selected {
      border-color: var(--brand-deep);
      background: rgba(110, 42, 52, 0.06);
    }
    .payment-option-radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid var(--cream-2);
      flex-shrink: 0;
      margin-top: 2px;
      transition: all 0.2s;
    }
    .payment-option.selected .payment-option-radio {
      border-color: var(--brand-deep);
      background: var(--leaf-2);
      box-shadow: inset 0 0 0 3px white;
    }
    .payment-option strong {
      display: block;
      font-size: 0.95rem;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }
    .payment-option span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .confirmed-header { text-align: center; padding: 2rem 0 1.5rem; }
    .confirmed-icon { font-size: 3rem; margin-bottom: 0.5rem; }
    .confirmed-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--brand-deep);
    }
    .confirmed-summary {
      background: white;
      border: 1px solid var(--cream-2);
      border-radius: 12px;
      padding: 1.5rem;
      margin: 1.5rem 0;
    }
    .confirmed-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--cream-2);
      font-size: 0.9rem;
    }
    .confirmed-row:last-child { border-bottom: none; }
    .confirmed-row span { color: var(--muted); }
    .confirmed-row.highlight { background: rgba(110, 42, 52, 0.06); margin: 0 -0.5rem; padding-left: 0.5rem; padding-right: 0.5rem; border-radius: 6px; }
    .confirmed-divider {
      height: 1px;
      background: var(--cream-2);
      margin: 0.5rem 0;
    }
    .confirmed-info {
      background: var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin: 1rem 0;
      font-size: 0.88rem;
      line-height: 2;
      color: var(--muted);
    }
    .confirmed-prep {
      border: 1px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin: 1rem 0;
    }
    .confirmed-prep h4 {
      color: var(--brand-deep);
      margin-bottom: 0.75rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
    }
    .confirmed-prep ul {
      list-style: none;
      padding: 0;
      font-size: 0.88rem;
      line-height: 2;
      color: var(--muted);
    }
    .confirmed-prep ul li::before { content: "✓ "; color: var(--brand-deep); }
    .conf-balance-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }
    #conf-deposit-pending-wrap .btn { width: 100%; margin-top: 0.5rem; }
    #booking-confirmed-page { max-width: 720px; margin: 0 auto; }
    .balance-success-banner {
      background: rgba(110, 42, 52, 0.12);
      border: 1px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: var(--brand-deep);
      text-align: center;
    }

    #reschedule-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(13, 26, 18, 0.52);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    #reschedule-modal-overlay.is-open {
      display: flex;
    }
    .reschedule-modal-inner {
      background: #fff;
      border-radius: 18px;
      width: min(100%, 520px);
      max-height: min(92vh, 820px);
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
      overflow: hidden;
    }
    .reschedule-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.35rem 1.35rem 1rem;
      border-bottom: 1px solid #ebe6dc;
      flex-shrink: 0;
    }
    .reschedule-modal-header h3 {
      margin: 0;
      font-family: Georgia, serif;
      font-size: 1.35rem;
      color: var(--brand-deep);
      line-height: 1.2;
    }
    .reschedule-modal-sub {
      margin: 0.35rem 0 0;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.45;
    }
    .reschedule-modal-close {
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border: none;
      background: var(--brand-secondary);
      border-radius: 999px;
      color: var(--ink);
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .reschedule-modal-close:hover {
      background: #ebe4d8;
    }
    .reschedule-modal-body {
      padding: 1rem 1.35rem 1.25rem;
      overflow-y: auto;
      flex: 1;
      -webkit-overflow-scrolling: touch;
    }
    .reschedule-current-card {
      background: linear-gradient(135deg, #f5f9f6 0%, #eef5f0 100%);
      border: 1px solid #E8DDD5;
      border-radius: 12px;
      padding: 0.85rem 1rem;
      margin-bottom: 1rem;
    }
    .reschedule-current-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted-on-cream);
      margin-bottom: 0.35rem;
    }
    .reschedule-current-datetime {
      font-size: 1rem;
      font-weight: 600;
      color: var(--brand-deep);
      line-height: 1.45;
    }
    .reschedule-policy-notice {
      margin-bottom: 1rem;
      padding: 1rem 1.05rem;
      border-radius: 12px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--ink);
    }
    .reschedule-policy-notice--fee {
      background: #fff9f0;
      border: 1px solid #e8c468;
    }
    .reschedule-policy-notice--free {
      background: #F9F2EE;
      border: 1px solid #C9A99A;
    }
    .reschedule-policy-notice--blocked {
      background: #fff5f5;
      border: 1px solid #e8b4b4;
    }
    .reschedule-policy-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      margin-bottom: 0.55rem;
    }
    .reschedule-policy-notice--fee .reschedule-policy-badge {
      background: #8a6500;
      color: #fffaf0;
    }
    .reschedule-policy-notice--free .reschedule-policy-badge {
      background: var(--btn-fill);
      color: var(--text-on-btn);
    }
    .reschedule-policy-notice--blocked .reschedule-policy-badge {
      background: #8a2a2a;
      color: #fff;
    }
    .reschedule-policy-lead {
      margin: 0 0 0.75rem;
      font-weight: 600;
      color: var(--ink);
    }
    .reschedule-fee-summary {
      display: grid;
      gap: 0.45rem;
      margin: 0 0 0.75rem;
      padding: 0.75rem;
      background: rgba(255, 255, 255, 0.65);
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }
    .reschedule-fee-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.75rem;
      font-size: 0.86rem;
    }
    .reschedule-fee-row dt {
      margin: 0;
      color: var(--muted);
      font-weight: 500;
    }
    .reschedule-fee-row dd {
      margin: 0;
      font-weight: 700;
      color: var(--ink);
      white-space: nowrap;
    }
    .reschedule-fee-row--total dd {
      color: #8a6500;
      font-size: 0.95rem;
    }
    .reschedule-policy-note {
      margin: 0;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .reschedule-fee-ack {
      display: none;
      align-items: flex-start;
      gap: 0.65rem;
      margin: 0 0 1.15rem;
      padding: 0.85rem 0.95rem;
      background: #faf8f4;
      border: 1px solid #e0d8c8;
      border-radius: 10px;
      font-size: 0.86rem;
      line-height: 1.5;
      cursor: pointer;
    }
    .reschedule-fee-ack input {
      margin-top: 0.15rem;
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
      accent-color: var(--brand-deep);
    }
    .reschedule-picker {
      margin-top: 0.25rem;
    }
    .reschedule-picker-title {
      margin: 0 0 0.65rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--brand-deep);
    }
    .reschedule-calendar-card {
      background: #faf9f6;
      border: 1px solid #ebe6dc;
      border-radius: 12px;
      padding: 0.85rem 0.75rem 0.75rem;
    }
    .reschedule-calendar-card .calendar-nav {
      margin-bottom: 0.65rem;
    }
    .reschedule-calendar-card .cal-legend {
      margin-top: 0.65rem;
      gap: 0.65rem 1rem;
      justify-content: center;
    }
    .reschedule-calendar-card .legend-dot.available {
      background: #F9F2EE;
      border: 1px solid #C9A99A;
    }
    .reschedule-calendar-card .legend-dot.booked {
      background: #fff4d8;
      border: 1px solid #e2bd63;
    }
    .reschedule-picker-hint {
      margin: 0.85rem 0 0;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.45;
    }
    #rs-slot-wrap.slots {
      margin-top: 0.85rem;
    }
    #reschedule-modal-error {
      display: none;
      margin-top: 0.85rem;
      padding: 0.65rem 0.85rem;
      background: #fdf3f3;
      border: 1px solid #e8b4b4;
      border-radius: 8px;
      color: #8a2a2a;
      font-size: 0.86rem;
      line-height: 1.45;
    }
    .reschedule-modal-footer {
      display: flex;
      gap: 0.65rem;
      padding: 1rem 1.35rem 1.25rem;
      border-top: 1px solid #ebe6dc;
      background: #faf9f6;
      flex-shrink: 0;
    }
    .reschedule-modal-footer .btn {
      flex: 1;
      min-height: 2.75rem;
    }
    .reschedule-modal-footer .btn-primary {
      font-weight: 600;
    }
    @media (max-width: 480px) {
      .reschedule-modal-header,
      .reschedule-modal-body,
      .reschedule-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .reschedule-modal-footer {
        flex-direction: column-reverse;
      }
    }
    .submit-color-inquiry-btn {
      border: 2px solid #f59e0b;
      color: #92400e;
      background: transparent;
    }
    .submit-color-inquiry-btn:hover:not(:disabled) {
      background: #fff3cd;
    }
    .booking-step1-inquiry-actions #toStep2,
    .booking-step1-inquiry-actions #submitInquiryBtn {
      flex: 1 1 100%;
      min-width: 0;
    }
    @media (max-width: 560px) {
      .booking-step1-inquiry-actions {
        flex-direction: column;
      }
      .booking-step1-inquiry-actions > button {
        width: 100%;
        flex: 1 1 auto !important;
      }
    }
    footer {
      background: #0d0d0d;
      color: #bbb;
      padding: 2.75rem 1.25rem 2.5rem;
      text-align: center;
    }
    .footer-inner {
      max-width: 44rem;
      margin: 0 auto;
    }
    footer .logo-text {
      color: var(--cream-2);
      margin: 0;
    }
    .footer-copy {
      margin: 0.5rem 0 0;
      font-size: 0.9rem;
      color: #aaa;
    }
    footer .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
      margin: 1.5rem auto 0;
      width: 100%;
      max-width: 40rem;
      list-style: none;
      padding: 0;
    }
    footer .footer-nav-row {
      display: grid;
      gap: 0.35rem 0.5rem;
      width: 100%;
    }
    footer .footer-nav-row--5 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 22rem;
      margin-inline: auto;
    }
    footer .footer-nav-row--4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 22rem;
      margin-inline: auto;
    }
    footer .footer-nav a {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 2.25rem;
      padding: 0.35rem 0.5rem;
      color: #ccc;
      font-size: 0.9rem;
      line-height: 1.25;
      text-align: center;
      text-decoration: none;
      border-radius: 6px;
    }
    footer .footer-nav a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      text-decoration: none;
    }
    @media (min-width: 640px) {
      footer .footer-nav-row--5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-width: 40rem;
      }
      footer .footer-nav-row--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 32rem;
      }
    }
    footer a { color: #ccc; }
    .footer-legal-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.35rem 0.5rem;
      margin-top: 1.35rem;
      font-size: 0.75rem;
      color: #888;
      line-height: 1.5;
    }
    .footer-legal-links a {
      color: #888;
      text-decoration: none;
    }
    .footer-legal-links a:hover {
      color: #bbb;
      text-decoration: underline;
    }
    .footer-legal-sep { color: #666; }

    .studio-credit {
      margin-top: 1.5rem;
      padding: 1.25rem 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }
    .studio-credit--fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 40;
      margin-top: 0;
      padding: 0.7rem 1.25rem calc(0.7rem + env(safe-area-inset-bottom));
      background: var(--leaf-2, var(--brand-primary));
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      text-align: center;
      box-shadow: 0 -4px 20px rgba(110, 42, 52, 0.35);
    }
    body.has-studio-credit-bar {
      padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
    }
    .studio-credit-line {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.45;
      color: var(--text-on-dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.2rem;
      text-align: center;
    }
    .studio-credit-lead {
      display: block;
      max-width: 100%;
      text-align: center;
    }
    .studio-credit-icon {
      display: inline;
      margin-right: 0.35rem;
    }
    .studio-credit-hook {
      /* inline so emoji stays with the hook on one centered line */
      display: inline;
      color: var(--text-on-dark);
      opacity: 1;
      transition: opacity 0.45s ease;
    }
    .studio-credit-hook.is-fading {
      opacity: 0;
    }
    .studio-credit-link {
      display: block;
      margin: 0;
      color: var(--text-on-primary);
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.01em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.45);
      transition: color 0.2s, border-color 0.2s;
      width: fit-content;
      max-width: 100%;
    }
    .studio-credit-link:hover {
      color: #FFF8F4;
      border-bottom-color: rgba(255, 248, 244, 0.75);
    }
    .studio-credit--drive-promo,
    .studio-credit--careers-promo {
      background: linear-gradient(90deg, var(--brand-primary) 0%, #5F4842 100%);
    }
    .studio-credit--drive-promo .studio-credit-hook,
    .studio-credit--careers-promo .studio-credit-hook {
      color: var(--text-on-dark);
    }
    .studio-credit--drive-promo .studio-credit-link,
    .studio-credit--careers-promo .studio-credit-link {
      color: var(--text-on-primary);
      border-bottom-color: rgba(255, 255, 255, 0.5);
    }
    @media (max-width: 767px) {
      .studio-credit--fixed {
        padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
      }
      .studio-credit-line {
        font-size: clamp(0.62rem, 2.85vw, 0.78rem);
        line-height: 1.35;
        gap: 0.15rem;
      }
      .studio-credit-lead {
        white-space: nowrap;
        max-width: 100%;
      }
    }
    @media (max-width: 480px) {
      .studio-credit--fixed {
        padding: 0.65rem 0.55rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
      }
    }

    /* Feed-In Sub-Wizard */
    .feed-in-wizard { margin: 1rem 0; }
    .fi-step { padding: 0.5rem 0; }
    .fi-step-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; margin-bottom: 0.75rem; }
    .fi-type-grid { display: flex; flex-direction: column; gap: 0.5rem; }
    .fi-type-btn {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      text-align: left; padding: 0.85rem 1rem;
      border: 1.5px solid var(--border-color, #ddd); border-radius: 8px;
      background: transparent; cursor: pointer; transition: border-color 0.15s, background 0.15s;
    }
    .fi-type-btn:hover, .fi-type-btn.selected { border-color: var(--color-primary, var(--leaf-2)); background: var(--primary-light, #f9f2ee); }
    .fi-type-name { display: block; font-weight: 600; margin-bottom: 0.2rem; }
    .fi-type-desc { display: block; font-size: 0.8rem; opacity: 0.7; line-height: 1.4; }

    /* Feed-In wizard: force card text to brand color (avoid mobile link-blue) */
    .fi-service-card,
    .fi-service-card *,
    .fi-service-card .fi-service-name,
    .fi-type-btn,
    .fi-type-btn *,
    .fi-type-btn .fi-type-name,
    .fi-size-btn,
    .fi-size-btn * {
      color: var(--color-primary, var(--leaf-2));
    }
    .fi-service-card.selected,
    .fi-service-card.selected *,
    .fi-type-btn.selected,
    .fi-type-btn.selected *,
    .fi-size-btn.selected,
    .fi-size-btn.selected * {
      color: var(--color-primary, var(--leaf-2));
    }

    .fi-size-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
    .fi-size-btn {
      padding: 0.6rem 1.1rem; border: 1.5px solid var(--border-color, #ddd);
      border-radius: 6px; background: transparent; cursor: pointer; font-weight: 500;
      transition: border-color 0.15s, background 0.15s;
    }
    .fi-size-btn:hover, .fi-size-btn.selected { border-color: var(--color-primary, var(--leaf-2)); background: var(--primary-light, #f9f2ee); }

    .fi-back-btn { background: none; border: none; color: var(--color-primary, var(--leaf-2)); cursor: pointer; font-size: 0.85rem; padding: 0.4rem 0; margin-top: 0.5rem; }
    .fi-included-length { margin-bottom: 1rem; font-size: 0.9rem; }
    .fi-label { font-weight: 600; margin-right: 0.3rem; }
    .fi-no-charge { font-size: 0.8rem; opacity: 0.6; margin-left: 0.3rem; }
    .fi-sublabel { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
    .fi-radios, .fi-checks { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

    /* Step 3 length upgrade: radio "pills" */
    #feedInLengthRadios.fi-radios {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 0.25rem;
    }
    #feedInLengthRadios.fi-radios label {
      position: relative;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }
    #feedInLengthRadios.fi-radios input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    #feedInLengthRadios .fi-radio-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1.5px solid #e0ddd5;
      background: #fff;
      color: var(--brand-deep);
      -webkit-text-fill-color: var(--brand-deep);
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.1;
      white-space: nowrap;
      transition: border-color 0.15s, background 0.15s, color 0.15s;
    }
    #feedInLengthRadios.fi-radios label:hover .fi-radio-pill {
      border-color: var(--brand-deep);
      background: #f7f5f0;
    }
    #feedInLengthRadios.fi-radios input[type="radio"]:checked + .fi-radio-pill {
      border-color: var(--btn-fill);
      background: var(--btn-fill);
      color: var(--text-on-btn);
      -webkit-text-fill-color: var(--text-on-btn);
    }

    .fi-radios label, .fi-checks label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }

    /* Step 3 add-ons: modern cards */
    .fi-addon-card {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      border: 1.5px solid #e0ddd5;
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
      margin-bottom: 8px;
      width: 100%;
      box-sizing: border-box;
    }
    .fi-addon-card:hover {
      border-color: var(--color-primary, var(--leaf-2));
      background: #f7f5f0;
    }
    .fi-addon-card.selected {
      border-color: var(--color-primary, var(--leaf-2));
      background: #f0f4f1;
    }
    .fi-addon-card input[type="checkbox"] {
      margin-top: 2px;
      width: 18px;
      height: 18px;
      accent-color: var(--color-primary, var(--leaf-2));
      flex-shrink: 0;
      cursor: pointer;
    }
    .fi-addon-card-body {
      flex: 1;
      min-width: 0;
    }
    .fi-addon-card-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.95rem;
      gap: 10px;
    }
    .fi-addon-card-title > span:first-child {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .fi-addon-card-price {
      font-weight: 600;
      color: var(--color-primary, var(--leaf-2));
      white-space: nowrap;
      margin-left: 8px;
      flex-shrink: 0;
    }
    .fi-addon-card-desc {
      font-size: 0.82rem;
      color: #6b6b6b;
      margin-top: 3px;
      line-height: 1.45;
    }

    .fi-photo-section { background: var(--surface-alt, #faf8f6); border: 1.5px dashed var(--border-color, #ddd); border-radius: 8px; padding: 1rem; margin: 1rem 0; }
    .fi-photo-notice { font-size: 0.9rem; margin-bottom: 0.75rem; }
    .fi-photo-input { display: block; margin-bottom: 0.5rem; }
    .fi-photo-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 10px; }
    .fi-photo-preview img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
    .fi-photo-required { color: #c0392b; font-size: 0.85rem; margin-top: 8px; }

    .fi-photo-upload-section {
      border: 2px dashed var(--color-primary, var(--leaf-2));
      border-radius: 12px;
      background: #f7f9f7;
      padding: 16px 18px;
      margin: 14px 0;
    }
    .fi-photo-upload-title {
      font-weight: 700;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.95rem;
      margin-bottom: 6px;
    }
    .fi-photo-upload-sub {
      font-size: 0.82rem;
      color: #6b6b6b;
      margin-bottom: 10px;
      line-height: 1.45;
    }
    .fi-photo-upload-section input[type="file"] {
      display: block;
      width: 100%;
      padding: 10px;
      border: 1.5px solid var(--color-primary, var(--leaf-2));
      border-radius: 8px;
      background: #fff;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.9rem;
      cursor: pointer;
      box-sizing: border-box;
    }

    .fi-step-image {
      width: 100%;
      max-height: 220px;
      object-fit: cover;
      border-radius: 12px;
      margin: 10px 0 12px;
      display: block;
    }
    .fi-type-btn .fi-type-card-image {
      max-height: 160px;
      margin: 0 0 10px;
    }

    .fi-service-desc {
      font-size: 0.9rem;
      color: var(--text, #222);
      line-height: 1.5;
      margin: 0.75rem 0;
      padding: 0.75rem 0.85rem;
      background: rgba(250, 248, 246, 0.9);
      border: 1px solid var(--border-color, #ddd);
      border-radius: 8px;
    }

    .fi-price-preview { font-size: 1rem; font-weight: 600; margin: 0.75rem 0; }
    .fi-step-c-actions { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
    .fi-actions-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
      gap: 12px;
    }
    .fi-actions-row .fi-back-btn {
      background: none;
      border: none;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.9rem;
      cursor: pointer;
      padding: 0;
      text-decoration: underline;
      flex-shrink: 0;
      margin-top: 0;
    }
    .fi-select-btn {
      background-color: var(--btn-fill);
      color: var(--text-on-btn);
      border: none;
      border-radius: 50px;
      padding: 12px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
      white-space: nowrap;
      font-family: inherit;
    }
    .fi-select-btn:hover:not(:disabled) { background: var(--btn-fill-hover); }
    .fi-select-btn:disabled {
      background-color: var(--btn-disabled-bg);
      color: var(--btn-disabled-fg);
      cursor: not-allowed;
      opacity: 1;
    }
    .fi-confirm-btn {
      background-color: var(--btn-fill);
      color: var(--text-on-btn);
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      font-family: inherit;
      transition: background 0.15s;
      flex: 1 1 auto;
      min-width: 0;
    }
    .fi-confirm-btn:hover:not(:disabled) { background: var(--btn-fill-hover); }
    .fi-confirm-btn:disabled {
      background-color: var(--btn-disabled-bg);
      color: var(--btn-disabled-fg);
      cursor: not-allowed;
      opacity: 1;
    }

    .fi-price-disclaimer {
      font-size: 0.8rem;
      color: var(--text-muted, #888);
      line-height: 1.5;
      margin-top: 0.75rem;
      padding: 0.6rem 0.75rem;
      background: var(--surface-alt, #faf8f6);
      border-radius: 6px;
      border-left: 3px solid var(--color-primary, var(--leaf-2));
    }
    .fi-price-disclaimer--small {
      font-size: 0.75rem;
      margin-top: 0.4rem;
      padding: 0.4rem 0.6rem;
    }

    /* Feed-In: size/count select styling (native select was invisible on light bg) */
    .fi-size-select,
    select.fi-size-select,
    .feed-in-wizard select.fi-size-select {
      background-color: var(--color-primary, var(--leaf-2));
      color: #fff;
      border: 1.5px solid var(--color-primary, var(--leaf-2));
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 1rem;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
      cursor: pointer;
    }
    .fi-size-select option {
      background-color: #fff;
      color: #1a1a1a;
    }