@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/sora-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/sora-500.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/sora-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/sora-700.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 800 950;
  src: url("../fonts/sora-800.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700 800;
  src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
}

:root {
  --ink: #0a0610;
  --ink-soft: #21102f;
  --paper: #fcf8ff;
  --white: #ffffff;
  --violet: #7c3cff;
  --violet-deep: #35105e;
  --acid: #f0dcff;
  --ice: #e4dcff;
  --coral: #f0b6db;
  --wisteria: #baa3ee;
  --muted: #74647f;
  --line: #e5d8ef;
  --mist: #f7efff;
  --plum: #190824;
  --shell: 1240px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Sora", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

.cky-modal.cky-sidebar-left {
  max-width: 100vw !important;
}

body.has-open-menu {
  overflow: hidden;
}

body.has-open-menu .mobile-booking-cta {
  display: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.screen-reader-text,
.skip-link {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.skip-link:focus {
  background: var(--white);
  clip: auto;
  clip-path: none;
  height: auto;
  left: 12px;
  padding: 12px 16px;
  top: 12px;
  width: auto;
  z-index: 10000;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--shell);
  padding-left: 34px;
  padding-right: 34px;
  width: 100%;
}

.site-header {
  background: rgba(251, 249, 252, 0.96);
  border-bottom: 1px solid transparent;
  min-height: var(--header-height);
  position: relative;
  top: auto;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  z-index: 100;
}

.admin-bar .site-header {
  top: auto;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(11, 9, 13, 0.08);
}

.site-header__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  margin: 0 auto;
  max-width: 1360px;
  min-height: var(--header-height);
  padding: 0 28px;
}

.site-brand__lockup {
  align-items: center;
  display: inline-flex;
  gap: 13px;
  text-decoration: none;
}

.site-brand {
  align-items: center;
  display: flex;
  min-width: 0;
}

.site-brand > a {
  align-items: center;
  display: inline-flex;
  max-width: 100%;
}

.site-brand__official-logo {
  height: 78px;
  object-fit: contain;
  width: 78px;
}

.site-brand__mark {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.site-brand__lockup strong,
.site-brand__lockup small {
  display: block;
}

.site-brand__lockup strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.05;
}

.site-brand__lockup small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  margin-top: 3px;
}

.custom-logo {
  max-height: 56px;
  width: auto;
}

.site-nav__list {
  align-items: center;
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: var(--violet);
}

.site-header__cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-header__cta {
  background: var(--ink);
  color: var(--white);
  min-height: 46px;
}

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

.site-menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 9px;
  width: 44px;
}

.site-menu-toggle > span:not(.screen-reader-text) {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 26px;
}

.site-menu-toggle:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
}

.impact-hero {
  background: var(--ink);
  color: var(--white);
  min-height: min(850px, calc(100svh - var(--header-height)));
  overflow: hidden;
  position: relative;
}

.impact-hero__image,
.impact-hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.impact-hero__image {
  object-fit: cover;
  object-position: center;
}

.impact-hero__shade {
  background: rgba(11, 9, 13, 0.3);
}

.impact-hero__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 1360px;
  min-height: min(850px, calc(100svh - var(--header-height)));
  padding: 72px 54% 84px 54px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow--acid {
  color: var(--acid);
}

.eyebrow--light {
  color: var(--ice);
}

.impact-hero h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 104px;
  line-height: 0.82;
  margin: 0;
  max-width: 780px;
}

.impact-hero h1 span {
  display: block;
}

.impact-hero h1 span:last-child {
  color: #bba9ff;
}

.impact-hero__payoff {
  font-size: 20px;
  line-height: 1.45;
  margin: 32px 0 0;
  max-width: 630px;
}

.impact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button--acid {
  background: var(--acid);
  color: var(--ink);
}

.button--glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.impact-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.impact-hero__proof li {
  color: #ddd8df;
  font-size: 12px;
  font-weight: 800;
  position: relative;
}

.impact-hero__proof li + li::before {
  color: var(--acid);
  content: "+";
  left: -16px;
  position: absolute;
}

.impact-hero__scroll {
  align-items: center;
  bottom: 22px;
  color: var(--white);
  display: flex;
  font-size: 12px;
  font-weight: 850;
  gap: 9px;
  position: absolute;
  right: 34px;
  text-decoration: none;
  z-index: 3;
}

.impact-hero__scroll span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.start-band,
.services-band,
.method-band,
.faq-band {
  padding: 110px 0;
}

.section-heading--split {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  margin-bottom: 54px;
}

.section-heading h2,
.positioning-band h2,
.inclusive-feature h2,
.expert-band h2,
.booking-band__intro h2,
.faq-band h2,
.contact-band h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.95;
  margin: 0;
}

.section-heading > p,
.positioning-band__copy > p,
.inclusive-feature__copy > p,
.expert-band__copy > p,
.booking-band__intro > p,
.faq-band__grid > div:first-child > p:last-child {
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}

.goal-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.goal-tile {
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 24px;
  text-decoration: none;
  transition: transform 180ms ease;
}

.goal-tile:hover {
  transform: translateY(-6px);
}

.goal-tile > span {
  font-size: 12px;
  font-weight: 900;
}

.goal-tile strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  margin-top: auto;
}

.goal-tile small {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  margin-top: 8px;
}

.goal-tile--violet {
  background: var(--violet);
  color: var(--white);
}

.goal-tile--ice {
  background: var(--ice);
}

.goal-tile--coral {
  background: var(--coral);
}

.goal-tile--ink {
  background: var(--ink);
  color: var(--white);
}

.positioning-band {
  background: var(--violet-deep);
  color: var(--white);
  padding: 120px 0;
}

.positioning-band__grid {
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
}

.principles {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  margin: 40px 0 0;
}

.principles div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px 1fr;
  padding: 22px 0;
}

.principles dt {
  color: var(--acid);
  font-weight: 900;
}

.principles dd {
  margin: 0;
}

.services-band {
  background: var(--paper);
}

.service-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.service-story {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-column: span 6;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 430px;
  overflow: hidden;
}

.service-story:nth-child(3n + 1) {
  grid-column: span 7;
}

.service-story:nth-child(3n + 2) {
  grid-column: span 5;
  grid-template-columns: 1fr;
}

.service-story:nth-child(3n + 2) .service-story__media {
  min-height: 250px;
}

.service-story__media {
  min-height: 100%;
  overflow: hidden;
}

.service-story__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.service-story:hover .service-story__media img {
  transform: scale(1.035);
}

.service-story__content {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.service-story--2 .service-story__content {
  background: var(--ice);
}

.service-story--3 .service-story__content {
  background: var(--coral);
}

.service-story--4 .service-story__content {
  background: var(--ink-soft);
  color: var(--white);
}

.service-story__top,
.service-story__meta {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 850;
  justify-content: space-between;
  text-transform: uppercase;
}

.service-badge {
  align-self: flex-start;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  margin-top: 24px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.service-story h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.98;
  margin: auto 0 14px;
}

.service-story p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.service-story__meta {
  border-top: 1px solid currentColor;
  padding-top: 14px;
}

.text-action {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  margin-top: 24px;
  text-decoration: none;
}

.text-action span {
  font-size: 20px;
  transition: transform 160ms ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

.inclusive-feature,
.expert-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 720px;
}

.inclusive-feature__media,
.expert-band__portrait {
  min-height: 650px;
  overflow: hidden;
}

.inclusive-feature__media img,
.expert-band__portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.inclusive-feature__copy,
.expert-band__copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(42px, calc((100vw - var(--shell)) / 2));
}

.inclusive-feature__copy {
  background: var(--ink);
  color: var(--white);
}

.inclusive-feature__copy > p,
.expert-band__copy > p {
  margin: 28px 0;
}

.method-band {
  background: var(--acid);
}

.method-steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-steps li {
  border-left: 1px solid rgba(11, 9, 13, 0.42);
  min-height: 280px;
  padding: 24px;
}

.method-steps li:last-child {
  border-right: 1px solid rgba(11, 9, 13, 0.42);
}

.method-steps span {
  font-size: 12px;
  font-weight: 900;
}

.method-steps h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 42px;
  margin: 100px 0 12px;
}

.method-steps p {
  line-height: 1.5;
  margin: 0;
}

.expert-band {
  background: var(--ice);
}

.expert-band__portrait {
  align-items: center;
  background: var(--violet);
  display: flex;
  justify-content: center;
}

.expert-band__monogram {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 310px;
  line-height: 1;
}

.expert-band blockquote {
  border-left: 5px solid var(--violet);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.25;
  margin: 12px 0 0;
  padding-left: 22px;
}

.booking-band {
  background: var(--violet-deep);
  color: var(--white);
  padding: 120px 0;
}

.booking-band__intro {
  display: grid;
  gap: 28px 70px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  margin-bottom: 52px;
}

.booking-band__intro .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.faq-band {
  background: var(--white);
}

.faq-band__grid {
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
  padding: 24px 46px 24px 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  position: absolute;
  right: 4px;
  top: 17px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
  padding: 0 42px 24px 0;
}

.contact-band {
  background: var(--ink);
  color: var(--white);
  padding: 110px 0;
}

.contact-band__grid {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
}

.contact-band__links {
  display: grid;
  gap: 12px;
}

.contact-band__links p,
.contact-band__links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  padding: 12px 0;
  text-decoration: none;
}

.empty-state {
  border: 1px solid var(--line);
  padding: 28px;
}

.site-footer {
  background: var(--paper);
  color: var(--ink);
  padding: 78px 34px 24px;
}

.site-footer__inner {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  margin: 0 auto;
  max-width: var(--shell);
}

.site-footer__label,
.site-footer__title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.site-footer__brand {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 0.95;
  margin: 0 0 26px;
}

.site-footer__booking {
  font-weight: 900;
}

.site-footer__meta {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer address,
.site-footer__social {
  display: grid;
  font-style: normal;
  gap: 8px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer__bottom {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
  margin: 64px auto 0;
  max-width: var(--shell);
  padding-top: 20px;
}

.mobile-booking-cta {
  display: none;
}

.mobile-booking-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}

.page-hero {
  padding: 112px 0 96px;
}

.page-hero--lilac {
  background: var(--acid);
}

.page-hero--violet,
.page-hero--ink {
  color: var(--white);
}

.page-hero--violet {
  background: var(--violet-deep);
}

.page-hero--ink {
  background: var(--ink);
}

.page-hero__grid {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
}

.page-hero h1,
.story-hero h1,
.auth-visual h1,
.portal-welcome h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.92;
  margin: 0;
}

.page-hero__grid > p,
.story-hero__copy > p,
.auth-visual > div > p,
.portal-welcome p {
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}

.page-services,
.booking-page__widget,
.portal-appointments {
  padding: 96px 0 120px;
}

.category-nav {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  margin-bottom: 46px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}

.category-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 850;
  padding: 9px 14px;
  text-decoration: none;
}

.category-nav a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--white);
}

.page-services .service-story h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.98;
  margin: auto 0 14px;
}

.cross-cta {
  background: var(--violet-deep);
  color: var(--white);
  padding: 96px 0;
}

.cross-cta h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 68px;
  line-height: 0.94;
  margin: 0 0 28px;
  max-width: 760px;
}

.booking-page__widget {
  background: var(--acid);
}

.booking-assurance {
  background: var(--ink);
  color: var(--white);
}

.booking-assurance .section-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 44px;
  padding-top: 44px;
}

.booking-assurance .section-shell div {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  gap: 16px;
  padding: 12px 24px;
}

.booking-assurance .section-shell div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.booking-assurance strong {
  color: var(--wisteria);
  font-size: 12px;
}

.booking-assurance span {
  font-weight: 850;
}

.story-hero {
  background: var(--violet-deep);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 760px;
}

.story-hero__copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(40px, calc((100vw - var(--shell)) / 2));
}

.story-hero__copy > p:last-child {
  margin-top: 30px;
  max-width: 620px;
}

.story-hero__media {
  min-height: 620px;
  overflow: hidden;
}

.story-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  width: 100%;
}

.values-band {
  background: var(--acid);
  padding: 96px 0;
}

.values-band .section-shell {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-band .section-shell > div {
  border-left: 1px solid rgba(62, 23, 111, 0.32);
  padding: 24px;
}

.values-band .section-shell > div:last-child {
  border-right: 1px solid rgba(62, 23, 111, 0.32);
}

.values-band span {
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 900;
}

.values-band h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  margin: 76px 0 14px;
}

.values-band p {
  line-height: 1.5;
  margin: 0;
}

.expert-band .button,
.portal-empty .button {
  background: var(--violet);
  color: var(--white);
  margin-top: 28px;
}

.contact-directory {
  background: var(--paper);
  padding: 96px 0 120px;
}

.contact-directory .section-shell {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-directory a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  text-decoration: none;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.contact-directory a:nth-child(2) {
  background: var(--acid);
}

.contact-directory a:nth-child(3) {
  background: var(--wisteria);
}

.contact-directory a:nth-child(4) {
  background: var(--violet-deep);
  color: var(--white);
}

.contact-directory a:hover {
  transform: translateY(-5px);
}

.contact-directory span {
  font-size: 12px;
  font-weight: 900;
}

.contact-directory strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 42px;
  margin-top: auto;
}

.contact-directory small {
  font-size: 14px;
  font-weight: 750;
  margin-top: 8px;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  min-height: calc(100svh - var(--header-height));
}

.auth-visual {
  align-items: flex-end;
  background-color: var(--violet-deep);
  background-image: url("../img/hero-inclusive.jpg");
  background-position: 60% center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 760px;
  padding: 70px 48px;
  position: relative;
}

.auth-visual::before {
  background: rgba(32, 11, 52, 0.54);
  content: "";
  inset: 0;
  position: absolute;
}

.auth-visual > div {
  max-width: 600px;
  position: relative;
}

.auth-visual > div > p:last-child {
  margin-top: 24px;
}

.auth-panel {
  background: var(--paper);
  padding: 70px 54px;
}

.auth-panel__intro h2,
.portal-section-title h2,
.portal-empty h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

.auth-panel__intro h2 {
  font-size: 48px;
  line-height: 0.98;
  margin: 0;
}

.auth-forms {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.auth-forms--single {
  grid-template-columns: minmax(0, 560px);
}

.auth-panel__intro > p:last-child {
  color: var(--muted);
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 620px;
}

.auth-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
}

.auth-form--register {
  background: var(--acid);
}

.auth-form h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 32px;
  margin: 0 0 24px;
}

.auth-form label:not(.auth-check) {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.auth-form label > span {
  font-size: 12px;
  font-weight: 850;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  background: var(--white);
  border: 1px solid rgba(11, 9, 13, 0.3);
  border-radius: 5px;
  min-height: 50px;
  padding: 11px 13px;
  width: 100%;
}

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

.auth-check {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  margin: 12px 0 18px;
}

.auth-check input {
  margin-top: 3px;
}

.auth-submit {
  background: var(--violet-deep);
  color: var(--white);
  width: 100%;
}

.auth-help {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 15px;
}

.auth-notice {
  background: #fff0f4;
  border-left: 4px solid #b4234b;
  margin-bottom: 24px;
  padding: 14px;
}

.portal-welcome {
  background: var(--violet-deep);
  color: var(--white);
  padding: 86px 0;
}

.portal-welcome .section-shell {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.portal-welcome p:last-child {
  margin-top: 20px;
  max-width: 700px;
}

.portal-logout {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 850;
  padding: 11px 16px;
  text-decoration: none;
}

.portal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -28px;
  position: relative;
}

.portal-actions--loyalty {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-actions a {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 22px;
  text-decoration: none;
}

.portal-actions a:nth-child(2) {
  background: var(--acid);
}

.portal-actions a:nth-child(3) {
  background: var(--wisteria);
}

.portal-actions span {
  font-size: 11px;
  font-weight: 900;
}

.portal-actions strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 26px;
  margin-top: auto;
}

.portal-section-title h2 {
  font-size: 58px;
  margin: 0 0 40px;
}

.appointment-history {
  border-top: 1px solid var(--ink);
}

.appointment-history article {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 0.7fr) minmax(240px, 1.4fr) auto;
  padding: 24px 0;
}

.appointment-history time,
.appointment-status {
  font-size: 12px;
  font-weight: 850;
}

.appointment-history h3 {
  font-size: 20px;
  margin: 0;
}

.appointment-history p {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0 0;
}

.appointment-status {
  background: var(--acid);
  border-radius: 999px;
  padding: 8px 12px;
}

.portal-empty {
  background: var(--acid);
  padding: 42px;
}

.portal-empty h3 {
  font-size: 40px;
  margin: 0;
}

.portal-empty p {
  margin: 14px 0 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(252, 248, 255, 0.84);
}

.site-brand__mark {
  background: linear-gradient(145deg, var(--violet-deep), var(--violet), var(--coral));
  box-shadow: 0 18px 35px rgba(65, 20, 102, 0.28);
}

.site-header__cta,
.button {
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(62, 23, 111, 0.14);
}

.impact-hero {
  isolation: isolate;
  min-height: min(920px, calc(100svh - var(--header-height)));
}

.impact-hero__image {
  filter: saturate(1.1) contrast(1.04);
  object-position: center;
  transform: scale(1.01);
}

.impact-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 6, 16, 0.9) 0%, rgba(22, 5, 35, 0.72) 28%, rgba(48, 12, 78, 0.2) 58%, rgba(10, 6, 16, 0.34) 100%),
    linear-gradient(180deg, rgba(10, 6, 16, 0.12) 0%, rgba(10, 6, 16, 0.82) 100%);
}

.impact-hero__aura {
  background:
    radial-gradient(circle at 18% 26%, rgba(240, 220, 255, 0.28), transparent 30%),
    radial-gradient(circle at 72% 28%, rgba(124, 60, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(240, 182, 219, 0.22), transparent 48%);
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.impact-hero__content {
  min-height: min(920px, calc(100svh - var(--header-height)));
  padding-bottom: 116px;
  padding-top: 92px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.impact-hero h1 {
  font-size: 118px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.impact-hero h1 span:last-child {
  color: #f0dcff;
  font-style: italic;
}

.impact-hero__payoff {
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  max-width: 690px;
}

.impact-hero__proof li {
  color: rgba(255, 255, 255, 0.78);
}

.impact-hero__panel {
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(240, 220, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.72);
  bottom: 38px;
  box-shadow: 0 30px 90px rgba(10, 6, 16, 0.34);
  color: var(--ink);
  display: grid;
  gap: 8px;
  max-width: 360px;
  padding: 22px;
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  z-index: 3;
}

.impact-hero__panel span,
.impact-hero__panel small {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-hero__panel strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 0.95;
}

.start-band {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  position: relative;
}

.luxury-strip {
  border-bottom: 1px solid rgba(53, 16, 94, 0.22);
  border-top: 1px solid rgba(53, 16, 94, 0.22);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.luxury-strip p {
  border-left: 1px solid rgba(53, 16, 94, 0.22);
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 900;
  margin: 0;
  min-height: 74px;
  padding: 22px;
  text-transform: uppercase;
}

.luxury-strip p:last-child {
  border-right: 1px solid rgba(53, 16, 94, 0.22);
}

.goal-tile {
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.goal-tile--violet {
  background: linear-gradient(145deg, #7c3cff, #35105e);
}

.goal-tile--ice {
  background: linear-gradient(145deg, #f0dcff, #d8ccff);
}

.goal-tile--coral {
  background: linear-gradient(145deg, #f0b6db, #ceb2ff);
}

.goal-tile--ink {
  background: linear-gradient(145deg, #190824, #4b1784);
}

.positioning-band,
.booking-band {
  background:
    linear-gradient(135deg, #190824 0%, #35105e 46%, #6f3cff 100%);
}

.services-band {
  background:
    linear-gradient(180deg, var(--paper) 0%, #ffffff 48%, var(--mist) 100%);
}

.service-story {
  border-color: rgba(53, 16, 94, 0.18);
  box-shadow: 0 24px 80px rgba(53, 16, 94, 0.09);
}

.service-badge {
  background: var(--plum);
  color: var(--acid);
}

.inclusive-feature__copy {
  background:
    linear-gradient(145deg, #100719 0%, #35105e 52%, #7c3cff 100%);
}

.method-band {
  background:
    linear-gradient(135deg, #f7efff 0%, #e4dcff 48%, #f0b6db 100%);
}

.operator-preview {
  background:
    linear-gradient(135deg, #0a0610 0%, #241034 52%, #4f1d7c 100%);
  color: var(--white);
  overflow: hidden;
  padding: 112px 0;
}

.operator-preview__grid {
  align-items: center;
  display: grid;
  gap: 82px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
}

.operator-preview h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 68px;
  line-height: 0.92;
  margin: 0;
}

.operator-preview p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
  margin: 26px 0 0;
  max-width: 660px;
}

.operator-preview .button {
  margin-top: 30px;
}

.operator-preview__device {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 220, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
  color: var(--ink);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.operator-preview__device div {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(53, 16, 94, 0.14);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.operator-preview__device span {
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 900;
}

.operator-preview__device strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.operator-preview__device small {
  color: var(--muted);
  font-weight: 800;
}

.auth-visual::before {
  background:
    linear-gradient(180deg, rgba(10, 6, 16, 0.18), rgba(10, 6, 16, 0.76)),
    linear-gradient(90deg, rgba(53, 16, 94, 0.64), rgba(10, 6, 16, 0.28));
}

.page-hero--violet,
.page-hero--ink,
.portal-welcome {
  background:
    linear-gradient(135deg, #190824 0%, #35105e 48%, #7c3cff 100%);
}

body.is-operator-app {
  background: #0a0610;
}

body.is-operator-app .site-footer {
  display: none;
}

@media (max-width: 1120px) {
  .impact-hero h1 {
    font-size: 96px;
  }

  .impact-hero__panel {
    max-width: 310px;
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 18px;
    grid-template-columns: minmax(230px, 1fr) auto auto;
  }

  .site-nav__list {
    gap: 17px;
  }

  .impact-hero__content {
    padding-right: 48%;
  }

  .impact-hero h1 {
    font-size: 86px;
  }

  .service-story,
  .service-story:nth-child(3n + 1),
  .service-story:nth-child(3n + 2) {
    grid-column: span 6;
  }

  .service-story:nth-child(3n + 2) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .admin-bar .site-header {
    top: auto;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .site-menu-toggle {
    display: block;
  }

  .site-header__cta {
    display: none;
  }

  .site-brand__official-logo {
    height: 62px;
    width: 62px;
  }

  .site-nav {
    background: var(--paper);
    display: none;
    inset: var(--header-height) 0 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 24px;
    position: fixed;
  }

  .admin-bar .site-nav {
    top: calc(var(--header-height) + 32px);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    align-items: stretch;
    display: grid;
    gap: 0;
  }

  .site-nav__list a {
    border-bottom: 1px solid var(--line);
    display: block;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 32px;
    padding: 18px 0;
  }

  .impact-hero__image {
    object-position: 58% center;
  }

  .impact-hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 6, 16, 0.2) 0%, rgba(10, 6, 16, 0.9) 100%),
      linear-gradient(90deg, rgba(10, 6, 16, 0.72), rgba(53, 16, 94, 0.2));
  }

  .impact-hero__content {
    min-height: 760px;
    padding: 80px 34px 96px;
  }

  .impact-hero h1 {
    font-size: 78px;
    max-width: 620px;
  }

  .impact-hero__panel {
    bottom: 24px;
    left: 34px;
    max-width: 360px;
    right: auto;
  }

  .impact-hero__payoff {
    max-width: 560px;
  }

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

  .positioning-band__grid,
  .section-heading--split,
  .booking-band__intro,
  .faq-band__grid,
  .contact-band__grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .booking-band__intro .eyebrow {
    grid-column: auto;
  }

  .section-heading h2,
  .positioning-band h2,
  .inclusive-feature h2,
  .expert-band h2,
  .booking-band__intro h2,
  .faq-band h2,
  .contact-band h2 {
    font-size: 52px;
  }

  .service-story,
  .service-story:nth-child(3n + 1),
  .service-story:nth-child(3n + 2) {
    grid-column: span 12;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inclusive-feature,
  .expert-band {
    grid-template-columns: 1fr;
  }

  .inclusive-feature__media,
  .expert-band__portrait {
    min-height: 620px;
  }

  .inclusive-feature__copy,
  .expert-band__copy {
    min-height: 560px;
    padding: 64px 34px;
  }

  .operator-preview__grid {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .operator-preview h2 {
    font-size: 54px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: auto;
  }

  .admin-bar .site-nav {
    top: calc(var(--header-height) + 46px);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header__inner {
    padding: 0 16px;
  }

  .site-brand__official-logo {
    height: 60px;
    width: 60px;
  }

  .site-brand__mark {
    height: 38px;
    width: 38px;
  }

  .site-brand__lockup strong {
    font-size: 17px;
  }

  .site-brand__lockup small {
    display: none;
  }

  .impact-hero {
    min-height: 770px;
  }

  .impact-hero__image {
    object-position: 61% center;
  }

  .impact-hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 6, 16, 0.22) 0%, rgba(10, 6, 16, 0.94) 100%),
      linear-gradient(90deg, rgba(10, 6, 16, 0.76), rgba(53, 16, 94, 0.18));
  }

  .impact-hero__content {
    justify-content: flex-end;
    min-height: 770px;
    padding: 82px 20px 74px;
  }

  .impact-hero h1 {
    font-size: 62px;
  }

  .impact-hero__payoff {
    font-size: 17px;
    margin-top: 22px;
  }

  .impact-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
    width: 100%;
  }

  .impact-hero__proof {
    display: grid;
    gap: 7px;
    margin: 20px 0 30px;
  }

  .impact-hero__panel {
    display: none;
  }

  .impact-hero__proof li + li::before {
    display: none;
  }

  .impact-hero__scroll {
    display: none;
  }

  .start-band,
  .services-band,
  .method-band,
  .faq-band,
  .positioning-band,
  .booking-band,
  .contact-band {
    padding: 76px 0;
  }

  .section-heading--split {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .positioning-band h2,
  .inclusive-feature h2,
  .expert-band h2,
  .booking-band__intro h2,
  .faq-band h2,
  .contact-band h2 {
    font-size: 43px;
  }

  .section-heading > p,
  .positioning-band__copy > p,
  .inclusive-feature__copy > p,
  .expert-band__copy > p,
  .booking-band__intro > p {
    font-size: 17px;
  }

  .goal-grid {
    grid-template-columns: 1fr;
  }

  .luxury-strip {
    grid-template-columns: 1fr;
  }

  .luxury-strip p,
  .luxury-strip p:last-child {
    border-left: 0;
    border-right: 0;
    min-height: 54px;
    padding: 16px 0;
  }

  .goal-tile {
    min-height: 185px;
  }

  .goal-tile strong {
    font-size: 34px;
  }

  .positioning-band__grid {
    gap: 50px;
  }

  .principles div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .service-showcase {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .service-story,
  .service-story:nth-child(3n + 1),
  .service-story:nth-child(3n + 2) {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-story__media,
  .service-story:nth-child(3n + 2) .service-story__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .service-story__content {
    min-height: 310px;
    padding: 22px;
  }

  .service-story h3 {
    font-size: 35px;
  }

  .inclusive-feature__media,
  .expert-band__portrait {
    min-height: 470px;
  }

  .inclusive-feature__copy,
  .expert-band__copy {
    min-height: 0;
    padding: 68px 20px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps li,
  .method-steps li:last-child {
    border-bottom: 1px solid rgba(11, 9, 13, 0.42);
    border-left: 0;
    border-right: 0;
    min-height: 210px;
    padding: 24px 0;
  }

  .method-steps h3 {
    margin-top: 62px;
  }

  .expert-band__monogram {
    font-size: 220px;
  }

  .expert-band blockquote {
    font-size: 23px;
  }

  .operator-preview {
    padding: 76px 0;
  }

  .operator-preview h2 {
    font-size: 44px;
  }

  .operator-preview p:not(.eyebrow) {
    font-size: 16px;
  }

  .site-footer {
    padding: 64px 20px 24px;
  }

  .site-footer__inner,
  .site-footer__meta {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    font-size: 42px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 48px;
  }

  .mobile-booking-cta {
    align-items: center;
    background: var(--acid);
    border: 1px solid var(--ink);
    bottom: 10px;
    color: var(--ink);
    display: flex;
    font-size: 15px;
    font-weight: 950;
    height: 56px;
    justify-content: center;
    left: 12px;
    position: fixed;
    right: 12px;
    text-decoration: none;
    z-index: 95;
  }
}

/* Mobile menu: keep the navigation as a real full-screen layer above the page. */
@media (max-width: 900px) {
  .site-header { position: relative; z-index: 1200; }
  .site-header__inner { position: relative; z-index: 1202; }
  .site-menu-toggle {
    align-items: center;
    color: #35105e !important;
    display: flex !important;
    flex-direction: column;
    height: 52px;
    justify-content: center;
    margin-left: auto;
    position: relative;
    width: 52px;
    z-index: 1205;
  }
  .site-menu-toggle > span:not(.screen-reader-text) {
    background: currentColor !important;
    display: block !important;
    height: 3px;
    margin: 3px 0;
    width: 31px;
  }
  .site-nav,
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav {
    background: #fcf8ff !important;
    box-sizing: border-box;
    display: block !important;
    height: auto !important;
    inset: var(--header-height) 0 auto !important;
    max-height: calc(100svh - var(--header-height)) !important;
    min-height: calc(100svh - var(--header-height)) !important;
    opacity: 0;
    overflow-y: auto;
    padding: 32px 24px 44px !important;
    pointer-events: none;
    position: fixed !important;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
    width: 100vw;
    z-index: 1201 !important;
  }
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none;
    visibility: visible !important;
  }
  .site-nav .site-nav__list {
    display: grid !important;
    gap: 0 !important;
    margin: 0;
    padding: 0;
  }
  .site-nav .site-nav__list li { display: block !important; list-style: none; }
  .site-nav .site-nav__list a {
    border-bottom: 1px solid #e5d8ef;
    color: #21102f !important;
    display: block !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px !important;
    line-height: 1.1;
    padding: 18px 0 !important;
    text-decoration: none;
  }
}

/* Product surfaces: compact, scannable and comfortable on a phone. */
body {
  font-synthesis: none;
}

.service-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-story,
.service-story:nth-child(3n + 1),
.service-story:nth-child(3n + 2) {
  display: flex;
  flex-direction: column;
  grid-column: auto;
  grid-template-columns: 1fr;
  min-height: 0;
}

.service-story__media,
.service-story:nth-child(3n + 2) .service-story__media {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.service-story__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.service-story h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  letter-spacing: 0;
}

.service-story__meta {
  margin-top: auto;
}

.auth-social {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding-top: 18px;
}

.auth-social__button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 12px;
  min-height: 46px;
  padding: 10px 13px;
  text-decoration: none;
}

.auth-social__button:first-letter {
  color: #4285f4;
  font-size: 20px;
  font-weight: 900;
}

.auth-social__button--facebook:first-letter {
  color: #1877f2;
}

.auth-social p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.portal-notice {
  margin-top: 22px;
  padding: 15px 18px;
}

.portal-notice--success {
  background: #e9f8f0;
  border-left: 4px solid #247a57;
}

.portal-notice--error {
  background: #fff0f4;
  border-left: 4px solid #b4233c;
}

.portal-overview {
  background: var(--paper);
  padding: 58px 0 0;
}

.portal-overview__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.loyalty-card,
.portal-note-card {
  min-height: 260px;
  padding: 28px;
}

.loyalty-card {
  background: linear-gradient(135deg, #35105e, #7c3cff 60%, #f0b6db);
  color: var(--white);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
}

.loyalty-card h2,
.portal-note-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 0.92;
  margin: 12px 0 0;
}

.loyalty-card p,
.portal-note-card p {
  line-height: 1.5;
  margin: 12px 0 0;
}

.loyalty-card > strong {
  font-size: 48px;
  line-height: 0.9;
}

.loyalty-card > strong small {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  text-align: right;
}

.loyalty-card__progress {
  background: rgba(255, 255, 255, 0.26);
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
}

.loyalty-card__progress span {
  background: #f0dcff;
  display: block;
  height: 100%;
}

.loyalty-card > small {
  font-size: 12px;
  grid-column: 1 / -1;
}

.loyalty-card__managed-note {
  color: rgba(255, 255, 255, .82);
  display: block;
  font-size: 12px;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.loyalty-card .eyebrow {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.98;
  text-shadow: 0 1px 16px rgba(16, 4, 32, 0.26);
}

.portal-note-card {
  background: var(--acid);
}

.portal-note-card--wide {
  grid-column: 1 / -1;
}

.loyalty-card__qr {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 15px;
  grid-column: 1 / -1;
  padding: 12px;
}

.loyalty-card__qr img {
  background: #fff;
  display: block;
  height: 96px;
  object-fit: contain;
  padding: 6px;
  width: 96px;
}

.loyalty-card__qr div {
  display: grid;
  gap: 5px;
}

.loyalty-card__qr span,
.loyalty-card__qr small {
  font-size: 11px;
  opacity: 0.82;
}

.loyalty-card__qr strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.portal-benefits {
  background: var(--mist);
  padding: 72px 0;
}

.portal-benefits__grid {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.portal-benefits h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 45px;
  line-height: 0.95;
  margin: 14px 0 24px;
}

.loyalty-transactions {
  border-top: 1px solid var(--line);
}

.loyalty-transactions div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  padding: 14px 0;
}

.loyalty-transactions strong {
  color: var(--violet-deep);
  font-size: 14px;
}

.loyalty-transactions span,
.loyalty-transactions time {
  color: var(--muted);
  font-size: 12px;
}

.portal-promotions {
  display: grid;
  gap: 10px;
}

.portal-promotions article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.portal-promotions article > span {
  color: var(--violet-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portal-promotions h3 {
  font-size: 20px;
  margin: 7px 0;
}

.portal-promotions article > strong {
  color: var(--violet-deep);
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}

.portal-promotions p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.portal-note-card h2 {
  margin-top: 74px;
}

.appointment-history__actions {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal-link-button {
  background: transparent;
  border: 0;
  color: var(--violet-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 0;
  text-decoration: underline;
}

.appointment-lock {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  max-width: 180px;
  text-align: right;
}

.portal-profile {
  background: var(--mist);
  padding: 90px 0 120px;
}

.portal-profile__grid {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
}

.portal-profile h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  line-height: 0.95;
  margin: 14px 0 0;
}

.portal-profile__grid > div > p:last-child {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 24px;
}

.portal-profile__form {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.portal-profile__form label {
  display: grid;
  gap: 7px;
}

.portal-profile__form label span {
  font-size: 12px;
  font-weight: 850;
}

.portal-profile__form input {
  border: 1px solid var(--line);
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

.portal-profile__form textarea {
  border: 1px solid var(--line);
  font: inherit;
  min-height: 112px;
  padding: 10px 12px;
  resize: vertical;
  width: 100%;
}

.portal-profile__wide {
  grid-column: 1 / -1;
}

.portal-profile__form .button {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (max-width: 900px) {
  .service-showcase,
  .portal-overview__grid,
  .portal-profile__grid {
    grid-template-columns: 1fr;
  }

  .portal-note-card h2 {
    margin-top: 42px;
  }
}

@media (max-width: 680px) {
  .service-showcase {
    gap: 14px;
  }

  .service-story__content {
    min-height: 270px;
    padding: 20px;
  }

  .service-story h3 {
    font-size: 34px;
  }

  .loyalty-card,
  .portal-note-card {
    min-height: 230px;
    padding: 22px;
  }

  .loyalty-card h2,
  .portal-note-card h2 {
    font-size: 40px;
  }

  .loyalty-card > strong {
    font-size: 38px;
  }

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

  .portal-benefits__grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .loyalty-card__qr img {
    height: 82px;
    width: 82px;
  }

  .loyalty-transactions div {
    gap: 8px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .loyalty-transactions time {
    grid-column: 2;
  }

  .appointment-history__actions {
    align-items: flex-start;
  }

  .appointment-lock {
    max-width: none;
    text-align: left;
  }

  .portal-profile {
    padding: 72px 0 92px;
  }

  .portal-profile h2 {
    font-size: 43px;
  }

  .portal-profile__form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .page-hero__grid,
  .story-hero,
  .auth-page {
    grid-template-columns: 1fr;
  }

  .story-hero__copy {
    min-height: 600px;
    padding: 72px 34px;
  }

  .story-hero__media {
    min-height: 620px;
  }

  .auth-visual {
    min-height: 560px;
  }

  .auth-panel {
    padding: 64px 34px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding: 76px 0 68px;
  }

  .page-hero__grid {
    gap: 34px;
  }

  .page-hero h1,
  .story-hero h1,
  .auth-visual h1,
  .portal-welcome h1 {
    font-size: 48px;
  }

  .page-hero__grid > p,
  .story-hero__copy > p,
  .auth-visual > div > p,
  .portal-welcome p {
    font-size: 16px;
  }

  .page-services,
  .booking-page__widget,
  .portal-appointments,
  .contact-directory {
    padding: 70px 0 84px;
  }

  .cross-cta {
    padding: 74px 0;
  }

  .cross-cta h2 {
    font-size: 48px;
  }

  .booking-assurance .section-shell,
  .values-band .section-shell,
  .contact-directory .section-shell,
  .auth-forms,
  .portal-actions {
    grid-template-columns: 1fr;
  }

  .booking-assurance .section-shell div,
  .booking-assurance .section-shell div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
    border-right: 0;
    padding: 20px 0;
  }

  .story-hero__copy {
    min-height: 570px;
    padding: 70px 20px;
  }

  .story-hero__media {
    min-height: 480px;
  }

  .values-band {
    padding: 68px 0;
  }

  .values-band .section-shell > div,
  .values-band .section-shell > div:last-child {
    border-bottom: 1px solid rgba(62, 23, 111, 0.32);
    border-left: 0;
    border-right: 0;
    padding: 24px 0;
  }

  .values-band h2 {
    margin-top: 48px;
  }

  .contact-directory a {
    min-height: 210px;
  }

  .auth-visual {
    min-height: 580px;
    padding: 64px 20px;
  }

  .auth-panel {
    padding: 64px 20px;
  }

  .auth-panel__intro h2 {
    font-size: 40px;
  }

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

  .portal-welcome {
    padding: 70px 0 86px;
  }

  .portal-welcome .section-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-actions {
    margin-top: -32px;
  }

  .portal-actions a {
    min-height: 145px;
  }

  .appointment-history article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .appointment-status {
    justify-self: start;
  }

  .portal-empty {
    padding: 28px;
  }

  .portal-empty h3 {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 0;
  }

  .impact-hero {
    min-height: 680px;
  }

  .impact-hero__content {
    justify-content: center;
    min-height: 680px;
    padding: 54px 20px 66px;
  }

  .impact-hero h1 {
    font-size: 58px;
    line-height: 0.87;
    max-width: 350px;
  }

  .impact-hero__payoff {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 22px;
    max-width: 330px;
  }

  .impact-hero__actions {
    display: flex;
    margin-top: 20px;
    width: auto;
  }

  .impact-hero__actions .button--acid {
    display: none;
  }

  .impact-hero__actions .button--glass {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 0;
    min-height: 34px;
    padding: 4px 0;
  }

  .impact-hero__proof {
    gap: 7px;
    margin: 22px 0 0;
  }

  .impact-hero__proof li {
    font-size: 11px;
  }

  .mobile-booking-cta {
    display: none !important;
  }
}

/* Official identity and mobile navigation finish. */
.site-header {
  min-height: 148px;
}

.site-header__inner {
  min-height: 148px;
}

.site-brand__official-logo {
  filter: drop-shadow(0 12px 18px rgba(53, 16, 94, 0.2));
  height: 148px;
  width: 148px;
}

.impact-hero__content {
  z-index: 3;
}

@media (max-width: 900px) {
  :root {
    --header-height: 86px;
  }

  .site-header,
  .site-header__inner {
    min-height: 86px;
  }

  .site-menu-toggle {
    cursor: pointer;
    position: relative;
    z-index: 110;
  }

  .site-nav {
    box-shadow: 0 30px 70px rgba(10, 6, 16, 0.22);
    z-index: 105;
  }

  .site-brand__official-logo {
    height: 84px;
    width: 84px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 80px;
  }

  .site-header,
  .site-header__inner {
    min-height: 80px;
  }

  .site-brand__official-logo {
    height: 76px;
    width: 76px;
  }

  .impact-hero__content {
    min-width: 0;
  }

  .impact-hero h1,
  .page-hero h1,
  .story-hero h1,
  .auth-visual h1,
  .portal-welcome h1,
  .section-heading h2,
  .positioning-band h2,
  .inclusive-feature h2,
  .expert-band h2,
  .booking-band__intro h2,
  .faq-band h2,
  .contact-band h2,
  .cross-cta h2 {
    overflow-wrap: anywhere;
  }

  .site-nav__list a {
    overflow-wrap: anywhere;
  }
}

/* Contact experience, team cards, and a deterministic mobile menu state. */
.contact-experience {
  background: var(--paper);
  padding: 104px 0 126px;
}

.contact-experience__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
}

.contact-form-panel,
.contact-map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 58px);
}

.contact-form-panel h2,
.contact-map-panel h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
  margin: 24px 0 18px;
}

.contact-form-panel > p:not(.eyebrow),
.contact-map-panel__copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  max-width: 48ch;
}

.contact-form {
  margin-top: 36px;
}

.contact-form__fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label:not(.contact-form__consent):not(.contact-form__honeypot) {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 14px 15px;
  width: 100%;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 60, 255, .14);
  outline: 0;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form__consent {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.4;
  margin: 18px 0 24px;
}

.contact-form__consent input {
  accent-color: var(--violet);
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-form__honeypot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.contact-form__notice {
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 24px;
  padding: 14px 16px;
}

.contact-form__notice--success { background: #effbea; border-color: #b8dfad; color: #275a2c; }
.contact-form__notice--error { background: #fff0f2; border-color: #e8b7c0; color: #8d1d31; }
.contact-form .button--violet { background: var(--violet); color: var(--white); }

.contact-map-panel {
  background: var(--acid);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-map-panel__address { color: var(--violet-deep) !important; font-weight: 800; }
.contact-map-panel .text-link,
.team-card .text-link { color: var(--violet-deep); font-weight: 900; text-decoration: none; }

.contact-map {
  background: var(--wisteria);
  border: 1px solid rgba(53, 16, 94, .16);
  border-radius: 4px;
  min-height: 360px;
  overflow: hidden;
}

.contact-map iframe { border: 0; display: block; height: 100%; min-height: 360px; width: 100%; }
.contact-map--empty { align-items: center; color: var(--violet-deep); display: flex; font-size: 15px; line-height: 1.5; padding: 28px; }

.team-band { background: var(--paper); padding: 112px 0 128px; }

.team-grid {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  margin-top: 52px;
}

.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.team-card__portrait { aspect-ratio: 1 / 1; background: linear-gradient(145deg, var(--violet-deep), var(--violet)); display: grid; overflow: hidden; place-items: center; }
.team-card__portrait img { height: 100%; image-rendering: auto; object-fit: cover; width: 100%; }
.team-card__portrait span { color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 100px; }
.team-card__body { padding: 26px; }
.team-card__body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 42px; line-height: .95; margin: 16px 0 14px; }
.team-card__body > p:not(.eyebrow) { color: var(--muted); line-height: 1.5; min-height: 48px; }
.team-empty { background: var(--acid); border: 1px solid var(--line); margin-top: 48px; padding: 26px; }

/* The operator workspace is an internal app, not a public browsing page. */
body.is-operator-app .site-header { display: none !important; }
body.is-operator-app .beautyos-operator { min-height: 100svh; padding-top: 24px; }

@media (max-width: 900px) {
  .site-header { position: relative; z-index: 1000; }
  .site-header__inner { grid-template-columns: minmax(0, 1fr) 54px; padding-left: 20px; padding-right: 20px; }
  .site-menu-toggle { align-items: center; display: flex; flex-direction: column; height: 52px; justify-content: center; margin-left: auto; width: 52px; z-index: 1102; }
  .site-menu-toggle > span:not(.screen-reader-text) { background: currentColor; display: block; height: 3px; margin: 3px 0; width: 31px; }
  .site-nav { display: block; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease; visibility: hidden; z-index: 1101; }
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav { display: block; opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
body.has-open-menu { overflow: hidden; }

  .contact-experience__grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .contact-experience, .team-band { padding: 74px 0 86px; }
  .contact-form__fields, .team-grid { grid-template-columns: 1fr; }
  .contact-form__full { grid-column: auto; }
  .contact-map, .contact-map iframe { min-height: 280px; }
  .team-card__portrait { aspect-ratio: 1.15 / 1; }
}

/* Final mobile navigation layer: keeps the open panel visible above page content. */
@media (max-width: 900px) {
  .site-header { position: relative !important; z-index: 1200 !important; }
  .site-header__inner { position: relative !important; z-index: 1202 !important; }
  .site-menu-toggle { color: #35105e !important; display: flex !important; position: relative !important; z-index: 1205 !important; }
  .site-nav,
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav {
    background: #fcf8ff !important;
    box-sizing: border-box !important;
    display: block !important;
    inset: var(--header-height) 0 auto !important;
    max-height: calc(100svh - var(--header-height)) !important;
    min-height: calc(100svh - var(--header-height)) !important;
    opacity: 0;
    overflow-y: auto !important;
    padding: 32px 24px 44px !important;
    pointer-events: none;
    position: fixed !important;
    transform: translateY(-8px);
    visibility: hidden;
    width: 100vw !important;
    z-index: 1201 !important;
  }
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
  }
  .site-nav .site-nav__list { display: grid !important; gap: 0 !important; margin: 0 !important; padding: 0 !important; }
  .site-nav .site-nav__list li { display: block !important; margin: 0 !important; }
  .site-nav .site-nav__list a { border-bottom: 1px solid #e6d9f0 !important; color: #21102f !important; display: block !important; font-family: "Cormorant Garamond", Georgia, serif !important; font-size: 32px !important; line-height: 1.1 !important; padding: 18px 0 !important; }
}

@media (max-width: 900px) {
  .category-nav a[aria-pressed="true"] { background: var(--violet-deep); color: var(--white); }
  .service-story[hidden] { display: none !important; }
}

.loyalty-card .eyebrow,
.loyalty-card p.eyebrow {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 1px 12px rgba(16, 4, 32, .42);
}

/* Team profiles stay compact until a visitor asks to read the story. */
.team-card > summary { list-style: none; }
.team-card > summary::-webkit-details-marker { display: none; }
.team-card__summary { cursor: pointer; display: grid; grid-template-columns: minmax(170px, .82fr) minmax(0, 1.18fr); min-height: 0; }
.team-card__summary:focus-visible { outline: 3px solid var(--violet); outline-offset: -3px; }
.team-card__summary-body { align-content: center; display: flex; flex-direction: column; justify-content: center; min-height: 280px; padding: 24px 26px 26px; }
.team-card__summary-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 42px; line-height: .95; margin: 16px 0 18px; }
.team-card__summary-excerpt { -webkit-box-orient: vertical; -webkit-line-clamp: 4; color: var(--muted); display: -webkit-box; font-size: 15px; line-height: 1.45; margin: 0 0 18px; overflow: hidden; }
.team-card__toggle { align-items: center; color: var(--violet-deep); display: flex; font-size: 14px; font-weight: 900; gap: 8px; }
.team-card__toggle-close { display: none; }
.team-card[open] .team-card__toggle-open { display: none; }
.team-card[open] .team-card__toggle-close { display: inline; }
.team-card[open] .team-card__toggle span[aria-hidden="true"] { transform: rotate(90deg); }
.team-card__toggle span[aria-hidden="true"] { display: inline-block; transition: transform 180ms ease; }
.team-card__details { border-top: 1px solid var(--line); color: var(--muted); line-height: 1.55; max-height: 230px; overflow: auto; padding: 22px 26px 26px; }
.team-card__details p { margin: 0 0 18px; }
.team-card__details .text-link { display: inline-block; }

/* Homepage treatment discovery is category-led; individual services stay in the listino. */
.home-category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
}

.home-category-card {
  background: var(--violet-deep);
  border-radius: 6px;
  color: var(--white);
  display: block;
  min-height: 330px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.home-category-card__image,
.home-category-card__image img,
.home-category-card__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-category-card__image img { object-fit: cover; transition: transform 360ms ease; }
.home-category-card__shade { background: linear-gradient(180deg, rgba(25, 8, 36, .12), rgba(25, 8, 36, .9)); }
.home-category-card:hover .home-category-card__image img { transform: scale(1.045); }
.home-category-card__content { display: flex; flex-direction: column; inset: 0; justify-content: flex-end; padding: 24px; position: absolute; }
.home-category-card__number { font-size: 12px; font-weight: 900; letter-spacing: .08em; margin-bottom: auto; }
.home-category-card__content strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 37px; line-height: .98; }
.home-category-card__content small { font-size: 14px; line-height: 1.35; margin-top: 10px; max-width: 25ch; }
.home-category-card__link { font-size: 13px; font-weight: 900; margin-top: 22px; }
.home-category-card--2 { background: #5f34b5; }
.home-category-card--3 { background: #9b3e83; }
.home-category-card--4 { background: #35105e; }

.category-nav button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  padding: 9px 14px;
}

.category-nav button:hover,
.category-nav button[aria-pressed="true"] { background: var(--violet-deep); border-color: var(--violet-deep); color: var(--white); }
.page-services .service-story[hidden] { display: none !important; }

@media (max-width: 680px) {
  .team-card__summary { display: block; }
  .team-card__portrait { aspect-ratio: 1.35 / 1; }
  .team-card__summary-body { min-height: 0; padding: 20px; }
  .team-card__details { max-height: 280px; padding: 18px 20px 22px; }
  .home-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-category-card { min-height: 260px; }
  .home-category-card__content { padding: 18px; }
  .home-category-card__content strong { font-size: 30px; }
}

@media (max-width: 430px) {
  .home-category-grid { grid-template-columns: 1fr; }
}

/* Complete internal portal refresh. */
.portal-page,
.portal-page * {
  min-width: 0;
}

.portal-welcome {
  background: #151119;
  color: var(--white);
  padding: clamp(64px, 9vw, 112px) 0 86px;
}

.portal-welcome h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  max-width: 940px;
}

.portal-welcome p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.portal-logout {
  border-radius: 999px;
}

.portal-actions,
.portal-actions--loyalty {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.portal-actions a {
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(21, 17, 25, 0.08);
  min-height: 132px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.portal-actions a:hover {
  border-color: var(--violet-deep);
  transform: translateY(-3px);
}

.portal-dashboard {
  background: #fbf7f2;
  padding: 44px 0 0;
}

.portal-dashboard__stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.portal-dashboard__stats article,
.portal-next-card,
.portal-note-card,
.loyalty-card,
.portal-promotions article,
.portal-empty,
.portal-profile__form,
.portal-support__actions {
  border-radius: 8px;
}

.portal-dashboard__stats article {
  background: var(--white);
  border: 1px solid #e2d8df;
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 18px;
}

.portal-dashboard__stats span,
.portal-dashboard__stats small {
  color: #675d69;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-dashboard__stats strong {
  color: #151119;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.86;
  margin-top: auto;
}

.portal-overview {
  background: #fbf7f2;
  padding: 24px 0 70px;
}

.portal-overview__grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
}

.portal-next-card {
  background: var(--white);
  border: 1px solid #e2d8df;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
}

.portal-next-card h2 {
  color: #151119;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin: 12px 0 20px;
}

.portal-next-card p {
  color: #675d69;
  line-height: 1.55;
  margin: 0 0 24px;
}

.portal-next-card dl,
.appointment-history dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 24px;
}

.portal-next-card dl div,
.appointment-history dl div {
  background: #fbf7f2;
  border: 1px solid #ece3ea;
  border-radius: 8px;
  padding: 12px;
}

.portal-next-card dt,
.appointment-history dt {
  color: #675d69;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-next-card dd,
.appointment-history dd {
  color: #151119;
  font-weight: 850;
  margin: 6px 0 0;
}

.portal-next-card .button {
  align-self: flex-start;
  background: #151119;
  color: var(--white);
  margin-top: auto;
}

.loyalty-card {
  background: linear-gradient(135deg, #2c0a49 0%, #54188a 58%, #7b3cff 100%);
  border: 1px solid rgba(240, 220, 255, 0.24);
  box-shadow: 0 22px 60px rgba(44, 10, 73, 0.22);
  color: var(--white);
}

.loyalty-card h2,
.portal-note-card h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.portal-note-card {
  background: #eef6e8;
  border: 1px solid #d8e7ce;
}

.portal-note-card h2 {
  margin-top: 36px;
}

.portal-benefits {
  background: #f4eef7;
}

.portal-section-title h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.92;
  margin-bottom: 14px;
}

.portal-section-title p:last-child {
  color: #675d69;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 720px;
}

.portal-promotions--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-promotions article {
  overflow-wrap: anywhere;
}

.portal-appointments {
  background: #fbf7f2;
  padding: 86px 0;
}

.appointment-history {
  border-top-color: #d7cbd4;
}

.appointment-history article {
  background: var(--white);
  border: 1px solid #e2d8df;
  border-radius: 8px;
  grid-template-columns: minmax(160px, 0.7fr) minmax(260px, 1.25fr) minmax(150px, auto);
  margin-bottom: 12px;
  padding: 18px;
}

.appointment-history article.is-upcoming {
  border-color: #1f4e33;
  box-shadow: inset 5px 0 0 #1f4e33;
}

.appointment-history h3 {
  color: #151119;
  font-size: 1.3rem;
}

.appointment-status {
  background: #e8f6ec;
  color: #145738;
}

.portal-profile {
  background: #f4eef7;
  padding: 86px 0;
}

.portal-profile__form {
  border-radius: 8px;
}

.portal-profile__form input,
.portal-profile__form textarea {
  border-radius: 5px;
}

.portal-profile__completion {
  background: var(--white);
  border: 1px solid #e2d8df;
  border-radius: 999px;
  margin-top: 28px;
  min-height: 46px;
  overflow: hidden;
  position: relative;
}

.portal-profile__completion span {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  inset: 0;
  justify-content: center;
  position: absolute;
  z-index: 2;
}

.portal-profile__completion strong {
  background: #d6ead0;
  display: block;
  height: 46px;
}

.portal-support {
  background: #151119;
  color: var(--white);
  padding: 72px 0;
}

.portal-support__grid {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.portal-support h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.92;
  margin: 12px 0 18px;
}

.portal-support p:last-child {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

.portal-support__actions {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.portal-support__actions a {
  background: var(--white);
  border-radius: 999px;
  color: #151119;
  font-weight: 900;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .portal-dashboard__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-overview__grid,
  .portal-support__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .portal-dashboard__stats,
  .portal-promotions--cards,
  .portal-next-card dl,
  .appointment-history dl,
  .appointment-history article {
    grid-template-columns: 1fr;
  }

  .portal-welcome .section-shell {
    align-items: flex-start;
    display: grid;
  }

  .portal-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-actions a {
    min-height: 112px;
    padding: 16px;
  }

  .portal-dashboard,
  .portal-overview {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 430px) {
  .portal-actions {
    grid-template-columns: 1fr;
  }
}

/* Final site-wide completion pass: stable, readable pages on every viewport. */
:root {
  --header-height: 94px;
}

body,
.site-main,
.section-shell,
.site-header__inner,
.site-footer__inner,
.page-hero__grid,
.story-hero,
.contact-experience__grid,
.portal-page,
.auth-page {
  min-width: 0;
}

.site-header,
.site-header__inner {
  min-height: var(--header-height);
}

.site-header {
  background: rgba(252, 248, 255, 0.98);
}

.site-header__inner {
  grid-template-columns: minmax(220px, 1fr) auto auto;
}

.site-brand__official-logo {
  height: 88px;
  width: 88px;
}

.site-nav__list a,
.site-header__cta,
.button,
.text-action,
.text-link {
  min-width: 0;
  overflow-wrap: anywhere;
}

.impact-hero {
  min-height: min(760px, calc(100svh - var(--header-height)));
}

.impact-hero__aura {
  display: none;
}

.impact-hero__content {
  min-height: min(760px, calc(100svh - var(--header-height)));
  padding-bottom: 74px;
  padding-top: 66px;
}

.impact-hero h1 {
  font-size: clamp(4.2rem, 8vw, 6.5rem);
  letter-spacing: 0;
}

.impact-hero__payoff,
.page-hero__grid > p,
.story-hero__copy > p,
.contact-form-panel > p:not(.eyebrow),
.contact-map-panel__copy > p:not(.eyebrow),
.auth-panel__intro > p:last-child {
  color: #5f5368;
  max-width: 64ch;
}

.impact-hero__payoff {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--violet .page-hero__grid > p,
.page-hero--ink .page-hero__grid > p,
.story-hero__copy > p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: clamp(70px, 9vw, 104px) 0 clamp(58px, 8vw, 86px);
}

.page-hero h1,
.story-hero h1,
.auth-visual h1,
.portal-welcome h1 {
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page-hero__grid {
  gap: clamp(24px, 6vw, 72px);
}

.start-band,
.services-band,
.method-band,
.faq-band,
.contact-band,
.page-services,
.booking-page__widget,
.contact-directory,
.contact-experience,
.team-band {
  padding-top: clamp(70px, 8vw, 104px);
  padding-bottom: clamp(78px, 9vw, 122px);
}

.goal-tile,
.home-category-card,
.service-story,
.contact-directory a,
.contact-form-panel,
.contact-map-panel,
.auth-form,
.portal-dashboard__stats article,
.portal-next-card,
.portal-note-card,
.loyalty-card {
  min-width: 0;
}

.service-story__content,
.team-card__body,
.contact-directory a,
.auth-form {
  overflow-wrap: anywhere;
}

.booking-assurance .section-shell {
  gap: 0;
}

.auth-page {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
}

.auth-forms--single {
  justify-content: start;
}

.site-footer {
  padding-left: 0;
  padding-right: 0;
}

.site-footer__brand {
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  gap: 16px;
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: minmax(190px, 1fr) auto auto;
  }

  .site-nav__list {
    gap: 14px;
  }

  .auth-page,
  .story-hero,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .auth-visual,
  .story-hero__media {
    min-height: min(520px, 58svh);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .site-header,
  .site-header__inner {
    min-height: var(--header-height) !important;
  }

  .site-brand__official-logo {
    height: 70px !important;
    width: 70px !important;
  }

  .site-nav,
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav {
    inset: var(--header-height) 0 auto !important;
    min-height: calc(100svh - var(--header-height)) !important;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: 0;
  }

  .section-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-brand__official-logo {
    height: 64px !important;
    width: 64px !important;
  }

  .impact-hero,
  .impact-hero__content {
    min-height: calc(100svh - var(--header-height));
  }

  .impact-hero__content {
    padding: 74px 18px 54px;
  }

  .impact-hero h1 {
    font-size: clamp(3.6rem, 18vw, 4.7rem);
  }

  .impact-hero__actions,
  .booking-assurance .section-shell,
  .site-footer__inner,
  .site-footer__meta,
  .site-footer__bottom,
  .auth-forms,
  .auth-forms--single,
  .values-band .section-shell,
  .contact-directory .section-shell {
    grid-template-columns: 1fr;
  }

  .booking-assurance .section-shell div,
  .booking-assurance .section-shell div:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-left: 0;
    padding-right: 0;
  }

  .auth-page {
    display: block;
  }

  .auth-visual {
    min-height: 390px;
    padding: 48px 20px;
  }

  .auth-panel {
    padding: 46px 18px 64px;
  }

  .contact-directory a {
    min-height: 188px;
  }

  .contact-directory strong {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .site-footer__inner,
  .site-footer__bottom {
    display: grid;
  }
}

/* Premium wow layer: sharper brand presence without breaking the app surfaces. */
.impact-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 6, 16, 0.78) 0%, rgba(10, 6, 16, 0.46) 42%, rgba(10, 6, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 6, 16, 0.08) 0%, rgba(10, 6, 16, 0.62) 100%);
}

.impact-hero h1,
.page-hero h1,
.story-hero h1 {
  text-wrap: balance;
}

.impact-hero h1 {
  text-shadow: 0 18px 54px rgba(10, 6, 16, 0.4);
}

.impact-hero__payoff {
  font-weight: 650;
  text-shadow: 0 10px 36px rgba(10, 6, 16, 0.34);
}

.button,
.site-header__cta,
.text-action {
  box-shadow: 0 12px 30px rgba(10, 6, 16, 0.08);
}

.button:hover,
.site-header__cta:hover,
.text-action:hover {
  box-shadow: 0 18px 42px rgba(53, 16, 94, 0.18);
}

.goal-tile,
.home-category-card,
.service-story,
.team-card,
.contact-directory a,
.auth-form,
.portal-dashboard__stats article,
.portal-next-card,
.portal-note-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-story:hover,
.team-card:hover,
.contact-directory a:hover,
.portal-dashboard__stats article:hover,
.portal-next-card:hover,
.portal-note-card:hover {
  box-shadow: 0 24px 70px rgba(53, 16, 94, 0.14);
  transform: translateY(-4px);
}

.service-story__media img,
.story-hero__media img,
.inclusive-feature__media img,
.expert-band__portrait img,
.home-category-card__image img {
  filter: saturate(1.08) contrast(1.04);
}

.booking-band,
.booking-page__widget {
  background:
    linear-gradient(180deg, #fcf8ff 0%, #f2e8fb 100%);
}

.auth-social--external {
  background: #fbf8ff;
  border: 1px solid #e5d8ef;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
}

.auth-social--external > strong {
  color: #21102f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-social--external p {
  color: #74647f;
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.auth-social--external .mo-openid-app-icons,
.auth-social--external .mo-openid-app-icons > div {
  max-width: 100%;
}

.auth-social--external a,
.auth-social--external button {
  max-width: 100%;
}

@media (max-width: 680px) {
  .impact-hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 6, 16, 0.18) 0%, rgba(10, 6, 16, 0.9) 100%),
      linear-gradient(90deg, rgba(10, 6, 16, 0.75), rgba(53, 16, 94, 0.18));
  }

  .service-story:hover,
  .team-card:hover,
  .contact-directory a:hover,
  .portal-dashboard__stats article:hover,
  .portal-next-card:hover,
  .portal-note-card:hover {
    transform: none;
  }
}

/* Violet/wisteria market-ready visual pass. */
:root {
  --ink: #120719;
  --ink-soft: #271133;
  --paper: #fdf9ff;
  --violet: #7b3cff;
  --violet-deep: #2c0a49;
  --acid: #f0dcff;
  --ice: #eadfff;
  --coral: #f2b8df;
  --wisteria: #baa3ee;
  --mist: #f8f1ff;
  --line: #e8d9f2;
}

body {
  background:
    linear-gradient(180deg, #fffaff 0%, #f8f1ff 42%, #fffdf9 100%);
}

.site-header {
  background: rgba(253, 249, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(186, 163, 238, 0.28);
  position: sticky;
  top: 0;
}

.admin-bar .site-header {
  top: 32px;
}

.site-nav__list a {
  border-radius: 8px;
  color: #180d22;
  font-weight: 850;
  padding: 10px 8px;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
  background: #f0dcff;
  color: #35105e;
}

.site-header__cta,
.button--acid,
.button--light,
.text-action {
  background: linear-gradient(135deg, #35105e 0%, #7b3cff 58%, #baa3ee 100%);
  border-color: transparent;
  color: #fff;
}

.button--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.impact-hero {
  background: #190824;
}

.impact-hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 7, 25, 0.88) 0%, rgba(53, 16, 94, 0.58) 50%, rgba(123, 60, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 7, 25, 0.1) 0%, rgba(18, 7, 25, 0.72) 100%);
}

.impact-hero__aura {
  background:
    linear-gradient(120deg, rgba(240, 220, 255, 0.18), rgba(186, 163, 238, 0.04) 50%, rgba(242, 184, 223, 0.16));
  inset: 0;
}

.impact-hero__proof li,
.luxury-strip p,
.booking-assurance .section-shell div {
  border-radius: 8px;
}

.start-band,
.services-band,
.method-band,
.faq-band,
.contact-band,
.page-services,
.contact-directory,
.contact-experience,
.team-band {
  background: linear-gradient(180deg, #fffaff, #f8f1ff);
}

.positioning-band,
.inclusive-feature,
.booking-band,
.booking-page__widget {
  background:
    linear-gradient(135deg, #2c0a49 0%, #35105e 48%, #7b3cff 100%);
  color: #fff;
}

.positioning-band p,
.positioning-band dd,
.inclusive-feature p,
.booking-band p,
.booking-page__widget > .section-shell > p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading h2,
.positioning-band h2,
.inclusive-feature h2,
.booking-band h2,
.expert-band h2,
.faq-band h2,
.contact-band h2 {
  text-wrap: balance;
}

.inclusive-feature__media,
.home-category-card__image,
.service-story__media,
.story-hero__media,
.expert-band__portrait {
  background: linear-gradient(135deg, #2c0a49, #7b3cff);
}

.inclusive-feature__media img,
.home-category-card__image img,
.service-story__media img,
.story-hero__media img,
.expert-band__portrait img {
  color: transparent;
  font-size: 0;
}

.goal-tile,
.service-story,
.team-card,
.contact-directory a,
.auth-form,
.contact-form-panel,
.contact-map-panel,
.portal-dashboard__stats article,
.portal-next-card,
.portal-note-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(186, 163, 238, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(53, 16, 94, 0.08);
}

.home-category-card {
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(53, 16, 94, 0.18);
}

.home-category-card__shade {
  background:
    linear-gradient(180deg, rgba(18, 7, 25, 0.04), rgba(18, 7, 25, 0.72)),
    linear-gradient(135deg, rgba(123, 60, 255, 0.2), rgba(240, 182, 219, 0.18));
}

.goal-tile--violet,
.goal-tile--ink {
  background: linear-gradient(135deg, #35105e, #7b3cff);
  color: #fff;
}

.goal-tile--ice {
  background: linear-gradient(135deg, #f0dcff, #fffaff);
}

.goal-tile--coral {
  background: linear-gradient(135deg, #f2b8df, #eadfff);
}

.page-hero {
  background:
    linear-gradient(135deg, #2c0a49 0%, #5b22b2 58%, #baa3ee 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  inset: auto 0 0;
  height: 1px;
  position: absolute;
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero__grid > p {
  color: #fff;
}

.page-hero__grid > p {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
}

.booking-page__widget {
  padding-top: clamp(50px, 7vw, 86px);
}

.booking-assurance {
  background: #210c32;
  color: #fff;
}

.site-footer {
  background:
    linear-gradient(135deg, #120719 0%, #35105e 54%, #2c0a49 100%);
  color: #fff;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__bottom a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #f0dcff;
}

@media (max-width: 900px) {
  .admin-bar .site-header {
    top: 0;
  }

  .site-nav,
  .site-nav.is-open,
  .site-nav[aria-hidden="false"],
  .site-menu-toggle[aria-expanded="true"] + .site-nav {
    background: #fffaff !important;
  }
}

@media (max-width: 680px) {
  .site-nav__list a {
    padding: 12px;
  }

  .page-hero__grid > p {
    padding: 14px;
  }
}


/* =========================================================
   Area cliente - Fidelity
   Correzione contrasto finale
   ========================================================= */

.portal-page .loyalty-card {
  background: linear-gradient(135deg, #2c0a49 0%, #54188a 58%, #7b3cff 100%);
  border-color: rgba(240, 220, 255, 0.24);
  color: #ffffff;
}

.portal-page .loyalty-card h2,
.portal-page .loyalty-card p,
.portal-page .loyalty-card > strong,
.portal-page .loyalty-card > small,
.portal-page .loyalty-card__managed-note,
.portal-page .loyalty-card__qr strong,
.portal-page .loyalty-card__qr span,
.portal-page .loyalty-card__qr small {
  color: #ffffff;
}

.portal-page .loyalty-card .eyebrow {
  color: #f0dcff;
}

.portal-page .loyalty-card__managed-note,
.portal-page .loyalty-card__qr span,
.portal-page .loyalty-card__qr small {
  opacity: 0.9;
}

.portal-page .loyalty-card__progress {
  background: rgba(255, 255, 255, 0.24);
}

.portal-page .loyalty-card__progress span {
  background: #f0dcff;
}

.portal-page .loyalty-card__qr {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-page .loyalty-card .button {
  background: #ffffff;
  color: #2c0a49;
  box-shadow: none;
}

.portal-page .loyalty-card .button:hover,
.portal-page .loyalty-card .button:focus-visible {
  background: #f0dcff;
  color: #2c0a49;
}


/* =========================================================
   Area cliente - notifiche sopra le card
   Evita che il menu portale con margin-top negativo
   copra il messaggio di successo/errore.
   ========================================================= */

.portal-page .portal-notice {
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 18px;
  position: relative;
  z-index: 4;
  border-radius: 8px;
  color: #173d2c;
  font-weight: 750;
  line-height: 1.45;
}

.portal-page .portal-notice--success {
  background: #e9f8f0;
  border: 1px solid rgba(36, 122, 87, 0.22);
  border-left: 4px solid #247a57;
  color: #173d2c;
}

.portal-page .portal-notice--error {
  background: #fff0f4;
  border: 1px solid rgba(180, 35, 60, 0.22);
  border-left: 4px solid #b4233c;
  color: #721426;
}

/* Quando c'e una notifica, le card non devono risalire sopra di essa. */
.portal-page .portal-notice + .portal-actions,
.portal-page .portal-notice + .portal-actions--loyalty {
  margin-top: 0 !important;
}

/* Senza notifica resta il normale effetto sovrapposto del menu. */
.portal-page .portal-welcome + .portal-actions,
.portal-page .portal-welcome + .portal-actions--loyalty {
  margin-top: -36px;
}

@media (max-width: 680px) {
  .portal-page .portal-notice {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .portal-page .portal-notice + .portal-actions,
  .portal-page .portal-notice + .portal-actions--loyalty {
    margin-top: 0 !important;
  }
}
