/*
 * Final premium UI layer
 * Loaded after styles.css so existing functionality stays intact.
 */

:root {
  --premium-plum: #4a1638;
  --premium-plum-dark: #2b0b20;
  --premium-plum-soft: #6d3458;
  --premium-gold: #c88956;
  --premium-gold-light: #f2c49a;
  --premium-cream: #fffaf7;
  --premium-surface: rgba(255, 255, 255, .9);
  --premium-border: rgba(74, 22, 56, .12);
  --premium-shadow: 0 24px 70px rgba(47, 11, 34, .12);
  --premium-shadow-soft: 0 14px 36px rgba(47, 11, 34, .09);
  --premium-radius-xl: 30px;
  --premium-radius-lg: 22px;
  --premium-radius-md: 16px;
  --container: min(calc(100% - 40px), 1380px);
}

html {
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.public-menu-open, body.customer-menu-open, body.admin-menu-open {
  overflow: hidden;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(200, 137, 86, .46);
  outline-offset: 3px;
}

.skip-link {
  left: 18px;
  top: 18px;
  z-index: 1000;
}

.site-shell {
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 255, 255, .94), transparent 31rem),
    radial-gradient(circle at 90% 12%, rgba(244, 213, 200, .56), transparent 34rem),
    linear-gradient(145deg, #fffaf7, #fff1e9 56%, #f7dcd6);
}

.container {
  width: var(--container);
}

/* Public navigation */
.topbar {
  border-bottom: 1px solid rgba(74, 22, 56, .075);
  background: rgba(255, 251, 248, .9);
  box-shadow: 0 10px 34px rgba(47, 11, 34, .055);
  backdrop-filter: blur(24px) saturate(150%);
}

.nav {
  min-height: 76px;
  gap: 18px;
}

.brand {
  flex: 0 1 auto;
}

.brand-mark {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand-name {
  font-size: 1.02rem;
}

.brand-tagline {
  font-size: .62rem;
  letter-spacing: .11em;
}

.nav-links {
  gap: 2px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 11px;
  font-size: .83rem;
  transition: color .18s ease, background .18s ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover, .nav-links a.active, .nav-links a[aria-current="page"] {
  color: var(--premium-plum);
  background: rgba(74, 22, 56, .07);
}

.nav-links a.active, .nav-links a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgba(74, 22, 56, .06);
}

.open-status {
  padding: 8px 11px;
  border: 1px solid rgba(74, 22, 56, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  white-space: nowrap;
}

.nav-actions .button-small {
  min-height: 42px;
}

/* Buttons and fields */
.button, .button-small {
  isolation: isolate;
}

.button {
  min-height: 54px;
  border-radius: 16px;
}

.button-small {
  min-height: 42px;
}

.button-primary {
  background: linear-gradient(135deg, #4a1638, #672b50);
  box-shadow: 0 15px 30px rgba(74, 22, 56, .2);
}

.button-light {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 22px rgba(47, 11, 34, .04);
}

.button:hover, .button-small:hover {
  transform: translateY(-2px);
}

input, select, textarea {
  min-width: 0;
}

.form-field input, .form-field select, .form-field textarea, .filter-bar input, .filter-bar select {
  border-color: rgba(74, 22, 56, .14);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 20px rgba(47, 11, 34, .025);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .filter-bar input:focus, .filter-bar select:focus {
  border-color: rgba(200, 137, 86, .9);
  box-shadow: 0 0 0 4px rgba(200, 137, 86, .13);
}

/* Home hero */
.hero {
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  min-height: auto;
  gap: clamp(34px, 5vw, 78px);
  padding-block: clamp(44px, 6.5vw, 86px) clamp(58px, 7vw, 96px);
}

.hero.container {
  border-radius: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  line-height: .92;
}

.hero-copy {
  max-width: 610px;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.72;
}

.hero-frame {
  border-radius: 28px;
  transform: none;
}

.hero-frame:hover {
  transform: translateY(-5px);
}

.hero-frame img {
  aspect-ratio: 5 / 4;
}

.hero-badge {
  right: 18px;
  bottom: 18px;
  max-width: 245px;
  border-radius: 17px;
}

.hero-points {
  max-width: 620px;
}

.mobile-booking-strip {
  border-radius: 22px;
}

/* General sections */
.section {
  padding-block: clamp(64px, 7vw, 94px);
}

.section-heading {
  gap: clamp(24px, 4vw, 56px);
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.45rem, 4vw, 4.35rem);
  line-height: .98;
}

.section-copy, .page-intro {
  line-height: 1.7;
}

.special-card, .offer-card, .promise-card, .database-service-card, .therapist-card, .auth-card, .booking-card, .content-card {
  border-color: var(--premium-border);
  box-shadow: var(--premium-shadow-soft);
}

.special-card:hover, .database-service-card:hover, .therapist-card:hover {
  box-shadow: var(--premium-shadow);
}

.special-media img, .database-service-image img, .therapist-card img {
  transition: transform .55s ease;
}

.special-card:hover img, .database-service-card:hover img, .therapist-card:hover img {
  transform: scale(1.035);
}

/* Secondary page heroes */
.page-hero-grid {
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 5vw, 74px);
  padding-block: clamp(46px, 6vw, 82px);
}

.page-title {
  max-width: 760px;
  font-size: clamp(3rem, 5.1vw, 5.4rem);
  line-height: .92;
}

.page-hero-grid .hero-frame {
  min-height: 420px;
}

.page-hero-grid .hero-frame img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.filter-bar {
  position: sticky;
  z-index: 20;
  top: 92px;
  border-color: rgba(74, 22, 56, .1);
  background: rgba(255, 251, 248, .92);
  box-shadow: 0 18px 45px rgba(47, 11, 34, .08);
  backdrop-filter: blur(18px);
}

.service-category-section {
  scroll-margin-top: 170px;
}

.service-category-header h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
}

.database-service-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
}

.database-service-image {
  min-height: 245px;
}

.database-service-image img {
  height: 100%;
  min-height: 245px;
}

.database-service-content {
  padding: 24px;
}

.database-service-content h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
}

.card-actions {
  margin-top: auto;
}

/* Treatment detail */
.service-detail-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(38px, 5.5vw, 78px) clamp(72px, 8vw, 110px);
}

.service-detail-image {
  position: sticky;
  top: 102px;
  min-height: 620px;
  border-radius: 30px;
  box-shadow: var(--premium-shadow);
}

.service-detail-image img {
  min-height: 620px;
  object-fit: cover;
}

.service-detail-summary {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--premium-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--premium-shadow-soft);
  backdrop-filter: blur(14px);
}

.service-detail-summary .page-title {
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
}

.service-detail-summary .page-intro {
  margin-top: 20px;
}

.service-booking-panel {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 245, 239, .94), rgba(255, 255, 255, .98));
}

.service-booking-panel .price-large {
  margin: 0;
}

.service-booking-panel .hero-actions {
  margin-top: 0;
}

.service-booking-panel .button {
  flex: 1 1 210px;
}

.service-detail-content {
  margin-top: 22px;
}

.detail-section {
  padding: 22px 0;
}

.detail-section + .detail-section {
  border-top: 1px solid rgba(74, 22, 56, .08);
}

.detail-section h2 {
  margin-top: 0;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-list li {
  border: 1px solid rgba(74, 22, 56, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .68);
}

.warning-panel {
  border-radius: 18px;
}

/* Authentication and booking */
.auth-shell {
  min-height: calc(100vh - 76px);
  padding-block: clamp(42px, 6vw, 82px);
}

.auth-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--premium-shadow);
}

.auth-card h1 {
  font-size: clamp(2.45rem, 4.5vw, 4rem);
  line-height: .98;
}

.booking-form {
  gap: 16px;
}

.form-field label {
  letter-spacing: .01em;
}

.form-help {
  line-height: 1.45;
}

.auth-progress span {
  min-width: 0;
}

.otp-code-input {
  letter-spacing: .34em;
}

/* Customer area */
.customer-sidebar {
  width: 278px;
  padding: 22px 18px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.11), transparent 18rem),
    linear-gradient(180deg, #3a102d, #260718);
}

.customer-app-workspace {
  margin-left: 278px;
}

.customer-sidebar-nav a {
  min-height: 48px;
}

.customer-main-content {
  padding-top: 38px;
}

.customer-mobilebar, .public-admin-mobilebar {
  box-shadow: 0 8px 26px rgba(47, 11, 34, .08);
}

/* Floating actions */
.floating-contact {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  box-shadow: 0 20px 46px rgba(47, 11, 34, .24);
}

/* Footer */
.footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.08), transparent 20rem),
    linear-gradient(135deg, #351024, #220716);
}

.footer-grid {
  gap: clamp(32px, 5vw, 78px);
}

/* Admin preview on public pages */
.public-admin-sidebar {
  width: 278px;
  padding: 20px 16px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.1), transparent 18rem),
    linear-gradient(180deg, #3a102d, #260718);
}

.public-admin-workspace {
  width: calc(100% - 278px);
  margin-left: 278px;
}

.public-admin-nav a, .public-admin-footer a {
  min-height: 44px;
}

.public-admin-preview-context {
  background: rgba(255,255,255,.08);
}

/* Broken-image protection */
img.is-image-fallback {
  object-position: center;
}

/* Tablet */
@media (max-width: 1180px) {
  :root {
    --container: min(calc(100% - 32px), 1380px);
  }

  .nav-links {
    position: fixed;
    z-index: 150;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    padding: 13px;
    border: 1px solid rgba(74, 22, 56, .12);
    border-radius: 20px;
    background: rgba(255, 251, 248, .98);
    box-shadow: 0 24px 70px rgba(47, 11, 34, .2);
    backdrop-filter: blur(24px);
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(74, 22, 56, .07);
    background: rgba(255, 255, 255, .68);
  }

  .menu-toggle {
    display: grid;
  }

  .open-status {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 6vw, 5.25rem);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(350px, 1.05fr);
  }

  .service-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  }

  .service-detail-image, .service-detail-image img {
    min-height: 540px;
  }

  .public-admin-workspace {
    width: 100%;
    margin-left: 0;
  }
}

/* Mobile and compact tablet */
@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 24px), 1380px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .nav {
    min-height: 68px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-actions > .button-small {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    top: 75px;
    right: 12px;
    left: 12px;
  }

  .nav-links.open {
    grid-template-columns: 1fr;
  }

  .hero, .page-hero-grid, .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-block: 34px 66px;
  }

  .hero > div:first-child {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero h1 {
    max-width: 580px;
    font-size: clamp(3.05rem, 12vw, 4.8rem);
  }

  .hero-copy {
    margin-top: 20px;
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
  }

  .hero-badge {
    right: 12px;
    bottom: 12px;
    max-width: min(250px, calc(100% - 24px));
  }

  .page-hero-grid {
    gap: 28px;
    padding-block: 36px 52px;
  }

  .page-title {
    font-size: clamp(2.85rem, 11vw, 4.7rem);
  }

  .page-hero-grid .hero-frame, .page-hero-grid .hero-frame img {
    min-height: 360px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-bar {
    top: 76px;
  }

  .service-detail-grid {
    padding-top: 24px;
  }

  .service-detail-image {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .service-detail-image img {
    min-height: 420px;
  }

  .service-detail-summary {
    padding: 24px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .customer-app-workspace {
    margin-left: 0;
  }

  .customer-main-content {
    padding: 22px 12px 96px;
  }

  .floating-contact {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(calc(100% - 18px), 1380px);
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-name {
    max-width: 180px;
    font-size: .95rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.05rem);
  }

  .eyebrow {
    letter-spacing: .16em;
  }

  .hero-actions, .service-booking-panel .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button, .hero-actions .button-small, .service-booking-panel .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-frame, .service-detail-image, .service-detail-summary, .auth-card {
    border-radius: 22px;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -22px 12px 0;
  }

  .page-title, .service-detail-summary .page-title {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .page-hero-grid .hero-frame, .page-hero-grid .hero-frame img {
    min-height: 280px;
  }

  .database-service-image, .database-service-image img {
    min-height: 215px;
  }

  .database-service-content {
    padding: 20px;
  }

  .service-detail-image, .service-detail-image img {
    min-height: 330px;
  }

  .service-detail-summary {
    padding: 20px;
  }

  .auth-progress {
    grid-template-columns: 1fr;
  }

  .auth-progress span {
    min-height: 38px;
  }

  .floating-contact a:not(:first-child) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Final mobile usability corrections found during screenshot review */
.service-detail-image {
  height: clamp(520px, 70vh, 760px);
  min-height: 0;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

@media (max-width: 820px) {
  .mobile-booking-strip {
    order: 3;
  }

  .service-detail-image {
    height: 300px;
    min-height: 300px;
  }

  .service-detail-image img {
    height: 300px;
    min-height: 300px;
  }

  .auth-progress span {
    justify-content: flex-start;
    padding: 8px 10px;
    font-size: .7rem;
  }

  .auth-progress b {
    flex: 0 0 25px;
    font-size: .75rem;
  }

  .home-page .quick-actions, .services-page .quick-actions, .auth-page .quick-actions {
    display: none;
  }
}

@media (max-width: 560px) {
  .auth-progress {
    gap: 7px;
  }

  .auth-progress span {
    min-height: 44px;
  }
}


.page-hero-grid {
  max-width: 1280px;
}

.service-category-section {
  margin-bottom: 52px;
}

.service-category-header {
  margin-bottom: 18px;
}

.service-category-header h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.85rem);
}

.service-card-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.database-service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(47, 11, 34, .075);
}

.database-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(47, 11, 34, .12);
}

.database-service-image {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.database-service-image img {
  min-height: 0;
}

.database-service-content {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 17px;
}

.database-service-content .section-label {
  margin-bottom: 7px;
  font-size: .64rem;
}

.database-service-content h3 {
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
  line-height: 1.16;
}

.database-service-content p {
  min-height: 0;
  margin: 8px 0 14px;
  font-size: .83rem;
  line-height: 1.52;
}

.database-service-price {
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  font-size: .76rem;
}





.database-service-card .button-small {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .73rem;
}

.database-service-card .card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: auto;
}





















.service-detail-grid {
  width: min(100%, 1180px);
  margin-inline: auto;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 54px);
}

.service-detail-image, .service-detail-image img {
  min-height: 0;
  max-height: 570px;
}

.service-detail-image img {
  aspect-ratio: 4 / 5;
}

.service-detail-summary {
  padding: clamp(20px, 2.5vw, 30px);
  border-radius: 22px;
}

.service-detail-summary .page-title {
  font-size: clamp(2.35rem, 4vw, 4.15rem);
}

.detail-section {
  padding: 17px 0;
}

.detail-section h2 {
  font-size: 1.35rem;
}

.auth-shell {
  min-height: calc(100vh - 76px);
  align-items: center;
}

.auth-card {
  width: min(100%, 620px);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
}

.auth-card-otp {
  width: min(100%, 760px);
}

.auth-card h1 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.auth-security-note {
  margin-top: 18px;
  border-radius: 13px;
}

.otp-code-input {
  min-height: 58px;
  font-size: 1.35rem;
  text-align: center;
}

@media (max-width: 1180px) {
  .service-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-image {
    position: relative;
    top: auto;
    max-width: 620px;
  }

  .service-detail-image img {
    max-height: 520px;
  }
}

@media (max-width: 560px) {
  .service-card-list {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .database-service-card {
    display: grid;
    grid-template-columns: minmax(116px, .72fr) minmax(0, 1.28fr);
    border-radius: 16px;
  }

  .database-service-image {
    height: 100%;
    min-height: 158px;
    aspect-ratio: auto;
  }

  .database-service-content {
    padding: 14px;
  }

  .database-service-content h3 {
    font-size: 1.15rem;
  }

  .database-service-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .database-service-card .card-actions {
    grid-template-columns: 1fr;
  }

  .database-service-card .button-small:first-child {
    display: none;
  }

  

  

  .service-detail-image img {
    max-height: 390px;
    aspect-ratio: 4 / 3;
  }

  .service-detail-summary .page-title {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }
}

.button.is-loading, .button-small.is-loading {
  position: relative;
  padding-left: 44px;
  cursor: wait;
  opacity: .82;
}

.button.is-loading::before, .button-small.is-loading::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: formSubmitSpin .7s linear infinite;
}

@keyframes formSubmitSpin {
  to { transform: rotate(360deg); }
}


/* Final compact catalogue, detail and accessibility refinements */
.skip-link {
  top: -120px !important;
  transform: none !important;
}

.skip-link:focus, .skip-link:focus-visible {
  top: 12px !important;
}

.services-hero-compact {
  min-height: 0;
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
  gap: clamp(28px, 4vw, 54px);
}

.services-hero-compact {
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
}

.services-hero-compact .page-title {
  max-width: 9.7ch;
  font-size: clamp(3rem, 5.1vw, 5.05rem);
  line-height: .94;
}

.services-hero-compact .page-intro {
  max-width: 620px;
  margin-top: 15px;
  font-size: .98rem;
  line-height: 1.68;
}

.services-hero-compact .hero-actions {
  margin-top: 20px;
}

.services-hero-compact .hero-frame {
  border-radius: 24px;
}

.services-hero-compact .hero-frame img {
  width: 100%;
  height: clamp(300px, 29vw, 410px);
  object-fit: cover;
}

.catalog-section-compact {
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(56px, 6vw, 82px);
}

.catalog-section-compact .filter-bar, .catalog-section-compact .catalog-filter {
  margin-bottom: 24px;
}

.catalog-section-compact .service-category-section {
  margin-top: 31px;
}

.catalog-section-compact .service-category-header {
  margin-bottom: 15px;
}

.catalog-section-compact .service-category-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}











@media (max-width: 980px) {
  .services-hero-compact {
    grid-template-columns: 1fr 1fr;
  }

  .services-hero-compact .page-title {
    font-size: clamp(2.8rem, 6vw, 4.25rem);
  }
}

@media (max-width: 760px) {
  .services-hero-compact {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 28px;
    gap: 24px;
  }

  .services-hero-compact .page-title {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .services-hero-compact .hero-frame img {
    height: clamp(220px, 66vw, 315px);
  }

  .catalog-section-compact {
    padding-top: 24px;
  }

  .catalog-section-compact .filter-bar, .catalog-section-compact .catalog-filter {
    margin-bottom: 18px;
  }

  

  

  

  
}

@media (max-width: 560px) {
  .services-hero-compact .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .services-hero-compact .hero-actions .button {
    width: 100%;
  }

  .catalog-section-compact .service-category-section {
    margin-top: 23px;
  }

  .catalog-section-compact .service-category-header {
    display: block;
  }

  .catalog-section-compact .service-category-header > p {
    margin-top: 6px;
    font-size: .82rem;
  }

  

  

  
}


@media (max-width: 900px) {
  

  
}

/* Compact treatment preview and stronger home conversion hero */
.hero-conversion {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, calc(100dvh - 112px), 680px);
  margin-top: 16px;
  margin-bottom: 16px;
  padding: clamp(28px, 3.8vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, .96), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(244, 183, 178, .34), transparent 26rem),
    linear-gradient(145deg, rgba(255, 250, 247, .98), rgba(255, 232, 221, .9));
  box-shadow: 0 28px 78px rgba(47, 11, 34, .12);
}

.hero-conversion::before, .hero-conversion::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(74, 22, 56, .08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-conversion::before {
  width: 330px;
  height: 330px;
  top: -230px;
  left: 36%;
  box-shadow: 0 0 0 30px rgba(74, 22, 56, .025), 0 0 0 64px rgba(74, 22, 56, .018);
}

.hero-conversion::after {
  width: 260px;
  height: 260px;
  right: -180px;
  bottom: -170px;
  box-shadow: 0 0 0 26px rgba(200, 137, 86, .05), 0 0 0 58px rgba(200, 137, 86, .025);
}

.hero-copy-panel {
  min-width: 0;
}

.hero-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-status-row .eyebrow {
  margin-bottom: 0;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 999px;
  color: var(--premium-plum);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 8px 20px rgba(47, 11, 34, .05);
  font-size: .74rem;
  font-weight: 900;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--premium-gold);
  box-shadow: 0 0 0 5px rgba(200, 137, 86, .14);
}

.hero-conversion h1 {
  max-width: 10.5ch;
  font-size: clamp(3.35rem, 5.35vw, 5.55rem);
}

.hero-conversion .gold-line {
  margin-top: 15px;
}

.hero-conversion .hero-copy {
  max-width: 575px;
  margin-top: 18px;
}

.hero-conversion .hero-actions {
  margin-top: 22px;
}

.hero-booking-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 21px;
}

.hero-booking-path > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(74, 22, 56, .09);
  border-radius: 15px;
  background: rgba(255, 255, 255, .64);
}

.hero-booking-path span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--white);
  background: var(--premium-plum);
  font-size: .67rem;
  font-weight: 950;
}

.hero-booking-path strong {
  min-width: 0;
  color: var(--premium-plum-dark);
  font-size: .76rem;
  line-height: 1.24;
}

.hero-conversion .hero-points {
  margin-top: 18px;
  font-size: .78rem;
}

.hero-conversion .hero-media {
  display: flex;
  align-items: stretch;
  height: clamp(430px, calc(100dvh - 190px), 570px);
}

.hero-conversion .hero-frame {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.hero-conversion .hero-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-position: center;
}

.hero-image-tag {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 999px;
  color: var(--white);
  background: rgba(74, 22, 56, .72);
  box-shadow: 0 12px 28px rgba(47, 11, 34, .18);
  backdrop-filter: blur(12px);
  font-size: .74rem;
  font-weight: 900;
}

.hero-badge-label {
  display: block;
  margin-bottom: 5px;
  color: var(--premium-gold-light) !important;
  font-size: .66rem !important;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.modal-box {
  width: min(1120px, calc(100vw - 24px));
  height: min(748px, calc(100dvh - 24px));
  max-height: calc(100dvh - 24px);
  overflow: hidden;
}

.modal-grid {
  grid-template-columns: minmax(360px, .94fr) minmax(0, 1.06fr);
  align-items: stretch;
  gap: clamp(20px, 2.5vw, 32px);
  height: 100%;
  padding: clamp(26px, 3.2vw, 42px);
}

.modal-picture {
  min-height: 0;
  height: 100%;
  border-radius: 24px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding-right: 2px;
}

.modal-badge {
  align-self: flex-start;
  padding: 7px 10px;
  font-size: .65rem;
}

.modal-title {
  margin-top: 10px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: .94;
}

.modal-price {
  margin-top: 9px;
  font-size: clamp(2.1rem, 3.1vw, 3.1rem);
}

.modal-copy {
  margin-top: 10px;
  font-size: .91rem;
  line-height: 1.52;
}

.fact-list {
  gap: 8px;
  margin-top: 13px;
}

.fact {
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
}

.fact-icon {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  font-size: .86rem;
}

.fact-label {
  font-size: .61rem;
}

.fact-value {
  margin-top: 2px;
  font-size: .86rem;
  line-height: 1.32;
}

.modal-actions {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .82fr) minmax(0, .82fr);
  gap: 8px;
  margin-top: auto;
  padding-top: 13px;
}

.modal-actions .wide {
  grid-column: auto;
}

.modal-actions .button {
  min-height: 46px;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: .78rem;
  white-space: nowrap;
}

@media (max-height: 700px) and (min-width: 900px) {
  .modal-box {
    height: calc(100dvh - 16px);
  }

  .modal-grid {
    padding: 22px 30px;
  }

  .modal-title {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
  }

  .modal-copy {
    font-size: .84rem;
    line-height: 1.42;
  }

  .fact {
    padding-block: 8px;
  }

  .fact-value {
    font-size: .81rem;
  }
}

@media (max-width: 980px) and (min-width: 821px) {
  .hero-conversion {
    grid-template-columns: minmax(0, .95fr) minmax(370px, 1.05fr);
  }

  .hero-booking-path {
    grid-template-columns: 1fr;
  }

  .hero-booking-path > div {
    padding-block: 8px;
  }

  .modal-grid {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 820px) {
  .hero-conversion {
    min-height: 0;
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 24px;
    border-radius: 28px;
  }

  .hero-status-row {
    align-items: flex-start;
  }

  .hero-status-pill {
    margin-top: 3px;
  }

  .hero-conversion .hero-media {
    height: clamp(330px, 78vw, 510px);
  }

  .hero-booking-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .modal {
    padding: 8px;
    align-items: end;
  }

  .modal-box {
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 8px);
    overflow: auto;
    border-radius: 26px 26px 0 0;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 18px;
    padding: 56px 16px 20px;
  }

  .modal-picture {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .modal-actions {
    grid-template-columns: 1fr 1fr;
  }

  .modal-actions .wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .hero-conversion {
    padding: 20px;
  }

  .hero-status-row {
    display: grid;
    justify-content: start;
  }

  .hero-conversion h1 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .hero-booking-path {
    grid-template-columns: 1fr;
  }

  .hero-booking-path > div {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 8px 10px;
  }

  .hero-conversion .hero-media {
    height: clamp(290px, 92vw, 410px);
  }

  .hero-image-tag {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    font-size: .67rem;
  }

  .modal-picture {
    aspect-ratio: 4 / 3;
  }

  .modal-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .modal-actions .wide {
    grid-column: auto;
  }

  .modal-actions .button {
    width: 100%;
  }
}

/* Mobile-first client experience refinement, 26 June 2026 */
.modal[aria-hidden="true"], .lightbox[aria-hidden="true"] {
  display: none;
}

.modal.open, .lightbox.open {
  display: grid;
}

.form-field, .form-field > *, .fact > div, .modal-content, .special-content, .database-service-content {
  min-width: 0;
}

.form-field label, .form-label, .section-label, .card-label, .fact-label, .fact-value, .price-pill, .database-service-price, .status-badge {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.form-field label, .form-label {
  position: static;
  display: block;
  line-height: 1.35;
}

.form-field input, .form-field select, .form-field textarea, .form-control {
  max-width: 100%;
}

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 18px), 1380px);
  }

  .home-page .hero-conversion {
    gap: 18px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 12px 12px 18px;
    border-radius: 24px;
  }

  .home-page .hero-conversion .hero-media {
    order: 1;
    width: 100%;
    height: clamp(230px, 64vw, 310px);
    margin: 0;
  }

  .home-page .hero-conversion .hero-copy-panel {
    order: 2;
    padding: 0 4px;
  }

  .home-page .hero-conversion .mobile-booking-strip {
    display: none;
  }

  .home-page .hero-conversion .hero-frame {
    height: 100%;
    border-radius: 20px;
  }

  .home-page .hero-conversion .hero-frame img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 52% center;
  }

  .home-page .hero-conversion .hero-image-tag {
    top: 10px;
    right: 10px;
    left: 10px;
    width: fit-content;
    max-width: calc(100% - 20px);
    padding: 8px 10px;
    font-size: .64rem;
    line-height: 1.25;
    white-space: normal;
  }

  .home-page .hero-conversion .hero-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
    margin: 0;
    padding: 10px 12px;
    border-radius: 15px;
  }

  .home-page .hero-conversion .hero-badge strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .home-page .hero-conversion .hero-badge > span:last-child {
    margin-top: 3px;
    font-size: .7rem;
  }

  .home-page .hero-conversion .hero-status-row {
    gap: 9px;
    margin-bottom: 8px;
  }

  .home-page .hero-conversion h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.8rem);
    line-height: .94;
  }

  .home-page .hero-conversion .gold-line {
    margin-top: 12px;
    font-size: .7rem;
    letter-spacing: .13em;
  }

  .home-page .hero-conversion .hero-copy {
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.58;
  }

  .home-page .hero-conversion .hero-actions {
    gap: 9px;
    margin-top: 17px;
  }

  .home-page .hero-conversion .hero-actions .button {
    min-height: 50px;
  }

  .home-page .hero-conversion .hero-booking-path {
    gap: 7px;
    margin-top: 15px;
  }

  .home-page .hero-conversion .hero-booking-path > div {
    min-height: 48px;
    padding: 7px 9px;
  }

  .home-page .hero-conversion .hero-points {
    display: none;
  }

  .section {
    padding-block: 44px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 20px;
  }

  .section-label, .card-label {
    line-height: 1.35;
  }

  .section-title {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .special-grid, .service-card-list, .therapist-grid, .offer-grid {
    gap: 13px;
  }

  .special-media {
    max-height: 235px;
  }

  .special-content, .database-service-content, .therapist-card-content {
    padding: 16px;
  }

  .price-pill, .database-service-price {
    right: 9px;
    bottom: 9px;
    padding: 7px 10px;
    font-size: .72rem;
    text-align: center;
  }

  .promise-panel, .location-panel, .marketing-signup, .cta-banner {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .promise-card, .booking-perk, .offer-card {
    padding: 13px;
  }

  .booking-layout, .auth-shell, .auth-shell-wide, .account-layout {
    padding-top: 24px;
    padding-bottom: 82px;
  }

  .booking-card, .auth-card, .account-card, .content-card, .service-detail-summary {
    padding: 18px 14px;
    border-radius: 21px;
  }

  .booking-form, .profile-form, .signup-form {
    gap: 13px;
  }

  .form-field {
    gap: 6px;
  }

  .form-field label, .form-label {
    font-size: .78rem;
  }

  .form-field input, .form-field select, .form-control {
    min-height: 50px;
    padding-inline: 13px;
  }

  .form-field textarea {
    min-height: 102px;
    padding: 12px 13px;
  }

  .checkbox-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
  }

  .checkbox-row input {
    margin-top: 2px;
  }

  .checkbox-row label {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .modal, .lightbox {
    padding: 6px;
  }

  .modal-box {
    max-height: calc(100dvh - 6px);
    border-radius: 24px 24px 0 0;
  }

  .modal-close, .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .modal-grid {
    gap: 14px;
    padding: 52px 12px 16px;
  }

  .modal-picture {
    max-height: 245px;
    aspect-ratio: 4 / 3;
    border-radius: 17px;
  }

  .modal-title {
    margin-top: 8px;
    font-size: clamp(1.9rem, 9.5vw, 2.5rem);
  }

  .modal-price {
    margin-top: 7px;
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .modal-copy {
    margin-top: 8px;
    font-size: .86rem;
    line-height: 1.47;
  }

  .fact-list {
    gap: 7px;
    margin-top: 11px;
  }

  .fact {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 9px 10px;
  }

  .fact-icon {
    width: 34px;
    height: 34px;
  }

  .fact-value {
    font-size: .82rem;
    line-height: 1.3;
  }

  .modal-actions {
    gap: 7px;
    padding-top: 10px;
  }

  .modal-actions .button {
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }

  .footer-grid {
    gap: 20px;
    padding-block: 32px 24px;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(calc(100% - 14px), 1380px);
  }

  .brand-name {
    max-width: 165px;
  }

  .home-page .hero-conversion {
    padding: 9px 9px 15px;
    border-radius: 20px;
  }

  .home-page .hero-conversion .hero-media {
    height: 226px;
  }

  .home-page .hero-conversion .hero-copy-panel {
    padding-inline: 3px;
  }

  .hero-status-pill {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .section {
    padding-block: 38px;
  }

  .special-content, .database-service-content, .therapist-card-content {
    padding: 14px;
  }

  .booking-card, .auth-card, .account-card, .content-card, .service-detail-summary {
    padding: 16px 12px;
  }

  .verified-client-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .verified-client-card > :last-child {
    grid-column: 1 / -1;
  }
}


/* Mobile landing background and fixed public navigation, 27 June 2026 */
:root {
  --public-nav-height: 76px;
}

html, body.layout-public {
  overflow-x: clip;
}

.layout-public .site-shell {
  min-height: 100svh;
  padding-top: var(--public-nav-height);
  overflow-x: clip;
  overflow-y: visible;
}

.layout-public .topbar {
  position: fixed;
  z-index: 2100;
  inset: 0 0 auto 0;
  width: 100%;
  min-height: var(--public-nav-height);
  background: rgba(255, 251, 248, .96);
  box-shadow: 0 10px 32px rgba(47, 11, 34, .1);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.layout-public .topbar .nav {
  min-height: var(--public-nav-height);
}

.home-page .hero.hero-conversion {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, .96), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(244, 183, 178, .34), transparent 26rem),
    linear-gradient(145deg, rgba(255, 250, 247, .98), rgba(255, 232, 221, .9));
}

@media (max-width: 820px) {
  :root {
    --public-nav-height: 68px;
  }

  html {
    scroll-padding-top: calc(var(--public-nav-height) + 12px);
  }

  .layout-public .topbar, .layout-public .topbar .nav {
    min-height: var(--public-nav-height);
  }

  .layout-public .nav-links {
    position: fixed;
    top: var(--public-nav-height);
    max-height: calc(100dvh - var(--public-nav-height) - 12px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .home-page .hero.hero-conversion {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: clamp(620px, calc(100svh - var(--public-nav-height) - 14px), 760px);
    gap: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: clamp(14px, 4vw, 22px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 26px;
    background-image:
      linear-gradient(180deg, rgba(43, 11, 32, .05) 0%, rgba(43, 11, 32, .12) 34%, rgba(43, 11, 32, .62) 100%),
      url("../images/hero.jpg");
    background-repeat: no-repeat;
    background-position: 42% center;
    background-size: cover;
    box-shadow: 0 24px 60px rgba(47, 11, 34, .2);
  }

  .home-page .hero.hero-conversion::before, .home-page .hero.hero-conversion::after {
    content: none;
  }

  .home-page .hero.hero-conversion .hero-media {
    display: none !important;
  }

  .home-page .hero.hero-conversion .hero-copy-panel {
    order: 1;
    width: 100%;
    max-width: 680px;
    margin-top: auto;
    padding: clamp(16px, 4.4vw, 22px);
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 22px;
    background: rgba(255, 250, 247, .92);
    box-shadow: 0 18px 44px rgba(43, 11, 32, .2);
    backdrop-filter: blur(15px) saturate(135%);
    -webkit-backdrop-filter: blur(15px) saturate(135%);
  }

  .home-page .hero.hero-conversion .hero-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-bottom: 8px;
  }

  .home-page .hero.hero-conversion .eyebrow {
    margin: 0;
    font-size: .62rem;
    letter-spacing: .13em;
  }

  .home-page .hero.hero-conversion .eyebrow::before {
    width: 28px;
    height: 28px;
  }

  .home-page .hero.hero-conversion .hero-status-pill {
    padding: 7px 9px;
    font-size: .66rem;
    background: rgba(255, 255, 255, .82);
  }

  .home-page .hero.hero-conversion h1 {
    max-width: 11ch;
    margin-top: 4px;
    font-size: clamp(2.55rem, 11.5vw, 3.65rem);
    line-height: .94;
  }

  .home-page .hero.hero-conversion .gold-line {
    margin-top: 10px;
    font-size: .65rem;
    letter-spacing: .11em;
  }

  .home-page .hero.hero-conversion .hero-copy {
    margin-top: 12px;
    font-size: .88rem;
    line-height: 1.5;
  }

  .home-page .hero.hero-conversion .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
  }

  .home-page .hero.hero-conversion .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 11px;
    white-space: normal;
    text-align: center;
  }

  .home-page .hero.hero-conversion .hero-booking-path, .home-page .hero.hero-conversion .hero-points, .home-page .hero.hero-conversion .mobile-booking-strip {
    display: none;
  }
}

@media (max-width: 430px) {
  .home-page .hero.hero-conversion {
    min-height: clamp(590px, calc(100svh - var(--public-nav-height) - 10px), 720px);
    margin-top: 7px;
    padding: 10px;
    border-radius: 20px;
    background-position: 40% center;
  }

  .home-page .hero.hero-conversion .hero-copy-panel {
    padding: 15px 13px;
    border-radius: 18px;
  }

  .home-page .hero.hero-conversion .hero-status-row {
    align-items: flex-start;
  }

  .home-page .hero.hero-conversion .hero-status-pill {
    flex-shrink: 1;
    max-width: 46%;
    overflow-wrap: anywhere;
  }

  .home-page .hero.hero-conversion h1 {
    font-size: clamp(2.35rem, 11.7vw, 3.15rem);
  }

  .home-page .hero.hero-conversion .hero-copy {
    font-size: .84rem;
  }
}

@media (max-width: 360px) {
  .home-page .hero.hero-conversion .hero-status-row {
    display: grid;
    justify-content: start;
  }

  .home-page .hero.hero-conversion .hero-status-pill {
    max-width: 100%;
  }

  .home-page .hero.hero-conversion .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Full-width home hero background and smart public content layouts */
.home-page .hero.hero-conversion {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 64px);
  min-height: clamp(590px, calc(100dvh - var(--public-nav-height, 82px) - 34px), 720px);
  padding: clamp(24px, 3.3vw, 46px);
  border: 1px solid rgba(255, 255, 255, .52);
  background-image:
    linear-gradient(90deg, rgba(255, 248, 244, .34) 0%, rgba(255, 244, 239, .12) 44%, rgba(43, 11, 32, .08) 100%),
    url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0 30px 80px rgba(47, 11, 34, .2);
}

.home-page .hero.hero-conversion::before, .home-page .hero.hero-conversion::after {
  content: none !important;
}

.home-page .hero.hero-conversion .hero-copy-panel {
  align-self: center;
  width: 100%;
  max-width: 690px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px;
  background: rgba(255, 249, 246, .9);
  box-shadow: 0 24px 60px rgba(43, 11, 32, .19);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.home-page .hero.hero-conversion .hero-media {
  position: relative;
  display: block;
  min-height: 100%;
  height: auto;
}

.home-page .hero.hero-conversion .hero-frame {
  display: none;
}

.home-page .hero.hero-conversion .hero-image-tag {
  top: 0;
  right: 0;
  left: auto;
  max-width: min(100%, 330px);
}

.home-page .hero.hero-conversion .hero-badge {
  right: 0;
  bottom: 0;
  max-width: 285px;
}

.home-page .hero.hero-conversion .sparkle-one {
  top: 54px;
  left: 8px;
}

.home-page .hero.hero-conversion .sparkle-two {
  right: -2px;
  bottom: -4px;
}

.section-heading.section-heading-single {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  max-width: 900px;
}

.builder-text-image.builder-text-only, .builder-text-image.builder-image-only {
  grid-template-columns: minmax(0, 1fr);
}

.builder-text-image.builder-text-only .builder-copy {
  max-width: 920px;
}

.builder-text-image.builder-image-only .builder-image {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.builder-cta.builder-cta-copy-only {
  grid-template-columns: minmax(0, 1fr);
}









.builder-gallery.builder-gallery-count-1 {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.builder-gallery.builder-gallery-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.builder-gallery.builder-gallery-count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .home-page .hero.hero-conversion {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    gap: 22px;
  }

  
}

@media (max-width: 820px) {
  .home-page .hero.hero-conversion {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(600px, calc(100svh - var(--public-nav-height) - 12px), 760px);
    padding: clamp(12px, 4vw, 20px);
    background-image:
      linear-gradient(180deg, rgba(43, 11, 32, .04) 0%, rgba(43, 11, 32, .12) 38%, rgba(43, 11, 32, .6) 100%),
      url("../images/hero.jpg");
    background-position: 42% center;
  }

  .home-page .hero.hero-conversion .hero-media {
    display: none !important;
  }

  .home-page .hero.hero-conversion .hero-copy-panel {
    align-self: stretch;
    max-width: none;
    margin-top: auto;
  }

  .builder-gallery.builder-gallery-count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .builder-gallery.builder-gallery-count-2, .builder-gallery.builder-gallery-count-3 {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }
}

@media (min-width: 361px) and (max-width: 430px) {
  .home-page .hero.hero-conversion .hero-status-pill {
    flex: 0 0 auto;
    max-width: none;
    white-space: nowrap;
  }
}

/* Final layered landing hero and readable image overlays */
.home-page .hero.hero-conversion {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 248, 244, .42) 0%, rgba(255, 244, 239, .16) 45%, rgba(43, 11, 32, .16) 100%),
    url("../images/hero.jpg");
  background-position: center center;
  background-size: cover;
}

.home-page .hero.hero-conversion::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 250, 247, .34), transparent 34%),
    linear-gradient(180deg, rgba(48, 12, 36, .04), rgba(48, 12, 36, .16));
}

.home-page .hero.hero-conversion::after {
  content: "" !important;
  position: absolute;
  top: 7%;
  right: 2.5%;
  width: clamp(240px, 29vw, 430px);
  height: clamp(180px, 31vh, 300px);
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 46% 54% 40% 60% / 48% 42% 58% 52%;
  background-image:
    linear-gradient(145deg, rgba(255, 243, 238, .08), rgba(73, 20, 55, .24)),
    url("../images/facial.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .34;
  filter: saturate(.92) contrast(.96);
  box-shadow: 0 22px 55px rgba(44, 11, 33, .18);
  mix-blend-mode: soft-light;
}

.home-page .hero.hero-conversion > * {
  position: relative;
  z-index: 1;
}

.home-page .hero.hero-conversion .hero-copy-panel {
  background: rgba(255, 249, 246, .91);
  box-shadow: 0 24px 60px rgba(43, 11, 32, .21);
}

@media (max-width: 820px) {
  .home-page .hero.hero-conversion {
    background-image:
      linear-gradient(180deg, rgba(43, 11, 32, .05) 0%, rgba(43, 11, 32, .18) 42%, rgba(43, 11, 32, .68) 100%),
      url("../images/hero.jpg");
    background-position: 42% center;
  }

  .home-page .hero.hero-conversion::before {
    background:
      radial-gradient(circle at 82% 16%, rgba(255, 245, 239, .18), transparent 32%),
      linear-gradient(180deg, rgba(43, 11, 32, .02), rgba(43, 11, 32, .2));
  }

  .home-page .hero.hero-conversion::after {
    top: 5%;
    right: -10%;
    width: 62%;
    height: 28%;
    opacity: .22;
  }
}

@media (max-width: 480px) {
  .home-page .hero.hero-conversion::after {
    right: -18%;
    width: 72%;
    height: 25%;
    opacity: .18;
  }
}

/* Fixed public navigation refinement, 28 June 2026 */
html {
  scroll-padding-top: calc(var(--public-nav-height, 76px) + 14px);
}

body.layout-public {
  --public-nav-height: 76px;
}

.layout-public .site-shell {
  padding-top: var(--public-nav-height) !important;
}

.layout-public .topbar {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 9999 !important;
  width: 100%;
  margin: 0;
  transform: translateZ(0);
  isolation: isolate;
  will-change: transform;
}

.layout-public .topbar .nav {
  width: var(--container);
  margin-inline: auto;
}

.layout-public .nav-links {
  z-index: 10000;
}

@media (max-width: 820px) {
  body.layout-public {
    --public-nav-height: 68px;
  }

  .layout-public .nav-links {
    top: var(--public-nav-height) !important;
    max-height: calc(100dvh - var(--public-nav-height) - 10px);
  }
}

@media print {
  .layout-public .site-shell {
    padding-top: 0 !important;
  }
}

/* Client account choice at the final booking step */
.account-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.account-choice-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(74, 22, 56, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 15px 36px rgba(47, 11, 34, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.account-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 22, 56, .25);
  box-shadow: 0 20px 42px rgba(47, 11, 34, .11);
}

.account-choice-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fff;
  background: var(--plum-800);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.account-choice-card h2 {
  margin: 0 0 10px;
  color: var(--plum-800);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.account-choice-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.account-choice-card .button {
  justify-content: center;
  margin-top: auto;
  text-align: center;
}

.account-choice-help {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 680px) {
  .account-choice-grid {
    grid-template-columns: 1fr;
  }

  .account-choice-card {
    min-height: 0;
    padding: 19px;
  }
}


/* Step-by-step public booking and account forms */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.booking-wizard {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.booking-client-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(74, 22, 56, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}

.booking-client-strip > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.booking-client-strip strong,
.booking-client-strip span,
.booking-client-strip small {
  overflow-wrap: anywhere;
}

.booking-client-strip strong {
  color: var(--plum-800);
}

.booking-client-strip span,
.booking-client-strip small {
  color: var(--muted);
}

.booking-client-strip small {
  font-size: .74rem;
  line-height: 1.45;
}

.booking-wizard-progress,
.mini-form-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(74, 22, 56, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
}

.booking-wizard-progress span,
.mini-form-progress span {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 7px 8px;
  border-radius: 13px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.booking-wizard-progress b,
.mini-form-progress b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(74, 22, 56, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  font-size: .7rem;
}

.booking-wizard-progress em,
.mini-form-progress em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-wizard-progress span.active,
.mini-form-progress span.active {
  color: #fff;
  background: var(--plum-800);
  transform: translateY(-1px);
}

.booking-wizard-progress span.active b,
.mini-form-progress span.active b {
  color: var(--plum-800);
  border-color: transparent;
  background: var(--cream);
}

.booking-wizard-progress span.done,
.mini-form-progress span.done {
  color: var(--plum-800);
  background: rgba(200, 137, 86, .13);
}

.booking-wizard-progress span.done b,
.mini-form-progress span.done b {
  color: #fff;
  border-color: transparent;
  background: var(--gold-500);
}

.booking-wizard-status {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2px;
  color: var(--muted);
  font-size: .78rem;
}

.booking-wizard-status strong,
.mini-form-status {
  color: var(--plum-800);
  font-weight: 950;
}

.booking-wizard-step,
.mini-form-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 16px 38px rgba(47, 11, 34, .055);
}

.booking-wizard-ready .booking-wizard-step[hidden],
.mini-form-wizard-ready .mini-form-step[hidden] {
  display: none !important;
}

.booking-step-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  margin-bottom: 2px;
}

.booking-step-heading .eyebrow {
  margin: 0;
}

.booking-step-heading h2 {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.booking-step-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.booking-wizard-step textarea {
  min-height: 96px;
}

.booking-wizard-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 22, 56, .09);
}

.booking-wizard-nav .button {
  justify-content: center;
  min-width: 150px;
}

.booking-wizard-nav .js-wizard-control,
.booking-wizard-nav .js-mini-wizard-control {
  display: none;
}

.booking-wizard-ready .booking-wizard-nav .js-wizard-control,
.mini-form-wizard-ready .booking-wizard-nav .js-mini-wizard-control {
  display: inline-flex;
}

.booking-review-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(74, 22, 56, .11);
  border-radius: 18px;
  background: rgba(255, 248, 244, .74);
}

.booking-review-card > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.booking-review-card span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.booking-review-card strong {
  color: var(--plum-800);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.booking-review-card .booking-review-total {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(200, 137, 86, .13);
}

.booking-review-total strong {
  font-size: 1.25rem;
}

.mini-form-wizard {
  grid-template-columns: minmax(0, 1fr);
}

.mini-form-progress {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
}

.mini-form-status {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  font-size: .78rem;
}

.mini-form-step {
  padding: 20px;
}

@media (max-width: 760px) {
  .booking-client-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .booking-client-strip .button-small {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .booking-wizard-progress,
  .mini-form-progress {
    gap: 5px;
    padding: 6px;
  }

  .booking-wizard-progress span,
  .mini-form-progress span {
    min-height: 40px;
    padding: 5px;
  }

  .booking-wizard-progress b,
  .mini-form-progress b {
    width: 25px;
    height: 25px;
  }

  .booking-wizard-status {
    display: grid;
    gap: 3px;
  }

  .booking-wizard-step,
  .mini-form-step {
    grid-template-columns: minmax(0, 1fr);
    padding: 17px;
    border-radius: 18px;
  }

  .booking-wizard-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-wizard-nav > span:empty {
    display: none;
  }

  .booking-wizard-nav > span:empty + .button {
    grid-column: 1 / -1;
  }

  .booking-wizard-nav .button {
    width: 100%;
    min-width: 0;
  }

  .booking-review-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-review-card .booking-review-total {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .booking-wizard-progress em,
  .mini-form-progress em {
    display: none;
  }

  .booking-wizard-progress span,
  .mini-form-progress span {
    min-height: 38px;
  }
}

/* Smart booking phase */
.smart-rebook-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(74, 22, 56, .12);
  background: linear-gradient(135deg, rgba(255, 250, 247, .98), rgba(250, 239, 244, .92));
}
.smart-rebook-hero > div { max-width: 760px; }
.smart-rebook-hero h2 { margin: 2px 0 8px; }
.smart-rebook-hero p:last-child { margin-bottom: 0; }
.smart-rebook-hero form { flex: 0 0 auto; }
.booking-smart-helper { margin-bottom: 16px; }
.smart-find-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.smart-find-button { flex: 0 0 auto; }
.smart-find-row .form-help { flex: 1 1 260px; margin: 0; }
.account-two-column { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 22px; align-items: start; }
.booking-form-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.private-offer-card { max-width: 780px; margin-inline: auto; }
.private-offer-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0; }
.private-offer-details > div { padding: 14px; border: 1px solid rgba(74, 22, 56, .1); border-radius: 14px; background: #fffaf7; }
.private-offer-details span { display: block; margin-bottom: 4px; color: var(--muted, #6d5a66); font-size: .78rem; }
.private-offer-details strong { display: block; }
.package-smart-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.package-smart-actions form { margin: 0; }
.smart-package-card { display: flex; flex-direction: column; }
.smart-package-card .package-smart-actions { margin-top: auto; padding-top: 14px; }
@media (max-width: 820px) {
  .smart-rebook-hero { align-items: stretch; flex-direction: column; }
  .smart-rebook-hero form .button { width: 100%; }
  .account-two-column { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .private-offer-details,
  .booking-form-compact { grid-template-columns: minmax(0, 1fr); }
  .smart-find-row { display: grid; }
  .smart-find-button { width: 100%; }
}
