:root {
  color-scheme: light;
  --sd-primary: #3ab9c5;
  --sd-primary-dark: #2397a1;
  --sd-purple: #714291;
  --sd-purple-dark: #55306e;
  --sd-bg-light: #f4f1e9;
  --sd-text: #6e6e6e;
  --sd-ink: #111111;
  --sd-white: #ffffff;
  --sd-line: #d8d4ca;
  --sd-shadow: 0 20px 35px rgba(17, 17, 17, 0.16);
  --container: 1200px;
}

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

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

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

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sd-white);
  color: var(--sd-text);
  font-family:
    "QuicksandLocal",
    "Quicksand",
    "Amiko",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin-top: 0;
}

h1 {
  color: var(--sd-purple);
  font-family: "FasthandLocal", "Fasthand", "Brush Script MT", cursive;
  font-weight: 400;
  line-height: 1;
}

h2,
h3,
h4 {
  color: var(--sd-purple);
  font-weight: 400;
  line-height: 1.18;
}

h2,
h3 {
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
}

h4,
.section-kicker,
.eyebrow {
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
}

p {
  margin-bottom: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cocoon-shell {
  min-height: 100vh;
  background: var(--sd-white);
}

.content-container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.cocoon-shell .cocoon-header {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  align-items: initial;
  justify-content: initial;
  z-index: 50;
  width: 100%;
  padding: 0;
  background: var(--sd-white);
  border-top: 8px solid var(--sd-purple);
  border-bottom: 0;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.08);
}

.cocoon-shell .cocoon-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
}

.cocoon-shell .site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  color: inherit;
}

.cocoon-shell .site-nav a,
.cocoon-shell .nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  color: #7a7a7a;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cocoon-shell .site-nav a::after,
.cocoon-shell .nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--sd-purple);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.cocoon-shell .site-nav a:hover,
.cocoon-shell .site-nav a.is-active,
.cocoon-shell .nav-dropdown:hover > .nav-dropdown-trigger,
.cocoon-shell .nav-dropdown:focus-within > .nav-dropdown-trigger {
  color: var(--sd-purple);
}

.cocoon-shell .site-nav a:hover::after,
.cocoon-shell .site-nav a.is-active::after,
.cocoon-shell .nav-dropdown:hover > .nav-dropdown-trigger::after,
.cocoon-shell .nav-dropdown:focus-within > .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
}

.nav-dropdown-trigger::before {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  order: 2;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 205px;
  padding: 7px 0;
  background: var(--sd-white);
  border: 1px solid rgba(113, 66, 145, 0.16);
  border-top: 2px solid var(--sd-purple);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.13);
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cocoon-shell .nav-dropdown-menu a {
  width: 100%;
  min-height: 32px;
  padding: 7px 15px;
  color: #747474;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cocoon-shell .nav-dropdown-menu a:hover,
.cocoon-shell .nav-dropdown-menu a:focus {
  color: var(--sd-purple);
  background: rgba(113, 66, 145, 0.06);
}

.cocoon-shell .nav-dropdown-menu a::after {
  display: none;
}

.cocoon-shell .cocoon-header-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.cocoon-shell .site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  min-height: 0;
  margin-top: 14px;
  padding: 8px;
  background: var(--sd-white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  text-decoration: none;
}

.cocoon-shell .site-brand img {
  width: auto;
  max-height: 80px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--sd-purple);
  background: transparent;
  border: 0;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle-lines {
  margin: 0 auto;
}

.nav-toggle-lines::before {
  transform: translateY(-8px);
}

.nav-toggle-lines::after {
  transform: translateY(6px);
}

.cocoon-header.is-open .nav-toggle-lines {
  background: transparent;
}

.cocoon-header.is-open .nav-toggle-lines::before {
  transform: translateY(2px) rotate(45deg);
}

.cocoon-header.is-open .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 25px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button-primary {
  color: var(--sd-white);
  background: var(--sd-primary);
}

.button-primary:hover {
  color: var(--sd-purple);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.78)
  );
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 30px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(7px);
}

.button-outline,
.button-secondary {
  color: var(--sd-primary);
  background: transparent;
  border-color: var(--sd-primary);
}

.button-outline:hover,
.button-secondary:hover {
  color: var(--sd-text);
  background: var(--sd-white);
  border-color: var(--sd-text);
}

.text-link {
  color: var(--sd-primary);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  text-decoration: underline;
}

.page {
  padding-top: 72px;
}

.page-home {
  padding-top: 0;
  overflow: hidden;
}

.service-detail-page {
  background: var(--sd-white);
}

.service-detail-hero {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--sd-white);
  text-align: center;
  background-position: center;
  background-size: cover;
}

.service-detail-hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  padding: 72px 0 62px;
  text-shadow: 0 2px 12px rgba(17, 17, 17, 0.38);
}

.service-detail-hero h1 {
  margin-bottom: 18px;
  color: var(--sd-white);
  font-size: 90px;
}

.service-detail-hero p {
  margin-bottom: 34px;
  color: var(--sd-white);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.35;
}

.student-notice {
  padding: 46px 0;
  color: var(--sd-white);
  text-align: center;
  background: var(--sd-primary);
}

.student-notice p {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--sd-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.hands-pricing {
  padding: 78px 0 76px;
  background: var(--sd-white);
}

.hands-advice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-bottom: 50px;
}

.hands-advice-grid h2,
.hands-advice-grid h3 {
  margin-bottom: 16px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
}

.hands-advice-grid h2 {
  font-size: 38px;
}

.hands-advice-grid h3 {
  font-size: 25px;
}

.hands-advice-grid p {
  max-width: 520px;
  color: var(--sd-text);
}

.hands-advice-grid article:nth-child(2) {
  padding: 30px 30px 28px;
  border: 1px solid var(--sd-primary);
}

.hands-advice-grid article:nth-child(2) p {
  max-width: none;
  margin-bottom: 0;
}

.hands-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 58px;
}

.hands-price-item {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hands-price-item h3 {
  margin-bottom: 6px;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.hands-price-item p {
  margin: 0;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.55;
}

.hands-price-item strong {
  flex: 0 0 auto;
  color: var(--sd-purple);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.hands-brand-section {
  padding: 100px 0 78px;
  background: var(--sd-white);
}

.hands-image-separator {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--sd-white);
}

.hands-image-separator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hands-brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.hands-brand-copy h2 {
  margin-bottom: 22px;
  font-size: 42px;
}

.hands-brand-copy h3 {
  margin-bottom: 22px;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.hands-brand-copy p:not(.section-kicker) {
  margin-bottom: 30px;
  color: var(--sd-text);
}

.hands-brand-image img {
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.service-reservation-cta {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 82px 16px;
  text-align: center;
  background-position: center;
  background-size: cover;
}

.service-reservation-cta::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(113, 66, 145, 0.8);
  content: "";
}

.service-reservation-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.service-reservation-cta .section-kicker {
  margin-bottom: 24px;
  color: var(--sd-white);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.service-reservation-cta h2 {
  margin: 0 auto 24px;
  color: var(--sd-white);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.service-reservation-cta p:not(.section-kicker) {
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.service-reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.feet-hero {
  background-position: center;
}

.feet-beauty-section {
  padding: 78px 0 74px;
  background: var(--sd-white);
}

.feet-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 46px;
}

.feet-intro-copy {
  color: var(--sd-text);
  font-size: 17px;
}

.feet-intro-copy strong {
  color: var(--sd-ink);
  font-weight: 700;
}

.feet-note-card {
  padding: 30px 30px 28px;
  border: 1px solid var(--sd-primary);
}

.feet-note-card h2 {
  margin-bottom: 16px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.feet-note-card p {
  margin-bottom: 0;
  color: var(--sd-text);
}

.feet-price-list {
  display: grid;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.feet-price-item {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #e9e9e9;
}

.feet-price-item h2 {
  margin-bottom: 5px;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.feet-price-item p {
  margin: 0;
  color: #8c8c8c;
  font-size: 14px;
  font-style: italic;
}

.feet-price-item strong {
  color: var(--sd-purple);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.feet-kart-pricing {
  padding: 82px 0 86px;
  text-align: center;
  background: var(--sd-bg-light);
}

.feet-kart-heading {
  width: min(920px, 100%);
  margin: 0 auto 54px;
}

.feet-kart-heading h2 {
  margin-bottom: 24px;
  font-size: 38px;
}

.feet-kart-heading p {
  color: var(--sd-ink);
  font-weight: 600;
}

.feet-kart-heading .feet-kart-note {
  margin: 16px 0 0;
  color: var(--sd-text);
  font-size: 14px;
  font-weight: 400;
}

.feet-kart-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.feet-kart-steps article {
  padding: 24px 22px;
}

.feet-kart-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--sd-primary);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.feet-kart-steps h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.feet-kart-steps p {
  min-height: 64px;
  color: var(--sd-text);
}

.feet-kart-steps strong {
  display: block;
  color: var(--sd-primary);
  font-size: 26px;
  font-weight: 800;
}

.feet-kart-brand {
  padding: 0 0 78px;
  background: var(--sd-white);
}

.feet-kart-banner {
  width: min(var(--container), calc(100% - 32px));
  height: auto;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: var(--sd-white);
}

.feet-kart-banner .feet-kart-product {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.feet-kart-brand-layout {
  display: grid;
  width: min(var(--container), calc(100% - 32px));
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 70px;
  scroll-margin-top: 128px;
}

.feet-kart-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: visible;
}

.feet-kart-logo {
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.feet-kart-copy h2 {
  max-width: none;
  margin-bottom: 22px;
  font-size: 42px;
  line-height: 1.18;
}

.feet-kart-copy h3 {
  margin-bottom: 22px;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.feet-kart-copy p {
  max-width: none;
  margin-bottom: 30px;
  color: var(--sd-text);
  font-size: 16px;
  line-height: 1.6;
}

.feet-kart-cards-wrap {
  width: min(var(--container), calc(100% - 32px));
}

.feet-kart-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
}

.feet-kart-info-grid article {
  min-height: 0;
  padding: 30px;
  background: var(--sd-white);
  border: 1px solid var(--sd-primary);
}

.feet-kart-info-grid h4 {
  margin-bottom: 16px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.feet-kart-info-grid p,
.feet-kart-info-grid li {
  font-size: 16px;
  line-height: 1.6;
}

.feet-kart-info-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--sd-text);
}

.feet-kart-order-card .button {
  margin-top: 18px;
}

.feet-products-phone-label {
  margin-bottom: 0;
  color: var(--sd-ink);
  font-weight: 700;
}

.feet-kart-info-grid .feet-products-phone {
  margin-top: -6px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.feet-kart-info-grid .feet-products-phone a {
  color: inherit;
  text-decoration: none;
}

.feet-reservation-cta {
  background-position: center;
}

.visage-hero {
  background-position: center;
}

.visage-pricing {
  padding: 78px 0 76px;
  background: var(--sd-white);
}

.face-section-heading {
  margin-bottom: 54px;
  text-align: center;
}

.face-section-heading h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  color: var(--sd-purple);
  font-size: 38px;
}

.face-section-heading h2::after {
  display: block;
  width: min(400px, 80vw);
  height: 1px;
  margin: 24px auto 0;
  background: #d7d7d7;
  content: "";
}

.face-price-list {
  max-width: 900px;
}

.face-price-item > div {
  min-width: 0;
}

.face-derma-section {
  padding: 92px 0 88px;
  background: var(--sd-bg-light);
}

.face-derma-copy ul {
  margin: -10px 0 28px;
  padding-left: 22px;
  color: var(--sd-text);
}

.face-derma-copy li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.55;
}

.face-derma-copy strong {
  color: var(--sd-ink);
  font-weight: 700;
}

.face-derma-image img {
  width: min(100%, 520px);
}

.face-brands-section {
  padding: 84px 0 92px;
  background: var(--sd-white);
}

.face-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  text-align: left;
}

.face-brand-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.face-brand-card img {
  align-self: center;
  width: min(100%, 240px);
  height: 120px;
  margin-bottom: 30px;
  object-fit: contain;
}

.face-brand-card h3 {
  margin-bottom: 18px;
  color: var(--sd-purple);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.face-brand-card p {
  margin-bottom: 34px;
  color: var(--sd-text);
  font-size: 16px;
}

.face-brand-card .button {
  margin-top: auto;
  padding: 15px 28px;
}

.visage-reservation-cta {
  background-position: center;
}

.makeup-hero {
  background-position: center;
}

.makeup-pricing {
  padding: 78px 0 86px;
  background: var(--sd-white);
}

.makeup-section-heading {
  width: min(900px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.makeup-section-heading h2 {
  margin-bottom: 18px;
  color: var(--sd-purple);
  font-size: 38px;
}

.makeup-section-heading p:not(.makeup-travel-note) {
  margin: 0 auto;
  color: var(--sd-purple);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-transform: uppercase;
}

.makeup-section-heading::after {
  display: block;
  width: min(400px, 80vw);
  height: 1px;
  margin: 34px auto 0;
  background: #d7d7d7;
  content: "";
}

.makeup-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 58px;
  row-gap: 0;
  margin-bottom: 86px;
}

.makeup-price-item {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #e9e9e9;
}

.makeup-price-item h3 {
  margin: 0;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.makeup-price-item p {
  margin: 6px 0 0;
  color: #8c8c8c;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.makeup-price-item strong {
  flex: 0 0 auto;
  color: var(--sd-ink);
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.makeup-wedding-heading {
  margin-top: 4px;
}

.makeup-travel-note {
  margin-top: 28px;
  color: var(--sd-text);
  font-size: 16px;
  font-style: italic;
}

.makeup-wedding-grid {
  margin-bottom: 0;
}

.makeup-image-separator {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--sd-white);
}

.makeup-image-separator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.makeup-brand-section {
  padding: 82px 0;
  background: var(--sd-white);
}

.makeup-brand-image img {
  width: min(100%, 420px);
  max-height: 360px;
  object-fit: contain;
}

.makeup-brand-copy h2 {
  margin-bottom: 22px;
  font-size: 38px;
}

.makeup-reservation-cta {
  background-position: center;
}

.blog-index-page {
  padding-top: 72px;
  background: var(--sd-white);
}

.blog-index-hero {
  padding: 92px 0 62px;
  text-align: center;
  background: var(--sd-bg-light);
}

.blog-index-hero h1 {
  margin-bottom: 18px;
  font-size: 92px;
  text-shadow: 0 3px 8px rgba(113, 66, 145, 0.18);
}

.blog-index-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #777777;
  font-size: 20px;
}

.blog-index-section {
  padding: 74px 0 92px;
}

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

.blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--sd-white);
  border: 1px solid rgba(58, 185, 197, 0.38);
}

.blog-card-image {
  display: block;
  aspect-ratio: 1.2;
  overflow: hidden;
  background: var(--sd-bg-light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.035);
}

.blog-card-image.is-empty::before {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 30px;
  content: "Astuces";
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-card-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.blog-card-terms span {
  padding: 4px 10px;
  color: var(--sd-purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(113, 66, 145, 0.25);
}

.blog-card-date {
  margin-bottom: 8px;
  color: #999999;
  font-size: 14px;
}

.blog-card h2 {
  margin-bottom: 16px;
  font-size: 31px;
}

.blog-card h2 a,
.blog-card-link {
  text-decoration: none;
}

.blog-card p {
  color: #777777;
}

.blog-card-link {
  margin-top: auto;
  color: var(--sd-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card-link:hover {
  color: var(--sd-purple);
}

.blog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 48px 28px;
  color: var(--sd-purple);
  text-align: center;
  border: 1px solid rgba(58, 185, 197, 0.38);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 46px;
}

.blog-pagination a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--sd-purple);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(113, 66, 145, 0.32);
}

.blog-pagination a:hover,
.blog-pagination a[aria-current="page"] {
  color: var(--sd-white);
  background: var(--sd-purple);
}

.cocoon-shell .blog-article-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 90px;
  color: var(--sd-text);
}

.cocoon-shell .blog-article-page .hero-img {
  width: 100%;
  max-height: 520px;
  margin-bottom: 44px;
  object-fit: cover;
}

.cocoon-shell .blog-article-page .article-hero {
  margin-bottom: 34px;
}

.cocoon-shell .blog-article-page h1 {
  margin-bottom: 18px;
  font-size: 76px;
}

.cocoon-shell .blog-article-page .muted {
  color: #8c8c8c;
}

.cocoon-shell .blog-article-page .prose {
  color: #747474;
  font-size: 18px;
  line-height: 1.78;
}

.cocoon-shell .blog-article-page .prose h2,
.cocoon-shell .blog-article-page .prose h3 {
  margin-top: 42px;
}

.cocoon-shell .blog-article-page .prose img {
  height: auto;
  margin: 30px 0;
}

.cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) {
  width: min(920px, calc(100% - 32px));
  min-height: 48vh;
  margin: 0 auto;
  padding: 142px 0 84px;
}

.cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) h1 {
  margin-bottom: 22px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.1;
}

.cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) p {
  color: var(--sd-text);
  font-size: 18px;
  line-height: 1.75;
}

.cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) a {
  color: var(--sd-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cocoon-shell .legal-page {
  width: min(920px, calc(100% - 32px));
  max-width: 920px;
  margin: 0 auto;
  padding: 142px 0 84px;
}

.cocoon-shell .legal-page h1 {
  margin-bottom: 28px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.1;
}

.cocoon-shell .legal-page .prose {
  color: var(--sd-text);
  font-size: 18px;
  line-height: 1.75;
}

.cocoon-shell .legal-page .prose h2,
.cocoon-shell .legal-page .prose h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

.cocoon-shell .legal-page .prose h2 {
  font-size: 31px;
}

.cocoon-shell .legal-page .prose h3 {
  font-size: 24px;
}

.cocoon-shell .legal-page .prose a {
  color: var(--sd-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cocoon-shell .legal-page .prose ul,
.cocoon-shell .legal-page .prose ol {
  padding-left: 1.35em;
}

.article-summary,
.article-cta,
.author-bio {
  margin: 36px 0;
  padding: 28px;
  border: 1px solid rgba(58, 185, 197, 0.42);
}

.article-back-link {
  margin-top: 42px;
}

.article-back-link a {
  color: var(--sd-primary);
  font-weight: 700;
  text-decoration: none;
}

.article-back-link a:hover {
  color: var(--sd-purple);
}

@media (max-width: 980px) {
  .service-detail-hero {
    min-height: 500px;
  }

  .service-detail-hero h1 {
    font-size: 70px;
  }

  .service-detail-hero p {
    font-size: 22px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    margin-top: -64px;
    transform: none;
  }

  .contact-info-section {
    padding-bottom: 28px;
    background: var(--sd-bg-light);
  }

  .contact-form-panel {
    padding: 34px;
  }

  .hands-advice-grid,
  .hands-price-grid,
  .hands-brand-layout {
    grid-template-columns: 1fr;
  }

  .hands-advice-grid {
    gap: 26px;
  }

  .hands-brand-layout {
    gap: 38px;
  }

  .hands-brand-image {
    order: -1;
  }

  .feet-intro-grid,
  .feet-kart-brand-layout,
  .feet-kart-steps,
  .feet-kart-info-grid,
  .face-brand-grid,
  .makeup-price-grid {
    grid-template-columns: 1fr;
  }

  .feet-kart-banner {
    margin-bottom: 72px;
  }

  .feet-kart-brand-layout {
    width: min(var(--container), calc(100% - 32px));
    gap: 40px;
    align-items: start;
    margin-bottom: 44px;
  }

  .feet-kart-cards-wrap {
    width: min(var(--container), calc(100% - 32px));
  }

  .feet-kart-logo-panel {
    justify-content: center;
    min-height: 0;
  }

  .feet-kart-logo {
    width: min(100%, 560px);
  }

  .feet-kart-info-grid {
    width: 100%;
    margin-right: 0;
  }

  .face-brand-grid {
    gap: 40px;
  }

  .makeup-price-grid {
    margin-bottom: 64px;
  }

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

}

@media (max-width: 640px) {
  .service-detail-page {
    padding-top: 72px;
  }

  .service-detail-hero {
    min-height: 430px;
  }

  .service-detail-hero-content {
    padding: 58px 0 48px;
  }

  .service-detail-hero h1 {
    font-size: 48px;
  }

  .service-detail-hero p {
    font-size: 18px;
  }

  .contact-info-section {
    padding-bottom: 44px;
  }

  .contact-info-card {
    min-height: 0;
    padding: 30px 22px;
  }

  .contact-info-card h2 {
    font-size: 23px;
  }

  .contact-main-section {
    padding: 50px 0 68px;
  }

  .contact-aside h2,
  .contact-form-panel h2 {
    font-size: 31px;
  }

  .contact-aside p {
    font-size: 16px;
  }

  .contact-action-row,
  .contact-form .button {
    width: 100%;
  }

  .contact-action-row .button,
  .contact-form .button {
    justify-self: stretch;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .student-notice {
    padding: 34px 0;
  }

  .student-notice p {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .blog-index-page {
    padding-top: 72px;
  }

  .blog-index-hero {
    padding: 58px 0 44px;
  }

  .blog-index-hero h1 {
    font-size: 58px;
  }

  .blog-index-hero p,
  .cocoon-shell .blog-article-page .prose {
    font-size: 16px;
  }

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

  .blog-card-body {
    padding: 24px;
  }

  .cocoon-shell .blog-article-page {
    padding: 104px 0 64px;
  }

  .cocoon-shell .blog-article-page h1 {
    font-size: 50px;
  }

  .cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) {
    width: calc(100% - 32px);
    padding-top: 124px;
    padding-bottom: 64px;
  }

  .cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) h1 {
    font-size: 36px;
  }

  .cocoon-shell .cocoon-system-page:not(.legal-page):not(.article) p {
    font-size: 16px;
  }

  .cocoon-shell .legal-page {
    width: calc(100% - 32px);
    padding-top: 124px;
    padding-bottom: 64px;
  }

  .cocoon-shell .legal-page h1 {
    font-size: 38px;
  }

  .cocoon-shell .legal-page .prose {
    font-size: 16px;
  }

  .hands-pricing,
  .hands-brand-section {
    padding: 56px 0;
  }

  .hands-image-separator {
    height: 210px;
  }

  .hands-advice-grid h2 {
    font-size: 32px;
  }

  .hands-advice-grid h3,
  .service-reservation-cta .section-kicker {
    font-size: 24px;
  }

  .hands-price-item {
    gap: 16px;
  }

  .hands-price-item h3 {
    font-size: 17px;
  }

  .feet-beauty-section,
  .feet-kart-pricing,
  .visage-pricing,
  .face-derma-section,
  .face-brands-section,
  .makeup-pricing,
  .makeup-brand-section {
    padding: 56px 0;
  }

  .feet-kart-brand {
    padding: 0 0 56px;
  }

  .feet-kart-banner {
    margin-bottom: 48px;
  }

  .feet-kart-brand-layout {
    width: min(var(--container), calc(100% - 32px));
  }

  .feet-intro-grid {
    gap: 28px;
  }

  .feet-note-card,
  .feet-kart-info-grid article {
    padding: 24px;
  }

  .feet-price-item {
    gap: 16px;
  }

  .feet-kart-heading h2,
  .feet-kart-copy h2,
  .face-section-heading h2,
  .makeup-section-heading h2,
  .makeup-brand-copy h2 {
    font-size: 31px;
  }

  .feet-kart-copy h2 {
    margin-bottom: 30px;
  }

  .feet-kart-copy h3 {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.65;
  }

  .feet-kart-copy p {
    font-size: 16px;
  }

  .feet-kart-info-grid h4 {
    font-size: 24px;
  }

  .face-section-heading {
    margin-bottom: 36px;
  }

  .face-brand-card img {
    margin-bottom: 18px;
  }

  .makeup-section-heading {
    margin-bottom: 36px;
  }

  .makeup-section-heading p:not(.makeup-travel-note) {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .makeup-price-grid {
    margin-bottom: 54px;
  }

  .makeup-price-item {
    gap: 16px;
  }

  .makeup-price-item h3 {
    font-size: 17px;
  }

  .makeup-brand-image img {
    width: min(100%, 280px);
    max-height: 300px;
  }

  .visage-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .visage-hero p {
    width: min(330px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .face-price-item {
    flex-direction: column;
    gap: 8px;
  }

  .face-price-item strong {
    align-self: flex-start;
  }

  .feet-kart-info-grid p,
  .feet-kart-info-grid li {
    font-size: 16px;
  }

  .feet-kart-steps p {
    min-height: 0;
  }

  .service-reservation-cta {
    min-height: 390px;
    padding: 64px 16px;
  }

  .service-reservation-cta h2 {
    font-size: 15px;
  }

  .service-reservation-cta p:not(.section-kicker) {
    font-size: 16px;
  }

  .service-reservation-actions {
    flex-direction: column;
    align-items: center;
  }
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  content: "";
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms ease;
}

.home-hero.is-video-ready .home-hero-video {
  opacity: 1;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 116px 18px 90px;
}

.home-hero h1 {
  margin-bottom: 20px;
  font-size: 118px;
  overflow-wrap: anywhere;
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.22);
}

.home-hero p {
  margin-bottom: 34px;
  color: var(--sd-white);
  font-size: 30px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.info-cards {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: -160px auto 0;
  padding: 0 16px 82px;
  background: linear-gradient(
    to bottom,
    transparent 0 160px,
    var(--sd-bg-light) 160px 100%
  );
}

.info-cards-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.info-cards article {
  min-height: 235px;
  padding: 34px 28px 30px;
  text-align: center;
  background: var(--sd-white);
  box-shadow: var(--sd-shadow);
}

.info-cards img {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.info-cards h2 {
  margin-bottom: 16px;
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 20px;
  text-transform: uppercase;
}

.info-cards p {
  margin: 0;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--sd-bg-light);
}

.home-about-image img,
.appointment-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.home-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px max(32px, calc((100vw - var(--container)) / 2)) 88px 86px;
}

.section-kicker,
.eyebrow {
  margin-bottom: 8px;
  color: var(--sd-purple);
  font-size: 22px;
  line-height: 1.3;
}

.home-about h2 {
  margin-bottom: 20px;
  font-size: 50px;
}

.home-about h3 {
  margin-bottom: 28px;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 20px;
}

.home-about .lead {
  color: var(--sd-ink);
  font-size: 19px;
}

.home-about .button {
  align-self: flex-start;
  margin-top: 10px;
}

.home-services {
  padding: 76px 0 86px;
  background: var(--sd-white);
}

.home-services h2 {
  margin-bottom: 46px;
  font-size: 40px;
}

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

.service-card {
  min-width: 0;
}

.service-image {
  display: block;
  aspect-ratio: 1;
  margin-bottom: 22px;
  overflow: hidden;
  text-decoration: none;
}

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

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
}

.service-card p {
  display: -webkit-box;
  min-height: 138px;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--sd-text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.home-testimonials {
  padding: 72px 0 82px;
  color: var(--sd-white);
  background: var(--sd-primary);
  text-align: center;
}

.home-testimonials .section-kicker,
.home-testimonials h2,
.home-testimonials p {
  color: var(--sd-white);
}

.testimonial-heading {
  width: min(100%, 760px);
  margin: 0 auto 34px;
}

.testimonial-heading h2 {
  margin-bottom: 16px;
  font-size: 38px;
}

.testimonial-list {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.testimonial-marquee {
  overflow: hidden;
}

.testimonial-marquee-track {
  display: flex;
  width: max-content;
  animation: testimonial-marquee 52s linear infinite;
  will-change: transform;
}

.testimonial-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  padding-right: 24px;
}

.testimonial-marquee-item {
  flex: 0 0 auto;
  width: min(380px, calc(100vw - 56px));
}

.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.testimonial-link .testimonial-card {
  height: 100%;
}

.testimonial-link:hover .testimonial-card,
.testimonial-link:focus-visible .testimonial-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(17, 17, 17, 0.16);
}

.testimonial-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 24px;
  color: var(--sd-text);
  text-align: left;
  background: var(--sd-white);
  border-top: 4px solid rgba(113, 66, 145, 0.9);
  border-radius: 0;
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.testimonial-card-shell {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card blockquote {
  margin: 0;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.testimonial-stars {
  margin-bottom: 2px;
  color: var(--sd-purple);
  font-size: 15px;
  letter-spacing: 0.22em;
  line-height: 1;
}

.testimonial-card footer {
  padding-top: 15px;
  border-top: 1px solid rgba(113, 66, 145, 0.1);
}

.home-testimonials .testimonial-author {
  margin: 0;
  color: var(--sd-purple);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

@keyframes testimonial-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home-gallery-marquee {
  scroll-margin-top: 140px;
  overflow: hidden;
  line-height: 0;
  background: var(--sd-bg-light);
}

.gallery-marquee {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.gallery-marquee[hidden] {
  display: none;
}

.gallery-marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  line-height: 0;
  animation: gallery-marquee 42s linear infinite;
  will-change: transform;
}

.gallery-marquee-item {
  flex: 0 0 auto;
  width: 240px;
  margin: 0;
  line-height: 0;
}

.gallery-marquee-item img {
  display: block;
  width: 240px;
  height: 240px;
  object-fit: cover;
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--sd-bg-light);
}

.appointment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 86px 84px max(32px, calc((100vw - var(--container)) / 2));
}

.appointment-copy h2 {
  margin-bottom: 22px;
  font-size: 48px;
}

.appointment-copy .button {
  align-self: flex-start;
  margin-top: 8px;
}

.cocoon-footer {
  margin-top: 0;
  padding: 74px 0 30px;
  background: var(--sd-bg-light);
  border-top: 0;
}

.page-about {
  padding-top: 72px;
  background: var(--sd-white);
}

.about-hero {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 32px));
  padding: 70px 0 58px;
}

.about-hero h1 {
  margin-bottom: 16px;
  color: var(--sd-purple);
  font-family: "FasthandLocal", "Fasthand", "Brush Script MT", cursive;
  font-size: 104px;
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 4px 10px rgba(85, 48, 110, 0.28);
}

.about-hero p {
  margin-bottom: 28px;
  color: var(--sd-purple);
  font-size: 26px;
  text-shadow: 0 2px 8px rgba(85, 48, 110, 0.24);
}

.about-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--sd-bg-light);
}

.about-welcome-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.about-welcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px max(32px, calc((100vw - var(--container)) / 2)) 88px 86px;
}

.about-welcome h2 {
  margin-bottom: 18px;
  font-size: 54px;
}

.about-welcome h3 {
  margin-bottom: 28px;
  color: var(--sd-ink);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.about-welcome p {
  color: var(--sd-ink);
  font-size: 17px;
}

.about-commitments {
  padding: 74px 0 88px;
  background: var(--sd-white);
}

.about-commitments-heading {
  margin-bottom: 44px;
  text-align: center;
}

.about-commitments-heading h2 {
  margin-bottom: 0;
  font-size: 46px;
}

.about-commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.about-commitment-grid article {
  padding: 34px 28px 30px;
  text-align: center;
  background: var(--sd-white);
}

.about-commitment-grid img {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.about-commitment-grid h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
}

.about-commitment-grid p {
  margin-bottom: 0;
  color: var(--sd-text);
  font-size: 15px;
  line-height: 1.75;
}

.about-commitments-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.footer-address,
.footer-links {
  font-style: normal;
}

.footer-address h2,
.footer-links h2 {
  margin-bottom: 22px;
  color: var(--sd-primary);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-address p {
  margin-bottom: 10px;
}

.footer-address a,
.footer-links a {
  color: #777777;
  text-decoration: none;
}

.footer-address a:hover,
.footer-links a:hover {
  color: var(--sd-primary);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  width: auto;
  max-height: 150px;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--sd-white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: var(--sd-purple);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.footer-socials svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-socials .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover {
  transform: scale(1.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-links a {
  margin-bottom: 7px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  width: min(var(--container), calc(100% - 32px));
  margin: 58px auto 0;
  padding-top: 24px;
  color: #777777;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--sd-line);
}

.footer-bottom a,
.footer-bottom button {
  color: inherit;
  font: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
}

.footer-bottom a:hover,
.footer-bottom button:hover {
  color: var(--sd-primary);
  text-decoration: underline;
}

.cocoon-consent-banner {
  left: 50%;
  right: auto;
  bottom: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(1180px, calc(100vw - 32px));
  padding: 20px 22px;
  color: var(--sd-text);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 233, 0.98));
  border: 1px solid rgba(113, 66, 145, 0.14);
  border-top: 4px solid var(--sd-primary);
  box-shadow: 0 -18px 42px rgba(17, 17, 17, 0.18);
  transform: translateX(-50%);
}

.cocoon-consent-copy strong {
  margin-bottom: 7px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
}

.cocoon-consent-copy p {
  max-width: 820px;
  color: var(--sd-text);
  font-size: 15px;
  line-height: 1.65;
}

.cocoon-consent-actions {
  gap: 10px;
}

.cocoon-consent-actions button,
.cocoon-consent-dialog button {
  min-height: 43px;
  padding: 10px 21px;
  color: var(--sd-purple);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: var(--sd-white);
  border: 1px solid rgba(113, 66, 145, 0.26);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.cocoon-consent-actions button:hover,
.cocoon-consent-dialog button:hover {
  color: var(--sd-purple-dark);
  border-color: rgba(113, 66, 145, 0.48);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.1);
  transform: translateY(-1px);
}

.cocoon-consent-actions [data-kai-consent-accept],
.cocoon-consent-dialog [data-kai-consent-save] {
  color: var(--sd-white);
  background: var(--sd-primary);
  border-color: var(--sd-primary);
}

.cocoon-consent-actions [data-kai-consent-accept]:hover,
.cocoon-consent-dialog [data-kai-consent-save]:hover {
  color: var(--sd-white);
  background: var(--sd-primary-dark);
  border-color: var(--sd-primary-dark);
}

.cocoon-consent-modal {
  z-index: 9100;
  padding: 28px;
  background: rgba(17, 17, 17, 0.52);
  backdrop-filter: blur(4px);
}

.cocoon-consent-dialog {
  width: min(820px, 100%);
  max-height: min(86vh, 760px);
  padding: 34px;
  color: var(--sd-text);
  font-family: "QuicksandLocal", "Quicksand", "Amiko", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 233, 0.98));
  border: 1px solid rgba(113, 66, 145, 0.16);
  border-top: 4px solid var(--sd-primary);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.28);
}

.cocoon-consent-dialog header {
  align-items: center;
  margin-bottom: 22px;
}

.cocoon-consent-dialog h2 {
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.14;
}

.cocoon-consent-dialog > p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--sd-text);
  font-size: 17px;
  line-height: 1.75;
}

.cocoon-consent-choice {
  gap: 18px;
  padding: 17px 18px;
  margin: 12px 0;
  color: var(--sd-text);
  background: var(--sd-white);
  border: 1px solid rgba(58, 185, 197, 0.4);
}

.cocoon-consent-choice strong {
  color: var(--sd-purple);
  font-size: 17px;
  font-weight: 700;
}

.cocoon-consent-choice small {
  margin-top: 6px;
  color: var(--sd-text);
  font-size: 13px;
  line-height: 1.5;
}

.cocoon-consent-choice input {
  width: 22px;
  height: 22px;
  accent-color: var(--sd-primary);
}

.cocoon-consent-dialog .cocoon-consent-actions {
  margin-top: 18px;
}

.page-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 56px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 58px;
}

.page-hero p {
  font-size: 18px;
}

.section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.highlight-band h2 {
  font-size: 44px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.split-reverse .section-copy {
  order: 1;
}

.section-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.section-image.portrait img {
  aspect-ratio: 1;
}

.value-grid,
.feature-grid,
.brand-grid,
.pricing-grid,
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-grid article,
.feature-grid article,
.brand-grid article,
.pricing-card,
.care-card,
.contact-details article {
  padding: 28px;
  background: var(--sd-white);
  border: 1px solid var(--sd-line);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
}

.highlight-band {
  width: min(920px, calc(100% - 32px));
  margin: 52px auto;
  padding: 46px 34px;
  color: var(--sd-white);
  text-align: center;
  background: var(--sd-purple);
  box-shadow: var(--sd-shadow);
}

.highlight-band h2,
.highlight-band p {
  color: var(--sd-white);
}

.highlight-soft {
  background: var(--sd-bg-light);
}

.highlight-soft h2,
.highlight-soft p {
  color: var(--sd-purple);
}

.contact-page {
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--sd-white);
}

.contact-hero {
  min-height: 520px;
  background-position: center 46%;
}

.contact-hero .service-detail-hero-content {
  width: min(980px, calc(100% - 32px));
  margin-top: 32px;
  padding: 74px 0 88px;
}

.contact-hero h1 {
  margin-bottom: 12px;
  font-size: 86px;
}

.contact-hero p {
  max-width: 880px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  font-size: 24px;
  line-height: 1.38;
}

.contact-info-section {
  padding: 0 0 24px;
  background: var(--sd-bg-light);
}

.contact-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: -58px;
  transform: none;
}

.contact-info-card {
  min-height: 205px;
  padding: 32px 28px 30px;
  text-align: center;
  background: var(--sd-white);
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.11);
}

.contact-info-card img {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.contact-info-card h2 {
  margin-bottom: 14px;
  color: var(--sd-purple);
  font-size: 24px;
  text-transform: uppercase;
}

.contact-info-card p {
  margin: 0;
  color: #7c7c7c;
  font-size: 16px;
  line-height: 1.55;
}

.contact-info-card a {
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--sd-primary);
}

.contact-main-section {
  padding: 44px 0 96px;
  background: linear-gradient(
    to bottom,
    var(--sd-bg-light) 0 24px,
    var(--sd-white) 24px 100%
  );
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: start;
}

.contact-aside {
  padding-top: 8px;
}

.contact-aside h2,
.contact-form-panel h2 {
  margin-bottom: 28px;
  color: var(--sd-purple);
  font-size: 44px;
}

.contact-aside p {
  color: #858585;
  font-size: 18px;
  line-height: 1.75;
}

.contact-practical-list {
  display: grid;
  gap: 16px;
  margin: 34px 0;
}

.contact-practical-list p {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--sd-primary);
}

.contact-practical-list strong {
  color: var(--sd-ink);
}

.contact-practical-list a {
  color: var(--sd-purple);
  font-weight: 700;
  text-decoration: none;
}

.contact-practical-list a:hover {
  text-decoration: underline;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-form-panel {
  padding: 42px;
  border: 1px solid var(--sd-primary);
}

.contact-form-panel h2 {
  font-size: 40px;
}

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

.contact-form label,
.antibot-zone label {
  display: grid;
  gap: 7px;
  color: var(--sd-purple);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.antibot-zone input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--sd-ink);
  font: inherit;
  background: var(--sd-white);
  border: 1px solid var(--sd-line);
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.antibot-zone input:focus {
  border-color: var(--sd-primary);
  outline: 2px solid rgba(58, 185, 197, 0.18);
  outline-offset: 1px;
}

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

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .button {
  justify-self: start;
  min-width: 190px;
}

.contact-map-panel {
  grid-column: 1 / -1;
  margin-top: 18px;
  background: var(--sd-bg-light);
}

.contact-map-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.hp {
  position: absolute;
  left: -10000px;
}

.form-message,
.empty {
  margin: 0;
  color: var(--sd-purple);
  font-weight: 700;
}

.form-message.is-error,
.empty.is-error {
  color: #a13d3d;
}

@media (max-width: 1180px) {
  .cocoon-shell .cocoon-header {
    border-top-width: 8px;
  }

  .cocoon-shell .cocoon-header-inner {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    width: min(var(--container), calc(100% - 32px));
    height: 64px;
  }

  .nav-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .cocoon-shell .cocoon-header-side {
    grid-column: 2;
    justify-content: center;
  }

  .cocoon-shell .site-brand {
    width: 100px;
    height: 56px;
    min-height: 56px;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .cocoon-shell .site-brand img {
    max-height: 54px;
  }

  .cocoon-shell .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 28px 28px;
    overflow: auto;
    background: var(--sd-white);
    border-top: 1px solid var(--sd-line);
    box-shadow: 0 18px 30px rgba(17, 17, 17, 0.14);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .cocoon-shell .cocoon-header.is-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cocoon-shell .site-nav a,
  .cocoon-shell .nav-dropdown-trigger {
    justify-content: center;
    min-height: 46px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .nav-dropdown {
    display: grid;
    height: auto;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px;
    text-align: center;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .cocoon-shell .cocoon-header:not(.is-open) .nav-dropdown-menu,
  .cocoon-shell .cocoon-header.is-open .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  .cocoon-shell .cocoon-header.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    justify-content: center;
    min-height: 34px;
  }

  .page {
    padding-top: 72px;
  }

  .home-hero-content {
    padding-top: 96px;
  }

  .home-hero h1 {
    font-size: 82px;
  }

  .home-hero p {
    font-size: 24px;
  }

  .info-cards-inner,
  .contact-info-grid,
  .service-grid,
  .testimonial-list,
  .footer-inner,
  .home-about,
  .about-welcome,
  .about-commitment-grid,
  .appointment-section,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-cards {
    margin-top: -96px;
    background: linear-gradient(
      to bottom,
      transparent 0 96px,
      var(--sd-bg-light) 96px 100%
    );
  }

  .contact-info-section {
    padding-bottom: 24px;
    background: var(--sd-bg-light);
  }

  .contact-info-grid {
    margin-top: -52px;
    transform: none;
  }

  .contact-form-panel {
    padding: 34px;
  }

  .home-about-copy,
  .about-welcome-copy,
  .appointment-copy {
    padding: 56px 24px;
  }

  .home-about-image img,
  .about-welcome-image img,
  .appointment-image img {
    min-height: 340px;
  }

  .footer-links {
    align-items: center;
    text-align: center;
  }

  .footer-address {
    text-align: center;
  }

  .value-grid,
  .feature-grid,
  .brand-grid,
  .pricing-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

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

  .home-hero h1 {
    font-size: 40px;
  }

  .home-hero p {
    font-size: 20px;
  }

  .info-cards article {
    min-height: 0;
    padding: 28px 20px;
  }

  .home-about h2,
  .about-welcome h2,
  .about-commitments-heading h2,
  .appointment-copy h2,
  .section-heading h2,
  .section-copy h2,
  .highlight-band h2 {
    font-size: 34px;
  }

  .about-hero {
    min-height: 360px;
  }

  .about-hero h1 {
    font-size: 64px;
  }

  .about-hero p {
    font-size: 20px;
  }

  .section-kicker,
  .eyebrow {
    font-size: 19px;
  }

  .home-services h2,
  .testimonial-heading h2 {
    font-size: 32px;
  }

  .service-card p {
    min-height: 0;
  }

  .gallery-marquee-item,
  .gallery-marquee-item img {
    width: 170px;
    height: 170px;
  }

  .testimonial-marquee-group {
    gap: 18px;
    padding-right: 18px;
  }

  .testimonial-marquee-item {
    width: min(86vw, 320px);
  }

  .testimonial-card {
    min-height: 250px;
    padding: 24px 22px 20px;
  }

  .testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-testimonials .testimonial-author {
    font-size: 18px;
  }

  .cocoon-consent-banner {
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    padding: 18px 16px;
  }

  .cocoon-consent-copy strong {
    font-size: 22px;
  }

  .cocoon-consent-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cocoon-consent-actions {
    justify-content: stretch;
  }

  .cocoon-consent-actions button,
  .cocoon-consent-dialog button {
    flex: 1 1 100%;
    min-height: 42px;
    padding: 9px 16px;
    font-size: 14px;
  }

  .cocoon-consent-modal {
    padding: 14px;
  }

  .cocoon-consent-dialog {
    max-height: 88vh;
    padding: 24px 18px;
  }

  .cocoon-consent-dialog header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cocoon-consent-dialog h2 {
    font-size: 28px;
  }

  .cocoon-consent-dialog > p {
    font-size: 15px;
    line-height: 1.6;
  }

  .cocoon-consent-choice {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 15px;
  }

  .contact-info-section {
    padding-bottom: 22px;
  }

  .contact-hero .service-detail-hero-content {
    width: calc(100vw - 32px);
    max-width: 300px;
    margin-top: 16px;
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .contact-hero h1 {
    font-size: 58px;
  }

  .contact-hero p {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.45;
  }

  .contact-info-card {
    min-height: 0;
    padding: 30px 22px;
  }

  .contact-info-card h2 {
    font-size: 23px;
  }

  .contact-main-section {
    padding: 38px 0 68px;
    background: linear-gradient(
      to bottom,
      var(--sd-bg-light) 0 20px,
      var(--sd-white) 20px 100%
    );
  }

  .contact-aside h2,
  .contact-form-panel h2 {
    font-size: 31px;
  }

  .contact-aside p {
    font-size: 16px;
  }

  .contact-action-row,
  .contact-action-row .button,
  .contact-form .button {
    width: 100%;
  }

  .contact-form .button {
    justify-self: stretch;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .contact-map-panel {
    margin-top: 4px;
  }

  .contact-map-panel iframe {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .visage-page {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .visage-page .content-container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .visage-page .service-detail-hero-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .visage-page .face-price-list,
  .visage-page .face-price-item,
  .visage-page .face-brand-grid {
    width: 100%;
    max-width: 100%;
  }

  .visage-page .face-price-item {
    display: block;
  }

  .visage-page .face-price-item h2,
  .visage-page .face-price-item p,
  .visage-page .face-derma-copy h2,
  .visage-page .face-derma-copy h3,
  .visage-page .face-derma-copy p,
  .visage-page .face-derma-copy li,
  .visage-page .face-brand-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .visage-page .face-price-item strong {
    display: block;
    margin-top: 8px;
  }

  .visage-page .face-derma-copy h2 {
    font-size: 28px;
    line-height: 1.2;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .gallery-marquee-track {
    transform: none !important;
  }

  .testimonial-marquee-track {
    transform: none !important;
  }
}

/* kAIpress Mustache integration */
.cocoon-section-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-reservation-cta > .cocoon-section-background {
  z-index: 0;
}

.home-hero-video {
  z-index: 0;
}

.home-hero.is-video-ready .home-hero-fallback {
  opacity: 0;
}

.home-hero-fallback {
  transition: opacity 240ms ease;
}

.testimonial-card blockquote {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.cocoon-consent-banner {
  position: fixed;
  z-index: 9000;
  display: grid;
  gap: 20px;
  align-items: center;
}

.cocoon-consent-actions,
.cocoon-consent-dialog header,
.cocoon-consent-dialog footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cocoon-consent-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cocoon-consent-dialog {
  overflow-y: auto;
}

.cocoon-consent-dialog header {
  justify-content: space-between;
  gap: 18px;
}

.cocoon-consent-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cocoon-consent-choice span,
.cocoon-consent-choice small {
  display: block;
}

[data-kai-consent-banner][hidden],
[data-kai-consent-modal][hidden],
[data-kai-announcement][hidden],
.cocoon-consent-banner[hidden],
.cocoon-consent-modal[hidden],
.cocoon-announcement[hidden] {
  display: none !important;
}

.cocoon-announcement {
  position: fixed;
  inset: 0;
  z-index: 8800;
  display: grid;
  width: 100%;
  padding: 48px 24px;
  place-items: center;
  background: rgba(18, 18, 18, 0.55);
  pointer-events: auto;
}

.cocoon-announcement-panel {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 96px);
  overflow: auto;
  padding: 40px;
  color: var(--sd-text);
  background: var(--sd-white);
  border-top: 4px solid var(--sd-primary);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.2);
  pointer-events: auto;
}

.cocoon-announcement-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--sd-purple);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.cocoon-announcement-close:hover,
.cocoon-announcement-close:focus-visible {
  background: rgba(113, 66, 145, 0.1);
}

.cocoon-announcement-close img {
  display: block;
  width: 24px;
  height: 24px;
}

.cocoon-announcement-content {
  text-align: center;
}

.cocoon-announcement-content img {
  max-width: 100%;
  height: auto;
}

.footer-socials a {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  box-sizing: border-box;
}

.footer-socials a > img {
  display: block;
  width: 21px;
  height: 21px;
  margin: 0;
}

.antibot-zone [hidden] {
  display: none !important;
}

.antibot-zone .antibot-math-row {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.antibot-question-line {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.antibot-zone .antibot-math-row input[data-kai-antibot-answer] {
  width: 82px;
  min-height: 44px;
  flex: 0 0 82px;
}

.cocoon-system-page {
  min-height: 70vh;
  padding: 152px 0 96px;
  background: var(--sd-bg-light);
}

.cocoon-system-hero,
.cocoon-message-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 56px;
  text-align: center;
}

.cocoon-system-hero h1,
.cocoon-message-page h1,
.cocoon-legal-page h1,
.cocoon-article h1 {
  margin-bottom: 22px;
  color: var(--sd-purple);
  font-family: "FasthandLocal", "Fasthand", "Brush Script MT", cursive;
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.08;
}

.cocoon-post-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cocoon-post-card {
  overflow: hidden;
  background: var(--sd-white);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.cocoon-post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cocoon-post-card > div {
  padding: 28px;
}

.cocoon-post-card h2 {
  margin-bottom: 14px;
  color: var(--sd-purple);
  font-family: "GFS Didot", Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.cocoon-post-card p {
  margin-bottom: 18px;
}

.cocoon-article,
.cocoon-legal-page,
.cocoon-message-page {
  padding: 48px;
  background: var(--sd-white);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.cocoon-article header {
  text-align: center;
}

.cocoon-article-hero {
  width: 100%;
  max-height: 620px;
  margin: 36px 0;
  object-fit: cover;
}

.cocoon-prose {
  font-size: 18px;
  line-height: 1.85;
}

.cocoon-prose h2,
.cocoon-prose h3 {
  margin: 34px 0 14px;
  color: var(--sd-purple);
}

.cocoon-prose p,
.cocoon-prose ul,
.cocoon-prose ol {
  margin-bottom: 20px;
}

.cocoon-author {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-top: 32px;
  margin-top: 42px;
  border-top: 1px solid rgba(113, 66, 145, 0.16);
}

.cocoon-author img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 980px) {
  .cocoon-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cocoon-announcement {
    padding: 10px;
  }

  .cocoon-announcement-panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 42px 18px 18px;
  }

  .cocoon-consent-banner {
    grid-template-columns: 1fr;
    width: calc(100vw - 20px);
    padding: 18px;
    bottom: 10px;
  }

  .cocoon-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cocoon-consent-actions button {
    width: 100%;
  }

  .cocoon-consent-modal {
    padding: 10px;
  }

  .cocoon-consent-dialog {
    padding: 22px 18px;
  }

  .cocoon-system-page {
    padding: 112px 0 64px;
  }

  .cocoon-post-grid {
    grid-template-columns: 1fr;
  }

  .cocoon-article,
  .cocoon-legal-page,
  .cocoon-message-page {
    padding: 28px 20px;
  }
}
