:root {
      --color-primary: #C4813A;
      --color-accent: #C4400A;
      --color-bg: #F5F0E8;
      --color-dark: #1A1008;
      --leaf-1: #C4813A;
      --leaf-2: #C4813A;
      --leaf-3: #C4400A;
      --cream-1: #F5F0E8;
      --cream-2: #e8ddd0;
      --ink: #1A1008;
      --muted: #5c4a3a;
      --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(--ink);
      background: var(--cream-1);
      line-height: 1.6;
    }
    h1, h2, h3, .logo-text { font-family: "Cormorant Garamond", Georgia, serif; }
    a { color: var(--leaf-2); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .nav-wrap {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 101;
      background: rgba(245, 240, 232, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--cream-2);
    }
    .broadcast-bar {
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 9px 16px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    #broadcastText {
      transition: opacity 0.5s ease;
      display: inline-block;
      max-width: 100%;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    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;
    }
    .brand-logo {
      height: 40px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      object-position: left center;
    }
    .logo-text {
      font-size: 1.35rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--leaf-2);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      list-style: none;
    }
    .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
    .nav-links a:hover { color: var(--leaf-1); text-decoration: none; }
    .nav-cta {
      background: var(--leaf-2);
      color: var(--cream-1) !important;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none !important;
    }
    .nav-cta:hover { background: var(--leaf-1); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--leaf-2);
    }
    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links {
        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; }
    }

    .hero,
    .hero-carousel,
    .hero.hero-carousel--brand {
      position: relative;
      width: 100%;
      height: calc(100vh - 44px);
      overflow: hidden;
      margin-top: 0;
      z-index: 0;
    }
    .hero-carousel--brand .hero-slides,
    .hero.hero-carousel--brand .hero-slides {
      background-color: var(--color-dark, #1A1008);
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .hero-slides,
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: calc(100vh - 44px);
    }
    .hero-slide {
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 0;
    }
    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(26, 16, 8, 0.25) 0%, rgba(26, 16, 8, 0.55) 100%),
        rgba(196, 129, 58, 0.35);
      z-index: 1;
      pointer-events: none;
    }
    .hero-content {
      position: absolute;
      inset: 0;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
      z-index: 2;
      color: #fff;
      padding: 0 24px;
      box-sizing: border-box;
    }
    .hero-title {
      font-size: clamp(2.2rem, 7vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 12px;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    }
    .hero-sub,
    .hero-tagline {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.35rem, 4vw, 2rem);
      font-weight: 600;
      font-style: italic;
      opacity: 0.95;
      margin-bottom: 28px;
      line-height: 1.35;
      text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
    }
    .hero-cta {
      display: inline-block;
      background: var(--color-primary, #C4813A);
      color: #fff;
      padding: 14px 40px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none;
      font-size: 1rem;
    }
    .hero-location-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      margin: 12px auto 0;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      padding: 7px 18px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 500;
      text-decoration: none;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .hero-location-pill:hover {
      text-decoration: none;
      background: rgba(255,255,255,0.22);
    }
    .hero-location-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
    }
    @media (max-width: 768px) {
      .hero,
      .hero-carousel,
      .hero.hero-carousel--brand,
      .hero-slides,
      .hero-slide {
        height: calc(100svh - 44px);
      }
      .hero-slide {
        background-position: center top;
      }
    }
    .services-marquee-wrap {
      overflow: hidden;
      background: var(--color-primary, #C4813A);
      padding: 10px 0;
      white-space: nowrap;
    }
    .services-marquee {
      display: inline-flex;
      gap: 20px;
      animation: marqueeScroll 22s linear infinite;
    }
    .services-marquee span {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600;
    }
    .services-marquee .dot {
      opacity: 0.5;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .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(--leaf-2); color: var(--cream-1); }
    .btn-primary:hover { background: var(--leaf-1); }
    .btn-primary:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      pointer-events: none;
    }
    .inline-success {
      background: rgba(196, 129, 58, 0.12);
      border: 1px solid rgba(196, 129, 58, 0.35);
      border-radius: 8px;
      padding: 0.65rem 0.85rem;
      font-size: 0.9rem;
      color: var(--leaf-1);
      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(--leaf-2);
      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(--leaf-2);
      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(--leaf-2);
      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;
    }
    .about-style-tags-line {
      margin: 0;
      font-size: 0.95rem;
      color: var(--leaf-2);
      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(--leaf-2);
    }

    #services { background: var(--cream-2); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    @media (max-width: 768px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 901px) and (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    .service-category-card {
      padding: 24px;
      border: 1.5px solid #C4813A;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .service-category-card:hover {
      background: #F5F0E8;
      transform: translateY(-2px);
    }
    .service-category-card h3.service-cat-name {
      margin: 0 0 0.25rem;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-dark, #1A1008);
    }
    .service-cat-from {
      color: #C4813A;
      font-weight: 700;
      font-size: 1.1rem;
      margin: 0;
    }
    .service-cat-description {
      color: #666;
      font-size: 0.9rem;
      margin: 4px 0 8px;
      line-height: 1.45;
    }
    .service-cat-count {
      color: #999;
      font-size: 0.85rem;
      margin: 0;
    }
    .service-cat-btn {
      display: inline-block;
      margin-top: 12px;
      color: #C4400A;
      font-weight: 600;
    }
    .service-card {
      background: var(--cream-1);
      border-radius: 16px;
      padding: 1.5rem;
      border: 1px solid transparent;
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
    }
    .service-card:hover {
      border-top: 4px solid var(--leaf-1);
      transform: translateY(-4px);
    }
    .service-card .num { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
    .service-card h3 { margin: 0.35rem 0; font-size: 1.35rem; color: var(--leaf-2); }
    .service-card-desc {
      margin: 0.25rem 0 0;
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--muted);
      white-space: pre-line;
    }
    .service-card-from-price {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--leaf-2);
      margin: 0.5rem 0 0.25rem;
    }
    .service-book-btn { margin-top: 0.85rem; width: 100%; cursor: pointer; }

    .consultation-section {
      padding: var(--section-pad) var(--side-pad);
      background-color: #fff;
      background-image:
        linear-gradient(180deg, rgba(245, 240, 232, 0.92) 0%, rgba(255, 255, 255, 1) 42%),
        radial-gradient(ellipse 80% 50% at 15% 10%, rgba(196, 129, 58, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 85%, rgba(196, 64, 10, 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;
    }

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

    .consultation-info p {
      font-size: 0.875rem;
      color: var(--muted);
      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(--leaf-2);
      margin-bottom: 0.3rem;
    }

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

    .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(--leaf-1);
      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(--color-primary);
      border-radius: 8px;
      background: #fff;
      color: var(--color-dark);
      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(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
    }
    .consultation-form-wrap input:focus,
    .consultation-form-wrap textarea:focus {
      outline: none;
      border-color: var(--leaf-2);
    }

    #gallery {
      background: var(--color-dark);
      color: var(--cream-1);
    }
    #gallery .section-title { color: var(--cream-1); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 0;
    }
    .gallery-item {
      display: block;
    }
    .gallery-item img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      display: block;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.08);
    }
    #ig-follow.ig-follow-along {
      background: var(--cream-1, #F5F0E8);
      color: var(--ink);
      padding-top: 2.5rem;
      padding-bottom: 3rem;
    }
    #ig-follow .section-title {
      color: var(--leaf-2);
      margin-bottom: 0.5rem;
    }
    .ig-follow-along-sub {
      text-align: center;
      margin: 0 0 1.25rem;
      font-size: 1.1rem;
    }
    .ig-follow-along-sub a {
      color: var(--color-primary, #C4813A);
      font-weight: 600;
      text-decoration: none;
    }
    .ig-follow-along-sub a:hover {
      text-decoration: underline;
    }
    .ig-follow-scroll {
      display: flex;
      flex-direction: row;
      gap: 8px;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 4px;
    }
    .ig-follow-scroll::-webkit-scrollbar {
      display: none;
    }
    .ig-follow-scroll a {
      flex: 0 0 auto;
      flex-shrink: 0;
      display: block;
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
    }
    .ig-follow-scroll img {
      width: 240px;
      height: 240px;
      object-fit: cover;
      display: block;
      border-radius: 4px;
    }
    .booking-rewards-skeleton {
      border-radius: 16px;
      min-height: 200px;
      background: linear-gradient(90deg, rgba(74,124,89,0.15) 25%, rgba(74,124,89,0.28) 50%, rgba(74,124,89,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(196, 129, 58, 0.2);
      display: none;
    }
    .booking-rewards-card .rewards-brand {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.9;
      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: 0.9;
      margin-top: 0.35rem;
    }
    .booking-rewards-card .rewards-muted {
      opacity: 0.82;
    }
    .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(--leaf-2);
      border-color: #fff;
      font-weight: 600;
      margin-top: 0.5rem;
    }
    .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);
      }
    }
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .gallery-item.desktop-only {
        display: none;
      }
      .ig-follow-scroll img {
        width: 160px;
        height: 160px;
      }
    }
    #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(--leaf-2);
      margin: 0 0 0.5rem;
      font-weight: 600;
    }
    .brand-accent-strip {
      background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
      min-height: 12px;
      padding: 0;
    }
    .brand-accent-strip-inner {
      min-height: 12px;
    }
    .ig-follow-strip {
      background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
      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: 0.6;
      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;
    }
    .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(0,0,0,0.55);
      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(0,0,0,0.25);
      animation: annSlideUp 0.35s ease;
    }
    @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(0,0,0,0.08);
      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(0,0,0,0.15); }
    .ann-modal-inner {
      display: flex;
      flex-direction: row;
      min-height: 300px;
    }
    .ann-modal-media {
      flex: 0 0 48%;
      max-width: 48%;
      min-height: 300px;
      border-radius: 12px 0 0 12px;
      overflow: hidden;
      background: var(--color-dark);
      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: 40px 32px 32px;
      text-align: center;
      align-items: center;
    }
    .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: #e8f0fe; color: #1a56db; }
    .ann-modal-type.WARNING { background: #fef3c7; color: #92400e; }
    .ann-modal-type.SUCCESS { background: #d1fae5; color: #065f46; }
    .ann-modal-message {
      font-size: 1rem;
      line-height: 1.6;
      color: #1a1a1a;
      margin: 0;
    }
    @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.5rem;
      color: var(--muted);
      font-size: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .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(--leaf-2);
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
    }
    .social-pill-link:hover {
      border-color: var(--leaf-2);
      color: var(--leaf-1);
    }
    .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: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .footer-social-row .social-pill-link {
      background: transparent;
      border-color: #666;
      color: #ddd;
      font-size: 0.85rem;
    }
    .footer-social-row .social-pill-link:hover {
      border-color: #aaa;
      color: #fff;
    }

    #policies { background: #fff; }
    .policies-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }
    .policies-grid .policy-item:last-child:nth-child(odd) {
      grid-column: 1 / -1;
      max-width: 440px;
      margin: 0 auto;
      width: 100%;
    }
    @media (max-width: 768px) {
      .policies-grid {
        grid-template-columns: 1fr;
      }
      .policies-grid .policy-item:last-child:nth-child(odd) {
        grid-column: 1;
        max-width: 100%;
      }
    }
    .policy-card,
    .policy-item {
      background: var(--cream-1);
      border: 1px solid var(--cream-2);
      border-radius: 12px;
      padding: 1.25rem;
    }
    .policy-card h4 { color: var(--leaf-2); margin-bottom: 0.5rem; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; }
    .policy-item .policy-title {
      color: var(--leaf-2);
      margin-bottom: 0.5rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .policy-body {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .section-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      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(--leaf-2);
      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 #C4813A20;
      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(--leaf-2);
      background: rgba(196, 129, 58, 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(--leaf-1);
      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: var(--cream-2); }
    .booking-steps {
      max-width: 720px;
      margin: 0 auto;
      background: var(--cream-1);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid var(--cream-2);
    }
    .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%, #e8f5e9 100%);
      border: 1px solid rgba(196, 129, 58, 0.22);
      font-size: 0.88rem;
      font-weight: 600;
      color: #2a3d2f;
      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: 6px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.08);
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }
    .booking-step-seg.completed {
      background: rgba(196, 129, 58, 0.35);
    }
    .booking-step-seg.active {
      background: var(--leaf-2);
      box-shadow: 0 0 0 1px rgba(196, 129, 58, 0.25);
    }
    .booking-step-seg.upcoming {
      background: rgba(0, 0, 0, 0.08);
    }
    .step-indicator {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--leaf-2);
      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(--leaf-1); background: rgba(196, 129, 58, 0.08); }

    .cat-booking-block { margin-bottom: 1.75rem; }
    .cat-acc-item { margin-bottom: 0.5rem; border-radius: 12px; border: 1px solid var(--cream-2); overflow: hidden; background: #fff; }
    .cat-acc-head {
      width: 100%;
      text-align: left;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--leaf-2);
      padding: 0.85rem 1rem;
      background: var(--cream-1);
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .cat-acc-head .chev { font-size: 0.75rem; opacity: 0.6; }
    .cat-acc-body { padding: 0.75rem; background: #fff; }
    .cat-acc-body[hidden] { display: none !important; }
    .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(--leaf-2); 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(--leaf-1);
      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(--leaf-2);
      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(--leaf-2);
      box-shadow: 0 4px 16px rgba(196, 129, 58, 0.1);
    }
    .appt-card.selected {
      border-color: var(--leaf-2);
      border-width: 2px;
      box-shadow: 0 0 0 3px rgba(196, 129, 58, 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-img-placeholder {
      width: 100%;
      min-height: 140px;
      background: #C4813A;
      flex-shrink: 0;
    }
    .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(--leaf-1);
      font-weight: normal;
      line-height: 1.3;
    }
    .appt-meta {
      font-size: 0.78rem;
      color: var(--muted);
    }
    .appt-price {
      font-size: 0.9rem;
      color: var(--leaf-2);
      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(--leaf-2);
      color: #fff;
      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(--leaf-1);
    }
    .appt-card.selected .appt-select-btn {
      background: var(--leaf-1);
    }
    .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(--leaf-2);
      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(196, 129, 58, 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-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: #f7f0e6;
      border-color: #C4813A;
      color: #1A1008;
      font-weight: 600;
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-selected {
      box-shadow: 0 0 0 2px #C4813A;
    }
    .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(--leaf-2);
      margin-bottom: 0.75rem;
    }
    .addon-row {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.45rem 0;
      border-bottom: 1px solid rgba(196, 129, 58, 0.12);
      font-size: 0.9rem;
    }
    .addon-row:last-of-type { border-bottom: none; }
    .addon-row input[type="checkbox"] {
      accent-color: var(--leaf-1);
      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 { flex-shrink: 0; font-weight: 600; font-size: 0.88rem; white-space: nowrap; }
    .addon-price.free { color: var(--leaf-1); }
    .addon-price.paid { color: var(--muted); }
    .addon-total-line {
      margin-top: 1rem;
      padding-top: 0.75rem;
      border-top: 2px solid rgba(255,255,255,0.6);
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--leaf-2);
      line-height: 1.5;
    }
    .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(74,124,89,0.05);
      border-radius: 8px;
      padding: 1rem;
      border: 1px solid rgba(74,124,89,0.2);
    }
    .addon-section-title {
      font-family: Georgia, serif;
      font-size: 0.95rem;
      color: var(--leaf-1);
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .addon-required-badge {
      font-size: 0.7rem;
      background: #C4813A;
      color: white;
      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: #e8e0d0;
      color: #6b6b60;
      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: #6b6b60;
      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(--leaf-2);
      background: rgba(74,124,89,0.04);
    }
    .addon-radio-label input,
    .addon-check-label input {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      accent-color: var(--leaf-2);
    }
    .addon-radio-name,
    .addon-check-name {
      flex: 1;
      color: var(--ink);
    }
    .addon-default {
      background: rgba(74,124,89,0.06);
      border-color: rgba(74,124,89,0.3);
    }
    .addon-needs-confirm {
      border-style: dashed;
      border-color: #e8c87a;
    }
    .addon-section .addon-price {
      font-size: 0.8rem;
      color: var(--leaf-2);
      font-weight: 600;
      flex-shrink: 0;
    }
    .addon-section .addon-price.free {
      color: #C4813A;
      background: rgba(74,124,89,0.1);
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
    }
    .addon-recommended-note {
      font-size: 0.78rem;
      color: #C4813A;
      background: rgba(74,124,89,0.08);
      border: 1px solid rgba(74,124,89,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(196, 129, 58, 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(--leaf-2);
      font-weight: 600;
      margin-left: 0.35rem;
      white-space: nowrap;
    }
    .addon-fullness-price-line {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--leaf-2);
    }
    .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(--leaf-2);
      background: rgba(196, 129, 58, 0.04);
    }
    .pay-choice-btn.active {
      border-color: var(--leaf-2);
      background: rgba(196, 129, 58, 0.1);
      box-shadow: 0 0 0 1px rgba(196, 129, 58, 0.25);
      color: var(--leaf-1);
      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(--leaf-2);
      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; }
    .intake-error { display:none; margin-top: 0.5rem; color:#8a2a2a; font-size:0.85rem; }
    .color-checkbox-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 16px;
      margin: 8px 0;
    }
    .color-checkbox-grid label {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      font-size: 0.9rem;
    }
    .color-checkbox-grid input[type="checkbox"] {
      accent-color: #C4813A;
      width: 16px;
      height: 16px;
    }
    .intake-yesno-row { margin: 0.85rem 0; }
    .intake-yesno-row .intake-yesno-label {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--ink);
      margin-bottom: 0.35rem;
    }
    .intake-yesno-row .intake-yesno-note {
      font-size: 0.82rem;
      color: var(--muted);
      margin: 0 0 0.5rem;
      line-height: 1.45;
    }
    .intake-yesno-option {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin: 0.35rem 0;
      font-size: 0.88rem;
      cursor: pointer;
    }
    .intake-yesno-option input { accent-color: var(--leaf-2); }
    #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, 1fr);
      gap: 4px;
      text-align: center;
      font-size: 0.85rem;
    }
    .calendar-grid button {
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: #fff;
      border-radius: 10px;
      cursor: pointer;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .calendar-grid button:disabled { opacity: 0.35; cursor: not-allowed; }
    .calendar-grid button.cal-day {
      cursor: pointer;
      border: 1px solid transparent;
      background: #fff;
    }
    .calendar-grid button.cal-day.bookable-available:not(.selected) {
      background: #eaf6ee;
      border-color: #e0c9a8;
      color: var(--leaf-2);
      font-weight: 700;
      box-shadow: inset 0 -3px 0 rgba(196, 129, 58, 0.16);
    }
    .calendar-grid button.cal-day:hover:not(:disabled) {
      border-color: var(--leaf-2);
    }
    .calendar-grid button.cal-day.selected {
      background: var(--leaf-2);
      color: var(--cream-1);
    }
    .calendar-grid button.cal-day.today:not(.selected) {
      color: var(--leaf-2);
      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;
      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 {
      height: 2.15rem;
      border-radius: 6px;
      background: linear-gradient(90deg, #e8e0d0 0%, #f5f0e8 50%, #e8e0d0 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;
    }
    .cal-legend .legend-item { display: inline-flex; align-items: center; }
    .legend-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-right: 4px;
    }
    .legend-dot.available { background: #C4813A; }
    .legend-dot.booked { background: #8a6500; }
    .legend-dot.closed { background: #c9c3b8; }
    .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;
    }
    .slots button.unavailable {
      text-decoration: line-through;
      opacity: 0.5;
      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(--leaf-2); color: var(--cream-1); }
    .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(196, 129, 58, 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(--leaf-2);
      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(--leaf-2);
      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(196, 129, 58, 0.08);
    }
    button.waitlist-slot-pick.selected {
      background: var(--leaf-2);
      color: #fff;
    }
    .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(--leaf-2);
      cursor: pointer;
      text-decoration: underline;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
    }
    .step2-waitlist-change-date:hover {
      color: var(--leaf-1);
    }
    .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(196, 129, 58, 0.15); color: var(--leaf-2); 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(--leaf-2);
      background: rgba(196, 129, 58, 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(--leaf-2);
      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(--leaf-2);
    }
    .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(196, 129, 58, 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(--leaf-2);
      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(--leaf-2); }
    .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(196, 129, 58, 0.12);
      border: 1px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: var(--leaf-2);
      text-align: center;
    }

    #reschedule-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }
    #reschedule-modal-overlay.is-open {
      display: flex;
    }
    .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 220px;
      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;
      }
    }
    .reschedule-modal-inner {
      background: #fff;
      border-radius: 16px;
      padding: 1.75rem;
      max-width: 420px;
      width: 90%;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }
    .reschedule-modal-inner h3 {
      margin: 0 0 0.5rem;
      font-family: Georgia, serif;
      color: var(--leaf-2);
    }
    .reschedule-modal-inner label {
      display: block;
      margin: 0.75rem 0 0.25rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    footer {
      background: #0d0d0d;
      color: #bbb;
      padding: 2.5rem 1.25rem;
      text-align: center;
    }
    footer .logo-text { color: var(--cream-2); }
    footer nav { justify-content: center; margin-top: 1rem; flex-wrap: wrap; gap: 1rem; }
    footer a { color: #ccc; }
    .footer-legal-links {
      margin-top: 1rem;
      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 { margin: 0 0.35rem; color: #666; }

    .sponsor-section {
      background: var(--color-dark);
      padding: 2rem var(--side-pad);
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .sponsor-section .sponsor-inner {
      max-width: 500px;
      margin: 0 auto;
    }
    .sponsor-section .sponsor-tagline {
      font-size: 0.875rem;
      color: rgba(245,240,232,0.6);
      margin: 0 0 1rem;
      line-height: 1.6;
    }
    .sponsor-section .sponsor-highlight {
      color: #f5f0e8;
      font-style: italic;
    }
    .sponsor-section .sponsor-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(245,240,232,0.08);
      border: 1px solid rgba(245,240,232,0.15);
      border-radius: 50px;
      padding: 0.6rem 1.5rem;
      text-decoration: none;
      transition: all 0.2s;
      margin-bottom: 0.75rem;
    }
    .sponsor-section .sponsor-link:hover {
      background: rgba(245,240,232,0.15);
      border-color: rgba(245,240,232,0.3);
    }
    .sponsor-section .sponsor-powered {
      font-size: 0.75rem;
      color: #FF2D78;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .sponsor-section .sponsor-brand {
      font-family: Georgia, serif;
      font-size: 1.1rem;
      color: #FF2D78;
      font-style: italic;
    }
    .sponsor-section .sponsor-arrow {
      color: #FF2D78;
      font-size: 1rem;
    }
    .sponsor-section .sponsor-sub {
      font-size: 0.75rem;
      color: rgba(245,240,232,0.4);
      margin: 0;
      letter-spacing: 0.5px;
    }

    /* 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(--color-primary, var(--leaf-2));
      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(--color-primary, var(--leaf-2));
      background: #f7f5f0;
    }
    #feedInLengthRadios.fi-radios input[type="radio"]:checked + .fi-radio-pill {
      border-color: var(--color-primary, var(--leaf-2));
      background: var(--color-primary, var(--leaf-2));
      color: #fff;
    }

    .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(--color-primary, var(--leaf-2));
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 12px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.15s;
      white-space: nowrap;
      font-family: inherit;
    }
    .fi-select-btn:hover { opacity: 0.88; }
    .fi-select-btn:disabled {
      background-color: #aab8af;
      cursor: not-allowed;
    }
    .fi-confirm-btn {
      background-color: var(--color-primary, var(--leaf-2));
      color: #ffffff;
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      font-family: inherit;
      transition: opacity 0.15s;
      flex: 1 1 auto;
      min-width: 0;
    }
    .fi-confirm-btn:hover { opacity: 0.88; }
    .fi-confirm-btn:disabled {
      background-color: #aab8af;
      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;
    }