
    :root {
      --bg: #efe5e7;
      --bg-soft: #f7f1f2;
      --surface: #fffaf9;
      --surface-2: #f6ecee;
      --plum-900: #39202f;
      --plum-800: #4f2d40;
      --plum-700: #694156;
      --rose: #b5768b;
      --rose-soft: #dcc0c8;
      --gold: #d3af73;
      --ink: #2a1d24;
      --muted: #665660;
      --line: rgba(76, 43, 60, 0.12);
      --line-strong: rgba(76, 43, 60, 0.2);
      --shadow: 0 18px 40px rgba(58, 29, 43, 0.1);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(211,175,115,0.12), transparent 24%),
        linear-gradient(180deg, #eadde1 0%, #f4ecee 52%, #eee3e6 100%);
      font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    }

    h1,h2,h3,h4,h5 {
      font-family: "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-weight: 400;
      letter-spacing: 0.01em;
    }

    p { line-height: 1.8; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    .shell { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }

    .topbar {
      background: linear-gradient(90deg, #452637 0%, #5f354a 50%, #452637 100%);
      color: #f8eeed;
      font-size: 14px;
    }

    .topbar .shell {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px 22px;
      padding: 10px 0;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(250,245,245,0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(76, 43, 60, 0.08);
    }

    .nav .shell {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 18px 0;
    }

    .brand h1 {
      margin: 0;
      font-size: clamp(32px, 4vw, 46px);
      line-height: 0.92;
      color: var(--plum-800);
    }

    .brand p {
      margin: 6px 0 0;
      color: var(--rose);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 15px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(180deg, #bc768b 0%, #a76077 100%);
      box-shadow: 0 10px 20px rgba(167,96,119,.22);
    }
    .btn-secondary {
      color: #fff7f6;
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.42);
    }
    .btn-outline {
      color: var(--plum-800);
      border-color: var(--line-strong);
      background: transparent;
    }

    .hero-wrap { padding-top: 22px; }
    .hero {
      min-height: 660px;
      display: grid;
      grid-template-columns: .94fr 1.06fr;
      overflow: hidden;
      border-radius: 32px;
      box-shadow: var(--shadow);
      background:
        linear-gradient(90deg, rgba(57,32,47,.97) 0%, rgba(79,45,64,.95) 49%, rgba(79,45,64,.82) 53%, rgba(79,45,64,.14) 59%),
        url("https://static.wixstatic.com/media/84f18e_9228b78e25aa4bbb9f742c167862693b~mv2_d_7952_5304_s_4_2.jpg/v1/fill/w_1600,h_1000,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Quartz%20spa%20aromatherapy%20scrub%20%26%20wrap%20rit.jpg") center right / cover no-repeat;
    }

    .hero-copy {
      max-width: 100%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 72px 46px 48px 54px;
      color: #fff2ef;
    }

    .pill {
      display: inline-flex;
      width: fit-content;
      padding: 10px 15px;
      margin-bottom: 18px;
      border-radius: 999px;
      color: #fdf4f2;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .hero-copy h2 {
      margin: 0 0 14px;
      font-size: clamp(52px, 7vw, 84px);
      line-height: 0.92;
    }

    .hero-copy h2 span { color: #dfa4b5; }
    .hero-copy p {
      margin: 0 0 10px;
      max-width: 465px;
      font-size: 18px;
      color: rgba(255,242,239,0.94);
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

    .feature-strip {
      margin-top: 14px;
      background: linear-gradient(90deg, #5a3348 0%, #6f3c56 100%);
      color: #fff4f1;
      border-radius: 18px;
      box-shadow: 0 10px 24px rgba(69,36,54,0.1);
    }

    .feature-strip .shell {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .feature-item {
      padding: 18px 12px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.12);
      font-size: 15px;
    }
    .feature-item:last-child { border-right: 0; }

    section { padding: 62px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      margin-bottom: 26px;
    }

    .kicker {
      margin: 0 0 10px;
      color: var(--rose);
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .section-head h3,
    .single-head h3 {
      margin: 0;
      font-size: clamp(34px, 4vw, 50px);
      line-height: 0.98;
      color: var(--plum-800);
    }

    .lead {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }

    .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .grid-2 { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
    .grid-2-even { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

    .card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,251,250,0.96) 0%, rgba(246,236,238,0.96) 100%);
      box-shadow: 0 10px 24px rgba(73,39,57,0.07);
      overflow: hidden;
    }

    .service-card { display: flex; flex-direction: column; }
    .service-card img,
    .media-card img,
    .about-media img {
      width: 100%;
      object-fit: cover;
    }


    .service-copy { padding: 24px; display: flex; flex-direction: column; gap: 12px; min-height: 250px; }
    .service-copy h4 { margin: 0; font-size: 31px; color: var(--plum-800); }
    .service-copy p { margin: 0; color: var(--muted); }
    .service-copy .price { margin-top: auto; color: var(--rose); font-weight: 700; }

    .service-card::before {
      content: "";
      display: block;
      height: 5px;
      background: linear-gradient(90deg, var(--rose), var(--gold));
    }

    .service-card:nth-child(even)::before {
      background: linear-gradient(90deg, var(--plum-700), var(--rose-soft));
    }

    .service-tag {
      display: inline-flex;
      width: fit-content;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(181,118,139,.10);
      color: var(--plum-700);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .popular-card { padding: 22px; }
    .price-list { list-style: none; padding: 0; margin: 0; }
    .price-list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: end;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
    }
    .price-list li:last-child { border-bottom: 0; }
    .price-list strong {
      font-family: "Baskerville", "Palatino Linotype", Georgia, serif;
      font-weight: 400;
      font-size: 23px;
      color: var(--plum-800);
    }
    .price-list span { color: var(--plum-800); font-weight: 700; }

    .media-card { display: flex; flex-direction: column; }
    .media-card img { height: 100%; min-height: 420px; }
    .caption { padding: 14px 18px 18px; color: var(--muted); }

    .about-copy,
    .contact-card,
    .hours-card,
    .cta-card { padding: 24px; }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px 12px;
      background: rgba(255,255,255,0.45);
      text-align: center;
    }

    .stat strong {
      display: block;
      font-family: "Baskerville", "Palatino Linotype", Georgia, serif;
      font-size: 34px;
      color: var(--plum-800);
      font-weight: 400;
    }

    .stat span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .single-head { margin-bottom: 24px; }
    .single-head .lead { max-width: 850px; margin-top: 12px; }

    .benefit-card {
      padding: 24px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .benefit-card .number {
      font-family: "Baskerville", "Palatino Linotype", Georgia, serif;
      font-size: 42px;
      color: var(--rose);
      line-height: 1;
      margin-bottom: 18px;
    }

    .benefit-card h4 {
      margin: 0 0 10px;
      font-size: 28px;
      color: var(--plum-800);
    }

    .benefit-card p {
      margin: 0;
      color: var(--muted);
    }

    .cta-card {
      background: linear-gradient(135deg, #5e344a 0%, #77465e 100%);
      color: #fff4f1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 240px;
    }

    .cta-card h4 {
      margin: 0 0 10px;
      color: #fff5f3;
      font-size: 36px;
    }

    .cta-card p { margin: 0; color: rgba(255,244,241,0.9); }
    .cta-card .contact-actions { margin-top: 20px; }

    .contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

    .hours-list { list-style: none; padding: 0; margin: 0; }
    .hours-list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
    }
    .hours-list li:last-child { border-bottom: 0; }

    footer {
      margin-top: 34px;
      background: linear-gradient(90deg, #452637 0%, #61364d 100%);
      color: #f8eeec;
    }

    footer .shell {
      display: grid;
      grid-template-columns: 1.2fr .9fr .9fr;
      gap: 18px;
      padding: 30px 0;
    }

    .footer-title {
      margin: 0 0 6px;
      font-size: 40px;
      color: #f8efed;
    }

    .footer-copy,
    .footer-links {
      color: rgba(248,238,236,0.92);
      line-height: 1.8;
      font-size: 15px;
    }

    .footer-links a { display: block; }

    @media (min-width: 1101px) and (max-width: 1250px) {
      .hero-copy { padding: 62px 34px 44px 42px; }
      .hero-copy h2 { font-size: clamp(48px, 6vw, 70px); }
      .hero-copy p { max-width: 420px; font-size: 17px; }
    }

    @media (max-width: 1100px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .grid-3, .grid-2, .grid-2-even, footer .shell { grid-template-columns: 1fr; }
      .benefit-grid { grid-template-columns: 1fr; }
      .hero {
        grid-template-columns: 1fr;
        min-height: unset;
        background:
          linear-gradient(180deg, rgba(57,32,47,.96) 0%, rgba(79,45,64,.92) 56%, rgba(79,45,64,.44) 100%),
          url("https://static.wixstatic.com/media/84f18e_9228b78e25aa4bbb9f742c167862693b~mv2_d_7952_5304_s_4_2.jpg/v1/fill/w_1600,h_1000,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Quartz%20spa%20aromatherapy%20scrub%20%26%20wrap%20rit.jpg") center / cover no-repeat;
      }
      .hero-copy { max-width: none; }
    }

    @media (max-width: 760px) {
      .nav .shell { flex-direction: column; }
      .nav-links { gap: 14px; }
      .feature-strip .shell,
      .grid-4,
      .grid-3,
      .grid-2,
      .grid-2-even,
      .benefit-grid,
      .stat-grid,
      footer .shell { grid-template-columns: 1fr; }
      .hero-copy { padding: 46px 24px 30px; }
      .hero-copy h2 { font-size: clamp(42px, 14vw, 64px); }
      .section-head { display: block; }
      .section-head .lead { margin-top: 12px; }
      .feature-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
      .feature-item:last-child { border-bottom: 0; }
    }
  

/* Multi-page site additions */
body { min-height: 100vh; }
.nav-links .nav-current { color: var(--plum-800); font-weight: 700; }
.nav-drop { position: relative; }
.nav-drop > a::after { content: "  ▾"; font-size: 11px; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  z-index: 60;
  min-width: 240px; padding: 10px; border-radius: 16px;
  background: rgba(255,250,249,.98); border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(58,29,43,.14); display: none;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--muted); }
.nav-drop-menu a:hover { background: var(--surface-2); color: var(--plum-800); }

.page-hero {
  width: min(var(--max), calc(100% - 28px)); margin: 22px auto 0; padding: 54px;
  border-radius: 30px; color: #fff4f1; overflow: hidden; position: relative;
  background:
    radial-gradient(circle at 86% 20%, rgba(211,175,115,.18), transparent 26%),
    linear-gradient(135deg, #3e2232 0%, #5c3348 56%, #714157 100%);
  box-shadow: var(--shadow);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background:
    radial-gradient(circle at 20% 110%, rgba(255,255,255,.11), transparent 30%),
    repeating-linear-gradient(135deg, transparent 0 38px, rgba(255,255,255,.018) 38px 39px);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h2 { margin: 0 0 14px; font-size: clamp(48px, 7vw, 78px); line-height: .94; }
.page-hero p { margin: 0; max-width: 760px; font-size: 18px; color: rgba(255,244,241,.92); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.treatment-section { padding: 30px 0 0; }
.treatment-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.treatment-card { padding: 24px; }
.treatment-card.wide { grid-column: 1 / -1; }
.treatment-card h3 { margin: 0; color: var(--plum-800); font-size: 32px; line-height: 1.05; }
.treatment-top { display: flex; gap: 18px; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.treatment-price {
  flex: 0 0 auto; padding: 8px 12px; border-radius: 999px; color: var(--plum-800);
  background: #eadde1; border: 1px solid var(--line); font-weight: 800; font-size: 14px;
}
.treatment-card p { color: var(--muted); margin: 9px 0; }
.treatment-card ul { margin: 10px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.75; }
.treatment-card li + li { margin-top: 5px; }
.meta-line { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.meta-pill { padding: 7px 10px; border-radius: 999px; background: rgba(181,118,139,.1); color: var(--plum-700); font-size: 13px; font-weight: 700; }
.notice { margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: rgba(211,175,115,.13); border: 1px solid rgba(211,175,115,.28); color: #5b4730; line-height: 1.65; }
.subhead { margin: 22px 0 8px; font-family: "Baskerville", "Palatino Linotype", Georgia, serif; font-size: 23px; color: var(--plum-700); }
.price-table { width: 100%; border-collapse: collapse; margin-top: 12px; color: var(--muted); }
.price-table th, .price-table td { padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { text-align: left; color: var(--plum-700); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; color: var(--plum-800); padding-left: 20px; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }

.category-jump { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.category-jump a { padding: 9px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: #fff4f1; font-size: 14px; }

.treatments-index { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.treatments-index .service-card { min-height: 300px; }
.treatments-index .service-card .service-copy { min-height: 100%; }
.service-card-link { display: block; height: 100%; }
.service-card-link:hover .card { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(73,39,57,.11); }
.service-card-link .card { transition: .18s ease; }

.inner-cta { margin-top: 30px; }
.inner-cta .cta-card { min-height: 0; }
.breadcrumbs { width: min(var(--max), calc(100% - 28px)); margin: 16px auto 0; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--plum-700); font-weight: 700; }

.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.payment-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.payment-chip { padding: 10px 14px; background: rgba(181,118,139,.1); border-radius: 999px; color: var(--plum-700); font-weight: 700; }

@media (max-width: 1100px) {
  .treatments-index { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav-drop-menu { position: static; transform: none; display: block; min-width: 0; box-shadow: none; background: transparent; border: 0; padding: 4px 0 0; }
  .nav-drop-menu a { padding: 6px 10px; font-size: 13px; }
  .page-hero { padding: 38px 24px; }
  .treatment-grid, .treatments-index, .contact-page-grid { grid-template-columns: 1fr; }
  .treatment-card.wide { grid-column: auto; }
  .treatment-top { display: block; }
  .treatment-price { display: inline-flex; margin-top: 10px; }
}

/* Homepage treatment-card alignment */
.homepage-treatment-grid { align-items: stretch; }
.homepage-treatment-grid > .service-card-link { display: flex; height: 100%; min-width: 0; }
.homepage-treatment-grid > .service-card-link .service-card { width: 100%; height: 100%; }
.homepage-treatment-grid > .service-card-link .service-copy { height: 100%; min-height: 286px; }
.homepage-treatment-grid > .service-card-link:nth-child(even) .service-card::before {
  background: linear-gradient(90deg, var(--plum-700), var(--rose-soft));
}
.homepage-treatment-grid > .service-card-link:nth-child(odd) .service-card::before {
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
@media (max-width: 760px) {
  .homepage-treatment-grid > .service-card-link .service-copy { min-height: 0; }
}


/* Treatment page grouping */
.treatment-group { margin: 0 0 46px; scroll-margin-top: 115px; }
.treatment-group:last-child { margin-bottom: 0; }
.treatment-group-head { margin: 0 0 18px; padding: 0 2px; }
.treatment-group-head h2 { margin: 0 0 7px; color: var(--plum-800); font-size: clamp(30px, 3.2vw, 42px); line-height: 1; }
.treatment-group-head p { margin: 0; max-width: 760px; color: var(--muted); line-height: 1.75; }
.treatment-group + .treatment-group { padding-top: 8px; border-top: 1px solid var(--line); }
@media (max-width: 760px) {
  .treatment-group { margin-bottom: 34px; }
}


/* Appointment request system */
.appointment-hero .request-note {
  margin-top: 20px;
  display: inline-flex;
  padding: 12px 15px;
  border-radius: 13px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff6f4;
  font-weight: 700;
}
.appointment-form-section { padding-top: 34px; }
.appointment-shell { max-width: 1040px; }
.appointment-intro {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  overflow: visible;
}
.appointment-intro h3 { margin: 0 0 7px; color: var(--plum-800); font-size: clamp(30px,4vw,42px); line-height: 1; }
.appointment-intro p { margin: 0; color: var(--muted); }
.appointment-intro .kicker { margin-bottom: 8px; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: linear-gradient(180deg,#bc768b 0%,#9f5971 100%);
  font-family: "Baskerville", "Palatino Linotype", Georgia, serif; font-size: 28px;
  box-shadow: 0 8px 18px rgba(167,96,119,.22);
}
.step-block { margin-top: 42px; }
.treatment-choice-groups { display: grid; gap: 18px; margin-top: 18px; }
.choice-group { padding: 22px; }
.choice-group h4 { margin: 0 0 5px; color: var(--plum-800); font-size: 29px; }
.choice-group > p { margin: 0 0 16px; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.treatment-check {
  display: flex; align-items: flex-start; gap: 11px; min-height: 54px; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.54); cursor: pointer;
  transition: background .15s ease,border-color .15s ease,transform .15s ease;
}
.treatment-check:hover { border-color: rgba(181,118,139,.45); background: rgba(255,255,255,.85); }
.treatment-check:has(input:checked) { border-color: rgba(181,118,139,.72); background: rgba(181,118,139,.12); }
.treatment-check input { width: 21px; height: 21px; margin: 1px 0 0; flex: 0 0 auto; accent-color: #a76077; }
.treatment-check span { color: var(--ink); font-weight: 650; line-height: 1.45; }
.treatment-check small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 400; }
.day-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.day-button {
  min-height: 84px; padding: 14px; border: 1px solid var(--line-strong); border-radius: 16px;
  background: rgba(255,255,255,.62); color: var(--plum-800); cursor: pointer; text-align: left;
  transition: .15s ease;
}
.day-button:hover { border-color: rgba(181,118,139,.55); }
.day-button[aria-pressed="true"] { color: #fff; border-color: #6d3e54; background: linear-gradient(135deg,#684057 0%,#85546a 100%); }
.day-name { display: block; font-family: "Baskerville", "Palatino Linotype", Georgia, serif; font-size: 25px; line-height: 1; }
.day-hours { display: block; margin-top: 7px; font-size: 13px; opacity: .82; }
.day-period-count { display: block; margin-top: 7px; font-size: 12px; font-weight: 800; }
.availability-help {
  margin: 20px 0 0; padding: 16px 18px; border-radius: 15px;
  background: rgba(211,175,115,.14); border: 1px solid rgba(211,175,115,.35); color: #5f4a35; line-height: 1.65;
}
.availability-help strong { display: block; color: #4f3b28; margin-bottom: 2px; }
.day-panels { display: grid; gap: 16px; margin-top: 16px; }
.day-panel { padding: 22px; }
.day-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.day-panel-head h4 { margin: 0; color: var(--plum-800); font-size: 29px; }
.day-panel-head p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.link-button { border: 0; background: transparent; color: var(--plum-700); text-decoration: underline; cursor: pointer; font: inherit; font-weight: 700; padding: 4px; }
.time-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 9px; margin-top: 16px; }
.time-button {
  min-height: 48px; padding: 8px 6px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--plum-800); cursor: pointer; font-weight: 750; font-size: 14px;
}
.time-button:hover { border-color: rgba(181,118,139,.72); }
.time-button.in-range { background: rgba(181,118,139,.14); border-color: rgba(181,118,139,.52); }
.time-button.pending { background: var(--plum-700); color: #fff; border-color: var(--plum-700); box-shadow: 0 0 0 3px rgba(181,118,139,.18); }
.range-instruction { margin: 13px 0 0; color: var(--muted); font-size: 14px; }
.range-instruction strong { color: var(--plum-800); }
.saved-ranges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.range-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 999px;
  background: #5e354a; color: #fff; font-weight: 750; font-size: 14px;
}
.range-chip button { border: 0; background: rgba(255,255,255,.16); color: #fff; border-radius: 50%; width: 24px; height: 24px; cursor: pointer; font-size: 16px; line-height: 1; }
.form-card,.details-card { margin-top: 18px; padding: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field-label { display: block; margin-bottom: 7px; color: var(--plum-800); font-weight: 800; }
.field-control {
  width: 100%; min-height: 50px; padding: 12px 13px; border-radius: 13px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--ink); font: inherit; font-size: 16px;
}
.field-control:focus { outline: 3px solid rgba(181,118,139,.2); border-color: #a76077; }
textarea.field-control { resize: vertical; min-height: 112px; }
.field-help { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.notes-label { display: block; margin-top: 18px; }
.create-request-wrap { text-align: center; padding: 20px 0 4px; }
.btn-large { min-height: 56px; padding-left: 28px; padding-right: 28px; font-size: 17px; }
.form-message { min-height: 24px; margin: 12px 0 0; color: #8b3f55; font-weight: 750; }
.email-result { margin-top: 20px; padding: 24px; overflow: visible; }
.email-result-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.email-result-head h3 { margin: 0; color: var(--plum-800); font-size: 36px; }
.email-to { padding: 9px 12px; border-radius: 999px; background: rgba(181,118,139,.11); color: var(--plum-700); font-weight: 750; font-size: 13px; }
.email-subject { margin-top: 18px; padding: 13px 15px; border-radius: 12px; background: var(--surface-2); color: var(--plum-800); }
.email-preview {
  white-space: pre-wrap; word-wrap: break-word; margin: 14px 0 0; padding: 18px; border-radius: 14px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); font-family: inherit; font-size: 15px; line-height: 1.72;
}
.email-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 17px; }

@media (max-width: 820px) {
  .choice-grid,.form-grid { grid-template-columns: 1fr; }
  .day-selector { grid-template-columns: repeat(2,1fr); }
  .time-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .email-result-head { display: block; }
  .email-to { display: inline-flex; margin-top: 12px; }
}
@media (max-width: 520px) {
  .appointment-intro { grid-template-columns: 46px 1fr; padding: 18px; gap: 12px; }
  .step-number { width: 42px; height: 42px; font-size: 23px; }
  .day-selector { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .day-panel { padding: 18px; }
  .day-panel-head { display: block; }
  .day-panel-head .link-button { margin-top: 8px; }
  .email-actions .btn { width: 100%; }
}

/* Guided appointment request wizard */
.wizard-shell { max-width: 980px; }
.wizard-progress {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 7px; margin-bottom: 18px;
  position: sticky; top: 86px; z-index: 12; padding: 10px; border-radius: 18px;
  background: rgba(248,241,242,.94); backdrop-filter: blur(8px); border: 1px solid var(--line);
}
.wizard-progress button { border:0; background:transparent; color:var(--muted); padding:7px 4px; font:inherit; font-size:11px; font-weight:800; cursor:pointer; }
.wizard-progress button span { display:grid; place-items:center; width:28px; height:28px; margin:0 auto 5px; border-radius:50%; background:#eadde1; color:var(--plum-700); }
.wizard-progress button.is-current { color:var(--plum-800); }
.wizard-progress button.is-current span { background:var(--plum-700); color:white; }
.wizard-progress button.is-done span { background:#b5768b; color:white; }
.wizard-progress button:disabled { cursor:default; opacity:.55; }
.wizard-step { margin-bottom: 16px; padding: 0; overflow: visible; scroll-margin-top: 165px; }
.wizard-step-head { display:grid; grid-template-columns:58px 1fr; gap:16px; padding:24px; align-items:start; }
.wizard-step-head h3 { margin:0 0 7px; color:var(--plum-800); font-size:clamp(30px,4vw,42px); line-height:1; }
.wizard-step-head p { margin:0; color:var(--muted); }
.wizard-step-body { padding:0 24px 24px; }
.wizard-summary { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 20px; }
.wizard-summary strong { color:var(--plum-800); font-size:17px; }
.wizard-summary p { margin:4px 0 0; color:var(--muted); line-height:1.55; }
.summary-edit { flex:0 0 auto; border:1px solid var(--line-strong); background:#fff; color:var(--plum-700); border-radius:999px; padding:9px 14px; font:inherit; font-weight:800; cursor:pointer; }
.wizard-actions { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:24px; padding-top:20px; border-top:1px solid var(--line); }
.wizard-error { min-height:24px; margin:12px 0 0; color:#8b3f55; font-weight:800; }

.treatment-accordion { display:grid; gap:12px; }
.treatment-category { border:1px solid var(--line); border-radius:17px; background:rgba(255,255,255,.48); overflow:hidden; }
.treatment-category > summary { list-style:none; display:flex; justify-content:space-between; align-items:center; gap:14px; padding:17px 18px; cursor:pointer; color:var(--plum-800); }
.treatment-category > summary::-webkit-details-marker { display:none; }
.treatment-category > summary strong { display:block; font-family:"Baskerville","Palatino Linotype",Georgia,serif; font-size:25px; font-weight:400; }
.treatment-category > summary small { display:block; color:var(--muted); margin-top:3px; }
.category-chevron { font-size:24px; transition:transform .18s ease; }
.treatment-category[open] .category-chevron { transform:rotate(180deg); }
.category-count { display:inline-flex!important; width:max-content; margin-top:7px!important; padding:4px 8px; border-radius:999px; background:rgba(181,118,139,.13); color:var(--plum-700)!important; font-size:11px!important; font-weight:800; }
.category-treatments { padding:0 12px 12px; display:grid; gap:9px; }
.selectable-treatment { border:1px solid var(--line); border-radius:14px; background:#fff; overflow:hidden; }
.selectable-treatment.is-selected { border-color:rgba(181,118,139,.64); box-shadow:0 0 0 2px rgba(181,118,139,.08); }
.treatment-main-row { display:grid; grid-template-columns:24px 1fr auto; gap:12px; align-items:center; min-height:62px; padding:12px 14px; cursor:pointer; }
.treatment-main-row > input { width:21px; height:21px; accent-color:#a76077; }
.treatment-main-copy strong { display:block; color:var(--ink); line-height:1.35; }
.treatment-main-copy small { display:block; color:var(--muted); font-size:12px; line-height:1.45; margin-top:3px; }
.treatment-list-price { color:var(--plum-800); background:var(--surface-2); border-radius:999px; padding:7px 10px; font-weight:850; white-space:nowrap; }
.treatment-extras { padding:0 14px 14px 50px; }
.treatment-option-group { margin:0; padding:12px; border:1px solid var(--line); border-radius:12px; background:#fbf7f7; }
.treatment-option-group + .treatment-option-group { margin-top:10px; }
.treatment-option-group legend { padding:0 6px; color:var(--plum-700); font-weight:800; font-size:13px; }
.extra-row { display:grid; grid-template-columns:22px 1fr auto; gap:10px; align-items:center; padding:8px 4px; cursor:pointer; }
.extra-row + .extra-row { border-top:1px solid var(--line); }
.extra-row input { width:18px; height:18px; accent-color:#a76077; }
.extra-row span { color:var(--muted); line-height:1.4; }
.extra-row strong { color:var(--plum-800); white-space:nowrap; }

.request-mode-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.request-mode-card { display:block; position:relative; cursor:pointer; }
.request-mode-card input { position:absolute; opacity:0; }
.request-mode-card span { display:block; min-height:112px; padding:19px; border:2px solid var(--line); border-radius:17px; background:#fff; }
.request-mode-card strong { display:block; color:var(--plum-800); font-family:"Baskerville","Palatino Linotype",Georgia,serif; font-size:24px; font-weight:400; }
.request-mode-card small { display:block; color:var(--muted); margin-top:6px; font-size:14px; line-height:1.55; }
.request-mode-card input:checked + span { border-color:#a76077; background:rgba(181,118,139,.1); box-shadow:0 0 0 3px rgba(181,118,139,.08); }
.mode-panel { margin-top:16px; padding:18px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.55); }
.date-field { display:block; max-width:430px; }
.date-control { font-size:18px; }
.selector-heading { display:block; margin:0 0 10px; color:var(--plum-800); font-family:"Baskerville","Palatino Linotype",Georgia,serif; font-size:24px; font-weight:400; }
.day-toggle-help { margin-top:-4px; margin-bottom:14px; }
.weekday-selector, .ideal-day-selector { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.weekday-button, .ideal-day-button { min-height:78px; padding:12px; border:1px solid var(--line-strong); border-radius:14px; background:#fff; color:var(--plum-800); text-align:left; cursor:pointer; }
.weekday-button strong,.ideal-day-button strong { display:block; font-size:16px; }
.weekday-button small,.ideal-day-button small { display:block; margin-top:5px; color:var(--muted); font-size:12px; }
.weekday-button[aria-pressed="true"],.ideal-day-button[aria-pressed="true"] { color:#fff; background:linear-gradient(135deg,#684057,#85546a); border-color:#684057; }
.weekday-button[aria-pressed="true"] small,.ideal-day-button[aria-pressed="true"] small { color:rgba(255,255,255,.82); }

.rough-availability-note { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; padding:15px 17px; border-radius:15px; background:rgba(211,175,115,.14); border:1px solid rgba(211,175,115,.34); color:#5f4a35; line-height:1.6; }
.rough-availability-note strong { flex:0 0 auto; color:#4f3b28; }
.same-times-button { width:100%; display:flex; gap:13px; align-items:center; text-align:left; padding:15px 17px; margin-bottom:14px; border:2px solid var(--line); border-radius:16px; background:#fff; color:var(--plum-800); cursor:pointer; }
.same-times-button.is-active { border-color:#a76077; background:rgba(181,118,139,.1); }
.same-times-icon { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:#eadde1; color:var(--plum-700); font-weight:900; }
.same-times-button.is-active .same-times-icon { background:#a76077; color:#fff; }
.same-times-button strong,.same-times-button small { display:block; }
.same-times-button small { color:var(--muted); margin-top:3px; }
.availability-panels { display:grid; gap:14px; }
.availability-day-card { padding:18px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.62); }
.availability-day-head h4 { margin:0; color:var(--plum-800); font-size:28px; }
.availability-day-head p { margin:3px 0 0; color:var(--muted); font-size:13px; }
.rough-time-grid { margin-top:14px; }
.no-ranges-yet { margin:12px 0 0; color:var(--muted); font-size:13px; }
.empty-state { padding:18px; border-radius:14px; background:var(--surface-2); color:var(--muted); }

.ideal-choice-row { margin-bottom:18px; }
.no-preference-button { width:100%; min-height:58px; border:2px solid var(--line); border-radius:15px; background:#fff; color:var(--plum-800); font:inherit; font-weight:800; cursor:pointer; }
.no-preference-button.is-active { border-color:#a76077; background:rgba(181,118,139,.1); }
.ideal-time-wrap { margin-top:18px; max-width:520px; }
.ideal-time-select { font-size:18px; }
.ideal-warning { margin-top:16px; padding:16px; border-radius:15px; background:#fff5df; border:1px solid #e4c783; color:#674f2c; }
.ideal-warning strong { display:block; }
.ideal-warning p { margin:6px 0 12px; }

.details-card-inner { padding-top:2px; }
.review-grid { display:grid; gap:10px; margin-bottom:18px; }
.review-card { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; padding:16px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.58); }
.review-card strong { color:var(--plum-800); }
.review-card p { margin:4px 0 0; color:var(--muted); line-height:1.55; }
.wizard-step .email-result { margin-top:0; }

@media (max-width: 820px) {
  .wizard-progress { top:70px; overflow-x:auto; grid-template-columns:repeat(6,minmax(92px,1fr)); }
  .request-mode-grid { grid-template-columns:1fr; }
  .weekday-selector,.ideal-day-selector { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 560px) {
  .wizard-step-head { grid-template-columns:46px 1fr; padding:18px; gap:12px; }
  .wizard-step-body { padding:0 18px 18px; }
  .wizard-summary { padding:15px; align-items:flex-start; }
  .wizard-actions { align-items:stretch; flex-direction:column-reverse; }
  .wizard-actions .btn { width:100%; }
  .treatment-main-row { grid-template-columns:22px 1fr; }
  .treatment-list-price { grid-column:2; justify-self:start; }
  .treatment-extras { padding-left:14px; }
  .extra-row { grid-template-columns:20px 1fr; }
  .extra-row strong { grid-column:2; justify-self:start; }
  .weekday-selector,.ideal-day-selector { grid-template-columns:1fr; }
  .rough-availability-note { display:block; }
  .rough-availability-note strong { display:block; margin-bottom:3px; }
  .review-card { display:block; }
  .review-card .summary-edit { margin-top:10px; }
}
.wizard-page [hidden] { display: none !important; }


/* Review-stage related treatment suggestions */
.review-extras {
  margin: 20px 0 24px;
  padding: 22px;
  border: 1px solid rgba(181,118,139,.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,250,249,.96), rgba(246,236,238,.96));
}
.review-extras-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 14px;
}
.review-extras-head h3 { margin: 0; color: var(--plum-800); font-size: 30px; }
.review-extras-head > p { margin: 0; max-width: 440px; color: var(--muted); line-height: 1.6; }
.review-extra-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.review-extra-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 210px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.68);
}
.review-extra-copy { display: flex; flex-direction: column; gap: 5px; }
.review-extra-copy strong { color: var(--plum-800); font-family: "Baskerville", "Palatino Linotype", Georgia, serif; font-size: 22px; font-weight: 400; line-height: 1.15; }
.review-extra-price { color: var(--rose); font-weight: 800; }
.review-extra-copy p { margin: 5px 0 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.review-extra-add { margin-top: auto; width: 100%; }
@media (max-width: 900px) {
  .review-extras-head { display: block; }
  .review-extras-head > p { margin-top: 8px; max-width: none; }
  .review-extra-grid { grid-template-columns: 1fr; }
  .review-extra-card { min-height: 0; }
}


/* Gentle feedback when a recommended treatment is added */
.review-extra-card {
  transition: opacity .28s ease, transform .28s ease, border-color .2s ease, background-color .2s ease;
}
.review-extra-card.is-being-added {
  opacity: 0;
  transform: translateY(-6px) scale(.985);
}
.review-extra-add.is-added,
.review-extra-add:disabled {
  background: rgba(181,118,139,.12);
  color: var(--plum-800);
  border-color: rgba(181,118,139,.28);
  cursor: default;
}
.recommendation-enter {
  animation: recommendationEnter .34s ease both;
}
@keyframes recommendationEnter {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.appointment-toast-region {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}
.appointment-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  color: #fff7f6;
  background: linear-gradient(135deg, #5b3348 0%, #704057 100%);
  box-shadow: 0 16px 34px rgba(56,31,45,.24);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}
.appointment-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.appointment-toast.is-hiding {
  opacity: 0;
  transform: translateY(8px) scale(.985);
}
.appointment-toast-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--plum-800);
  background: #f7e9ed;
  font-weight: 900;
  font-size: 17px;
}
.appointment-toast strong,
.appointment-toast span {
  display: block;
}
.appointment-toast strong {
  font-size: 15px;
  margin-bottom: 2px;
}
.appointment-toast span:not(.appointment-toast-icon) {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,247,246,.88);
}
@media (max-width: 600px) {
  .appointment-toast-region {
    right: 16px;
    bottom: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-extra-card,
  .appointment-toast { transition: none; }
  .recommendation-enter { animation: none; }
}

/* Treatment finder */
.finder-shell { max-width: 1040px; }
.finder-progress { grid-template-columns: repeat(4,minmax(130px,1fr)); }
.finder-hero { background: linear-gradient(135deg,#4c2b3d 0%,#6a3d55 58%,#8a526b 100%); }
.finder-need-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.finder-need-card { min-height:132px; border:1px solid var(--line); border-radius:18px; padding:20px; text-align:left; background:linear-gradient(180deg,#fffafa 0%,#f5eaed 100%); color:var(--plum-800); cursor:pointer; font:inherit; transition:.18s ease; box-shadow:0 6px 16px rgba(66,36,52,.05); }
.finder-need-card:hover { transform:translateY(-2px); border-color:rgba(181,118,139,.45); }
.finder-need-card strong { display:block; font-family:"Baskerville","Palatino Linotype",Georgia,serif; font-size:24px; font-weight:400; line-height:1.06; }
.finder-need-card span { display:block; margin-top:8px; color:var(--muted); line-height:1.5; font-size:14px; }
.finder-need-card.is-selected,.finder-need-card[aria-pressed="true"] { background:linear-gradient(145deg,#6a3e55 0%,#8b536b 100%); color:white; border-color:transparent; box-shadow:0 10px 24px rgba(83,45,64,.18); }
.finder-need-card.is-selected span,.finder-need-card[aria-pressed="true"] span { color:rgba(255,255,255,.86); }
.finder-followups { display:grid; gap:16px; }
.finder-question { border:1px solid var(--line); border-radius:18px; padding:20px; background:#fffafa; }
.finder-question legend { padding:0 6px; color:var(--plum-800); font-family:"Baskerville","Palatino Linotype",Georgia,serif; font-size:27px; }
.finder-question > p { margin:0 0 14px; color:var(--muted); }
.finder-choice-grid { display:flex; flex-wrap:wrap; gap:10px; }
.finder-choice { border:1px solid var(--line-strong); border-radius:999px; padding:11px 15px; background:#fff; color:var(--plum-800); font:inherit; font-weight:700; cursor:pointer; }
.finder-choice.is-selected,.finder-choice[aria-pressed="true"] { background:var(--plum-700); border-color:var(--plum-700); color:white; }
.finder-plan-summary { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:16px 18px; margin-bottom:24px; border-radius:16px; background:#f4e8ec; border:1px solid var(--line); }
.finder-plan-summary strong { color:var(--plum-800); font-size:18px; }
.finder-plan-summary p { margin:4px 0 0; color:var(--muted); line-height:1.5; }
.finder-section-title { margin:28px 0 14px; }
.finder-section-title h4,.finder-final-head h4 { margin:0; color:var(--plum-800); font-size:32px; }
.finder-results-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.finder-result-card { border:1px solid var(--line); border-radius:18px; padding:18px; background:linear-gradient(180deg,#fffafa 0%,#f7eef0 100%); box-shadow:0 8px 20px rgba(73,39,57,.06); }
.finder-result-card.is-in-plan { border-color:rgba(181,118,139,.5); box-shadow:0 8px 22px rgba(181,118,139,.12); }
.finder-result-top { display:grid; grid-template-columns:1fr auto; gap:16px; align-items:start; }
.finder-result-badge { display:inline-block; color:var(--rose); font-size:11px; letter-spacing:.12em; text-transform:uppercase; font-weight:800; margin-bottom:8px; }
.finder-result-card h4 { margin:0 0 8px; color:var(--plum-800); font-size:26px; line-height:1.08; }
.finder-result-card p { margin:0; color:var(--muted); line-height:1.65; }
.finder-result-price { color:var(--plum-800); white-space:nowrap; }
.finder-result-actions { display:flex; gap:12px; align-items:center; justify-content:space-between; margin-top:18px; padding-top:14px; border-top:1px solid var(--line); }
.finder-result-actions > a { color:var(--rose); font-weight:800; font-size:14px; }
.finder-more { margin-top:24px; border-top:1px solid var(--line); padding-top:18px; }
.finder-more summary { cursor:pointer; color:var(--plum-800); font-weight:800; }
.finder-results-grid-more { margin-top:16px; }
.finder-upgrade-grid { display:grid; gap:12px; }
.finder-upgrade { display:flex; justify-content:space-between; align-items:center; gap:18px; padding:18px; border-radius:18px; background:linear-gradient(135deg,#f4e6ea 0%,#fff7f7 100%); border:1px solid rgba(181,118,139,.28); }
.finder-upgrade-from { display:block; margin-bottom:6px; color:var(--rose); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.finder-upgrade strong { color:var(--plum-800); font-size:18px; }
.finder-upgrade p { margin:6px 0 0; color:var(--muted); line-height:1.6; }
.finder-extra-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.finder-extra-card { border:1px solid var(--line); border-radius:18px; padding:18px; background:#fffafa; display:grid; grid-template-columns:1fr auto; gap:6px 14px; align-items:start; }
.finder-extra-card > span { grid-column:1 / -1; color:var(--rose); font-size:11px; text-transform:uppercase; letter-spacing:.12em; font-weight:800; }
.finder-extra-card h4 { margin:0; color:var(--plum-800); font-size:24px; }
.finder-extra-card > strong { color:var(--plum-800); white-space:nowrap; }
.finder-extra-card .btn { grid-column:1 / -1; margin-top:8px; justify-self:start; }
.finder-final-plan { margin-top:26px; padding:20px; border-radius:20px; background:linear-gradient(135deg,#5a3248 0%,#714157 100%); color:white; }
.finder-final-head .kicker { color:#e0a9b9; }
.finder-final-head h4 { color:white; }
.finder-final-plan ul { list-style:none; padding:0; margin:16px 0 0; }
.finder-final-plan li { display:flex; justify-content:space-between; gap:18px; padding:10px 0; border-top:1px solid rgba(255,255,255,.13); }
.finder-final-plan p { color:rgba(255,255,255,.86); }
.finder-small-note { margin:14px 0 0; color:var(--muted); font-size:14px; line-height:1.6; }

@media(max-width:900px){
  .finder-need-grid { grid-template-columns:repeat(2,1fr); }
  .finder-results-grid,.finder-extra-grid { grid-template-columns:1fr; }
  .finder-result-actions,.finder-upgrade { align-items:stretch; flex-direction:column; }
  .finder-result-actions .btn,.finder-upgrade .btn { width:100%; }
}
@media(max-width:620px){
  .finder-progress { grid-template-columns:repeat(4,minmax(105px,1fr)); overflow-x:auto; }
  .finder-need-grid { grid-template-columns:1fr; }
  .finder-result-top { grid-template-columns:1fr; }
  .finder-result-price { margin-top:-4px; }
  .finder-extra-card { grid-template-columns:1fr; }
  .finder-extra-card > strong { grid-column:1; }
}
.finder-home-section { padding:34px 0 4px; }
.finder-home-card { display:flex; justify-content:space-between; align-items:center; gap:24px; padding:28px 30px; border-radius:24px; background:linear-gradient(135deg,#5b3348 0%,#73435a 100%); color:white; box-shadow:0 14px 30px rgba(72,37,55,.13); }
.finder-home-card .kicker { color:#e2adbc; }
.finder-home-card h3 { margin:0 0 8px; color:white; font-size:clamp(30px,4vw,44px); line-height:1; }
.finder-home-card p:last-child { margin:0; color:rgba(255,255,255,.86); }
@media(max-width:760px){.finder-home-card{flex-direction:column;align-items:flex-start}.finder-home-card .btn{width:100%}}
.finder-upgrade-intro { margin:8px 0 0; color:var(--muted); line-height:1.6; }
.finder-upgrade p b { color:var(--plum-800); font-weight:800; }

/* ---------------------------------------------------------
   Compact mobile navigation
   --------------------------------------------------------- */
.mobile-menu-toggle,
.mobile-submenu-toggle {
  display: none;
}

@media (max-width: 760px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .nav {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav .shell {
    position: relative;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand h1 {
    font-size: 34px;
  }

  .brand p {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: .22em;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(255,250,249,.96);
    color: var(--plum-800);
    box-shadow: 0 8px 18px rgba(73,39,57,.08);
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-icon,
  .mobile-menu-icon::before,
  .mobile-menu-icon::after {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-menu-icon {
    position: relative;
  }

  .mobile-menu-icon::before,
  .mobile-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .mobile-menu-icon::before { top: -7px; }
  .mobile-menu-icon::after { top: 7px; }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon {
    background: transparent;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::before {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,250,249,.99);
    box-shadow: 0 18px 42px rgba(57,32,47,.18);
  }

  .nav-links.mobile-open {
    display: flex !important;
  }

  .nav-links > a,
  .nav-drop > a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 16px;
    color: var(--plum-800);
  }

  .nav-links > a + a,
  .nav-links > .nav-drop + a,
  .nav-links > a + .nav-drop {
    margin-top: 2px;
  }

  .nav-links > .btn {
    margin-top: 8px;
    width: 100%;
  }

  .nav-drop {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-drop > a::after {
    content: none !important;
  }

  .mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 4px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--plum-800);
    cursor: pointer;
    font-size: 19px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease;
  }

  .mobile-submenu-toggle::before {
    content: "⌄";
    transform: translateY(-2px);
  }

  .mobile-submenu-toggle[aria-expanded="true"]::before {
    transform: translateY(2px) rotate(180deg);
  }

  .nav-drop-menu {
    grid-column: 1 / -1;
    position: static !important;
    transform: none !important;
    display: none !important;
    min-width: 0 !important;
    margin: 2px 0 8px 12px;
    padding: 6px !important;
    border: 0 !important;
    border-left: 2px solid var(--rose-soft) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-drop.submenu-open .nav-drop-menu {
    display: block !important;
  }

  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu {
    display: none !important;
  }

  .nav-drop.submenu-open:hover .nav-drop-menu,
  .nav-drop.submenu-open:focus-within .nav-drop-menu {
    display: block !important;
  }

  .nav-drop-menu a {
    display: block;
    min-height: 44px;
    padding: 11px 12px !important;
    border-radius: 10px;
    font-size: 15px !important;
    color: var(--muted);
  }

  .topbar .shell {
    gap: 5px 14px;
    padding: 7px 0;
    font-size: 12px;
  }

  .topbar .shell span:nth-child(2),
  .topbar .shell span:nth-child(4) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-icon,
  .mobile-menu-icon::before,
  .mobile-menu-icon::after,
  .mobile-submenu-toggle {
    transition: none !important;
  }
}
