@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
  --ink: #28302c;
  --paper: #f6f1e8;
  --cream: #fffaf2;
  --sage: #aab8a1;
  --deep-sage: #43534a;
  --clay: #c9795c;
  --line: rgba(40, 48, 44, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0;
  z-index: 30;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(clamp(24px, 5vw, 84px), calc((100vw - 1250px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 232, .96);
  transition: height .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.has-scrolled .site-header {
  height: 66px;
  background: var(--paper);
  box-shadow: 0 7px 22px rgba(40,48,44,.07);
}
.site-header .brand-logo,
.site-header .brand strong,
.site-header .brand small,
.site-header .nav-cta {
  transition: width .25s ease, height .25s ease, font-size .25s ease, padding .25s ease;
}
.has-scrolled .site-header .brand-logo { width: 42px; height: 42px; }
.has-scrolled .site-header .brand strong { font-size: 18px; }
.has-scrolled .site-header .brand small { font-size: 8px; }
.has-scrolled .site-header .nav-cta { padding: 11px 17px; }
.mobile-header-book { display: none; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; display: block; object-fit: contain; flex: 0 0 auto; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Newsreader", serif; font-size: 20px; font-weight: 500; line-height: 1; }
.brand small { margin-top: 3px; font-size: 9px; letter-spacing: .24em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); font-size: 13px; font-weight: 500; }
.desktop-nav a:not(.nav-cta) { position: relative; }
.desktop-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--ink); transition: right .2s; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a[aria-current="page"]:not(.nav-cta)::after { right: 0; }
.nav-cta, .button-primary {
  background: var(--ink); color: #fff; border-radius: 999px; transition: transform .2s, background .2s;
}
.nav-cta { padding: 13px 19px; }
.nav-cta:hover, .button-primary:hover { background: var(--deep-sage); transform: translateY(-2px); }
.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(36px, 6vw, 104px);
  padding: clamp(64px, 7vw, 104px) clamp(24px, 5vw, 84px) 74px;
  overflow: hidden;
}
.hero-copy { align-self: center; }
.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Newsreader", serif; font-weight: 400; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(58px, 5.5vw, 88px); line-height: .92; }
.hero-lede { max-width: 560px; margin: 32px 0; font-size: 18px; line-height: 1.7; color: #56605a; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; gap: 25px; padding: 17px 23px; font-size: 14px; font-weight: 500; }
.button span { font-size: 17px; }
.text-link { border-bottom: 1px solid var(--ink); padding: 8px 0; font-size: 13px; }
.text-link span { margin-left: 10px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-proof strong { display: block; font-family: "Newsreader", serif; font-size: 30px; font-weight: 400; }
.hero-proof span { display: block; margin-top: 4px; color: #657069; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 550px; align-self: stretch; }
.image-placeholder {
  position: absolute; inset: 0; overflow: hidden; border-radius: 220px 220px 12px 12px;
  background: #9fad97 url("/studio-treatment-room.jpg") center / cover no-repeat;
  background-image: image-set(url("/studio-treatment-room.webp") type("image/webp"), url("/studio-treatment-room.jpg") type("image/jpeg"));
}
.image-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 38, 33, .22));
}
.location-card { position: absolute; right: -28px; bottom: 48px; z-index: 3; width: min(315px, 88%); padding: 20px 22px; display: flex; gap: 14px; align-items: center; background: var(--cream); box-shadow: 0 22px 60px rgba(43,45,40,.16); }
.location-card strong, .location-card small { display: block; }
.location-card strong { font-family: "Newsreader", serif; font-size: 18px; font-weight: 500; }
.location-card small { margin-top: 4px; color: #717972; font-size: 11px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 6px rgba(201,121,92,.15); flex: 0 0 auto; }
.intro { padding: 110px clamp(24px, 7vw, 112px) 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--cream); }
.intro h2 { max-width: 550px; margin: 0; font-size: clamp(48px, 5.2vw, 78px); line-height: .98; }
.intro > p { max-width: 510px; margin: 38px 0 0; align-self: center; font-size: 17px; line-height: 1.8; color: #5a645e; }
.service-grid { padding: 0 clamp(24px, 5vw, 84px) 110px; background: var(--cream); display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-card { min-height: 430px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.card-sage { background: var(--sage); }
.card-clay { background: var(--clay); color: #fffaf2; }
.card-cream { background: #eee4d6; }
.service-number { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; }
.card-kicker { margin: 0 0 8px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { margin: 0; font-size: clamp(34px, 3.2vw, 50px); line-height: 1; }
.service-card p:not(.card-kicker) { min-height: 74px; margin: 24px 0; font-size: 14px; line-height: 1.65; opacity: .82; }
.service-card a { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid currentColor; font-size: 12px; font-weight: 600; }
.studio-gallery { padding: 86px clamp(24px, 5vw, 84px); background: var(--paper); }
.studio-gallery-heading { margin-bottom: 36px; display: grid; grid-template-columns: 1.1fr .75fr; gap: clamp(40px, 9vw, 140px); align-items: end; }
.studio-gallery-heading h2 { max-width: 700px; margin: 0; font-size: clamp(42px, 4.2vw, 64px); line-height: .98; }
.studio-gallery-heading > p { max-width: 520px; margin: 0 0 5px; color: #5c6660; font-size: 16px; line-height: 1.75; }
.studio-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.studio-photo { min-height: clamp(220px, 20vw, 300px); margin: 0; position: relative; overflow: hidden; background: #d8cfc0; }
.studio-photo-wide { min-height: 650px; grid-row: 1 / 3; }
.studio-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.portrait picture, .profile-photo picture, .studio-photo picture { display: contents; }
.studio-photo:hover img { transform: scale(1.015); }
.studio-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, rgba(25,31,28,.46)); pointer-events: none; }
.studio-photo figcaption { position: absolute; z-index: 1; left: 22px; bottom: 18px; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.therapists { padding: 120px clamp(24px, 5vw, 84px); background: var(--paper); }
.therapists-inner { width: 100%; }
.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading h2 { margin: 0; font-size: clamp(54px, 6vw, 88px); line-height: .95; }
.section-heading > p:last-child { max-width: 480px; margin: 24px 0 0; color: #5f6963; font-size: 16px; line-height: 1.7; }
.therapist-list { border-top: 1px solid var(--line); }
.therapist-row {
  display: grid; grid-template-columns: 135px minmax(220px, .8fr) 1.25fr minmax(155px, .45fr);
  gap: clamp(24px, 4vw, 72px); align-items: center; padding: 4px 0; border-bottom: 1px solid var(--line);
}
.portrait {
  width: 128px; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden;
  position: relative; background: #d8cfc0;
}
.portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }
.portrait-christina img { object-position: 50% 40%; }
.portrait-anna img { object-position: 50% 38%; }
.portrait-cassie img { object-position: 50% 35%; }
.therapist-name > span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #68716c; }
.therapist-name h3 { margin: 10px 0 0; font-size: clamp(38px, 3.4vw, 54px); line-height: .88; }
.therapist-row > p { margin: 0; color: #5c6660; font-size: 14px; line-height: 1.75; }
.therapist-row > a { align-self: center; display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 600; }
.testimonial {
  padding: 120px clamp(24px, 9vw, 150px); color: #f8f1e7;
  background: var(--deep-sage); text-align: center;
}
.testimonial-stage { min-height: 390px; display: flex; flex-direction: column; justify-content: center; }
.testimonial blockquote { max-width: 980px; margin: 20px auto 46px; font-family: "Newsreader", serif; font-size: clamp(48px, 6.5vw, 92px); line-height: 1.02; letter-spacing: -.035em; }
.quote-meta { display: inline-flex; align-items: center; gap: 16px; text-align: left; }
.quote-line { width: 42px; height: 1px; background: currentColor; opacity: .55; }
.quote-meta strong, .quote-meta small { display: block; }
.quote-meta strong { font-family: "Newsreader", serif; font-size: 17px; font-weight: 400; }
.quote-meta small { margin-top: 3px; opacity: .65; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.testimonial-controls { margin-top: 54px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.testimonial-controls > button {
  width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%;
  background: transparent; color: inherit; cursor: pointer; font-size: 20px; transition: background .2s, color .2s;
}
.testimonial-controls > button:hover, .testimonial-controls > button:focus-visible { background: #f8f1e7; color: var(--deep-sage); }
.testimonial-dots { display: flex; align-items: center; gap: 2px; }
.testimonial-dots button { width: 24px; height: 44px; padding: 0; position: relative; border: 0; background: transparent; cursor: pointer; }
.testimonial-dots button::after { content: ""; width: 8px; height: 8px; position: absolute; inset: 50% auto auto 50%; border-radius: 50%; background: rgba(255,255,255,.35); transform: translate(-50%, -50%); }
.testimonial-dots button.is-active::after { width: 24px; border-radius: 999px; background: #f8f1e7; }
.testimonial-dots button:focus-visible { outline: 2px solid #f8f1e7; outline-offset: 1px; border-radius: 999px; }
.testimonial-count { display: none; min-width: 54px; font-size: 12px; letter-spacing: .12em; }
.booking-section { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 610px; background: var(--clay); color: #fffaf2; }
.booking-copy { padding: clamp(76px, 8vw, 126px) clamp(24px, 8vw, 128px); border-right: 1px solid rgba(255,255,255,.27); }
.booking-copy h2 { margin: 0; font-size: clamp(64px, 7vw, 105px); line-height: .85; }
.booking-copy > p:not(.eyebrow) { max-width: 450px; margin: 30px 0; font-size: 16px; line-height: 1.7; }
.rate-list { max-width: 520px; margin: 34px 0 0; border-top: 1px solid rgba(255,255,255,.45); }
.rate-list > div { min-height: 58px; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.45); }
.rate-list span { font-size: 13px; font-weight: 500; }
.rate-list strong { font-family: "Newsreader", serif; font-size: 26px; font-weight: 400; }
.booking-copy .rate-note { margin: 22px 0 26px; font-size: 12px; line-height: 1.6; opacity: .78; }
.button-light { background: #fffaf2; color: var(--ink); border-radius: 999px; }
.button-light:hover { transform: translateY(-2px); }
.visit-card { padding: clamp(76px, 8vw, 126px) clamp(32px, 6vw, 92px); display: flex; flex-direction: column; justify-content: space-between; }
.visit-address { display: grid; gap: 30px; }
.visit-address > span { font-family: "Newsreader", serif; font-size: clamp(32px, 3.3vw, 50px); line-height: 1.12; }
.visit-address small { font-size: 12px; line-height: 1.6; opacity: .72; }
.visit-links { display: grid; }
.visit-links a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 12px; font-weight: 600; }
.gift-strip { min-height: 180px; padding: 35px clamp(24px, 6vw, 96px); display: flex; justify-content: space-between; align-items: center; background: #d8cfc0; }
.gift-strip > div { display: flex; align-items: center; gap: 24px; }
.gift-icon { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 25px; }
.gift-strip p { margin: 0; font-family: "Newsreader", serif; font-size: clamp(26px, 3vw, 40px); }
.gift-strip p small { display: block; margin-bottom: 5px; font-family: "DM Sans", sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.gift-strip > a { min-width: 170px; display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 600; }
footer { padding: 68px clamp(24px, 5vw, 84px) 34px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px 70px; align-items: center; background: #222b27; color: #f5eee4; }
.footer-brand { grid-row: span 2; }
.footer-brand .brand-logo { width: 66px; height: 66px; padding: 4px; background: var(--cream); border-radius: 50%; }
footer > p { max-width: 360px; margin: 0; opacity: .65; font-size: 13px; line-height: 1.6; }
footer > div { display: flex; gap: 28px; font-size: 12px; }
footer > small { grid-column: 2 / -1; opacity: .45; font-size: 10px; }
.mobile-book { display: none; }
.mobile-menu { display: none; }

/* Custom public booking flow */
.custom-booking-page { width: 100%; max-width: 1250px; min-height: calc(100vh - 80px); margin-inline: auto; display: grid; grid-template-columns: 430px minmax(620px,1fr); background: var(--cream); }
.booking-intro { min-height: 760px; padding: clamp(64px,7vw,110px) clamp(38px,3.3vw,54px) clamp(52px,5vw,72px); display: flex; flex-direction: column; color: #fffaf2; background: var(--deep-sage); }
.booking-intro h1 { max-width: 340px; font-size: clamp(48px,3.5vw,64px); line-height: .94; }
.booking-intro > p:not(.eyebrow) { max-width: 520px; margin: 30px 0 0; color: #d7dfda; font-size: 16px; line-height: 1.75; }
.booking-contact-note { margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.22); display: grid; gap: 7px; }
.booking-contact-note span { color: #bfcac5; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.booking-contact-note a { width: max-content; border-bottom: 1px solid currentColor; font-family: "Newsreader",serif; font-size: 20px; }
.booking-app { padding: clamp(42px,5vw,78px) clamp(24px,5vw,80px); }
.booking-progress { max-width: 820px; margin: 0 auto 38px; display: grid; grid-template-columns: repeat(4,1fr); }
.booking-progress-five { grid-template-columns: repeat(5,1fr); }
.booking-progress button { padding: 0; display: flex; align-items: center; gap: 9px; border: 0; background: transparent; color: #8a918d; font: inherit; font-size: 10px; text-align: left; }
.booking-progress button:not(:last-child)::after { content:""; height: 1px; margin-left: 8px; flex: 1; background: var(--line); }
.booking-progress i { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #b9bdb9; border-radius: 50%; font-style: normal; }
.booking-progress .is-current { color: var(--ink); font-weight: 600; }.booking-progress .is-current i { color: #fff; border-color: var(--clay); background: var(--clay); }.booking-progress .is-done { color: var(--deep-sage); cursor: pointer; }.booking-progress .is-done i { color: #fff; border-color: var(--deep-sage); background: var(--deep-sage); }
.booking-panel { max-width: 820px; min-height: 610px; margin: auto; padding: clamp(32px,4vw,58px); border: 1px solid var(--line); background: #fffdfa; box-shadow: 0 30px 80px rgba(43,52,47,.09); }
.booking-panel-heading .eyebrow { margin-bottom: 14px; color: var(--clay); }
.booking-panel-heading h2 { margin: 0; font-size: clamp(38px,3.5vw,56px); line-height: 1; }
.booking-panel-heading > p:last-child { max-width: 620px; margin: 17px 0 31px; color: #66706a; font-size: 13px; line-height: 1.65; }
.session-options,.therapist-options { display: grid; gap: 9px; }
.session-options > button,.therapist-options > button { width: 100%; min-height: 92px; padding: 16px 18px; display: grid; grid-template-columns: 1fr auto 22px; gap: 18px; align-items: center; border: 1px solid var(--line); background: #fff; color: var(--ink); text-align: left; cursor: pointer; transition: border-color .15s,background .15s,transform .15s; }
.session-options > button:hover,.therapist-options > button:hover { transform: translateY(-1px); border-color: var(--sage); }.session-options > button.is-selected,.therapist-options > button.is-selected { border-color: var(--deep-sage); background: #f0f3ed; box-shadow: inset 4px 0 var(--deep-sage); }
.session-options span,.therapist-options button > span:not(.any-therapist) { display: grid; gap: 5px; }.session-options strong,.therapist-options strong { font-family: "Newsreader",serif; font-size: 20px; font-weight: 500; }.session-options small,.therapist-options small { color: #717a75; font-size: 10px; line-height: 1.5; }.session-options b { font-family: "Newsreader",serif; font-size: 25px; font-weight: 400; }
.session-options i,.therapist-options i { width: 18px; height: 18px; border: 1px solid #afb5b1; border-radius: 50%; }.session-options .is-selected i,.therapist-options .is-selected i { border: 5px solid var(--deep-sage); }
.therapist-options > button { grid-template-columns: 58px 1fr 22px; }.therapist-options img,.any-therapist { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }.therapist-options img.any-therapist-logo { padding: 5px; object-fit: contain; background: var(--cream); }
.booking-actions { margin-top: 34px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }.booking-previous { padding: 12px 0; border: 0; background: transparent; color: #5f6963; cursor: pointer; font: inherit; font-size: 12px; }.booking-next { min-width: 190px; padding: 15px 19px; display: inline-flex; justify-content: space-between; gap: 24px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; cursor: pointer; font: inherit; font-size: 12px; font-weight: 600; }.booking-next:disabled { opacity: .35; cursor: not-allowed; }
.date-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }.date-strip button { min-height: 92px; padding: 10px; display: grid; place-items: center; gap: 1px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; }.date-strip small,.date-strip span { color: #78817c; font-size: 9px; text-transform: uppercase; }.date-strip strong { font-family: "Newsreader",serif; font-size: 28px; font-weight: 400; }.date-strip .is-selected { color: #fff; border-color: var(--deep-sage); background: var(--deep-sage); }.date-strip .is-selected small,.date-strip .is-selected span { color: #dce4df; }
.month-calendar { padding: 18px 20px 20px; border: 1px solid var(--line); background: #fff; }
.month-calendar__header { min-height: 55px; display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; border-bottom: 1px solid var(--line); }
.month-calendar__header > button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; font-size: 15px; }.month-calendar__header > button:last-child { justify-self: end; }.month-calendar__header > button:disabled { opacity: .25; cursor: default; }
.month-calendar__header > div { display: grid; justify-items: center; gap: 5px; }.month-calendar__header strong { font-family: "Newsreader",serif; font-size: 23px; font-weight: 500; }.month-calendar__header small { display: flex; align-items: center; gap: 6px; color: #76807a; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }.month-calendar__header small i { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }
.month-calendar__weekdays,.month-calendar__days { display: grid; grid-template-columns: repeat(7,1fr); }.month-calendar__weekdays { padding: 13px 0 6px; }.month-calendar__weekdays span { color: #8b928e; font-size: 8px; font-weight: 600; text-align: center; text-transform: uppercase; }
.month-calendar__days { gap: 4px; }.month-calendar__days > button,.month-calendar__days > span { min-height: 45px; position: relative; border: 0; background: transparent; color: #a2a7a4; font: inherit; font-size: 11px; }.month-calendar__days > button:disabled { cursor: default; }.month-calendar__days > button.is-available { border: 1px solid #c9d2c7; background: #f0f3ed; color: var(--ink); cursor: pointer; font-weight: 600; }.month-calendar__days > button.is-available:hover { border-color: var(--deep-sage); background: #e5ece3; }.month-calendar__days > button.is-selected { border-color: var(--deep-sage); background: var(--deep-sage); color: #fff; }.month-calendar__days > button i { width: 5px; height: 5px; position: absolute; left: 50%; bottom: 5px; border-radius: 50%; background: var(--clay); transform: translateX(-50%); }.month-calendar__days > button.is-selected i { background: #fff; }
.month-calendar__days > button.is-today:not(.is-selected) > span { font-weight: 800; }
.time-empty { min-height: 170px; display: grid; place-items: center; align-content: center; color: #8b938e; text-align: center; }.time-empty span { font-size: 21px; }.time-empty p { margin: 8px 0; font-size: 11px; }.time-options { margin-top: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }.time-options button { min-height: 48px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; font: inherit; font-size: 11px; }.time-options .is-selected { color: #fff; border-color: var(--clay); background: var(--clay); }
.booking-api-note { margin: 14px 0 0; color: #8a918d; font-size: 9px; line-height: 1.5; text-align: center; }.appointment-summary { margin-bottom: 25px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; background: #e8eee7; }.appointment-summary div { display: grid; gap: 4px; }.appointment-summary small { color: #68726d; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }.appointment-summary strong { font-family: "Newsreader",serif; font-size: 20px; font-weight: 500; }.appointment-summary span { color: #66706a; font-size: 10px; }.appointment-summary button { border: 0; border-bottom: 1px solid currentColor; background: transparent; font: inherit; font-size: 10px; cursor: pointer; }
.client-booking-form { display: grid; gap: 14px; }.client-booking-form > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.client-booking-form label { display: grid; gap: 7px; font-size: 10px; font-weight: 600; }.client-booking-form label span small { color: #8a918d; font-weight: 400; }.client-booking-form input,.client-booking-form textarea { width: 100%; padding: 13px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); font: inherit; font-size: 13px; }.booking-consent { grid-template-columns: 14px 1fr; align-items: center; gap: 8px!important; color: #7d8580; font-size: 9px!important; font-weight: 400!important; line-height: 1.4; }.booking-consent input { width: 12px; height: 12px; margin: 0; padding: 0; accent-color: #7d8580; }
.booking-footer { padding: 26px clamp(24px,5vw,84px); display: flex; justify-content: space-between; gap: 24px; background: #222b27; color: #d5ddd8; font-size: 9px; }
.test-route-badge { padding: 7px 11px; border: 1px solid rgba(201,121,92,.5); border-radius: 999px; color: #985640; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.client-portal-nav { display: flex; align-items: center; gap: 22px; font-size: 11px; font-weight: 600; }
.client-portal-nav a { padding: 7px 0; border-bottom: 1px solid rgba(40,48,44,.38); }
.client-lookup-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.client-lookup-form label { display: grid; gap: 7px; font-size: 10px; font-weight: 600; }
.client-lookup-form input { width: 100%; min-height: 48px; padding: 13px; border: 1px solid var(--line); background: #fff; color: var(--ink); font: inherit; font-size: 14px; }
.client-lookup-form input[aria-invalid="true"] { border-color: #a94d3d; box-shadow: 0 0 0 2px rgba(169,77,61,.1); }
.client-lookup-error { color: #a24033; font-size: 10px; font-weight: 500; line-height: 1.45; }
.client-lookup-form .booking-next { min-height: 48px; }
.client-result-card { margin-top: 22px; padding: 24px; border: 1px solid #cbd4c9; background: #f1f4ee; }
.client-result-card .eyebrow { margin-bottom: 8px; color: var(--deep-sage); }
.client-result-card h3 { margin: 0; font-size: 28px; }
.client-result-card > p:not(.eyebrow) { margin: 10px 0 0; color: #66706a; font-size: 12px; line-height: 1.6; }
.client-result-actions { margin-top: 19px; display: flex; align-items: center; gap: 20px; }
.client-guest-button,.client-forgot-link { padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #56615b; cursor: pointer; font: inherit; font-size: 11px; font-weight: 600; }
.client-forgot-link { margin-top: 14px; display: inline-block; color: #78817c; font-weight: 400; }
.client-lookup-back { margin-top: 22px; padding-top: 17px; }
.client-privacy-note { margin: 13px 0 0; color: #909691; font-size: 9px; line-height: 1.5; }
.client-status-note { margin: -13px 0 20px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; border: 1px solid #d4ddd1; background: #f3f6f1; color: #59645d; }
.client-status-note > i { width: 20px; height: 20px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--deep-sage); color: #fff; font-style: normal; font-size: 9px; }
.client-status-note > span { display: grid; gap: 1px; }
.client-status-note strong { font-size: 11px; font-weight: 600; }
.client-status-note small { color: #78817c; font-size: 9px; }
.client-status-note.is-new { border-color: #e4d6ce; background: #faf4ef; }
.client-status-note.is-new > i { background: var(--clay); }
.booking-success-actions { margin-top: 26px; display: flex; align-items: center; gap: 22px; }
.booking-success-actions .booking-next { min-width: 230px; }
.booking-success-return { padding: 8px 0; border-bottom: 1px solid currentColor; color: #66706a; font-size: 11px; font-weight: 600; }
.test-booking-error { max-width: 820px; margin: 0 auto 14px; padding: 13px 16px; border: 1px solid #deb6a6; background: #f8e9e2; color: #864b39; font-size: 11px; line-height: 1.5; }
.live-loading { min-height: 440px; display: grid; place-items: center; color: #76807a; font-size: 12px; }
.live-no-times { grid-column: 1/-1; margin: 0; padding: 18px; color: #78817c; background: #f4f1eb; font-size: 11px; text-align: center; }
.real-booking-warning { margin: 14px 0 0; color: #9a604c; font-size: 9px; line-height: 1.5; text-align: center; }
.booking-success { min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.booking-success > span { width: 56px; height: 56px; margin-bottom: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--deep-sage); color: #fff; font-size: 22px; }.booking-success h2 { margin: 0; font-size: 60px; }.booking-success > p:not(.eyebrow) { max-width: 480px; margin: 20px 0 30px; color: #65706a; font-size: 14px; line-height: 1.7; }.booking-success .booking-next { text-align: left; }

@media (max-width: 1050px) { .custom-booking-page { grid-template-columns: 1fr; }.booking-intro { min-height: auto; padding: 58px clamp(24px,7vw,76px); }.booking-intro h1 { font-size: 56px; }.booking-contact-note { margin-top: 45px; }.booking-app { padding: 45px 24px 70px; } }
@media (max-width: 900px) { .booking-intro { display: none; }.booking-app { padding-top: 32px; } }
@media (max-width: 620px) { .test-route-badge { display:none; }.booking-intro { padding: 45px 22px; }.booking-intro h1 { font-size: 45px; }.booking-intro > p:not(.eyebrow) { font-size: 14px; }.booking-progress span { display:none; }.booking-progress button:not(:last-child)::after { margin-right: 8px; }.booking-panel { padding: 28px 18px; }.booking-panel-heading h2 { font-size: 38px; }.session-options > button { grid-template-columns: 1fr auto 18px; gap: 10px; }.therapist-options > button { grid-template-columns: 48px 1fr 18px; gap: 11px; }.therapist-options img,.any-therapist { width: 44px; height: 44px; }.month-calendar { padding: 12px 8px 10px; }.month-calendar__header strong { font-size: 20px; }.month-calendar__days { gap: 2px; }.month-calendar__days > button,.month-calendar__days > span { min-height: 39px; }.time-options { grid-template-columns: repeat(2,1fr); }.booking-next { min-width: 165px; }.client-booking-form > div { grid-template-columns: 1fr; }.client-lookup-form { grid-template-columns: 1fr; }.client-lookup-form .booking-next { width: 100%; }.client-result-actions { align-items: stretch; flex-direction: column; gap: 10px; }.client-result-actions .booking-next { width: 100%; }.client-guest-button { align-self: center; }.booking-success-actions { align-items: stretch; flex-direction: column; gap: 12px; }.booking-success-actions .booking-next { width: 100%; }.booking-success-return { align-self: center; }.booking-footer { flex-direction: column; }.booking-footer span:nth-child(2) { order: 3; } }

.therapists-page-hero {
  min-height: 560px; padding: clamp(80px, 9vw, 140px) clamp(24px, 7vw, 112px);
  background: var(--cream);
}
.therapists-page-hero-inner {
  width: 100%;
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(60px, 7vw, 110px); align-items: end;
}
.therapists-page-hero h1 { margin: 0; font-size: clamp(58px, 5.3vw, 82px); line-height: .96; }
.therapists-page-hero-inner > p { max-width: 560px; margin: 0 0 10px; color: #59635d; font-size: 18px; line-height: 1.75; }
.therapist-directory { padding: 0 clamp(24px, 7vw, 112px); background: var(--paper); }
.profile-section {
  scroll-margin-top: 24px; padding: 120px 0; display: grid; grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 150px); align-items: start; border-bottom: 1px solid var(--line);
}
.profile-section-reverse { grid-template-columns: minmax(280px, 340px) minmax(0, 1fr); }
.profile-section-reverse .profile-photo, .profile-section-reverse .profile-copy { order: initial; }
.profile-photo { position: sticky; top: 30px; width: 100%; max-width: 340px; min-height: 0; aspect-ratio: 4 / 5; overflow: hidden; background: #d8cfc0; }
.profile-photo img { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: cover; }
.profile-section:first-child .profile-photo img { object-position: 50% 40%; }
.profile-section:nth-child(2) .profile-photo img { object-position: 50% 38%; }
.profile-section:nth-child(3) .profile-photo img { object-position: 50% 35%; }
.profile-copy { width: 100%; padding-top: 22px; }
.profile-copy h2 { margin: 0; font-size: clamp(54px, 5.4vw, 84px); line-height: .94; }
.profile-copy > p:not(.eyebrow):not(.profile-intro) { max-width: 690px; margin: 22px 0 0; color: #59635d; font-size: 15px; line-height: 1.8; }
.profile-copy .profile-intro { max-width: 680px; margin: 26px 0 34px; font-family: "Newsreader", serif; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.2; }
.profile-specialties { margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.profile-specialties h3 { margin: 0 0 18px; font-family: "DM Sans", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.profile-specialties ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.profile-specialties li { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); font-size: 11px; font-weight: 500; }
.profile-review { width: 100%; margin: 38px 0 0; padding: 26px 30px; background: #e8e0d4; font-family: "Newsreader", serif; font-size: clamp(24px, 2.3vw, 34px); line-height: 1.25; }
.profile-review cite { margin-top: 14px; display: block; font-family: "DM Sans", sans-serif; font-size: 9px; font-style: normal; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.profile-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.therapist-guidance { padding: 100px clamp(24px, 7vw, 112px); display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 9vw, 140px); align-items: end; background: var(--clay); color: #fffaf2; }
.therapist-guidance h2 { max-width: 720px; margin: 0; font-size: clamp(50px, 5.5vw, 82px); line-height: .95; }
.therapist-guidance > div:last-child > p { max-width: 540px; margin: 0 0 28px; font-size: 15px; line-height: 1.75; }

@media (min-width: 1200px) {
  .therapists-page-hero-inner { max-width: 1250px; margin-inline: auto; }
  .profile-section { max-width: 1250px; margin-inline: auto; }
  .profile-section, .profile-section-reverse { grid-template-columns: minmax(280px, 340px) minmax(0, 1fr); gap: 80px; }
  .therapists-inner { max-width: 1200px; margin-inline: auto; }
}

.gift-page-hero {
  min-height: 700px; padding: clamp(72px, 8vw, 120px) clamp(24px, 7vw, 112px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr); gap: clamp(50px, 9vw, 150px); align-items: center;
  overflow: hidden;
}
.gift-page-copy h1 { margin: 0; font-size: clamp(58px, 6.3vw, 94px); line-height: .92; }
.gift-page-copy > p:not(.eyebrow) { max-width: 570px; margin: 30px 0; color: #59635d; font-size: 18px; line-height: 1.7; }
.gift-page-actions { display: flex; align-items: center; gap: 22px; }
.gift-page-actions small { color: #68716c; font-size: 11px; }
.gift-card-visual { min-height: 430px; display: grid; place-items: center; position: relative; }
.gift-card-visual::before { content: ""; width: 470px; max-width: 100%; aspect-ratio: 1; position: absolute; border-radius: 50%; background: var(--sage); }
.gift-card-mockup {
  width: min(480px, 94%); aspect-ratio: 1.58; position: relative; z-index: 1; padding: clamp(24px, 4vw, 42px);
  display: flex; flex-direction: column; justify-content: space-between; color: #fffaf2;
  background: var(--deep-sage); border-radius: 7px; box-shadow: 0 35px 75px rgba(37,46,41,.28); transform: rotate(-4deg);
}
.gift-card-brand { display: flex; align-items: center; gap: 10px; }
.gift-card-brand img { width: 46px; height: 46px; object-fit: contain; filter: brightness(0) invert(1); }
.gift-card-brand strong, .gift-card-brand small { display: block; }
.gift-card-brand strong { font-family: "Newsreader", serif; font-size: 17px; font-weight: 400; }
.gift-card-brand small { margin-top: 2px; font-size: 7px; letter-spacing: .2em; text-transform: uppercase; }
.gift-card-star { position: absolute; right: 38px; top: 34px; color: var(--clay); font-size: 38px; }
.gift-card-mockup > div:last-child small, .gift-card-mockup > div:last-child strong { display: block; }
.gift-card-mockup > div:last-child small { margin-bottom: 8px; opacity: .6; font-size: 8px; letter-spacing: .18em; }
.gift-card-mockup > div:last-child strong { font-family: "Newsreader", serif; font-size: clamp(24px, 3vw, 38px); font-weight: 400; }
.gift-amounts { padding: 110px clamp(24px, 5vw, 84px) 70px; background: var(--cream); }
.gift-amounts-heading { margin-bottom: 54px; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 8vw, 130px); align-items: end; }
.gift-amounts-heading h2 { margin: 0; font-size: clamp(48px, 5.3vw, 78px); line-height: .96; }
.gift-amounts-heading > p { max-width: 500px; margin: 0 0 5px; color: #5c6660; font-size: 16px; line-height: 1.75; }
.gift-amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gift-amount-card { min-height: 285px; padding: 26px; display: flex; flex-direction: column; background: #eee4d6; border-top: 4px solid var(--deep-sage); transition: transform .2s, box-shadow .2s, background .2s; }
.gift-amount-card:nth-child(even) { background: #e3e9de; }
.gift-amount-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(40,48,44,.13); }
.gift-amount-card:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }
.gift-amount-grid small { font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.gift-amount-grid strong { margin: auto 0 16px; font-family: "Newsreader", serif; font-size: clamp(46px, 4.7vw, 70px); font-weight: 400; line-height: .9; }
.gift-session { min-height: 38px; padding-top: 13px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; line-height: 1.45; }
.gift-tile-link { margin-top: 17px; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 600; line-height: 1.4; }
.gift-tile-link > span { flex: 0 0 auto; font-size: 16px; }
.gift-amount-action { padding: 30px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.gift-amount-action p { margin: 0; color: #5c6660; font-size: 13px; line-height: 1.6; }
.gift-benefits { padding: 0 clamp(24px, 5vw, 84px) 110px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; background: var(--cream); }
.gift-benefits article { min-height: 300px; padding: 30px; display: flex; flex-direction: column; background: #eee4d6; }
.gift-benefits article:nth-child(2) { background: var(--sage); }
.gift-benefits article:nth-child(3) { background: var(--clay); color: #fffaf2; }
.gift-benefits article > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; }
.gift-benefits h2 { margin: auto 0 12px; font-size: clamp(36px, 3.5vw, 54px); line-height: 1; }
.gift-benefits p { min-height: 48px; margin: 0; font-size: 14px; line-height: 1.65; opacity: .8; }
.gift-how { padding: 120px clamp(24px, 7vw, 112px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 150px); background: var(--cream); }
.gift-how-heading h2 { margin: 0; font-size: clamp(48px, 5.3vw, 78px); line-height: .96; }
.gift-how ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.gift-how li { padding: 27px 0; display: grid; grid-template-columns: 38px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.gift-how li > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 10px; }
.gift-how strong { display: block; font-family: "Newsreader", serif; font-size: 25px; font-weight: 400; }
.gift-how li p { margin: 8px 0 0; color: #5c6660; font-size: 14px; line-height: 1.65; }
.gift-purchase { padding: 120px 24px; color: #fffaf2; background: var(--clay); text-align: center; }
.gift-purchase h2 { max-width: 900px; margin: 0 auto; font-size: clamp(58px, 7vw, 102px); line-height: .9; }
.gift-purchase > p:not(.eyebrow) { max-width: 560px; margin: 28px auto; font-size: 16px; line-height: 1.7; }
.booking-page-hero {
  min-height: 600px; padding: clamp(72px, 8vw, 112px) clamp(24px, 7vw, 112px);
}
.booking-page-hero-inner {
  width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr); gap: clamp(50px, 6vw, 88px); align-items: center;
}
.booking-page-copy h1 { margin: 0; font-size: clamp(58px, 5.4vw, 82px); line-height: .93; }
.booking-page-copy > p:not(.eyebrow) { max-width: 510px; margin: 30px 0; color: #59635d; font-size: 18px; line-height: 1.7; }
.booking-rate-panel { padding: 38px; color: #fffaf2; background: var(--deep-sage); box-shadow: 0 30px 70px rgba(37,46,41,.18); }
.booking-rate-panel .eyebrow { margin-bottom: 30px; }
.booking-rate-panel > div { min-height: 72px; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.35); }
.booking-rate-panel > div:last-of-type { border-bottom: 1px solid rgba(255,255,255,.35); }
.booking-rate-panel span { font-size: 13px; font-weight: 500; }
.booking-rate-panel strong { font-family: "Newsreader", serif; font-size: 32px; font-weight: 400; }
.booking-rate-panel > small { display: block; margin-top: 24px; opacity: .68; font-size: 11px; line-height: 1.6; }
.schedule-section { padding: 110px clamp(24px, 5vw, 84px); background: var(--cream); scroll-margin-top: 24px; }
.schedule-inner { width: 100%; margin: 0 auto; }
.schedule-heading { margin-bottom: 50px; display: grid; grid-template-columns: 1fr .75fr; gap: clamp(40px, 9vw, 140px); align-items: end; }
.schedule-heading h2 { margin: 0; font-size: clamp(50px, 5.5vw, 82px); line-height: .95; }
.schedule-heading > div:last-child > p { margin: 0 0 18px; color: #5c6660; font-size: 15px; line-height: 1.7; }
.schedule-heading a { padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 600; }
.schedule-heading a span { margin-left: 10px; }
.schedule-frame-shell { width: 100%; max-width: 900px; min-height: 600px; margin: 0 auto; padding: clamp(8px, 2vw, 22px); background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 65px rgba(40,48,44,.1); }
.schedule-frame-shell iframe { width: 100%; min-height: 600px; display: block; border: 0; background: #fff; }
.booking-help { padding: 0 clamp(24px, 5vw, 84px) 110px; background: var(--cream); }
.booking-help-inner { width: 100%; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.booking-help article { min-height: 330px; padding: 30px; display: flex; flex-direction: column; background: #eee4d6; }
.booking-help article:nth-child(2) { background: var(--sage); }
.booking-help article:nth-child(3) { color: #fffaf2; background: var(--clay); }
.booking-help article > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; }
.booking-help h2 { margin: auto 0 16px; font-size: clamp(32px, 3vw, 45px); line-height: 1; }
.booking-help p { min-height: 90px; margin: 0; font-size: 14px; line-height: 1.7; opacity: .82; }
.booking-help p a { border-bottom: 1px solid currentColor; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-header-book {
    margin-left: auto; margin-right: 10px; padding: 11px 15px; display: inline-flex; align-items: center; gap: 8px;
    border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600;
  }
  .mobile-menu { display: block; }
  .mobile-menu summary {
    min-width: 88px; min-height: 44px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border: 1px solid var(--line); border-radius: 999px; cursor: pointer; list-style: none; font-size: 12px; font-weight: 600;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .menu-icon { position: relative; width: 17px; height: 11px; border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; }
  .menu-icon::after { content: ""; position: absolute; left: 0; right: 0; top: 4px; border-top: 1.5px solid currentColor; }
  .mobile-menu[open] .menu-icon { height: 17px; border: 0; }
  .mobile-menu[open] .menu-icon::before,
  .mobile-menu[open] .menu-icon::after { content: ""; position: absolute; left: 0; right: 0; top: 8px; border-top: 1.5px solid currentColor; transform: rotate(45deg); }
  .mobile-menu[open] .menu-icon::after { transform: rotate(-45deg); }
  .mobile-menu nav {
    position: absolute; top: 100%; left: 0; right: 0; padding: 18px 24px 26px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(40,48,44,.14);
  }
  .mobile-menu nav > a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
  .mobile-menu nav > a:not(.mobile-menu-primary) { grid-column: 1 / -1; }
  .booking-header .mobile-menu-current {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }
  .mobile-menu nav .mobile-menu-primary {
    min-height: 62px; padding: 16px; display: flex; align-items: center; justify-content: space-between;
    border: 0; border-radius: 8px; background: var(--ink); color: #fff;
  }
  .mobile-menu nav .mobile-menu-gift { background: var(--clay); }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .intro { grid-template-columns: 1fr; }
  .intro > p { margin-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .studio-gallery-heading { grid-template-columns: 1fr; }
  .studio-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .studio-photo { min-height: 230px; }
  .therapist-row { grid-template-columns: 120px 1fr; gap: 24px; }
  .portrait { width: 120px; grid-row: span 2; }
  .therapist-row > p { grid-column: 2; }
  .therapist-row > a { grid-column: 2; }
  .booking-section { grid-template-columns: 1fr; }
  .gift-page-hero { grid-template-columns: 1fr; }
  .gift-card-visual { min-height: 390px; }
  .gift-amounts-heading { grid-template-columns: 1fr; }
  .gift-amount-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-benefits { grid-template-columns: 1fr; }
  .gift-benefits article { min-height: 260px; }
  .gift-how { grid-template-columns: 1fr; }
  .booking-page-hero-inner { grid-template-columns: 1fr; }
  .schedule-heading { grid-template-columns: 1fr; }
  .booking-help-inner { grid-template-columns: 1fr; }
  .booking-help article { min-height: 270px; }
  .booking-copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.27); }
  .visit-card { gap: 48px; }
  .therapists-page-hero-inner, .therapist-guidance { grid-template-columns: 1fr; }
  .profile-section { grid-template-columns: minmax(240px, .65fr) 1fr; gap: 42px; }
  .profile-section-reverse .profile-photo, .profile-section-reverse .profile-copy { order: initial; }
  .profile-photo { position: relative; top: auto; min-height: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > small { grid-column: 2; }
}
@media (min-width: 1200px) {
  .booking-page-hero-inner,
  .schedule-inner,
  .booking-help-inner { max-width: 1250px; }
}
@media (min-width: 1500px) {
  body:not(.has-scrolled) .site-header .brand-logo { width: 58px; height: 58px; }
  body:not(.has-scrolled) .site-header .brand strong { font-size: 22px; }
  body:not(.has-scrolled) .site-header .brand small { font-size: 10px; }
}
@media (max-width: 560px) {
  .site-header { height: 76px; }
  .has-scrolled .site-header { height: 64px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand strong { font-size: 17px; }
  .nav-cta { padding: 11px 14px; }
  .hero { min-height: auto; padding-top: 52px; }
  h1 { font-size: 52px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-proof { gap: 8px; }
  .hero-proof strong { font-size: 24px; }
  .hero-visual { min-height: 440px; }
  .image-placeholder { border-radius: 160px 160px 8px 8px; }
  .location-card { right: -8px; }
  .intro { padding-top: 80px; }
  .studio-gallery { padding-top: 82px; padding-bottom: 82px; }
  .studio-gallery-grid { grid-template-columns: 1fr 1fr; }
  .studio-photo:first-child { min-height: 280px; grid-column: 1 / -1; }
  .studio-photo { min-height: 160px; }
  .therapists { padding-top: 80px; }
  .section-heading { margin-bottom: 32px; }
  .therapist-row { grid-template-columns: 82px 1fr; gap: 18px; }
  .portrait { width: 82px; }
  .portrait::before { width: 40px; height: 40px; top: 18px; }
  .portrait::after { width: 74px; height: 65px; }
  .therapist-name h3 { font-size: 36px; }
  .therapist-row > p, .therapist-row > a { grid-column: 1 / -1; }
  .testimonial { padding-top: 82px; padding-bottom: 82px; }
  .testimonial-stage { min-height: 330px; }
  .testimonial blockquote { font-size: 46px; }
  .testimonial-controls { margin-top: 38px; gap: 20px; }
  .testimonial-dots { display: none; }
  .testimonial-count { display: inline-block; }
  .booking-copy, .visit-card { padding: 76px 24px; }
  .gift-strip { align-items: flex-start; flex-direction: column; gap: 30px; }
  .gift-icon { width: 54px; height: 54px; }
  .gift-strip > a { width: 100%; }
  footer { grid-template-columns: 1fr; padding-bottom: 105px; }
  footer > p, footer > div, footer > small { grid-column: 1; }
  footer > div { flex-wrap: wrap; }
  .mobile-book {
    min-height: 50px; display: flex; position: fixed; z-index: 20; left: 22px; right: 22px; bottom: 12px;
    justify-content: space-between; align-items: center; padding: 13px 18px;
    background: var(--ink); color: #fff; border-radius: 999px; box-shadow: 0 12px 32px rgba(26,32,29,.3);
    font-size: 12px; font-weight: 600;
  }
  .mobile-book[data-contextual-mobile-book] {
    opacity: 0; pointer-events: none; transform: translateY(calc(100% + 24px));
    transition: opacity .2s ease, transform .25s ease;
  }
  .mobile-book[data-contextual-mobile-book].is-visible {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
  .gift-page-hero { padding-top: 54px; }
  .gift-page-copy h1 { font-size: 50px; }
  .gift-page-actions { align-items: flex-start; flex-direction: column; }
  .gift-card-visual { min-height: 310px; }
  .gift-card-mockup { width: 100%; }
  .gift-amounts { padding-top: 82px; }
  .gift-amount-grid { grid-template-columns: 1fr; }
  .gift-amount-card { min-height: 235px; }
  .gift-amount-action { align-items: flex-start; flex-direction: column; }
  .gift-amount-action .button { width: 100%; justify-content: space-between; }
  .gift-how { padding-top: 82px; padding-bottom: 82px; }
  .booking-page-hero { padding-top: 54px; }
  .booking-page-copy h1 { font-size: 50px; }
  .booking-rate-panel { padding: 28px; }
  .schedule-section { padding: 82px 12px; }
  .schedule-heading { padding: 0 12px; }
  .schedule-frame-shell { padding: 0; min-height: 600px; box-shadow: none; }
  .schedule-frame-shell iframe { min-height: 600px; }
  .therapists-page-hero { min-height: auto; padding-top: 72px; }
  .therapists-page-hero h1 { font-size: 50px; }
  .therapist-directory { padding: 0 24px; }
  .profile-section { padding: 80px 0; grid-template-columns: 1fr; gap: 34px; }
  .profile-photo { min-height: 0; }
  .profile-copy { padding-top: 0; }
  .profile-copy h2 { font-size: 48px; }
  .profile-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .therapist-guidance { padding-top: 82px; padding-bottom: 82px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Mobile-first alternative booking route */
.mobile-booking-test-page { min-height: 100vh; padding-bottom: 130px; background: #ede8de; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
.mobile-test-header {
  position: sticky; top: 0; z-index: 30; height: 68px; padding: 0 max(16px,calc((100vw - 520px)/2));
  display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line);
  background: rgba(246,241,232,.97); box-shadow: 0 7px 22px rgba(40,48,44,.06);
}
.mobile-test-header .brand { gap: 9px; }.mobile-test-header .brand-logo { width: 42px; height: 42px; }
.mobile-test-header .brand strong { font-size: 17px; }.mobile-test-header .brand small { font-size: 7px; }
.mobile-test-current-link { padding: 9px 0; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 600; }
.mobile-test-shell { width: min(100%,520px); margin: 0 auto; padding: 14px 12px 0; }
.mobile-test-banner { margin-bottom: 12px; padding: 11px 13px; display: grid; gap: 2px; border: 1px solid #dfc5b9; background: #fbf4ee; color: #80503e; }
.mobile-test-banner strong { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-test-banner span { font-size: 9px; line-height: 1.4; }
.mobile-test-booking { position: relative; }
.mobile-test-booking button,.mobile-test-booking input,.mobile-test-booking textarea { touch-action: manipulation; }
.mobile-test-progress { margin-bottom: 12px; padding: 12px 14px; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: #fffdfa; }
.mobile-test-progress > div { position: relative; display: grid; justify-items: center; gap: 5px; color: #9a9f9c; font-size: 8px; }
.mobile-test-progress > div:not(:last-child)::after { content:""; position: absolute; top: 11px; left: calc(50% + 15px); right: calc(-50% + 15px); height: 1px; background: #d8dad7; }
.mobile-test-progress i { width: 23px; height: 23px; display: grid; place-items: center; position: relative; z-index: 1; border: 1px solid #c5c9c6; border-radius: 50%; background: #fffdfa; font-style: normal; }
.mobile-test-progress .is-current { color: var(--ink); font-weight: 600; }.mobile-test-progress .is-current i { border-color: var(--clay); background: var(--clay); color: #fff; }
.mobile-test-progress .is-done { color: var(--deep-sage); }.mobile-test-progress .is-done i { border-color: var(--deep-sage); background: var(--deep-sage); color: #fff; }
.mobile-test-progress .is-done::after { background: var(--deep-sage)!important; }
.mobile-test-error { margin-bottom: 10px; padding: 12px 14px; border: 1px solid #deb6a6; background: #f8e9e2; color: #864b39; font-size: 10px; line-height: 1.5; }
.mobile-test-error.is-warning { border-color: #d8c48b; background: #fff8df; color: #665629; }
.mobile-test-loading { min-height: 320px; display: grid; place-items: center; border: 1px solid var(--line); background: #fffdfa; color: #748078; font-size: 11px; }
.booking-security-fallback { min-height: 320px; padding: 34px 24px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid var(--line); background: #fffdfa; color: var(--ink); }
.booking-security-fallback[hidden] { display: none !important; }
.booking-security-fallback .eyebrow { margin-bottom: 10px; color: var(--clay); }
.booking-security-fallback h1 { max-width: 410px; margin: 0; font-family: "Newsreader",serif; font-size: clamp(30px,7vw,42px); font-weight: 500; line-height: 1.02; }
.booking-security-fallback > p:not(.eyebrow) { max-width: 440px; margin: 16px 0 22px; color: #5d6861; font-size: 16px; line-height: 1.55; }
.booking-security-fallback > a { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; border-radius: 999px; background: var(--forest); color: #fff; font-size: 16px; font-weight: 600; text-decoration: none; }
.booking-security-fallback > small { margin-top: 15px; color: #69746d; font-size: 14px; }
.booking-static-fallback {
  position: fixed;
  z-index: 35;
  top: 82px;
  left: 12px;
  right: 12px;
  width: min(calc(100% - 24px),496px);
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 48px rgba(40,48,44,.16);
  animation: booking-fallback-reveal 1ms linear 8s forwards;
}
@keyframes booking-fallback-reveal {
  to { visibility: visible; opacity: 1; pointer-events: auto; }
}
.mobile-test-sections { padding-bottom: calc(110px + env(safe-area-inset-bottom)); display: grid; gap: 10px; }
.mobile-test-choice { scroll-margin-top: 80px; border: 1px solid var(--line); background: #fffdfa; box-shadow: 0 8px 24px rgba(43,52,47,.045); }
.mobile-test-choice.is-open { border-color: rgba(67,83,74,.48); }
.mobile-test-choice-header { width: 100%; min-height: 68px; padding: 12px 14px; display: grid; grid-template-columns: 31px 1fr auto; gap: 11px; align-items: center; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.mobile-test-choice-header:disabled { cursor: default; opacity: .5; }
.mobile-test-choice-header > i { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid #b7beba; border-radius: 50%; color: #68716c; font-style: normal; font-size: 10px; }
.mobile-test-choice.is-open .mobile-test-choice-header > i { border-color: var(--deep-sage); background: var(--deep-sage); color: #fff; }
.mobile-test-choice-header > span { display: grid; gap: 3px; }.mobile-test-choice-header small { color: #7b847f; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.mobile-test-choice-header strong { font-family: "Newsreader",serif; font-size: 18px; font-weight: 500; }
.mobile-test-choice-header > b { padding-bottom: 2px; border-bottom: 1px solid currentColor; color: #6d7671; font-size: 9px; font-weight: 600; }
.mobile-test-choice-content { padding: 0 14px 16px; border-top: 1px solid var(--line); animation: mobile-test-open .18s ease-out; }
.mobile-test-choice-content h2,.mobile-test-detail-card h2 { margin: 20px 0 6px; font-size: 31px; line-height: 1; }
.mobile-test-choice-content > p,.mobile-test-detail-card > p:not(.eyebrow):not(.mobile-test-privacy):not(.mobile-test-safe-note) { margin: 0 0 17px; color: #6d7671; font-size: 10px; line-height: 1.55; }
@keyframes mobile-test-open { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:none; } }
.mobile-test-session-options,.mobile-test-therapist-options { display: grid; gap: 7px; }
.mobile-test-session-options > button { min-height: 58px; padding: 11px 13px; display: grid; grid-template-columns: 1fr auto 18px; gap: 11px; align-items: center; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; text-align: left; }
.mobile-test-session-options span { font-family: "Newsreader",serif; font-size: 18px; }.mobile-test-session-options strong { font-family: "Newsreader",serif; font-size: 21px; font-weight: 400; }
.mobile-test-session-options i,.mobile-test-therapist-options button > i { width: 17px; height: 17px; border: 1px solid #aeb5b1; border-radius: 50%; }
.mobile-test-session-options .is-selected,.mobile-test-therapist-options .is-selected { border-color: var(--deep-sage); background: #f0f3ed; box-shadow: inset 3px 0 var(--deep-sage); }
.mobile-test-session-options .is-selected i,.mobile-test-therapist-options .is-selected > i { border: 5px solid var(--deep-sage); }
.mobile-test-session-options button:disabled { opacity: .4; cursor: default; }
.mobile-test-therapist-options > button { min-height: 66px; padding: 9px 12px; display: grid; grid-template-columns: 46px 1fr 18px; gap: 11px; align-items: center; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; text-align: left; }
.mobile-test-therapist-options img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.mobile-test-therapist-options strong { font-family: "Newsreader",serif; font-size: 18px; font-weight: 500; }
.mobile-test-therapist-options .mobile-test-first-available { margin-bottom: 3px; border-style: dashed; }
.mobile-test-first-available img { padding: 5px; object-fit: contain; background: var(--cream); }
.mobile-test-first-available > span { display: grid; gap: 2px; }.mobile-test-first-available small { color: #78817c; font-size: 8px; text-transform: none; letter-spacing: 0; }
.mobile-test-availability-bar { height: 3px; overflow: hidden; background: transparent; }
.mobile-test-availability-bar span { width: 42%; height: 100%; display: block; background: var(--clay); opacity: 0; transform: translateX(-120%); }
.mobile-test-availability-bar.is-active { background: #e1e5df; }
.mobile-test-availability-bar.is-active span { opacity: 1; animation: mobile-test-availability 1.15s ease-in-out infinite; }
@keyframes mobile-test-availability { from { transform: translateX(-120%); } to { transform: translateX(340%); } }
.mobile-test-empty-month { margin: 14px 0 4px; padding: 18px; border: 1px solid #d9d1c4; border-radius: 14px; background: #f8f5ef; color: var(--ink); }
.mobile-test-empty-month strong { display: block; font-family: "Newsreader",serif; font-size: 20px; font-weight: 500; line-height: 1.25; }
.mobile-test-empty-month p { margin: 7px 0 0; color: #66716c; font-size: 11px; line-height: 1.5; }
.mobile-test-empty-month button { margin-top: 12px; min-height: 42px; padding: 0 15px; border: 0; border-radius: 999px; background: var(--deep-sage); color: #fff; font: inherit; font-size: 10px; font-weight: 700; cursor: pointer; }
.mobile-test-empty-month.is-not-open { border-color: #dfcdb9; background: #f3eadf; }
.mobile-test-times-jump { width: 100%; margin: 0 0 9px; padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #c8d2c6; background: #eef3eb; color: var(--ink); cursor: pointer; font: inherit; text-align: left; }
.mobile-test-times-jump > span { display: grid; gap: 2px; }.mobile-test-times-jump strong { font-size: 10px; }.mobile-test-times-jump small { color: #6e7872; font-size: 8px; }.mobile-test-times-jump b { color: var(--deep-sage); font-size: 9px; }
.mobile-test-calendar { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.mobile-test-calendar.is-loading { opacity: .72; }
.mobile-test-calendar-header { min-height: 62px; padding: 8px; display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; border-bottom: 1px solid var(--line); }
.mobile-test-calendar-header > button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.mobile-test-calendar-header > button:last-child { justify-self: end; }.mobile-test-calendar-header > button:disabled { opacity: .25; cursor: default; }
.mobile-test-calendar-header > span { display: grid; justify-items: center; gap: 3px; }.mobile-test-calendar-header strong { font-family: "Newsreader",serif; font-size: 20px; font-weight: 500; }
.mobile-test-calendar-header small { color: #7c8580; font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.mobile-test-calendar-weekdays,.mobile-test-calendar-days { display: grid; grid-template-columns: repeat(7,1fr); }
.mobile-test-calendar-weekdays { padding: 8px 4px 3px; }.mobile-test-calendar-weekdays span { color: #8b928e; font-size: 7px; font-weight: 600; text-align: center; text-transform: uppercase; }
.mobile-test-calendar-days { padding: 2px 4px 6px; gap: 2px; }
.mobile-test-calendar-days > button,.mobile-test-calendar-days > span { min-width: 0; min-height: 44px; border: 0; background: transparent; color: #acb0ad; font: inherit; font-size: 11px; }
.mobile-test-calendar-days > button:disabled { cursor: default; }.mobile-test-calendar-days > button.is-available { border: 1px solid #c8d2c6; background: #eef3eb; color: var(--ink); cursor: pointer; font-weight: 600; }
.mobile-test-calendar-days > button.is-today { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; font-weight: 800; }
.mobile-test-calendar-days > button.is-selected { border-color: var(--deep-sage); background: var(--deep-sage); color: #fff; text-decoration-color: #fff; }
.mobile-test-time-block { margin-top: 13px; scroll-margin: 88px 0 130px; }
.mobile-test-time-heading { margin-bottom: 8px; display: flex; justify-content: space-between; align-items: end; }
.mobile-test-time-heading > span { display: grid; gap: 2px; }.mobile-test-time-heading strong { font-family: "Newsreader",serif; font-size: 20px; font-weight: 500; }.mobile-test-time-heading small { color: #78817c; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.mobile-test-time-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }.mobile-test-time-grid button { min-height: 50px; padding: 8px; display: grid; place-items: center; gap: 2px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; }
.mobile-test-time-grid button strong { font-size: 11px; }.mobile-test-time-grid button small { color: #78817c; font-size: 8px; }.mobile-test-time-grid button.is-selected { border-color: var(--clay); background: var(--clay); color: #fff; }.mobile-test-time-grid button.is-selected small { color: #fff3ec; }
.mobile-test-sticky { position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; padding: 10px max(14px,calc((100vw - 520px)/2)); padding-bottom: calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.15); background: #222b27; box-shadow: 0 -12px 34px rgba(30,38,34,.2); }
.mobile-test-sticky-inner { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; color: #fff; }
.mobile-test-sticky-inner > span { display: grid; gap: 3px; min-width: 0; }.mobile-test-sticky-inner strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.mobile-test-sticky-inner small { color: #cfd8d2; font-size: 9px; }
.mobile-test-sticky button,.mobile-test-phone-form button,.mobile-test-complete button { min-height: 46px; padding: 0 18px; border: 0; border-radius: 999px; background: var(--clay); color: #fff; cursor: pointer; font: inherit; font-size: 10px; font-weight: 600; }
.mobile-test-sticky button { min-width: 112px; min-height: 50px; padding: 0 22px; box-shadow: 0 6px 16px rgba(166,77,55,.32); font-size: 12px; letter-spacing: .02em; }
.mobile-test-sticky button:disabled { background: #59625d; color: #bdc5c0; cursor: default; box-shadow: none; opacity: .72; }
.mobile-test-sticky.is-selection { padding-top: 7px; padding-bottom: calc(7px + env(safe-area-inset-bottom)); }
.mobile-test-sticky.is-selection .mobile-test-sticky-inner { gap: 10px; }
.mobile-test-sticky.is-selection .mobile-test-sticky-inner > span { gap: 1px; }
.mobile-test-sticky.is-selection .mobile-test-sticky-inner strong { font-family: "Newsreader",serif; font-size: 23px; font-weight: 600; line-height: 1.05; }
.mobile-test-sticky.is-selection .mobile-test-sticky-inner small { overflow: hidden; color: #d6ddd8; font-size: 17px; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.mobile-test-detail-card { scroll-margin-top: 80px; padding: 20px 16px; border: 1px solid var(--line); background: #fffdfa; box-shadow: 0 8px 24px rgba(43,52,47,.045); }
.mobile-test-detail-card > .eyebrow { margin-bottom: 9px; color: var(--clay); }
.mobile-test-appointment-summary { margin-bottom: 20px; padding: 13px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; background: #e8eee7; }
.mobile-test-appointment-summary > span { display: grid; gap: 3px; }.mobile-test-appointment-summary strong { font-family: "Newsreader",serif; font-size: 17px; font-weight: 500; }.mobile-test-appointment-summary small { color: #68726d; font-size: 9px; }
.mobile-test-appointment-summary button { padding: 5px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #59635d; cursor: pointer; font: inherit; font-size: 9px; font-weight: 600; }
.mobile-test-phone-form,.mobile-test-details-form { display: grid; gap: 12px; }.mobile-test-phone-form label,.mobile-test-details-form label { display: grid; gap: 6px; color: #4f5953; font-size: 9px; font-weight: 600; }
.mobile-test-phone-form input,.mobile-test-details-form input,.mobile-test-details-form textarea { width: 100%; min-height: 48px; padding: 12px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); font: inherit; font-size: 16px; }
.mobile-test-details-form textarea { min-height: 82px; resize: vertical; }.mobile-test-phone-form input[aria-invalid="true"],.mobile-test-details-form input[aria-invalid="true"],.mobile-test-details-form textarea[aria-invalid="true"] { border-color: #a24033; background: #fff8f6; box-shadow: 0 0 0 2px rgba(162,64,51,.14); }
.mobile-test-details-form label.has-error { scroll-margin-block: 96px 138px; }.mobile-test-details-form label.has-error > span { color: #a24033; }.mobile-test-field-error { color: #a24033!important; font-size: 9px; font-weight: 600; line-height: 1.4; }
.mobile-test-email-suggestion { margin-top: -5px; padding: 11px 12px; display: grid; gap: 5px; border: 1px solid #d8c48b; background: #fff8df; color: #5d512e; scroll-margin-block: 96px 138px; }.mobile-test-email-suggestion strong { font-size: 10px; }.mobile-test-email-suggestion > span { font-size: 8px; line-height: 1.4; }.mobile-test-email-suggestion > div { margin-top: 3px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }.mobile-test-email-suggestion button { min-height: 42px; padding: 7px 9px; border: 1px solid #87794e; background: #fff; color: #4d452e; cursor: pointer; font: inherit; font-size: 9px; font-weight: 600; }.mobile-test-email-suggestion button:first-child { border-color: var(--deep-sage); background: var(--deep-sage); color: #fff; }
.mobile-test-phone-form label > small { color: #a24033; font-size: 9px; line-height: 1.4; }.mobile-test-phone-form button { width: 100%; background: var(--ink); }.mobile-test-phone-form button:disabled { opacity: .5; }
.mobile-test-privacy,.mobile-test-safe-note { margin: 10px 0 0; color: #8b928e; font-size: 8px; line-height: 1.45; text-align: center; }
.mobile-test-welcome { margin-bottom: 16px; padding: 15px; display: flex; align-items: center; gap: 11px; border: 1px solid #cbd8c8; background: #eef4eb; }
.mobile-test-welcome > i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--deep-sage); color: #fff; font-style: normal; }
.mobile-test-welcome > span { display: grid; gap: 3px; }.mobile-test-welcome strong { font-family: "Newsreader",serif; font-size: 20px; font-weight: 500; }.mobile-test-welcome small { color: #68736c; font-size: 9px; }.mobile-test-welcome.is-new { border-color: #e4d6ce; background: #faf4ef; }.mobile-test-welcome.is-new > i { background: var(--clay); }
.mobile-test-details-form label > span small { color: #8a918d; font-weight: 400; }.mobile-test-consent { grid-template-columns: 16px 1fr; align-items: center; gap: 8px!important; font-weight: 400!important; }.mobile-test-consent input { width: 14px; min-height: 14px; height: 14px; margin: 0; padding: 0; accent-color: var(--deep-sage); }.mobile-test-consent.has-error { padding: 9px; border: 1px solid #a24033; background: #fff8f6; }.mobile-test-consent .mobile-test-field-error { display: block; margin-top: 4px; }
.mobile-test-complete { min-height: 560px; padding: 48px 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); background: #fffdfa; text-align: center; }
.mobile-test-complete > span { width: 54px; height: 54px; margin-bottom: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--deep-sage); color: #fff; font-size: 21px; }.mobile-test-complete .eyebrow { margin-bottom: 12px; color: var(--clay); }
.mobile-test-complete h1 { max-width: 340px; font-size: 43px; }.mobile-test-complete > p:not(.eyebrow) { max-width: 330px; margin: 18px 0 24px; color: #66706a; font-size: 11px; line-height: 1.6; }
.mobile-test-complete button { background: var(--ink); }.mobile-test-complete > a { margin-top: 17px; padding: 7px 0; border-bottom: 1px solid currentColor; color: #68716c; font-size: 9px; font-weight: 600; }
@media (min-width: 700px) {
  .mobile-test-shell { padding-top: 24px; }.mobile-test-banner { margin-bottom: 16px; }.mobile-test-choice-content { padding-inline: 18px; padding-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-test-availability-bar.is-active span { width: 100%; animation: none; transform: none; }
}
