:root {
  --ink: #10162b;
  --navy: #18285c;
  --indigo: #303b94;
  --soft-indigo: #dce1ff;
  --paper: #f2f4fa;
  --gold: #b9945a;
  --line: rgba(16, 22, 43, .16);
  --muted: #676b75;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: 'Noto Sans Thai', 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6; }
img, picture, video, canvas, svg, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 88px; }
.icon-arrow-up-right { position: relative; width: 14px; height: 14px; display: inline-block; flex: 0 0 14px; color: inherit; }
.icon-arrow-up-right::before { content: ''; position: absolute; top: 1px; right: 1px; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; }
.icon-arrow-up-right::after { content: ''; position: absolute; left: 2px; bottom: 3px; width: 11px; height: 1.5px; border-radius: 2px; background: currentColor; transform: rotate(-45deg); transform-origin: left center; }

.site-header { height: 82px; padding: 0 4.2vw; display: flex; align-items: center; justify-content: space-between; background: var(--ink); border-bottom: 1px solid rgba(184,194,255,.2); box-shadow: 0 7px 22px rgba(7,13,34,.18); position: sticky; top: 0; z-index: 20; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--indigo); font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: .08em; }
.brand-mark { width: 22px; height: 22px; display: inline-grid; grid-template-columns: repeat(2, 1fr); gap: 2px; transform: rotate(45deg); }
.brand-mark span { display: block; background: var(--indigo); }
.brand-mark span:nth-child(2), .brand-mark span:nth-child(3) { background: #9ca8eb; }
.site-header .brand { color: #9eafff; font-size: 21px; }
.site-header .brand-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
  flex: 0 0 30px;
  transform: none;
  background: url('/images/home-logo-symbol.webp') center / contain no-repeat;
}
.site-header .brand-mark span { display: none; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 42px); color: #f0f2ff; font-family: 'DM Sans', sans-serif; font-size: 15px; }
.mobile-menu { display: none; }
.desktop-nav > a, .services-menu > .services-menu-trigger { transition: opacity .2s; }
.desktop-nav > a:not(.active), .services-menu > .services-menu-trigger { opacity: .74; }
.desktop-nav > a:hover, .services-menu:hover > .services-menu-trigger, .services-menu:focus-within > .services-menu-trigger, .services-menu[open] > .services-menu-trigger { opacity: 1; }
.services-menu { position: relative; }
.services-menu > .services-menu-trigger { display: flex; align-items: center; gap: 6px; cursor: pointer; color: inherit; }
.services-menu > .services-menu-trigger .nav-chevron { width: 7px; height: 7px; display: block; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .22s ease; }
.services-menu:hover > .services-menu-trigger .nav-chevron, .services-menu:focus-within > .services-menu-trigger .nav-chevron, .services-menu[open] > .services-menu-trigger .nav-chevron { transform: translateY(2px) rotate(225deg); }
.services-dropdown { position: absolute; top: calc(100% + 25px); left: 50%; width: min(680px,72vw); display: grid; grid-template-columns: 1fr 1fr; padding: 28px; transform: translate(-50%,8px); border: 1px solid rgba(48,59,148,.16); background: #f6f7fc; box-shadow: 0 22px 52px rgba(16,22,43,.17); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.services-dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -26px; height: 26px; }
.services-menu:hover .services-dropdown, .services-menu:focus-within .services-dropdown, .services-menu[open] .services-dropdown { transform: translate(-50%,0); opacity: 1; visibility: visible; pointer-events: auto; }
.services-dropdown-group { padding: 0 24px; }
.services-dropdown-group + .services-dropdown-group { border-left: 1px solid rgba(48,59,148,.14); }
.services-dropdown-group > p { margin: 0 0 12px; color: var(--indigo); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.services-dropdown-group > a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; padding: 0 9px; color: var(--ink); border-bottom: 1px solid rgba(16,22,43,.1); font-size: 14px; transition: color .2s ease, background .2s ease, padding .2s ease; }
.services-dropdown-group > a:hover, .services-dropdown-group > a:focus-visible { padding: 0 12px; color: var(--indigo); background: #e7ebf5; }
.services-dropdown-group > a span:last-child { color: var(--indigo); transition: transform .2s ease; }
.services-dropdown-group > a:hover span:last-child { transform: translate(3px,-3px); }
.services-dropdown-all { grid-column: 1 / -1; min-height: 52px; margin: 24px 24px 0; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; background: var(--indigo); font: 600 14px 'DM Sans',sans-serif; transition: padding .22s ease, background .22s ease, box-shadow .22s ease; }
.services-dropdown-all:hover, .services-dropdown-all:focus-visible { padding-left: 21px; background: #1b2769; box-shadow: 0 10px 24px rgba(27,39,105,.2); }
.services-dropdown-all .icon-arrow-up-right { transition: transform .2s ease; }
.services-dropdown-all:hover .icon-arrow-up-right { transform: translate(3px,-3px); }
.header-socials { display: flex; align-items: center; gap: 9px; }
.header-social { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; border-radius: 2px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; transition: transform .2s, background .2s; }
.header-social:hover { transform: translateY(-1px); }
.header-facebook { background: #2454ba; }
.header-facebook:hover { background: #193c91; }
.header-line { background: #08785f; }
.header-line:hover { background: #055846; }
.button span { margin-left: 14px; font-size: 18px; vertical-align: -1px; }

.hero { position: relative; min-height: min(720px, calc(100svh - 82px)); display: grid; grid-template-columns: minmax(0,1.06fr) minmax(400px,.94fr); align-items: center; gap: clamp(34px,4.4vw,76px); padding: clamp(52px,6vw,84px) 7.5vw; color: #fff; overflow: hidden; isolation: isolate; background: linear-gradient(90deg,rgba(34,117,183,.44) 0%,rgba(69,154,211,.29) 48%,rgba(132,203,235,.18) 100%), center 52% / cover no-repeat url('/images/home-hero-salon.webp'); }
.hero::after { display: none; }
.contact-image { position: absolute; inset: 0; background: center 42% / cover no-repeat url('/images/reception.jpg'); transform: scale(1.01); }
.hero-content { position: relative; z-index: 2; width: min(100%,780px); display: flex; flex-direction: column; justify-content: center; padding: 0; text-shadow: 0 2px 22px rgba(4,8,24,.22); }
.hero-brand-lockup { position: relative; z-index: 1; width: min(100%,610px); min-height: 410px; justify-self: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 23px; padding: 28px 12px; border: 0; background: transparent; box-shadow: none; }
.hero-brand-lockup::before { content: ''; display: block; position: absolute; z-index: -1; inset: -5% -12%; border-radius: 50%; pointer-events: none; background: radial-gradient(ellipse at center,rgba(244,246,255,.94) 0%,rgba(220,225,255,.73) 27%,rgba(151,165,242,.34) 49%,rgba(77,94,190,.13) 64%,transparent 76%); filter: blur(12px); }
.hero-brand-lockup::after { content: ''; position: absolute; z-index: -1; left: 18%; right: 18%; bottom: 13%; height: 1px; pointer-events: none; background: linear-gradient(90deg,transparent,rgba(214,188,139,.9),transparent); }
.hero-brand-primary { width: min(100%,520px); display: grid; grid-template-columns: 21% 1fr; align-items: center; gap: 4%; position: relative; z-index: 1; }
.hero-brand-symbol, .hero-brand-word { width: 100%; height: auto; display: block; filter: brightness(1.18) saturate(1.22) contrast(1.06) drop-shadow(0 2px 1px rgba(255,255,255,.42)) drop-shadow(0 13px 20px rgba(8,14,46,.35)); }
.hero-brand-word { transform: translateY(1%); }
.hero-brand-salon { min-width: 49%; min-height: 48px; margin-left: 0; align-self: center; padding: 5px 22px; display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 1; color: #fff; background: linear-gradient(145deg,#4056c8,#30429f 68%,#263786); border: 1px solid rgba(178,190,255,.5); box-shadow: 0 10px 24px rgba(8,14,46,.3),inset 0 1px rgba(255,255,255,.26); font: 400 clamp(18px,1.55vw,26px)/1 'DM Sans',sans-serif; letter-spacing: .17em; white-space: nowrap; }
.hero .eyebrow { color: rgba(255,255,255,.9); font-size: 13px; letter-spacing: .15em; }
.hero h1 { color: #fff; font-size: clamp(58px,5.05vw,98px); letter-spacing: -.067em; white-space: nowrap; }
.hero h1 em { display: inline-block; color: #cbd3ff; font-size: 1em; white-space: nowrap; }
.hero .hero-copy { max-width: 650px; margin: 32px 0 38px; color: rgba(255,255,255,.95); font-size: clamp(21px,1.24vw,24px); line-height: 1.78; }
.hero .button { min-height: 64px; padding-inline: 31px; font-size: 16px; }
.hero .text-link { padding-bottom: 7px; font-size: 16px; }
.hero .hero-actions { gap: 30px; }
.hero .hero-footer { margin-top: clamp(50px,5.7vh,72px); gap: 38px; font-size: 12px; }
.hero .button-primary { color: var(--ink); background: #fff; box-shadow: 0 12px 28px rgba(4,9,30,.25); }
.hero .button-primary:hover { color: #fff; background: var(--indigo); }
.hero .text-link { color: #fff; }

@media (min-width: 801px) and (max-width: 1099px) {
  .hero { grid-template-columns: minmax(0,1.06fr) minmax(340px,.86fr); gap: 26px; padding-left: 5vw; padding-right: 5vw; }
  .hero-brand-lockup { width: 100%; min-height: 330px; padding: 24px 8px; }
  .hero-brand-primary { width: min(100%,410px); }
  .hero h1 { font-size: clamp(50px,5.25vw,61px); }
  .hero .hero-copy { font-size: 19px; }
  .section, .atmosphere { padding-left: 6vw; padding-right: 6vw; }
  .intro-layout { gap: 6vw; }
  .promise { padding-right: 18px; }
  .promise:not(:first-child) { padding-left: 18px; }
}
.eyebrow, .section-label { margin: 0; display: flex; gap: 12px; text-transform: uppercase; letter-spacing: .13em; font: 500 11px/1.35 'DM Sans', 'Noto Sans Thai', sans-serif; }
.seo-keyword {
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
}
.eyebrow:has(.seo-keyword) { flex-wrap: wrap; align-items: baseline; row-gap: 5px; }
.light { color: rgba(255,255,255,.84); }
h1, h2, h3 { margin: 0; font-family: 'Manrope', 'Noto Sans Thai', sans-serif; font-weight: 500; letter-spacing: -.055em; line-height: 1.02; }
h1 { margin-top: 22px; font-size: clamp(54px, 7.5vw, 122px); }
h1 em, h2 em { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.075em; }
h1 em { font-size: .92em; }
.hero-copy { margin: 24px 0 30px; max-width: 500px; color: rgba(255,255,255,.9); font-size: 18px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button { min-height: 52px; display: inline-flex; align-items: center; padding: 0 22px; border: 1px solid transparent; border-radius: 2px; font-size: 14px; font-weight: 600; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button span { display: inline-block; transition: transform .2s; }
.button:hover span { transform: translate(3px, -2px); }
.button-primary { color: #fff; background: var(--indigo); box-shadow: inset 0 -1px 0 rgba(255,255,255,.25), 0 8px 18px rgba(48,59,148,.17); }
.button-primary:hover { background: #1b2769; box-shadow: inset 0 -1px 0 rgba(255,255,255,.18), 0 11px 22px rgba(27,39,105,.24); }
.text-link { display: inline-block; font-size: 14px; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { margin-left: 16px; }
.hero-footer { margin-top: clamp(42px, 5vh, 62px); display: flex; justify-content: flex-start; gap: 30px; color: rgba(255,255,255,.72); font: 10px 'DM Sans', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.hero-footer b { font-size: 15px; margin-left: 8px; }

.section { padding: clamp(75px, 10vw, 160px) 8vw; }
.section-label { color: var(--indigo); }
.section-label span:first-child { color: var(--ink); min-width: 28px; }
.intro { background: #fff; }
.intro-layout { margin-top: clamp(45px, 6vw, 90px); display: grid; grid-template-columns: 1.4fr .65fr; gap: 9vw; align-items: end; }
h2 { font-size: clamp(40px, 5vw, 78px); }
.intro-copy { padding-bottom: 9px; }
.intro-copy p { margin: 0 0 30px; color: var(--muted); font-size: 17px; line-height: 1.9; }

.services {
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(58px, 6vw, 92px);
  background: var(--soft-indigo);
}
.section-top { display: flex; align-items: start; justify-content: space-between; gap: 40px; }
.section-top > p { margin: 0; max-width: 340px; font-size: 15px; color: #475071; }
.service-list { margin-top: clamp(30px, 3.5vw, 50px); border-top: 1px solid var(--line); }
.service-card { min-height: clamp(112px, 8vw, 130px); display: grid; grid-template-columns: 1fr 4fr auto; align-items: center; gap: 30px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding .25s, color .25s; }
.service-card:hover { padding-left: 14px; color: var(--indigo); }
.service-number, .promise > span { font: 12px 'DM Sans', sans-serif; color: var(--indigo); }
.service-card h3 { font-size: clamp(26px, 3vw, 44px); }
.service-card p { margin: 10px 0 0; max-width: 500px; font-size: 14px; color: var(--muted); }
.arrow { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 18px; }

.salon-space { position: relative; padding: clamp(60px, 7vw, 105px) 8vw; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 4vw, 70px); background: #fff; }
.salon-space-copy-stage { width: min(100%, 560px); display: grid; justify-self: end; }
.salon-space-copy { max-width: 560px; grid-area: 1 / 1; z-index: 0; opacity: 0; transform: translateY(12px); pointer-events: none; will-change: opacity, transform; transition: opacity 1.45s cubic-bezier(.45,0,.2,1), transform 1.45s cubic-bezier(.22,1,.36,1); }
.salon-space-copy.is-active { z-index: 1; opacity: 1; transform: translateY(0); pointer-events: auto; }
.salon-space-copy .eyebrow { color: var(--indigo); }
.salon-space-copy h2 { margin: 22px 0 26px; font-size: clamp(38px, 4.4vw, 68px); }
.salon-space-copy > p:not(.eyebrow) { max-width: 500px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.95; }
.salon-space-notes { margin-top: 34px; padding-top: 16px; display: flex; gap: 30px; border-top: 1px solid var(--line); color: var(--indigo); font: 500 11px/1.4 'DM Sans', sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.salon-space-visual { width: min(100%, 560px); justify-self: start; }
.salon-space-media-stage { display: grid; }
.salon-space-media { width: 100%; margin: 0; grid-area: 1 / 1; z-index: 0; opacity: 0; pointer-events: none; will-change: opacity; transition: opacity 1.45s cubic-bezier(.45,0,.2,1); }
.salon-space-media.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.salon-space-media img { display: block; width: 100%; height: min(68vh, 680px); object-fit: cover; object-position: center 58%; border-radius: 12px; filter: saturate(.88); transform: scale(1.012); will-change: transform; transition: transform 6.5s cubic-bezier(.22,1,.36,1); }
.salon-space-media.is-active img { transform: scale(1); }
.salon-space-media figcaption { margin-top: 13px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font: 10px/1.4 'DM Sans', sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.salon-space-controls { margin-top: 24px; display: flex; align-items: center; gap: 9px; }
.salon-space-controls button { width: 28px; height: 3px; padding: 0; border: 0; border-radius: 0; background: rgba(48,59,148,.22); cursor: pointer; transition: width .25s, background .25s; }
.salon-space-controls button.is-active { width: 48px; background: var(--indigo); }
.salon-space-clock { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.salon-space-clock.is-running { animation: salon-space-autoplay 7s linear infinite; }
@keyframes salon-space-autoplay { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .salon-space-copy, .salon-space-media, .salon-space-controls button { transition: none; }
}

.promises { background: var(--navy); color: #fff; }
.promises .section-label { color: #aab7ff; }
.promises .section-label span:first-child { color: #fff; }
.promise-grid { margin-top: clamp(60px, 8vw, 120px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.24); }
.promise { padding: 28px 28px 20px 0; min-height: 260px; border-right: 1px solid rgba(255,255,255,.24); }
.promise:not(:first-child) { padding-left: 28px; }
.promise:last-child { border-right: 0; }
.promise > span { color: #aab7ff; }
.promise h3 { margin-top: 55px; font-size: 22px; letter-spacing: -.035em; }
.promise p { margin-top: 13px; padding-right: 12px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.7); }

.experience { min-height: calc(100vh - 94px); display: flex; flex-direction: column; justify-content: center; padding: clamp(38px,4.5vh,56px) 8vw; background: #f7f8fc; }
.experience-header { display: grid; grid-template-columns: 1fr minmax(280px,390px); gap: clamp(36px,5vw,80px); align-items: center; }
.experience-heading .eyebrow { color: var(--indigo); }
.experience-heading h2 { margin: 10px 0 13px; font-size: clamp(36px,3.8vw,58px); letter-spacing: -.055em; white-space: nowrap; }
.experience-heading > p:not(.eyebrow) { max-width: 660px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.experience-callout { display: grid; padding: 19px 23px; border: 1px solid rgba(48,59,148,.12); background: #fff; box-shadow: 0 14px 34px rgba(16,22,43,.06); }
.experience-callout .eyebrow { margin-bottom: 8px; color: var(--indigo); }
.experience-callout strong { font-size: 16px; }
.experience-callout > span { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.experience-callout > a { width: fit-content; display: inline-flex; align-items: center; gap: 9px; margin-top: 12px; padding-bottom: 3px; border-bottom: 1px solid var(--indigo); color: var(--indigo); font-size: 12px; font-weight: 700; }
.experience-grid { margin-top: clamp(24px,3vh,34px); display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,30px); }
.experience-card { position: relative; overflow: hidden; border: 1px solid rgba(48,59,148,.12); background: #fff; box-shadow: 0 18px 42px rgba(16,22,43,.06); }
.experience-image-slot { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; color: rgba(48,59,148,.58); background: linear-gradient(135deg,rgba(48,59,148,.09),rgba(220,225,255,.42)), repeating-linear-gradient(45deg,transparent 0 20px,rgba(48,59,148,.035) 20px 21px); }
.experience-image-slot::before, .experience-image-slot::after { content: ''; position: absolute; border: 1px solid rgba(48,59,148,.16); border-radius: 50%; }
.experience-image-slot::before { width: 96px; height: 96px; left: -28px; bottom: -34px; }
.experience-image-slot::after { width: 130px; height: 130px; right: -45px; top: -54px; }
.experience-image-slot > span { position: relative; z-index: 1; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.experience-image-slot.has-image::before, .experience-image-slot.has-image::after { display: none; }
.experience-image-slot img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; filter: saturate(.9) contrast(.98); }
.experience-image-consultation img { object-position: center 52%; }
.experience-image-service img { object-position: center 64%; }
.experience-image-guidance img { object-position: center 45%; }
.experience-number { position: absolute; right: 20px; top: 20px; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--indigo); box-shadow: 0 8px 24px rgba(16,22,43,.12); font: 700 13px 'DM Sans',sans-serif; }
.experience-card-copy { min-height: 190px; padding: 26px 25px 30px; }
.experience-card-copy h3 { font-size: clamp(21px,2vw,28px); letter-spacing: -.035em; }
.experience-card-copy p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.contact { min-height: 680px; position: relative; display: grid; align-items: center; color: #fff; overflow: hidden; }
.contact-image { background-image: url('/images/lounge-detail.jpg'); background-position: center 45%; filter: saturate(.75); }
.contact::after { content: ''; position: absolute; inset: 0; background: rgba(10,16,39,.76); }
.contact-layout { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: minmax(290px,.76fr) minmax(560px,1.24fr); gap: clamp(42px,6vw,105px); align-items: center; padding: clamp(58px,7vw,92px) 8vw; }
.contact-social-copy { max-width: 460px; }
.contact h2 { margin: 18px 0 20px; font-size: clamp(48px,4.7vw,76px); }
.contact-social-copy > p:not(.eyebrow) { max-width: 380px; margin-bottom: 28px; color: rgba(255,255,255,.78); line-height: 1.85; }
.contact-social-list { border-top: 1px solid rgba(216,221,255,.34); }
.contact-social-list > a { display: grid; grid-template-columns: 38px 1fr 20px; gap: 14px; align-items: center; min-height: 78px; border-bottom: 1px solid rgba(216,221,255,.34); transition: padding .25s ease, background .25s ease; }
.contact-social-list > a:hover { padding: 0 12px; background: rgba(255,255,255,.06); }
.contact-social-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(216,221,255,.48); color: #d8ddff; font: 600 11px 'DM Sans',sans-serif; letter-spacing: .03em; }
.contact-social-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-social-icon .contact-social-icon-dot { fill: currentColor; stroke: none; }
.contact-social-icon .contact-social-icon-facebook { fill: currentColor; stroke: none; }
.contact-social-text { display: grid; line-height: 1.35; }
.contact-social-text strong { color: #fff; font: 600 14px 'DM Sans',sans-serif; }
.contact-social-text small { margin-top: 4px; color: rgba(255,255,255,.62); font: 12px 'DM Sans',sans-serif; }
.contact-social-arrow { color: #d8ddff; font-size: 17px; transition: transform .2s ease; }
.contact-social-list a:hover .contact-social-arrow { transform: translate(3px,-3px); }
.contact-location-card { overflow: hidden; border: 1px solid rgba(255,255,255,.24); background: #eef1f8; color: var(--ink); box-shadow: 0 25px 60px rgba(4,9,28,.28); }
.contact-map { position: relative; height: 260px; overflow: hidden; background: #dfe3ef; }
.contact-map iframe { width: 100%; height: 100%; display: block; border: 0; filter: grayscale(.52) saturate(.7) contrast(.92); }
.contact-open-map { position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(255,255,255,.96); color: var(--indigo); box-shadow: 0 8px 24px rgba(17,26,56,.16); font: 600 13px 'DM Sans',sans-serif; }
.contact-open-map span { transition: transform .2s ease; }
.contact-open-map:hover span { transform: translate(3px,-3px); }
.contact-location-info { display: grid; grid-template-columns: 1.35fr .85fr; gap: 28px; padding: 26px 30px; }
.contact-location-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; color: var(--ink); }
.contact-location-heading > span { color: var(--indigo); font-size: 19px; }
.contact-location-heading strong { font: 700 14px 'DM Sans',sans-serif; letter-spacing: .02em; }
.contact-location-address address { color: #555d73; font-style: normal; font-size: 14px; line-height: 1.8; }
.contact-location-hours { padding-left: 26px; border-left: 1px solid rgba(48,59,148,.16); }
.contact-location-hours p { display: grid; grid-template-columns: 20px 1fr; gap: 9px; margin: 0; color: #4f5870; }
.contact-location-hours p > span:first-child { color: var(--indigo); font-size: 18px; }
.contact-location-hours p > span:last-child { display: grid; }
.contact-location-hours strong { color: var(--ink); font-size: 14px; }
.contact-location-hours small { margin-top: 4px; font-size: 12px; }
.contact-location-hours > a { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; padding-bottom: 4px; border-bottom: 1px solid var(--indigo); color: var(--indigo); font-size: 13px; font-weight: 700; }
.contact-location-hours > a span { transition: transform .2s ease; }
.contact-location-hours > a:hover span { transform: translate(3px,-3px); }

footer { min-height: 112px; padding: 0 4.2vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: rgba(255,255,255,.68); font: 11px 'DM Sans', sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.footer-brand { color: #b8c2ff; }
.footer-brand small { font-size: 8px; letter-spacing: .12em; }

.services-page { background: #f4f5f9; }
.services-page .services-menu > .services-menu-trigger { opacity: 1; color: #fff; }
.service-directory { padding: clamp(80px, 9vw, 140px) 8vw; background: #f3f3f1; }
.service-directory-heading { display: grid; grid-template-columns: 1.2fr .7fr; gap: 8vw; align-items: end; margin-bottom: clamp(52px, 7vw, 95px); }
.service-directory-heading h1 { margin-top: 22px; font-size: clamp(48px, 5.6vw, 86px); }
.service-directory-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.9; }
.service-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-directory-card { min-height: 510px; position: relative; display: flex; flex-direction: column; padding: clamp(32px, 4vw, 56px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); scroll-margin-top: 100px; background: #fff; transition: color .25s ease, background .25s ease; }
.service-directory-card:hover { color: var(--indigo); background: #eef0fa; }
.service-directory-card.is-linked { cursor: pointer; }
.service-directory-card-link { position: absolute; inset: 0; z-index: 2; }
.service-directory-card-link:focus-visible { outline: 2px solid var(--indigo); outline-offset: -7px; }
.service-directory-card-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--indigo); font: 600 10px 'DM Sans','Noto Sans Thai',sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.service-directory-keyword {
  font: inherit;
  letter-spacing: inherit;
  text-align: right;
  text-transform: inherit;
}
.service-directory-card h3 { margin-top: clamp(48px, 6vw, 78px); font-size: clamp(36px, 4.2vw, 64px); }
.service-directory-card > p { max-width: 540px; margin: 20px 0 24px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.service-directory-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-directory-card li { padding: 7px 11px; border: 1px solid rgba(48,59,148,.18); color: #49506a; font: 500 11px 'DM Sans','Noto Sans Thai',sans-serif; letter-spacing: .02em; background: rgba(255,255,255,.65); }
.services-page-note { min-height: 520px; display: grid; grid-template-columns: .42fr minmax(0, 1.35fr) auto; gap: clamp(30px, 5vw, 82px); align-items: center; padding: clamp(70px, 8vw, 120px) 8vw; color: #fff; background: var(--navy); }
.services-page-note h2 { font-size: clamp(46px, 5vw, 78px); }
.services-page-note > div > p { max-width: 760px; margin: 28px 0 0; color: rgba(255,255,255,.7); line-height: 1.85; text-wrap: pretty; }
.services-page-note-button { align-self: end; color: var(--ink); background: #fff; white-space: nowrap; }
.services-page-note-button:hover { background: #dce1ff; }

.service-detail-page { background: #f3f3f1; }
.service-detail-page .services-menu > .services-menu-trigger { opacity: 1; color: #fff; }
.services-dropdown-group > a[aria-current='page'], .mobile-services-list > a[aria-current='page'] { color: var(--indigo); background: #e7ebf5; }
.color-detail-hero.color-personal-hero { min-height: calc(100vh - 78px); display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.72fr); gap: clamp(44px,7vw,118px); align-items: center; padding: clamp(62px,7vw,105px) 8vw; overflow: hidden; isolation: isolate; color: #fff; background: radial-gradient(circle at 79% 46%,rgba(104,124,220,.22),transparent 32%),linear-gradient(122deg,#0b1434 0%,#1b2d6a 64%,#101d4b 100%); }
.color-personal-copy { max-width: 790px; }
.color-personal-copy h1 { margin: 26px 0 0; color: #fff; font-size: clamp(62px,7vw,108px); line-height: .91; letter-spacing: -.065em; }
.color-personal-copy h1 em { color: #c5cdfc; }
.color-personal-copy > p:not(.eyebrow) { max-width: 680px; margin: 34px 0 0; color: rgba(255,255,255,.86); font-size: clamp(17px,1.15vw,20px); line-height: 1.9; text-wrap: pretty; }
.color-personal-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.color-personal-primary { color: var(--ink); background: #fff; }
.color-personal-primary:hover { background: #c5cdfc; }
.color-personal-discover { color: #fff; border-color: rgba(255,255,255,.72); }
.color-personal-meta { display: grid; grid-template-columns: auto repeat(3,1fr); gap: 24px; margin-top: clamp(42px,6vh,68px); padding-top: 20px; border-top: 1px solid rgba(197,205,252,.28); color: rgba(255,255,255,.62); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .13em; }
.color-personal-meta span:first-child { color: #c5cdfc; }
.color-personal-media { position: relative; width: min(100%,535px); justify-self: end; margin: 0; isolation: isolate; }
.color-personal-media::before { content: ''; position: absolute; z-index: -1; inset: 7% -8% 7% 8%; border: 1px solid rgba(197,205,252,.26); transform: rotate(2deg); }
.color-personal-slides { position: relative; height: min(68vh,720px); display: block; overflow: hidden; border: 1px solid rgba(197,205,252,.24); background: radial-gradient(circle at 50% 39%, rgba(134,149,239,.28) 0, rgba(51,75,151,.18) 35%, transparent 63%), linear-gradient(145deg,#294180 0%,#1b316f 54%,#12245a 100%); box-shadow: 0 30px 70px rgba(4,9,28,.34); }
.color-personal-slides::before { content: ''; position: absolute; z-index: 0; inset: 7% 9% 8%; border: 1px solid rgba(197,205,252,.24); transform: rotate(2deg); pointer-events: none; }
.color-personal-slides::after { content: 'HAIR COLOR'; position: absolute; z-index: 0; right: -43px; top: 50%; transform: translateY(-50%) rotate(90deg); color: rgba(197,205,252,.11); font: 500 clamp(38px,3.8vw,66px) 'DM Sans',sans-serif; letter-spacing: .08em; white-space: nowrap; pointer-events: none; }
.color-personal-slide { position: absolute; inset: 0; z-index: 1; width: 100%; min-width: 0; height: 100%; box-sizing: border-box; display: block; padding: 0; opacity: 0; visibility: hidden; transform: scale(1.015); pointer-events: none; transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1), visibility .5s; }
.color-personal-slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); pointer-events: auto; }
.color-personal-slide img { position: absolute; top: 7%; left: 5%; width: 90%; height: 93%; max-width: none; max-height: none; display: block; object-fit: contain; object-position: center top; filter: none; }
.color-personal-slide:nth-child(7) img { top: calc(7% + 3px); height: calc(93% - 3px); }
.color-personal-controls { position: absolute; z-index: 3; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 8px; }
.color-personal-controls p { height: 44px; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0 13px; color: rgba(255,255,255,.72); background: rgba(8,16,47,.74); backdrop-filter: blur(10px); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .1em; }
.color-personal-controls strong { color: #fff; font-weight: 700; }
.color-personal-control { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.56); border-radius: 50%; color: #fff; background: rgba(8,16,47,.74); backdrop-filter: blur(10px); cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.color-personal-control:hover { color: var(--ink); border-color: #fff; background: #fff; transform: translateY(-2px); }
.color-personal-control:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.color-personal-control span { width: 9px; height: 9px; display: block; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; }
.color-personal-control.is-prev span { transform: translateX(2px) rotate(45deg); }
.color-personal-control.is-next span { transform: translateX(-2px) rotate(225deg); }
.color-personal-media figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 13px; border-top: 1px solid rgba(197,205,252,.3); color: rgba(255,255,255,.64); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .13em; }
.color-consultation { min-height: calc(100svh - 78px); scroll-margin-top: 78px; display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); gap: clamp(52px,6vw,108px); align-items: center; box-sizing: border-box; padding: clamp(34px,5vh,56px) 8vw; color: var(--ink); background: #f5f3ee; }
.color-consultation-heading { position: static; }
.color-consultation-heading .section-label { color: var(--indigo); }
.color-consultation-heading h2 { max-width: 670px; margin-top: clamp(24px,3.2vh,34px); font-size: clamp(52px,4.6vw,72px); line-height: .94; letter-spacing: -.06em; }
.color-consultation-heading h2 em { color: #7a465d; }
.color-consultation-heading > p:last-child { max-width: 570px; margin-top: clamp(18px,2.5vh,26px); color: #545a6b; font-size: clamp(16px,1.05vw,18px); line-height: 1.65; text-wrap: pretty; }
.color-consultation-content { min-width: 0; }
.color-consultation-steps { margin: 0; padding: 0; border-top: 1px solid rgba(13,22,54,.2); list-style: none; }
.color-consultation-steps li { display: grid; grid-template-columns: 44px 1fr; gap: clamp(16px,2vw,28px); padding: clamp(15px,2vh,20px) 0; border-bottom: 1px solid rgba(13,22,54,.2); }
.color-consultation-number { padding-top: 5px; color: var(--indigo); font: 700 11px 'DM Sans',sans-serif; letter-spacing: .1em; }
.color-consultation-steps li > div > p { margin: 0 0 6px; color: var(--indigo); font: 700 10px 'DM Sans',sans-serif; letter-spacing: .13em; }
.color-consultation-steps h3 { margin: 0; font-size: clamp(21px,1.65vw,27px); line-height: 1.25; letter-spacing: -.035em; }
.color-consultation-steps li > div > span { max-width: 720px; display: block; margin-top: 7px; color: #626878; font-size: clamp(14px,.9vw,16px); line-height: 1.55; text-wrap: pretty; }
.color-consultation-note { display: grid; grid-template-columns: minmax(0,1fr) auto; column-gap: 28px; align-items: end; margin-top: clamp(14px,2vh,20px); padding: clamp(20px,2.1vw,28px); color: #fff; background: var(--navy); }
.color-consultation-note > p { grid-column: 1 / -1; margin: 0 0 9px; color: #aab7ff; font: 700 10px 'DM Sans',sans-serif; letter-spacing: .13em; }
.color-consultation-note h3 { margin: 0; font-size: clamp(20px,1.55vw,25px); line-height: 1.25; letter-spacing: -.035em; }
.color-consultation-note > span { grid-column: 1; max-width: 700px; display: block; margin-top: 7px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.55; text-wrap: pretty; }
.color-consultation-note .text-link { grid-column: 2; grid-row: 2 / 4; align-self: end; color: #fff; border-color: rgba(255,255,255,.7); white-space: nowrap; }
.color-consultation-note .text-link:hover { color: #c5cdfc; border-color: #c5cdfc; }
.color-service-choice { padding: clamp(80px,9vw,140px) 8vw; color: var(--ink); background: #eef0f8; }
.color-service-choice-heading { display: grid; grid-template-columns: 1.08fr .72fr; gap: clamp(50px,9vw,150px); align-items: end; }
.color-service-choice-heading .section-label { color: var(--indigo); }
.color-service-choice-heading h2 { margin-top: clamp(36px,5vw,68px); font-size: clamp(52px,5.7vw,88px); line-height: .95; letter-spacing: -.06em; }
.color-service-choice-heading h2 em { color: #7a465d; }
.color-service-choice-heading > p { max-width: 660px; margin: 0 0 6px; color: #545a6b; font-size: clamp(17px,1.15vw,20px); line-height: 1.85; text-wrap: pretty; }
.color-service-choice-heading > p strong { display: block; margin-bottom: 10px; color: var(--ink); font-weight: 600; }
.color-service-choice-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-top: clamp(52px,6vw,86px); padding: 1px; background: rgba(13,22,54,.17); }
.color-service-choice-card { min-width: 0; min-height: 300px; display: grid; grid-template-rows: auto 1fr; align-content: start; gap: 20px; padding: clamp(24px,2.2vw,36px); border: 0; color: var(--ink); background: #fff; text-align: left; font-family: inherit; cursor: pointer; transition: color .25s ease, background .25s ease, transform .25s ease; }
.color-service-choice-card:hover { position: relative; z-index: 1; background: #e3e7f7; transform: translateY(-4px); }
.color-service-choice-card[aria-pressed='true'] { color: #fff; background: var(--indigo); }
.color-service-choice-card:focus-visible { position: relative; z-index: 2; outline: 2px solid var(--navy); outline-offset: -4px; }
.color-service-choice-card-number { color: var(--indigo); font: 700 11px 'DM Sans',sans-serif; letter-spacing: .12em; }
.color-service-choice-card-kicker { display: block; color: var(--indigo); font: 700 10px 'DM Sans',sans-serif; letter-spacing: .12em; }
.color-service-choice-card h3 { margin: 14px 0 0; font-size: clamp(25px,2vw,34px); line-height: 1.15; letter-spacing: -.04em; }
.color-service-choice-card-copy { display: block; margin-top: 16px; color: #626878; font-size: 15px; line-height: 1.75; text-wrap: pretty; }
.color-service-choice-card[aria-pressed='true'] .color-service-choice-card-number,
.color-service-choice-card[aria-pressed='true'] .color-service-choice-card-kicker,
.color-service-choice-card[aria-pressed='true'] .color-service-choice-card-copy { color: #c5cdfc; }
.color-service-choice-detail { display: grid; grid-template-columns: minmax(0,1fr) minmax(240px,.48fr); gap: clamp(36px,6vw,90px); padding: clamp(30px,4vw,52px); color: #fff; background: var(--navy); }
.color-service-choice-detail p { margin: 0; color: #c5cdfc; font: 700 10px 'DM Sans',sans-serif; letter-spacing: .12em; }
.color-service-choice-detail h3 { margin: 14px 0 0; font-size: clamp(26px,2.4vw,40px); line-height: 1.3; letter-spacing: -.04em; }
.color-service-choice-detail span { max-width: 850px; display: block; margin-top: 16px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; text-wrap: pretty; }
.color-service-choice-detail > div:last-child { padding-left: clamp(0px,3vw,48px); border-left: 1px solid rgba(255,255,255,.18); }
.color-service-choice-detail strong { display: block; margin-top: 14px; font-size: 20px; font-weight: 600; line-height: 1.6; }
.color-service-choice-note { margin: 0; padding: 18px clamp(30px,4vw,52px); color: #5f6678; background: #fff; font-size: 14px; line-height: 1.7; }
@media (min-width: 901px) {
  .color-service-choice { min-height: calc(100svh - 78px); box-sizing: border-box; padding: clamp(30px,4.5vh,46px) 8vw; }
  .color-service-choice-heading { grid-template-columns: 1fr .78fr; gap: clamp(52px,7vw,110px); align-items: center; }
  .color-service-choice-heading h2 { margin-top: clamp(20px,2.7vh,28px); font-size: clamp(48px,4.4vw,68px); line-height: .92; }
  .color-service-choice-heading > p { margin-bottom: 0; font-size: clamp(15px,1vw,17px); line-height: 1.55; }
  .color-service-choice-heading > p strong { margin-bottom: 6px; }
  .color-service-choice-grid { margin-top: clamp(20px,2.8vh,28px); }
  .color-service-choice-card { min-height: 168px; gap: 10px; padding: clamp(18px,1.8vw,26px); }
  .color-service-choice-card h3 { margin-top: 8px; font-size: clamp(21px,1.6vw,27px); line-height: 1.08; }
  .color-service-choice-card-copy { margin-top: 9px; font-size: 14px; line-height: 1.45; }
  .color-service-choice-detail { grid-template-columns: minmax(0,1fr) minmax(220px,.42fr); gap: clamp(30px,4vw,64px); padding: clamp(18px,2.2vw,28px); }
  .color-service-choice-detail h3 { margin-top: 7px; font-size: clamp(22px,1.8vw,29px); line-height: 1.2; }
  .color-service-choice-detail span { margin-top: 7px; font-size: 14px; line-height: 1.5; }
  .color-service-choice-detail > div:last-child { padding-left: clamp(18px,2.2vw,34px); }
  .color-service-choice-detail strong { margin-top: 7px; font-size: 17px; line-height: 1.45; }
  .color-service-choice-note { padding: 11px clamp(18px,2.2vw,28px); font-size: 13px; line-height: 1.5; }
}
.color-hero-price-board { width: min(100%,1100px); min-width: 0; margin: 0 auto; padding: clamp(28px,3.3vw,48px); border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.97); box-shadow: 0 28px 65px rgba(4,9,28,.3); }
.color-hero-price-heading { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 24px; border-bottom: 2px solid var(--ink); color: var(--indigo); font: 700 16px 'DM Sans',sans-serif; letter-spacing: .1em; }
.color-hero-price-heading > div { display: grid; gap: 6px; }
.color-hero-price-heading small { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.color-hero-length-stage { display: grid; grid-template-columns: .78fr 1.22fr; gap: 4px; align-items: stretch; margin-top: 20px; }
.color-hero-salon-icon { min-width: 0; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(66,43,70,.14); background: #f3f0ea; }
.color-hero-salon-icon img { width: 100%; height: 100%; display: block; object-fit: cover; }
.color-hero-length-grid { display: grid; gap: 4px; }
.color-hero-length-card { min-height: 78px; display: grid; grid-template-columns: 32px 1fr auto; gap: 15px; align-items: center; padding: 13px 20px; color: var(--ink); transition: transform .22s ease, filter .22s ease; }
.color-hero-length-card:hover { position: relative; z-index: 1; transform: translateX(-6px); filter: saturate(1.08); }
.color-hero-length-card:nth-child(1) { background: #e4d3b4; }
.color-hero-length-card:nth-child(2) { color: #211726; background: #c79a68; }
.color-hero-length-card:nth-child(3) { color: #211726; background: #a56f50; }
.color-hero-length-card:nth-child(4) { color: #fff; background: #7a465d; }
.color-hero-length-card:nth-child(5) { color: #fff; background: #422b46; }
.color-hero-length-card small { opacity: .7; font: 600 11px 'DM Sans',sans-serif; letter-spacing: .08em; }
.color-hero-length-card span { font: 600 17px 'DM Sans',sans-serif; text-transform: uppercase; letter-spacing: .025em; }
.color-hero-length-card strong { font: 700 22px 'DM Sans',sans-serif; }
.color-hero-extra-grid { margin-top: 18px; border-top: 1px solid var(--line); }
.color-hero-extra-grid > div { min-height: 60px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); font-size: 15px; }
.color-hero-extra-grid span { color: #555d73; }
.color-hero-extra-grid strong { color: #6b3e55; font: 700 16px 'DM Sans',sans-serif; }
.color-hero-price-board > p { margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.color-detail-intro { padding: clamp(80px,9vw,140px) 8vw; background: #fff; }
.color-detail-intro-layout { margin-top: clamp(50px,6vw,88px); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px,9vw,150px); align-items: start; }
.color-detail-intro-layout h2 { font-size: clamp(48px,5.5vw,84px); }
.color-detail-intro-layout > div > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.95; }
.color-care-points { margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.color-care-points li { min-height: 62px; display: flex; align-items: center; gap: 22px; border-bottom: 1px solid var(--line); font: 600 13px 'DM Sans',sans-serif; }
.color-care-points li span { min-width: 24px; color: var(--indigo); font-size: 10px; }
.color-brands { padding: clamp(80px,9vw,140px) 8vw; color: #fff; background: var(--navy); }
.color-brands-heading { display: grid; grid-template-columns: 1.1fr .72fr; gap: 9vw; align-items: end; }
.color-brands-heading .section-label,
.color-brands-heading .section-label span:first-child { color: #fff; }
.color-brands-heading h2 { margin-top: 22px; font-size: clamp(48px,5.5vw,84px); }
.color-brands-heading > p { max-width: 660px; margin: 0 0 7px; color: rgba(255,255,255,.9); font-size: 20px; line-height: 1.85; text-wrap: pretty; }
.color-brand-accordion { position: relative; margin-top: clamp(46px,5.5vw,76px); border: 1px solid rgba(206,211,255,.3); background: linear-gradient(180deg,#354fac 0%,#33449d 25%,#35338a 50%,#312675 76%,#231951 100%); box-shadow: 0 32px 72px rgba(10,7,44,.38); overflow: hidden; }
.color-brand-accordion::before { content: ''; position: absolute; inset: 0; background: linear-gradient(118deg,rgba(255,255,255,.045),transparent 38%,rgba(18,7,52,.14)); pointer-events: none; }
.color-brand-item { position: relative; border-bottom: 1px solid rgba(234,237,255,.16); background: transparent; transition: background .35s ease,border-color .35s ease; }
.color-brand-item:last-child { border-bottom: 0; }
.color-brand-item:hover { border-color: rgba(234,237,255,.42); background: rgba(8,13,55,.1); }
.color-brand-item.is-open { border-color: rgba(221,226,255,.5); background: rgba(13,8,49,.18); box-shadow: inset 3px 0 rgba(190,199,255,.88); }
.color-brand-accordion .color-brand-number,.color-brand-accordion .color-brand-identity small,.color-brand-accordion .color-brand-meta > small { color: rgba(255,255,255,.86); }
.color-brand-accordion .color-brand-identity strong,.color-brand-accordion .color-brand-summary,.color-brand-accordion .color-brand-action { color: #fff; }
.color-brand-trigger { width: 100%; min-height: 148px; display: grid; grid-template-columns: 58px minmax(240px,.85fr) minmax(300px,1.1fr) 190px; align-items: center; gap: clamp(24px,3vw,54px); padding: 30px 32px; border: 0; color: #fff; background: transparent; text-align: left; font-family: inherit; cursor: pointer; }
.color-brand-trigger:focus-visible { outline: 2px solid #b8c2ff; outline-offset: -4px; }
.color-brand-number { align-self: start; padding-top: 8px; color: #c3cbff; font: 600 13px 'DM Sans',sans-serif; letter-spacing: .12em; }
.color-brand-identity { min-width: 0; display: grid; gap: 10px; }
.color-brand-identity strong { color: #fff; font: 600 clamp(27px,2.45vw,42px)/1 'Manrope',sans-serif; letter-spacing: -.045em; }
.color-brand-identity small { color: #c3cbff; font: 600 12px 'DM Sans',sans-serif; letter-spacing: .13em; }
.color-brand-summary { max-width: 620px; color: rgba(255,255,255,.94); font-size: clamp(20px,1.25vw,22px); line-height: 1.75; text-wrap: pretty; }
.color-brand-meta { justify-self: end; display: grid; justify-items: end; gap: 18px; }
.color-brand-meta > small { color: rgba(255,255,255,.76); font: 600 12px 'DM Sans',sans-serif; letter-spacing: .14em; }
.color-brand-action { display: inline-flex; align-items: center; gap: 14px; color: #eef0ff; font: 600 11px 'DM Sans',sans-serif; letter-spacing: .12em; }
.color-brand-arrow { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(184,194,255,.55); border-radius: 50%; transition: transform .48s cubic-bezier(.22,1,.36,1), background .28s ease, border-color .28s ease; }
.color-brand-arrow::before { content: ''; width: 8px; height: 8px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .48s cubic-bezier(.22,1,.36,1), margin .48s cubic-bezier(.22,1,.36,1); }
.color-brand-trigger:hover .color-brand-arrow { transform: translateY(3px); color: var(--navy); background: #b8c2ff; border-color: #b8c2ff; }
.color-brand-item.is-open .color-brand-arrow { transform: rotate(180deg); color: var(--navy); background: #b8c2ff; border-color: #b8c2ff; }
.color-brand-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .62s cubic-bezier(.22,1,.36,1), opacity .34s ease; }
.color-brand-item.is-open .color-brand-panel { grid-template-rows: 1fr; opacity: 1; }
.color-brand-panel-inner { min-height: 0; overflow: hidden; }
.color-brand-panel-content { display: grid; grid-template-columns: 1.2fr .72fr .9fr; gap: clamp(34px,5vw,76px); padding: 4px 30px 50px 104px; }
.color-brand-detail-label { margin: 0 0 17px; color: #c3cbff; font: 600 13px 'DM Sans',sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.color-brand-story h3 { margin: 0; color: #fff; font-size: clamp(24px,2.2vw,35px); letter-spacing: -.035em; }
.color-brand-story > p:not(.color-brand-detail-label) { max-width: 760px; margin: 20px 0 0; color: rgba(255,255,255,.92); font-size: 19px; line-height: 1.9; text-wrap: pretty; }
.color-brand-official-link { min-height: 50px; width: fit-content; display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding: 0 17px; border: 1px solid rgba(184,194,255,.5); color: #fff; background: rgba(184,194,255,.08); font-size: 16px; font-weight: 600; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.color-brand-official-link .icon-arrow-up-right { transition: transform .25s ease; }
.color-brand-official-link:hover, .color-brand-official-link:focus-visible { color: var(--navy); background: #b8c2ff; border-color: #b8c2ff; transform: translateY(-2px); }
.color-brand-official-link:hover .icon-arrow-up-right, .color-brand-official-link:focus-visible .icon-arrow-up-right { transform: translate(3px,-3px); }
.color-brand-official-link:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.color-brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.color-brand-tags span { padding: 10px 14px; border: 1px solid rgba(184,194,255,.4); color: #fff; background: rgba(184,194,255,.11); font-size: 17px; line-height: 1.5; }
.color-brand-highlights ul { margin: 0; padding: 0; list-style: none; }
.color-brand-highlights li { position: relative; padding: 12px 0 12px 23px; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.75; }
.color-brand-highlights li::before { content: ''; position: absolute; top: 18px; left: 1px; width: 5px; height: 5px; border-radius: 50%; background: #b8c2ff; box-shadow: 0 0 0 4px rgba(184,194,255,.1); }
.color-clear-pricing {
  padding: clamp(80px,8.5vw,132px) 8vw;
  color: #fff;
  background:
    linear-gradient(110deg,rgba(8,19,51,.9) 0%,rgba(18,35,82,.79) 50%,rgba(8,19,51,.91) 100%),
    url('/images/services/hair-color/hair-color-card-background.webp') center 54% / cover no-repeat;
}
.color-clear-pricing-heading { display: grid; grid-template-columns: 1.08fr .72fr; gap: clamp(50px,9vw,150px); align-items: end; }
.color-clear-pricing-heading .section-label { color: #c8d0ff; }
.color-clear-pricing-heading h2 { margin-top: clamp(36px,5vw,68px); font-size: clamp(52px,5.7vw,88px); line-height: .95; letter-spacing: -.06em; }
.color-clear-pricing-heading h2 em { color: #d6c1df; }
.color-clear-pricing-heading > p { max-width: 660px; margin: 0 0 6px; color: rgba(255,255,255,.84); font-size: clamp(17px,1.15vw,20px); line-height: 1.85; text-wrap: pretty; }
.color-clear-pricing-board { margin-top: clamp(52px,6vw,86px); color: var(--ink); border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.95); box-shadow: 0 30px 76px rgba(3,9,30,.34); backdrop-filter: blur(12px); }
.color-clear-pricing-main { padding: clamp(26px,3vw,44px); }
.color-clear-pricing-title-row { display: flex; justify-content: space-between; gap: 28px; align-items: start; padding-bottom: 24px; border-bottom: 2px solid var(--ink); color: var(--indigo); }
.color-clear-pricing-title-row > div { display: grid; gap: 7px; }
.color-clear-pricing-title-row p, .color-clear-pricing-title-row strong { margin: 0; font: 700 15px 'DM Sans',sans-serif; letter-spacing: .12em; }
.color-clear-pricing-title-row span { color: #687085; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.color-clear-pricing-lengths { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 3px; margin-top: 20px; }
.color-clear-pricing-lengths article { min-width: 0; min-height: 170px; display: grid; grid-template-rows: auto 1fr auto; gap: 18px; padding: clamp(20px,2vw,30px); color: #17182a; background: #e5c787; }
.color-clear-pricing-lengths article:nth-child(2) { background: #ca946f; }
.color-clear-pricing-lengths article:nth-child(3) { color: #fff; background: #ae6f61; }
.color-clear-pricing-lengths article:nth-child(4) { color: #fff; background: #864d68; }
.color-clear-pricing-lengths article:nth-child(5) { color: #fff; background: #432f48; }
.color-clear-pricing-lengths article > span { font: 700 10px 'DM Sans',sans-serif; letter-spacing: .1em; opacity: .72; }
.color-clear-pricing-lengths h3 { align-self: center; margin: 0; font-size: clamp(21px,1.65vw,28px); line-height: 1.15; letter-spacing: -.035em; }
.color-clear-pricing-lengths strong { font: 700 clamp(23px,1.8vw,31px) 'DM Sans',sans-serif; letter-spacing: -.035em; }
.color-clear-pricing-extras { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid rgba(13,22,54,.18); }
.color-clear-pricing-extras article { min-width: 0; min-height: 210px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 26px; align-items: end; padding: clamp(25px,2.8vw,42px); border-right: 1px solid rgba(13,22,54,.18); }
.color-clear-pricing-extras article:last-child { border-right: 0; }
.color-clear-pricing-extras article > div { align-self: start; }
.color-clear-pricing-extras span { color: var(--indigo); font: 700 10px 'DM Sans',sans-serif; letter-spacing: .11em; }
.color-clear-pricing-extras h3 { margin: 18px 0 0; font-size: clamp(22px,1.6vw,29px); line-height: 1.25; letter-spacing: -.035em; }
.color-clear-pricing-extras p { margin: 12px 0 0; color: #687085; font-size: 14px; line-height: 1.7; text-wrap: pretty; }
.color-clear-pricing-extras strong { color: #6b3e55; font: 700 clamp(18px,1.25vw,23px) 'DM Sans',sans-serif; white-space: nowrap; }
.color-clear-pricing-footer { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 24px; }
.color-clear-pricing-footer p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.75; }
.color-clear-pricing-footer .text-link { flex: 0 0 auto; color: #fff; border-color: rgba(255,255,255,.72); }

@media (min-width: 801px) {
  .color-brands { padding: 50px 7vw 44px; }
  .color-brands-heading { grid-template-columns: 1.02fr .72fr; gap: clamp(44px,7vw,110px); }
  .color-brands-heading h2 { margin-top: 14px; font-size: clamp(48px,4.65vw,72px); line-height: .94; }
  .color-brands-heading > p { max-width: 620px; margin-bottom: 3px; font-size: clamp(16px,1.08vw,18px); line-height: 1.68; }
  .color-brand-accordion { margin-top: 34px; }
  .color-brand-trigger { min-height: 96px; grid-template-columns: 46px minmax(230px,.85fr) minmax(280px,1.1fr) 165px; gap: clamp(20px,2.7vw,44px); padding: 18px 22px; }
  .color-brand-number { padding-top: 5px; font-size: 11px; }
  .color-brand-identity { gap: 7px; }
  .color-brand-identity strong { font-size: clamp(25px,2.05vw,34px); }
  .color-brand-identity small { font-size: 10px; }
  .color-brand-summary { font-size: clamp(15px,1.08vw,17px); line-height: 1.6; }
  .color-brand-meta { gap: 10px; }
  .color-brand-meta > small { font-size: 10px; }
  .color-brand-action { gap: 10px; font-size: 10px; }
  .color-brand-arrow { width: 36px; height: 36px; }
  .color-brand-panel-content { gap: clamp(30px,4.4vw,64px); padding: 10px 22px 36px 78px; }
  .color-brand-detail-label { margin-bottom: 12px; font-size: 11px; }
  .color-brand-story h3 { font-size: clamp(23px,1.8vw,30px); }
  .color-brand-story > p:not(.color-brand-detail-label) { margin-top: 13px; font-size: 16px; line-height: 1.7; }
  .color-brand-official-link { min-height: 44px; margin-top: 18px; font-size: 14px; }
  .color-brand-tags span { padding: 8px 11px; font-size: 14px; }
  .color-brand-highlights li { padding: 9px 0 9px 21px; font-size: 14px; line-height: 1.6; }
  .color-brand-highlights li::before { top: 16px; }
  .color-clear-pricing { padding: 42px 7vw 34px; }
  .color-clear-pricing-heading { grid-template-columns: 1.05fr .8fr; gap: clamp(42px,7vw,112px); }
  .color-clear-pricing-heading h2 { margin-top: 20px; font-size: clamp(46px,4.15vw,64px); line-height: .9; }
  .color-clear-pricing-heading > p { max-width: 600px; margin-bottom: 2px; font-size: clamp(15px,1vw,17px); line-height: 1.6; }
  .color-clear-pricing-board { margin-top: 24px; }
  .color-clear-pricing-main { padding: 16px 20px; }
  .color-clear-pricing-title-row { padding-bottom: 12px; }
  .color-clear-pricing-title-row > div { gap: 4px; }
  .color-clear-pricing-title-row p,
  .color-clear-pricing-title-row strong { font-size: 13px; }
  .color-clear-pricing-lengths { gap: 2px; margin-top: 12px; }
  .color-clear-pricing-lengths article { min-height: 86px; gap: 7px; padding: 12px 16px; }
  .color-clear-pricing-lengths h3 { font-size: clamp(18px,1.35vw,23px); }
  .color-clear-pricing-lengths strong { font-size: clamp(20px,1.5vw,25px); }
  .color-clear-pricing-extras article { min-height: 108px; gap: 18px; padding: 16px 20px; }
  .color-clear-pricing-extras h3 { margin-top: 7px; font-size: clamp(18px,1.3vw,22px); }
  .color-clear-pricing-extras p { margin-top: 5px; font-size: 12px; line-height: 1.45; }
  .color-clear-pricing-extras strong { font-size: clamp(16px,1.1vw,20px); }
  .color-clear-pricing-footer { margin-top: 12px; }
  .color-clear-pricing-footer p { font-size: 12px; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  .color-personal-slide, .color-personal-control, .color-service-choice-card, .color-brand-item, .color-brand-arrow, .color-brand-arrow::before, .color-brand-panel { transition: none; }
}
.color-detail-cta { padding: clamp(80px,9vw,140px) 8vw; text-align: center; color: #fff; background: var(--indigo); }
.color-detail-cta .eyebrow { justify-content: center; }
.color-detail-cta h2 { margin-top: 22px; font-size: clamp(48px,5.8vw,88px); }
.color-detail-cta > p:not(.eyebrow) { margin: 28px auto 0; color: rgba(255,255,255,.72); }
.color-detail-cta .button { margin-top: 34px; color: var(--ink); background: #fff; }
.color-detail-cta .button:hover { background: #dce1ff; }

@media (max-width: 800px) {
  .site-header { height: 68px; padding: 0 20px; }
  .desktop-nav, .header-socials { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu > summary { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; cursor: pointer; list-style: none; border: 1px solid rgba(255,255,255,.4); border-radius: 2px; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span { display: block; width: 17px; height: 1px; background: #fff; transition: transform .2s; }
  .mobile-menu[open] > summary span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .mobile-menu[open] > summary span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu-panel { position: absolute; top: calc(100% + 10px); right: 0; width: min(320px, calc(100vw - 40px)); max-height: calc(100vh - 98px); overflow-y: auto; display: grid; gap: 2px; padding: 10px; background: #f8f9fd; border: 1px solid rgba(48,59,148,.15); box-shadow: 0 18px 36px rgba(16,22,43,.14); }
  .mobile-menu-panel a { padding: 12px 11px; color: var(--ink); font: 600 14px 'DM Sans', sans-serif; }
  .mobile-menu-panel a:hover { background: #e7ebf5; }
  .mobile-services > summary { display: flex; align-items: center; justify-content: space-between; padding: 12px 11px; color: var(--ink); cursor: pointer; list-style: none; font: 600 14px 'DM Sans',sans-serif; }
  .mobile-services > summary::-webkit-details-marker { display: none; }
  .mobile-services > summary .nav-chevron { width: 8px; height: 8px; display: block; border-right: 1.5px solid var(--indigo); border-bottom: 1.5px solid var(--indigo); transform: translateY(-2px) rotate(45deg); transition: transform .22s ease; }
  .mobile-services[open] > summary { background: #e7ebf5; }
  .mobile-services[open] > summary .nav-chevron { transform: translateY(2px) rotate(225deg); }
  .mobile-services-list { display: grid; padding: 2px 0 8px 14px; border-left: 1px solid rgba(48,59,148,.2); }
  .mobile-services-list a { padding: 9px 11px; color: #475071; font-size: 13px; font-weight: 500; }
  .mobile-services-list .mobile-view-all { min-height: 46px; margin: 9px 0 0; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #fff; background: var(--indigo); font-weight: 600; }
  .mobile-services-list .mobile-view-all:hover { color: #fff; background: #1b2769; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 42px; padding: 48px 26px 54px; background: linear-gradient(180deg,rgba(47,135,198,.34) 0%,rgba(91,170,218,.24) 52%,rgba(38,119,183,.34) 100%), 55% center / cover no-repeat url('/images/home-hero-salon-mobile.webp'); }
  .hero-content { grid-row: 1; padding: 0; }
  .hero-brand-lockup { grid-row: 2; width: min(100%,350px); min-height: 280px; justify-self: center; gap: 16px; padding: 24px 8px; }
  .hero-brand-lockup::before { inset: -4% -10%; filter: blur(10px); }
  .hero-brand-primary { width: min(100%,305px); }
  .hero-brand-salon { min-height: 36px; padding-inline: 14px; font-size: 16px; }
  .hero .hero-copy { max-width: 330px; margin: 26px 0 30px; font-size: 17px; }
  .hero .button { min-height: 54px; padding-inline: 23px; font-size: 14px; }
  .hero .text-link { font-size: 14px; }
  h1 { margin-top: 18px; font-size: clamp(48px, 14vw, 68px); }
  .hero h1 { font-size: clamp(28px,8vw,38px); letter-spacing: -.065em; white-space: nowrap; }
  .hero .hero-footer { margin: 40px -6px 0; padding-bottom: 0; gap: 14px; flex-wrap: wrap; font-size: 9px; }
  .section { padding-left: 26px; padding-right: 26px; }
  .intro-layout { grid-template-columns: 1fr; gap: 36px; }
  .intro-copy { max-width: 510px; }
  .section-top { flex-direction: column; gap: 34px; }
  .section-top > p { padding-left: 40px; }
  .services { padding-top: 52px; padding-bottom: 58px; }
  .services .section-top { gap: 24px; }
  .services .section-top > p { padding-left: 0; }
  .services .service-list { margin-top: 30px; }
  .service-card { grid-template-columns: 28px 1fr auto; gap: 14px; min-height: 120px; padding: 18px 0; }
  .service-card p { line-height: 1.6; }
  .salon-space { padding: 62px 26px; grid-template-columns: 1fr; gap: 36px; }
  .salon-space-copy-stage { width: 100%; justify-self: stretch; }
  .salon-space-copy { max-width: 560px; }
  .salon-space-copy h2 { margin-top: 20px; }
  .salon-space-copy > p:not(.eyebrow) { font-size: 15px; line-height: 1.9; }
  .salon-space-notes { margin-top: 32px; gap: 18px; flex-wrap: wrap; }
  .salon-space-visual { width: 100%; justify-self: stretch; }
  .salon-space-media img { height: auto; aspect-ratio: 4 / 5; object-position: center 58%; border-radius: 10px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise { min-height: 220px; border-bottom: 1px solid rgba(255,255,255,.24); padding-right: 14px; }
  .promise:nth-child(2) { border-right: 0; }
  .promise:nth-child(3) { padding-left: 0; }
  .promise h3 { margin-top: 38px; font-size: 19px; }
  .experience { padding: 64px 26px; }
  .experience-header { grid-template-columns: 1fr; gap: 34px; }
  .experience-heading h2 { font-size: clamp(29px,8.3vw,38px); letter-spacing: -.06em; }
  .experience-callout { padding: 24px 22px; }
  .experience-grid { grid-template-columns: 1fr; gap: 22px; }
  .experience-image-slot { height: auto; aspect-ratio: 4 / 3; }
  .experience-card-copy { min-height: 0; }
  .contact { min-height: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 42px; padding: 64px 26px; }
  .contact-social-copy { max-width: 560px; }
  .contact-location-card { width: 100%; }
  .contact-map { height: clamp(230px,55vw,350px); }
  .contact-location-info { grid-template-columns: 1fr; gap: 22px; padding: 25px 22px; }
  .contact-location-hours { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(48,59,148,.16); }
  footer { min-height: 150px; padding: 22px 20px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .service-directory { padding: 68px 26px; }
  .service-directory-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 48px; }
  .service-directory-heading h1 { font-size: clamp(42px, 12vw, 62px); }
  .service-directory-heading > p { padding-left: 38px; }
  .service-directory-grid { grid-template-columns: 1fr; }
  .service-directory-card { min-height: 440px; padding: 32px 26px; scroll-margin-top: 78px; }
  .service-directory-card h3 { margin-top: 52px; font-size: clamp(35px, 11vw, 52px); }
  .services-page-note { min-height: 0; grid-template-columns: 1fr; gap: 36px; padding: 72px 26px; }
  .services-page-note h2 { font-size: clamp(42px, 11vw, 62px); }
  .services-page-note-button { align-self: start; }
  .color-detail-hero.color-personal-hero { min-height: 0; grid-template-columns: 1fr; gap: 46px; padding: 54px 26px 68px; }
  .color-personal-copy h1 { margin-top: 22px; font-size: clamp(52px,16vw,72px); line-height: .92; }
  .color-personal-copy > p:not(.eyebrow) { margin-top: 27px; font-size: 17px; line-height: 1.85; }
  .color-personal-actions { align-items: flex-start; flex-direction: column; gap: 21px; margin-top: 30px; }
  .color-personal-primary { min-height: 54px; }
  .color-personal-meta { grid-template-columns: auto repeat(3,1fr); gap: 10px; margin-top: 38px; padding-top: 17px; font-size: 9px; }
  .color-personal-media { width: 100%; max-width: 520px; justify-self: center; }
  .color-personal-media::before { inset: 5% -3% 7% 5%; }
  .color-personal-slides { height: auto; aspect-ratio: 3 / 4; }
  .color-personal-slides::after { right: -33px; font-size: clamp(30px,10vw,44px); }
  .color-personal-slide { padding: 0; }
  .color-personal-slide img { top: 7%; left: 5%; width: 90%; height: 93%; max-width: none; max-height: none; aspect-ratio: auto; object-fit: contain; object-position: center top; }
  .color-personal-controls { right: 14px; bottom: 14px; }
  .color-personal-control { width: 42px; height: 42px; }
  .color-personal-controls p { height: 42px; padding-inline: 11px; }
  .color-personal-media figcaption { font-size: 9px; }
  .color-consultation { grid-template-columns: 1fr; gap: 50px; padding: 72px 26px; }
  .color-consultation-heading { position: static; }
  .color-consultation-heading h2 { margin-top: 42px; font-size: clamp(48px,13vw,67px); }
  .color-consultation-heading > p:last-child { margin-top: 26px; font-size: 17px; }
  .color-consultation-steps li { grid-template-columns: 36px 1fr; gap: 15px; padding: 26px 0; }
  .color-consultation-steps h3 { font-size: 24px; }
  .color-consultation-steps li > div > span { font-size: 16px; }
  .color-consultation-note { grid-template-columns: 1fr; padding: 28px 24px; }
  .color-consultation-note > p, .color-consultation-note > span, .color-consultation-note .text-link { grid-column: 1; }
  .color-consultation-note .text-link { grid-row: auto; justify-self: start; margin-top: 24px; }
  .color-service-choice { padding: 72px 26px; }
  .color-service-choice-heading { grid-template-columns: 1fr; gap: 30px; }
  .color-service-choice-heading h2 { margin-top: 42px; font-size: clamp(46px,12.5vw,64px); }
  .color-service-choice-heading > p { font-size: 17px; }
  .color-service-choice-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .color-service-choice-card { min-height: 0; padding: 26px 24px; }
  .color-service-choice-detail { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px 30px; border-top: 1px solid rgba(197,205,252,.34); box-shadow: inset 4px 0 0 #8999f0; }
  .color-service-choice-detail h3 { font-size: clamp(24px,7.2vw,32px); line-height: 1.28; }
  .color-service-choice-detail span { font-size: 16px; line-height: 1.7; }
  .color-service-choice-detail > div:last-child { padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .color-service-choice-card[aria-expanded='true'] { position: relative; }
  .color-service-choice-card[aria-expanded='true']::after { content: ''; position: absolute; right: 24px; bottom: -1px; left: 24px; height: 1px; background: rgba(197,205,252,.45); }
  .color-service-choice-note { padding: 18px 24px; }
  .color-hero-price-board { padding: 26px 20px; }
  .color-hero-price-heading { font-size: 14px; }
  .color-hero-price-heading small { font-size: 10px; }
  .color-hero-length-stage { grid-template-columns: .82fr 1.18fr; }
  .color-hero-salon-icon img { width: 100%; height: auto; max-height: 100%; object-fit: contain; object-position: center; }
  .color-hero-length-card { min-height: 68px; grid-template-columns: 20px 1fr auto; gap: 7px; padding: 10px 11px; }
  .color-hero-length-card small { font-size: 9px; }
  .color-hero-length-card span { font-size: 12px; }
  .color-hero-length-card strong { font-size: 16px; }
  .color-hero-extra-grid > div { min-height: 54px; gap: 12px; font-size: 13px; }
  .color-hero-extra-grid strong { font-size: 14px; }
  .color-detail-intro { padding: 72px 26px; }
  .color-detail-intro-layout { grid-template-columns: 1fr; gap: 34px; margin-top: 42px; }
  .color-detail-intro-layout h2 { font-size: clamp(42px,12vw,60px); }
  .color-detail-intro-layout > div > p { font-size: 15px; }
  .color-brands { padding: 72px 26px; }
  .color-brands-heading { grid-template-columns: 1fr; gap: 32px; }
  .color-brands-heading h2 { font-size: clamp(42px,12vw,60px); }
  .color-brand-accordion { margin-top: 48px; }
  .color-brand-trigger { min-height: 0; grid-template-columns: minmax(0,1fr) auto; grid-template-rows: auto auto auto; gap: 9px 18px; padding: 24px 18px 27px; }
  .color-brand-number { grid-column: 1; grid-row: 1; align-self: center; padding-top: 0; }
  .color-brand-identity { grid-column: 1; grid-row: 2; gap: 8px; }
  .color-brand-identity strong { font-size: clamp(25px,8vw,34px); }
  .color-brand-summary { grid-column: 1 / 3; grid-row: 3; max-width: 100%; margin-top: 5px; padding-right: 0; font-size: 18px; line-height: 1.7; }
  .color-brand-meta { grid-column: 2; grid-row: 1 / 3; align-self: start; gap: 12px; }
  .color-brand-meta > small { font-size: 10px; }
  .color-brand-action > span:first-child { display: none; }
  .color-brand-arrow { width: 36px; height: 36px; }
  .color-brand-panel-content { grid-template-columns: 1fr; gap: 32px; padding: 5px 18px 38px; }
  .color-brand-story h3 { font-size: 26px; }
  .color-brand-story > p:not(.color-brand-detail-label) { font-size: 18px; line-height: 1.85; }
  .color-clear-pricing { padding: 72px 26px; }
  .color-clear-pricing-heading { grid-template-columns: 1fr; gap: 30px; }
  .color-clear-pricing-heading h2 { margin-top: 42px; font-size: clamp(46px,12.5vw,64px); }
  .color-clear-pricing-heading > p { font-size: 17px; }
  .color-clear-pricing-board { margin-top: 44px; }
  .color-clear-pricing-main { padding: 26px 20px; }
  .color-clear-pricing-title-row p, .color-clear-pricing-title-row strong { font-size: 13px; }
  .color-clear-pricing-lengths { grid-template-columns: 1fr; gap: 2px; }
  .color-clear-pricing-lengths article { min-height: 72px; grid-template-columns: 28px minmax(0,1fr) auto; grid-template-rows: 1fr; gap: 10px; align-items: center; padding: 16px 18px; }
  .color-clear-pricing-lengths h3 { align-self: center; font-size: 21px; }
  .color-clear-pricing-lengths strong { font-size: 22px; }
  .color-clear-pricing-extras { grid-template-columns: 1fr; }
  .color-clear-pricing-extras article { min-height: 0; grid-template-columns: 1fr; gap: 22px; padding: 28px 22px; border-right: 0; border-bottom: 1px solid rgba(13,22,54,.18); }
  .color-clear-pricing-extras article:last-child { border-bottom: 0; }
  .color-clear-pricing-extras strong { font-size: 21px; }
  .color-clear-pricing-footer { align-items: flex-start; flex-direction: column; gap: 20px; }
  .color-detail-cta { padding: 76px 26px; text-align: left; }
  .color-detail-cta .eyebrow { justify-content: flex-start; }
  .color-detail-cta h2 { font-size: clamp(42px,12vw,60px); }
}

@media (max-width: 600px) {
  .hero { gap: 22px; padding-top: 26px; }
  .hero-brand-lockup { grid-row: 1; width: min(100%,310px); min-height: 190px; gap: 11px; padding: 6px 8px 10px; }
  .hero-brand-lockup::before { inset: -10% -12%; filter: blur(9px); }
  .hero-brand-lockup::after { bottom: 3%; }
  .hero-brand-primary { width: min(100%,270px); }
  .hero-brand-salon { min-width: 52%; min-height: 32px; padding: 4px 13px; font-size: 14px; }
  .hero-content { grid-row: 2; }
}

@media (max-width: 420px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-content { padding-bottom: 0; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise, .promise:not(:first-child), .promise:nth-child(3) { padding-left: 0; border-right: 0; }
}

/* Home hero — bright editorial layout inspired by the supplied reference */
.hero {
  color: var(--ink);
  background:
    linear-gradient(90deg,
      rgba(247,252,255,.04) 0%,
      rgba(244,251,255,.09) 37%,
      rgba(237,248,255,.58) 67%,
      rgba(250,253,255,.91) 100%),
    center 52% / cover no-repeat url('/images/home-hero-salon.webp');
}
.hero-content { text-shadow: 0 1px 16px rgba(255,255,255,.88); }
.hero .eyebrow { color: #17213d; font-weight: 600; }
.hero h1 { color: var(--ink); line-height: .93; white-space: normal; }
.hero h1 em { display: block; color: var(--indigo); }
.hero .hero-copy { color: #1f2942; font-weight: 500; }
.hero .button-primary { color: #fff; background: var(--indigo); box-shadow: 0 14px 30px rgba(28,43,115,.2); }
.hero .button-primary:hover { background: #1b2769; }
.hero .text-link { color: var(--ink); }
.hero .hero-footer { color: #34405f; font-weight: 600; }
.hero-brand-lockup::before {
  inset: -16% -8%;
  opacity: .38;
  background: radial-gradient(ellipse at center,rgba(255,255,255,.88) 0%,rgba(227,239,255,.52) 40%,transparent 73%);
  filter: blur(15px);
}
.hero-brand-lockup::after { display: none; }

@media (min-width: 1100px) {
  .hero {
    min-height: calc(100svh - 82px);
    grid-template-columns: minmax(0,1.08fr) minmax(470px,.92fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "brand brand"
      ". content";
    align-items: center;
    column-gap: clamp(44px,5vw,88px);
    row-gap: 4px;
    padding: 24px 7.5vw 54px;
  }
  .hero-brand-lockup {
    grid-area: brand;
    width: min(100%,560px);
    min-height: 112px;
    flex-direction: row;
    gap: 16px;
    justify-self: end;
    align-self: start;
    margin-top: 18px;
    padding: 0;
  }
  .hero-brand-primary { width: min(100%,370px); }
  .hero-brand-salon {
    min-width: 174px;
    min-height: 42px;
    margin: 0;
    padding: 6px 16px 4px;
    align-self: center;
    font-size: clamp(17px,1.1vw,21px);
  }
  .hero-content {
    grid-area: content;
    width: min(100%,600px);
    justify-self: end;
    align-self: center;
    align-items: flex-end;
    padding: 2px clamp(28px,2.6vw,46px) 18px 0;
    border-right: 0;
    text-align: right;
  }
  .hero .eyebrow { justify-content: flex-end; margin-bottom: 18px; }
  .hero h1 {
    width: min(100%,520px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: clamp(57px,4.3vw,76px);
    letter-spacing: -.064em;
  }
  .hero h1 em {
    align-self: flex-end;
    margin-top: -2px;
    padding-right: 8px;
    font-size: .9em;
    letter-spacing: -.045em;
  }
  .hero .hero-copy { max-width: 520px; margin: 24px 0 26px auto; font-size: clamp(18px,1.04vw,20px); line-height: 1.68; }
  .hero .hero-actions { width: min(100%,520px); margin-left: auto; justify-content: flex-end; gap: 28px; }
  .hero .hero-footer {
    width: min(100%,520px);
    margin-left: auto;
    margin-top: 30px;
    padding-top: 18px;
    justify-content: space-between;
    border-top: 1px solid rgba(38,48,75,.18);
  }
}

@media (min-width: 801px) and (max-width: 1099px) {
  .hero {
    min-height: calc(100svh - 82px);
    grid-template-columns: minmax(0,1fr) minmax(380px,.92fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "brand brand"
      ". content";
    column-gap: 28px;
    row-gap: 0;
    padding: 24px 5vw 42px;
  }
  .hero-brand-lockup {
    grid-area: brand;
    width: min(88vw,800px);
    min-height: 120px;
    flex-direction: row;
    gap: 16px;
    justify-self: end;
    align-self: start;
    padding: 0;
  }
  .hero-brand-primary { width: min(58vw,535px); }
  .hero-brand-salon { min-width: 210px; min-height: 44px; margin: 0; padding: 6px 18px 4px; font-size: 20px; }
  .hero-content { grid-area: content; width: min(100%,520px); justify-self: end; align-items: flex-end; padding: 0 28px 0 0; border-right: 0; text-align: right; }
  .hero .eyebrow { justify-content: flex-end; margin-bottom: 16px; }
  .hero h1 { width: min(100%,470px); display: flex; flex-direction: column; align-items: flex-end; font-size: clamp(50px,5.25vw,62px); }
  .hero h1 em { align-self: flex-end; padding-right: 6px; font-size: .9em; }
  .hero .hero-copy { max-width: 470px; margin: 22px 0 26px auto; font-size: 18px; line-height: 1.65; }
  .hero .hero-actions { width: min(100%,470px); margin-left: auto; justify-content: flex-end; gap: 22px; }
  .hero .hero-footer { width: min(100%,470px); margin: 26px 0 0 auto; padding-top: 16px; justify-content: space-between; border-top: 1px solid rgba(38,48,75,.18); }
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "brand" "content";
    gap: 20px;
    padding: 26px 26px 52px;
    color: var(--ink);
    background:
      linear-gradient(180deg,rgba(245,251,255,.72) 0%,rgba(232,246,255,.64) 52%,rgba(245,251,255,.76) 100%),
      55% center / cover no-repeat url('/images/home-hero-salon-mobile.webp');
  }
  .hero-brand-lockup {
    grid-area: brand;
    grid-row: 1;
    width: min(100%,350px);
    min-height: 188px;
    flex-direction: column;
    gap: 11px;
    padding: 4px 8px 10px;
  }
  .hero-brand-primary { width: min(100%,300px); }
  .hero-brand-salon { min-width: 52%; min-height: 34px; margin: 0; padding: 4px 13px; font-size: 15px; }
  .hero-content { grid-area: content; grid-row: 2; width: 100%; padding: 0; }
  .hero h1 { color: var(--ink); font-size: clamp(48px,12.8vw,66px); }
  .hero h1 em { color: var(--indigo); }
  .hero .hero-copy { max-width: 360px; margin: 24px 0 28px; color: #333e59; font-size: 17px; }
  .hero .button-primary { color: #fff; background: var(--indigo); }
  .hero .text-link { color: var(--ink); }
  .hero .hero-footer { color: #4d5872; }
}

/* Treatment detail */
.treatment-detail-page { overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; background: #f4f5f8; }
.treatment-hero { min-height: calc(100vh - 78px); display: grid; grid-template-columns: minmax(0,.9fr) minmax(430px,.8fr); grid-template-rows: 1fr; gap: clamp(24px,3vw,52px); align-items: center; padding: clamp(62px,7vw,105px) 8vw clamp(38px,4vw,58px); color: #fff; background: var(--navy); }
.treatment-hero-copy { max-width: 850px; }
.treatment-hero h1 { margin: 26px 0 0; color: #fff; font-size: clamp(58px,6.6vw,102px); line-height: .96; letter-spacing: -.06em; }
.treatment-hero h1 em { color: #c5cdfc; }
.treatment-hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.86); font-size: 20px; line-height: 1.9; text-wrap: pretty; }
.treatment-hero-article { max-width: 780px; margin-top: 32px; color: rgba(255,255,255,.88); }
.treatment-hero-article p { margin: 0; font-size: clamp(16px,1.15vw,19px); line-height: 1.78; text-wrap: pretty; }
.treatment-hero-article span { display: block; }
.treatment-hero-button { margin-top: 34px; color: var(--ink); background: #fff; }
.treatment-hero-button:hover { background: #c5cdfc; }
.treatment-hero-media { position: relative; width: min(100%,560px); justify-self: start; align-self: stretch; display: grid; grid-template-rows: minmax(0,1fr) auto; align-items: end; margin: -16px 0 0; isolation: isolate; }
.treatment-hero-media::before { content: ''; position: absolute; z-index: -1; inset: 11% 3% 9%; border: 1px solid rgba(197,205,252,.22); background: radial-gradient(circle at 50% 42%,rgba(104,124,220,.28),rgba(30,50,110,0) 70%); transform: rotate(3deg); }
.treatment-hero-media::after { content: 'TREATMENT'; position: absolute; z-index: -1; right: -20px; top: 15%; color: rgba(197,205,252,.1); font: 600 clamp(48px,4vw,78px)/1 'Manrope',sans-serif; letter-spacing: .08em; writing-mode: vertical-rl; }
.treatment-hero-media img { position: relative; width: 100%; height: min(66vh,730px); display: block; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 30px 32px rgba(3,10,34,.34)); }
.treatment-hero-media figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 12px; border-top: 1px solid rgba(197,205,252,.3); color: rgba(255,255,255,.64); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .12em; }
.treatment-concern-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(197,205,252,.28); border-bottom: 1px solid rgba(197,205,252,.28); }
.treatment-concern-strip > span { min-height: 72px; display: flex; align-items: center; gap: 18px; padding: 0 22px; border-right: 1px solid rgba(197,205,252,.2); color: rgba(255,255,255,.92); font-size: 17px; font-weight: 600; }
.treatment-concern-strip > span:last-child { border-right: 0; }
.treatment-concern-strip small { color: #c5cdfc; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .1em; }

.treatment-care-story { padding: clamp(34px,3.8vw,52px) clamp(72px,11vw,220px); color: var(--ink); background: #eef0f8; }
.treatment-story-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.58fr); gap: 5vw; align-items: end; }
.treatment-story-heading h2 { max-width: 700px; margin-top: 7px; font-size: clamp(32px,3.2vw,46px); line-height: 1.04; letter-spacing: -.05em; }
.treatment-story-heading > p { max-width: 540px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; text-wrap: pretty; }
.treatment-story-viewport { display: grid; margin-top: clamp(16px,1.8vw,24px); border: 1px solid rgba(14,26,58,.16); background: #fff; box-shadow: 0 15px 38px rgba(16,30,70,.075); overflow: hidden; }
.treatment-story-slide { grid-area: 1 / 1; min-width: 0; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr); opacity: 0; visibility: hidden; transform: translateX(24px); pointer-events: none; transition: opacity .8s cubic-bezier(.22,1,.36,1),transform .8s cubic-bezier(.22,1,.36,1),visibility 0s linear .8s; }
.treatment-story-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; transition-delay: 0s; }
.treatment-story-slide figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--navy); }
.treatment-story-slide figure::after { content: ''; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(transparent,rgba(5,14,43,.76)); pointer-events: none; }
.treatment-story-slide img { width: 100%; height: 100%; min-height: 290px; max-height: 320px; display: block; object-fit: cover; transform: scale(1.025); transition: transform 7s cubic-bezier(.2,.6,.2,1); }
.treatment-story-slide.is-active img { transform: scale(1); }
.treatment-story-slide figcaption { position: absolute; z-index: 1; right: 20px; bottom: 16px; left: 20px; display: flex; justify-content: space-between; gap: 20px; color: #fff; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.treatment-story-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(22px,2.5vw,36px); background: #fff; }
.treatment-story-eyebrow { margin: 0 0 10px; color: #344cb0; font: 600 9px 'DM Sans',sans-serif; letter-spacing: .16em; }
.treatment-story-copy h3 { margin: 0; color: var(--ink); font-size: clamp(27px,2.35vw,36px); line-height: 1.06; letter-spacing: -.05em; text-wrap: balance; }
.treatment-story-copy > p:not(.treatment-story-eyebrow) { max-width: 630px; margin: 13px 0 0; color: #535c73; font-size: 15px; line-height: 1.55; text-wrap: pretty; }
.treatment-story-line { width: 54px; height: 2px; margin-top: 16px; background: linear-gradient(90deg,#344cb0,#c5a36c); }
.treatment-story-controls { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 8px; align-items: stretch; margin-top: 9px; }
.treatment-story-arrow,.treatment-story-tabs button { appearance: none; border: 1px solid rgba(14,26,58,.17); color: var(--ink); background: transparent; cursor: pointer; font: inherit; }
.treatment-story-arrow { width: 46px; min-height: 48px; display: grid; place-items: center; font-size: 18px; transition: color .25s ease,background .25s ease,border-color .25s ease; }
.treatment-story-arrow:hover { color: #fff; border-color: var(--navy); background: var(--navy); }
.treatment-story-tabs { min-width: 0; display: grid; grid-template-columns: repeat(4,1fr); }
.treatment-story-tabs button { min-width: 0; min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 7px 12px; border-right: 0; text-align: left; transition: color .3s ease,background .3s ease; }
.treatment-story-tabs button:last-child { border-right: 1px solid rgba(14,26,58,.17); }
.treatment-story-tabs button small { color: #344cb0; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .1em; transition: color .3s ease; }
.treatment-story-tabs button span { overflow: hidden; font-size: 13px; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.treatment-story-tabs button[aria-selected='true'] { color: #fff; background: var(--navy); }
.treatment-story-tabs button[aria-selected='true'] small { color: #c5cdfc; }
.treatment-story-arrow:focus-visible,.treatment-story-tabs button:focus-visible { outline: 2px solid #344cb0; outline-offset: 3px; }

.treatment-guide { padding: clamp(82px,9vw,140px) 8vw; color: #fff; background: #1a2b68; }
.treatment-guide-heading { display: grid; grid-template-columns: 1.05fr .72fr; gap: 9vw; align-items: end; }
.treatment-guide-heading h2 { margin-top: 22px; color: #fff; font-size: clamp(48px,5.5vw,84px); }
.treatment-guide-heading h2 em { color: #c5cdfc; }
.treatment-guide-heading > p { max-width: 670px; margin: 0 0 7px; color: rgba(255,255,255,.88); font-size: 20px; line-height: 1.85; text-wrap: pretty; }
.treatment-accordion { position: relative; margin-top: clamp(46px,5.5vw,76px); border: 1px solid rgba(206,211,255,.3); background: linear-gradient(180deg,#354fac 0%,#33449d 25%,#35338a 50%,#312675 76%,#231951 100%); box-shadow: 0 32px 72px rgba(10,7,44,.38); overflow: hidden; }
.treatment-accordion::before { content: ''; position: absolute; inset: 0; background: linear-gradient(118deg,rgba(255,255,255,.045),transparent 38%,rgba(18,7,52,.14)); pointer-events: none; }
.treatment-item { position: relative; border-bottom: 1px solid rgba(234,237,255,.16); background: transparent; transition: background .35s ease,border-color .35s ease; }
.treatment-item:last-child { border-bottom: 0; }
.treatment-item:hover { border-color: rgba(234,237,255,.42); background: rgba(8,13,55,.1); }
.treatment-item.is-open { border-color: rgba(221,226,255,.5); background: rgba(13,8,49,.18); box-shadow: inset 3px 0 rgba(190,199,255,.88); }
.treatment-accordion .treatment-number,.treatment-accordion .treatment-identity small { color: rgba(255,255,255,.86); }
.treatment-accordion .treatment-identity strong,.treatment-accordion .treatment-concern,.treatment-accordion .treatment-action { color: #fff; }
.treatment-trigger { width: 100%; min-height: 150px; display: grid; grid-template-columns: 58px minmax(270px,.9fr) minmax(320px,1.1fr) 150px; align-items: center; gap: clamp(22px,3vw,52px); padding: 30px 32px; border: 0; color: #fff; background: transparent; text-align: left; font-family: inherit; cursor: pointer; }
.treatment-trigger:focus-visible { outline: 2px solid #c5cdfc; outline-offset: -4px; }
.treatment-number { align-self: start; padding-top: 8px; color: #c5cdfc; font: 600 13px 'DM Sans',sans-serif; letter-spacing: .12em; }
.treatment-identity { min-width: 0; display: grid; gap: 10px; }
.treatment-identity strong { color: #fff; font: 600 clamp(27px,2.2vw,39px)/1.05 'Manrope',sans-serif; letter-spacing: -.04em; }
.treatment-identity small { color: #c5cdfc; font: 600 12px 'DM Sans',sans-serif; letter-spacing: .13em; }
.treatment-concern { max-width: 660px; color: rgba(255,255,255,.95); font-size: clamp(19px,1.2vw,22px); line-height: 1.75; text-wrap: pretty; }
.treatment-action { justify-self: end; display: inline-flex; align-items: center; gap: 14px; color: #eef0ff; font: 600 11px 'DM Sans',sans-serif; letter-spacing: .12em; }
.treatment-arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(197,205,252,.6); border-radius: 50%; transition: transform .45s cubic-bezier(.22,1,.36,1),background .25s ease,color .25s ease; }
.treatment-arrow::before { content: ''; width: 8px; height: 8px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.treatment-trigger:hover .treatment-arrow { color: var(--navy); background: #c5cdfc; transform: translateY(3px); }
.treatment-item.is-open .treatment-arrow { color: var(--navy); background: #c5cdfc; transform: rotate(180deg); }
.treatment-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .62s cubic-bezier(.22,1,.36,1),opacity .34s ease; }
.treatment-item.is-open .treatment-panel { grid-template-rows: 1fr; opacity: 1; }
.treatment-panel-inner { min-height: 0; overflow: hidden; }
.treatment-panel-content { display: grid; grid-template-columns: 1.2fr .7fr .9fr; gap: clamp(34px,5vw,76px); padding: 4px 30px 54px 104px; }
.treatment-detail-label { margin: 0 0 17px; color: #c5cdfc; font: 600 13px 'DM Sans',sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.treatment-story h3 { margin: 0; color: #fff; font-size: clamp(26px,2.3vw,38px); letter-spacing: -.035em; }
.treatment-story > p:not(.treatment-detail-label) { max-width: 780px; margin: 20px 0 0; color: rgba(255,255,255,.93); font-size: 19px; line-height: 1.9; text-wrap: pretty; }
.treatment-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.treatment-tags span { padding: 10px 14px; border: 1px solid rgba(197,205,252,.45); color: #fff; background: rgba(197,205,252,.1); font-size: 17px; line-height: 1.5; }
.treatment-benefits ul { margin: 0; padding: 0; list-style: none; }
.treatment-benefits li { position: relative; padding: 12px 0 12px 23px; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.93); font-size: 17px; line-height: 1.75; }
.treatment-benefits li::before { content: ''; position: absolute; top: 18px; left: 1px; width: 5px; height: 5px; border-radius: 50%; background: #c5cdfc; box-shadow: 0 0 0 4px rgba(197,205,252,.1); }
.treatment-official-link { min-height: 50px; width: fit-content; display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding: 0 17px; border: 1px solid rgba(197,205,252,.5); color: #fff; background: rgba(197,205,252,.08); font-size: 16px; font-weight: 600; transition: color .25s ease,background .25s ease,transform .25s ease; }
.treatment-official-link:hover { color: var(--navy); background: #c5cdfc; transform: translateY(-2px); }

.treatment-pricing { padding: clamp(30px,3.2vw,44px) 8vw; background: #e7eaf3; }
.treatment-pricing-heading { display: grid; grid-template-columns: .42fr .9fr .8fr; gap: clamp(28px,4.5vw,68px); align-items: end; }
.treatment-pricing-heading h2 { font-size: clamp(38px,4vw,58px); }
.treatment-pricing-heading > p:last-child { margin: 0 0 4px; color: #4f5870; font-size: 15px; line-height: 1.6; }
.treatment-price-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px,2.6vw,40px); margin-top: clamp(20px,2.2vw,30px); }
.treatment-price-card { min-width: 0; padding: clamp(22px,2.3vw,30px); border: 1px solid rgba(26,43,104,.16); background: rgba(255,255,255,.95); box-shadow: 0 18px 40px rgba(16,22,43,.09); }
.treatment-price-card-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--ink); color: var(--indigo); font: 700 15px 'DM Sans',sans-serif; letter-spacing: .09em; }
.treatment-price-card-heading > div { display: grid; gap: 4px; }
.treatment-price-card-heading small { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.treatment-price-list { display: grid; gap: 3px; margin-top: 12px; }
.treatment-price-list > div { min-height: 58px; display: grid; grid-template-columns: 30px 1fr auto; gap: 12px; align-items: center; padding: 9px 16px; color: var(--ink); }
.treatment-standard-price .treatment-price-list > div:nth-child(1) { background: #dce6df; }
.treatment-standard-price .treatment-price-list > div:nth-child(2) { background: #b9cec3; }
.treatment-standard-price .treatment-price-list > div:nth-child(3) { background: #8faea2; }
.treatment-standard-price .treatment-price-list > div:nth-child(4) { color: #fff; background: #557d78; }
.treatment-standard-price .treatment-price-list > div:nth-child(5) { color: #fff; background: #284f57; }
.treatment-keratin-price .treatment-price-list > div:nth-child(1) { background: #e7dcc9; }
.treatment-keratin-price .treatment-price-list > div:nth-child(2) { background: #d0b28c; }
.treatment-keratin-price .treatment-price-list > div:nth-child(3) { color: #fff; background: #ad8368; }
.treatment-keratin-price .treatment-price-list > div:nth-child(4) { color: #fff; background: #805d68; }
.treatment-keratin-price .treatment-price-list > div:nth-child(5) { color: #fff; background: #5f485c; }
.treatment-price-list small { opacity: .7; font: 600 11px 'DM Sans',sans-serif; letter-spacing: .08em; }
.treatment-price-list span { font: 600 15px 'DM Sans',sans-serif; text-transform: uppercase; }
.treatment-price-list strong { font: 700 20px 'DM Sans',sans-serif; }
.treatment-price-addon { min-height: 50px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-top: 12px; padding: 0 4px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #505a6d; font-size: 14px; }
.treatment-price-addon strong { color: #284f57; font: 700 16px 'DM Sans',sans-serif; }
.treatment-keratin-price > p { margin: 14px 0 0; color: #5b6272; font-size: 13px; line-height: 1.6; }

.treatment-cta { padding: clamp(82px,9vw,140px) 8vw; text-align: center; color: #fff; background: var(--indigo); }
.treatment-cta .eyebrow { justify-content: center; }
.treatment-cta h2 { margin-top: 22px; color: #fff; font-size: clamp(48px,5.8vw,88px); }
.treatment-cta > p:not(.eyebrow) { max-width: 720px; margin: 28px auto 0; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.85; }
.treatment-cta .button { margin-top: 34px; color: var(--ink); background: #fff; }
.treatment-cta .button:hover { background: #dce1ff; }

@media (prefers-reduced-motion: reduce) {
  .treatment-item,.treatment-arrow,.treatment-panel,.treatment-story-slide,.treatment-story-slide img { transition: none; }
}

@media (max-width: 900px) {
  .treatment-detail-page main,
  .treatment-hero,
  .treatment-hero-copy,
  .treatment-hero-copy h1,
  .treatment-hero-article,
  .treatment-hero-article p,
  .treatment-hero-media { width: 100%; min-width: 0; max-width: 100%; }
  .treatment-hero { min-height: 0; grid-template-columns: minmax(0,1fr); grid-template-rows: auto; gap: 38px; padding: 58px 26px 38px; overflow: hidden; }
  .treatment-hero h1 { font-size: clamp(44px,11.6vw,64px); line-height: .98; letter-spacing: -.055em; overflow-wrap: anywhere; word-break: normal; }
  .treatment-hero h1 em { display: inline; overflow-wrap: anywhere; }
  .treatment-hero-copy > p:not(.eyebrow) { font-size: 18px; line-height: 1.85; }
  .treatment-hero-article { margin-top: 27px; }
  .treatment-hero-article p { font-size: 16px; line-height: 1.72; overflow-wrap: anywhere; word-break: normal; }
  .treatment-hero-article span { display: inline; }
  .treatment-hero-article span::after { content: ' '; }
  .treatment-hero-media { width: min(100%,520px); justify-self: center; align-self: auto; margin-top: -12px; }
  .treatment-hero-media::before { inset: 12% 2% 8%; }
  .treatment-hero-media::after { right: -8px; top: 17%; font-size: clamp(42px,12vw,64px); }
  .treatment-hero-media img { height: auto; max-height: 610px; object-position: center bottom; }
  .treatment-concern-strip { grid-column: 1; grid-template-columns: repeat(2,1fr); }
  .treatment-concern-strip > span { min-height: 64px; padding: 0 14px; font-size: 15px; }
  .treatment-concern-strip > span:nth-child(2) { border-right: 0; }
  .treatment-concern-strip > span:nth-child(-n+2) { border-bottom: 1px solid rgba(197,205,252,.2); }
  .treatment-care-story { padding: 34px 20px; }
  .treatment-story-heading { grid-template-columns: 1fr; gap: 0; }
  .treatment-story-heading h2 { margin-top: 8px; font-size: clamp(31px,8.5vw,40px); }
  .treatment-story-heading > p { display: none; }
  .treatment-story-viewport { margin-top: 18px; }
  .treatment-story-slide { grid-template-columns: 1fr; transform: translateX(16px); }
  .treatment-story-slide img { min-height: 0; max-height: none; aspect-ratio: 16 / 9; }
  .treatment-story-copy { padding: 19px 20px 21px; }
  .treatment-story-eyebrow { margin-bottom: 8px; }
  .treatment-story-copy h3 { font-size: clamp(27px,7.4vw,34px); }
  .treatment-story-copy > p:not(.treatment-story-eyebrow) { margin-top: 11px; font-size: 15px; line-height: 1.55; }
  .treatment-story-line { display: none; }
  .treatment-story-controls { grid-template-columns: 42px minmax(0,1fr) 42px; gap: 6px; }
  .treatment-story-arrow { width: 42px; min-height: 86px; }
  .treatment-story-tabs { grid-template-columns: repeat(2,1fr); }
  .treatment-story-tabs button { min-height: 43px; gap: 7px; padding: 6px 8px; border-bottom: 0; }
  .treatment-story-tabs button:nth-child(2) { border-right: 1px solid rgba(14,26,58,.17); }
  .treatment-story-tabs button:nth-child(n+3) { border-bottom: 1px solid rgba(14,26,58,.17); }
  .treatment-story-tabs button span { font-size: 12px; }
  .treatment-guide { padding: 72px 26px; }
  .treatment-guide-heading { grid-template-columns: 1fr; gap: 32px; }
  .treatment-guide-heading h2 { font-size: clamp(42px,12vw,60px); }
  .treatment-guide-heading > p { font-size: 18px; }
  .treatment-accordion { margin-top: 48px; }
  .treatment-trigger { min-height: 0; grid-template-columns: minmax(0,1fr) auto; grid-template-rows: auto auto auto; gap: 9px 18px; padding: 24px 18px 27px; }
  .treatment-number { grid-column: 1; grid-row: 1; align-self: center; padding-top: 0; }
  .treatment-identity { grid-column: 1; grid-row: 2; }
  .treatment-identity strong { font-size: clamp(24px,7.2vw,34px); }
  .treatment-concern { grid-column: 1 / 3; grid-row: 3; max-width: 100%; margin-top: 5px; padding-right: 0; font-size: 18px; line-height: 1.7; }
  .treatment-action { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .treatment-action > span:first-child { display: none; }
  .treatment-arrow { width: 38px; height: 38px; }
  .treatment-panel-content { grid-template-columns: 1fr; gap: 32px; padding: 5px 18px 40px; }
  .treatment-story > p:not(.treatment-detail-label) { font-size: 18px; line-height: 1.85; }
  .treatment-pricing { padding: 48px 20px; }
  .treatment-pricing-heading { grid-template-columns: 1fr; gap: 14px; }
  .treatment-pricing-heading h2 { font-size: clamp(38px,10.5vw,50px); }
  .treatment-pricing-heading > p:last-child { font-size: 16px; line-height: 1.6; }
  .treatment-price-layout { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
  .treatment-price-card { padding: 20px 16px; }
  .treatment-price-list > div { min-height: 58px; grid-template-columns: 22px 1fr auto; gap: 8px; padding: 9px 11px; }
  .treatment-price-list span { font-size: 14px; }
  .treatment-price-list strong { font-size: 18px; }
  .treatment-price-addon { gap: 10px; font-size: 14px; }
  .treatment-price-addon strong { font-size: 15px; }
  .treatment-cta { padding: 76px 26px; text-align: left; }
  .treatment-cta .eyebrow { justify-content: flex-start; }
  .treatment-cta h2 { font-size: clamp(42px,12vw,60px); }
  .treatment-cta > p:not(.eyebrow) { margin-left: 0; font-size: 18px; }
}

@media (max-width: 420px) {
  .treatment-hero { gap: 30px; padding: 46px 20px 34px; }
  .treatment-hero h1 { margin-top: 20px; font-size: clamp(40px,11.5vw,52px); line-height: 1; }
  .treatment-hero-article { margin-top: 23px; }
  .treatment-hero-article p { font-size: 15.5px; line-height: 1.68; }
  .treatment-hero-media::after { right: 0; }
}

@media (max-width: 420px) {
  .treatment-price-card-heading { font-size: 14px; }
  .treatment-price-list span { max-width: 135px; }
}

/* Straightening detail */
.straightening-detail-page { background: #f2f3f8; }
.straightening-hero { min-height: calc(100vh - 78px); display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.72fr); grid-template-rows: 1fr auto; column-gap: clamp(42px,6vw,104px); align-items: center; padding: clamp(52px,5.5vw,82px) 9vw 0; color: #fff; background: var(--navy); overflow: hidden; }
.straightening-hero-copy { max-width: 820px; padding-bottom: 42px; }
.straightening-hero h1 { margin-top: 24px; color: #fff; font-size: clamp(60px,7vw,108px); line-height: .94; letter-spacing: -.065em; }
.straightening-hero h1 em { color: #c5cdfc; }
.straightening-hero-copy > p:not(.eyebrow) { max-width: 700px; margin: 32px 0 0; color: rgba(255,255,255,.88); font-size: clamp(17px,1.2vw,20px); line-height: 1.85; text-wrap: pretty; }
.straightening-hero-button { margin-top: 32px; color: var(--ink); background: #fff; }
.straightening-hero-button:hover { background: #c5cdfc; }
.straightening-hero-media { position: relative; isolation: isolate; width: min(100%,560px); height: min(72vh,690px); align-self: end; justify-self: center; margin: 0; overflow: visible; }
.straightening-hero-circles { position: absolute; z-index: 0; inset: 12% -9% 9%; display: block; pointer-events: none; filter: drop-shadow(0 30px 46px rgba(3,10,31,.32)); }
.straightening-hero-circles i { position: absolute; top: 17%; width: 67%; aspect-ratio: 1; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.13); }
.straightening-hero-circles i:first-child { left: 0; background: #e68d32; }
.straightening-hero-circles i:last-child { right: 0; background: #f1c64d; mix-blend-mode: screen; opacity: .94; }
.straightening-hero-media img { position: relative; z-index: 1; width: 100%; height: 100%; display: block; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 30px 34px rgba(3,10,31,.28)); }
.straightening-hero-media figcaption { position: absolute; z-index: 2; right: 4px; bottom: 10px; left: 4px; display: flex; justify-content: space-between; gap: 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.35); color: #fff; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .12em; text-shadow: 0 1px 12px rgba(3,10,31,.7); }
.straightening-hero-notes { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(197,205,252,.25); }
.straightening-hero-notes span { min-height: 66px; display: flex; align-items: center; gap: 15px; padding: 0 22px; border-right: 1px solid rgba(197,205,252,.22); color: rgba(255,255,255,.9); font: 600 12px 'DM Sans',sans-serif; letter-spacing: .08em; }
.straightening-hero-notes span:last-child { border-right: 0; }
.straightening-hero-notes small { color: #c5cdfc; font-size: 10px; }

.straightening-technology { padding: clamp(76px,8vw,126px) 9vw; background: #f6f4ef; }
.straightening-section-heading { display: grid; grid-template-columns: minmax(260px,.46fr) minmax(0,1.08fr); gap: clamp(48px,7vw,112px); align-items: center; }
.straightening-product-visual { position: relative; min-height: 480px; display: grid; place-items: end center; margin: 0; overflow: hidden; border: 1px solid rgba(16,22,43,.12); background: #ebe8e2; }
.straightening-product-visual::before { content: ''; position: absolute; top: 11%; left: 50%; width: 76%; aspect-ratio: 1; border-radius: 50%; background: #e7a36b; transform: translateX(-50%); opacity: .74; }
.straightening-product-visual img { position: relative; z-index: 1; width: auto; height: min(455px,42vw); max-width: 88%; display: block; object-fit: contain; filter: drop-shadow(0 22px 28px rgba(28,20,22,.18)); }
.straightening-product-visual figcaption { position: absolute; z-index: 2; right: 18px; bottom: 15px; left: 18px; display: flex; justify-content: space-between; gap: 16px; padding-top: 10px; border-top: 1px solid rgba(16,22,43,.18); color: #303b94; font: 600 9px 'DM Sans',sans-serif; letter-spacing: .11em; }
.straightening-product-visual figcaption span { color: #656b79; text-align: right; }
.straightening-heading-copy > .eyebrow { margin-bottom: 22px; }
.straightening-section-heading h2 { margin: 0; font-size: clamp(42px,4.45vw,68px); line-height: 1.02; }
.straightening-heading-copy > p { max-width: 760px; margin: 30px 0 0; color: #525b6f; font-size: 18px; line-height: 1.85; text-wrap: pretty; }
.straightening-product-link { width: fit-content; display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid var(--indigo); color: var(--indigo); font-size: 15px; font-weight: 700; transition: color .2s ease, border-color .2s ease; }
.straightening-product-link .icon-arrow-up-right { transition: transform .2s ease; }
.straightening-product-link:hover, .straightening-product-link:focus-visible { color: #182664; border-color: #182664; }
.straightening-product-link:hover .icon-arrow-up-right, .straightening-product-link:focus-visible .icon-arrow-up-right { transform: translate(3px,-3px); }
.straightening-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: clamp(48px,5.8vw,84px); border-top: 1px solid rgba(16,22,43,.18); }
.straightening-benefit-grid article { min-height: 310px; padding: 28px 32px 30px 0; border-right: 1px solid rgba(16,22,43,.18); }
.straightening-benefit-grid article:not(:first-child) { padding-left: 32px; }
.straightening-benefit-grid article:last-child { border-right: 0; }
.straightening-benefit-grid article > span { color: var(--indigo); font: 600 11px 'DM Sans',sans-serif; }
.straightening-benefit-grid article > p:first-of-type { margin: 52px 0 0; color: var(--indigo); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .12em; }
.straightening-benefit-grid h3 { margin-top: 17px; font-size: clamp(25px,2.2vw,35px); line-height: 1.2; }
.straightening-benefit-grid article > p:last-child { margin: 20px 0 0; color: #596174; font-size: 17px; line-height: 1.8; }

.straightening-pricing { min-height: min(760px,100vh); display: grid; grid-template-columns: .8fr 1.05fr; gap: clamp(54px,8vw,128px); align-items: center; padding: clamp(58px,6vw,88px) 9vw; background: #e7eaf3; scroll-margin-top: 80px; }
.straightening-pricing-copy h2 { margin-top: 18px; font-size: clamp(48px,5.5vw,82px); }
.straightening-pricing-copy > p:last-child { max-width: 590px; margin: 28px 0 0; color: #50596d; font-size: 18px; line-height: 1.85; }
.straightening-price-card { min-width: 0; padding: clamp(25px,2.7vw,39px); border: 1px solid rgba(26,43,104,.16); background: rgba(255,255,255,.96); box-shadow: 0 24px 55px rgba(16,22,43,.1); }
.straightening-price-heading { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); color: var(--indigo); font: 700 15px 'DM Sans',sans-serif; letter-spacing: .08em; }
.straightening-price-heading > div { display: grid; gap: 5px; }
.straightening-price-heading small { color: var(--muted); font-size: 11px; font-weight: 500; text-transform: uppercase; }
.straightening-price-list { display: grid; gap: 3px; margin-top: 13px; }
.straightening-price-list > div { min-height: 65px; display: grid; grid-template-columns: 30px 1fr auto; gap: 12px; align-items: center; padding: 10px 16px; }
.straightening-price-list > div:nth-child(1) { background: #e7dcc9; }
.straightening-price-list > div:nth-child(2) { background: #d0b28c; }
.straightening-price-list > div:nth-child(3) { color: #fff; background: #ad8368; }
.straightening-price-list > div:nth-child(4) { color: #fff; background: #805d68; }
.straightening-price-list > div:nth-child(5) { color: #fff; background: #5f485c; }
.straightening-price-list small { opacity: .72; font: 600 10px 'DM Sans',sans-serif; }
.straightening-price-list span { font: 600 15px 'DM Sans',sans-serif; text-transform: uppercase; }
.straightening-price-list strong { font: 700 20px 'DM Sans',sans-serif; }
.straightening-price-addon { min-height: 56px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; margin-top: 13px; padding: 0 4px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #505a6d; font-size: 14px; }
.straightening-price-addon strong { color: #47384c; font: 700 16px 'DM Sans',sans-serif; }
.straightening-price-note { margin: 14px 0 0; color: #666e7e; font-size: 12px; line-height: 1.6; }

.straightening-aftercare { display: grid; grid-template-columns: .7fr 1.2fr; gap: 9vw; padding: clamp(76px,8vw,126px) 9vw; color: #fff; background: #1a2b68; }
.straightening-aftercare h2 { margin-top: 19px; color: #fff; font-size: clamp(46px,5.2vw,78px); }
.straightening-aftercare h2 em { color: #c5cdfc; }
.straightening-aftercare-list { border-top: 1px solid rgba(255,255,255,.25); }
.straightening-aftercare-list article { display: grid; grid-template-columns: 42px minmax(190px,.6fr) 1fr; gap: 25px; align-items: start; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.straightening-aftercare-list article > span { color: #c5cdfc; font: 600 10px 'DM Sans',sans-serif; }
.straightening-aftercare-list h3 { color: #fff; font-size: 21px; letter-spacing: -.02em; }
.straightening-aftercare-list p { margin: 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.75; }

.straightening-cta { padding: clamp(76px,8vw,126px) 9vw; text-align: center; color: #fff; background: var(--indigo); }
.straightening-cta .eyebrow { justify-content: center; }
.straightening-cta h2 { margin-top: 19px; color: #fff; font-size: clamp(48px,5.8vw,88px); }
.straightening-cta .button { margin-top: 30px; color: var(--ink); background: #fff; }
.straightening-cta .button:hover { background: #dce1ff; }

@media (max-width: 900px) {
  .straightening-hero { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; gap: 34px; padding: 56px 22px 0; }
  .straightening-hero-copy { padding-bottom: 0; }
  .straightening-hero h1 { font-size: clamp(50px,14vw,72px); }
  .straightening-hero-copy > p:not(.eyebrow) { margin-top: 25px; font-size: 17px; line-height: 1.75; }
  .straightening-hero-media { width: min(100%,480px); height: auto; aspect-ratio: 4 / 5; }
  .straightening-hero-circles { inset: 12% -4% 8%; }
  .straightening-hero-notes { grid-column: 1; grid-template-columns: 1fr; }
  .straightening-hero-notes span { min-height: 52px; border-right: 0; border-bottom: 1px solid rgba(197,205,252,.22); }
  .straightening-hero-notes span:last-child { border-bottom: 0; }
  .straightening-technology { padding: 64px 22px; }
  .straightening-section-heading { grid-template-columns: 1fr; gap: 28px; }
  .straightening-heading-copy { order: 1; }
  .straightening-product-visual { order: 2; width: min(100%,460px); min-height: 440px; justify-self: center; }
  .straightening-product-visual img { height: 420px; max-width: 86%; }
  .straightening-section-heading h2 { font-size: clamp(39px,10.5vw,54px); }
  .straightening-heading-copy > p { margin-top: 24px; font-size: 17px; line-height: 1.75; }
  .straightening-benefit-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .straightening-benefit-grid article,.straightening-benefit-grid article:not(:first-child) { min-height: 0; padding: 25px 0 30px; border-right: 0; border-bottom: 1px solid rgba(16,22,43,.18); }
  .straightening-benefit-grid article > p:first-of-type { margin-top: 30px; }
  .straightening-benefit-grid article > p:last-child { font-size: 16px; }
  .straightening-pricing { min-height: 0; grid-template-columns: 1fr; gap: 36px; padding: 58px 20px; }
  .straightening-pricing-copy h2 { font-size: clamp(42px,12vw,58px); }
  .straightening-pricing-copy > p:last-child { font-size: 17px; line-height: 1.75; }
  .straightening-price-card { padding: 22px 16px; }
  .straightening-price-list > div { min-height: 60px; grid-template-columns: 22px 1fr auto; gap: 8px; padding: 9px 11px; }
  .straightening-price-list span { max-width: 145px; font-size: 13px; }
  .straightening-price-list strong { font-size: 17px; }
  .straightening-price-addon { gap: 10px; font-size: 13px; }
  .straightening-price-addon strong { font-size: 14px; }
  .straightening-aftercare { grid-template-columns: 1fr; gap: 38px; padding: 64px 22px; }
  .straightening-aftercare h2 { font-size: clamp(42px,12vw,60px); }
  .straightening-aftercare-list article { grid-template-columns: 32px 1fr; gap: 12px; padding: 24px 0; }
  .straightening-aftercare-list h3 { font-size: 20px; }
  .straightening-aftercare-list p { grid-column: 2; font-size: 16px; }
  .straightening-cta { padding: 70px 22px; text-align: left; }
  .straightening-cta .eyebrow { justify-content: flex-start; }
  .straightening-cta h2 { font-size: clamp(42px,12vw,60px); }
}

/* Perm detail */
.perm-detail-page { background: #f2f3f8; }
.perm-hero { min-height: calc(100vh - 82px); display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.78fr); grid-template-rows: 1fr auto; column-gap: clamp(48px,7vw,118px); align-items: center; padding: clamp(56px,6vw,88px) 9vw 0; color: #fff; background: #18285c; overflow: hidden; }
.perm-hero-copy { max-width: 800px; padding-bottom: 40px; }
.perm-hero h1 { margin-top: 24px; color: #fff; font-size: clamp(62px,7.2vw,110px); line-height: .94; letter-spacing: -.067em; }
.perm-hero h1 em { color: #d4c4ee; }
.perm-hero-copy > p:not(.eyebrow) { max-width: 690px; margin: 32px 0 0; color: rgba(255,255,255,.88); font-size: clamp(17px,1.2vw,20px); line-height: 1.85; text-wrap: pretty; }
.perm-hero-button { margin-top: 32px; color: var(--ink); background: #fff; }
.perm-hero-button:hover { background: #e7d8f2; }
.perm-hero-media { position: relative; isolation: isolate; width: min(100%,620px); align-self: center; justify-self: center; margin: 0; padding: 0 0 28px; }
.perm-hero-rings { position: absolute; z-index: -1; inset: -15% -18%; pointer-events: none; }
.perm-hero-rings i { position: absolute; border-radius: 50%; }
.perm-hero-rings i:nth-child(1) { top: 2%; right: -2%; width: 63%; aspect-ratio: 1; background: #c9853d; }
.perm-hero-rings i:nth-child(2) { right: 28%; bottom: 0; width: 54%; aspect-ratio: 1; background: #70436f; opacity: .94; }
.perm-hero-rings i:nth-child(3) { bottom: 10%; left: -3%; width: 45%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.45); }
.perm-hero-art { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 1448 / 1086; }
.perm-hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: contain; }
.perm-hero-person { clip-path: inset(0 42% 0 0); transform: translateY(9.4%); }
.perm-hero-word { clip-path: inset(0 0 0 56%); }
.perm-hero-media figcaption { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 18px; margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.78); font: 600 9px 'DM Sans',sans-serif; letter-spacing: .11em; }
.perm-hero-notes { position: relative; z-index: 4; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(212,196,238,.27); background: #18285c; }
.perm-hero-notes span { min-height: 66px; display: flex; align-items: center; gap: 15px; padding: 0 22px; border-right: 1px solid rgba(212,196,238,.24); color: rgba(255,255,255,.9); font: 600 12px 'DM Sans',sans-serif; letter-spacing: .08em; }
.perm-hero-notes span:last-child { border-right: 0; }
.perm-hero-notes small { color: #d4c4ee; font-size: 10px; }

.perm-types { min-height: calc(100svh - 88px); display: grid; align-content: center; padding: clamp(34px,4vh,54px) 9vw; background: #f6f4ef; }
.perm-section-heading,.perm-pricing-heading { display: grid; grid-template-columns: 1.15fr .72fr; gap: clamp(50px,8vw,130px); align-items: end; }
.perm-section-heading h2,.perm-pricing-heading h2 { margin-top: 12px; font-size: clamp(42px,4.4vw,64px); }
.perm-section-heading > p,.perm-pricing-heading > p { margin: 0 0 4px; color: #525b6f; font-size: 16px; line-height: 1.65; text-wrap: pretty; }
.perm-pricing-heading h2 { margin-top: 20px; font-size: clamp(48px,5.5vw,82px); }
.perm-pricing-heading > p { margin-bottom: 8px; font-size: 18px; line-height: 1.85; }
.perm-type-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: clamp(22px,3vh,32px); }
.perm-type-card { position: relative; min-width: 0; padding: clamp(20px,2vw,28px); border: 1px solid rgba(16,22,43,.14); background: rgba(255,255,255,.92); box-shadow: 0 18px 38px rgba(16,22,43,.07); overflow: hidden; }
.perm-type-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 7px; }
.perm-type-card.is-digital::before { background: linear-gradient(90deg,#563858,#9d5a73,#cf9e66); }
.perm-type-card.is-cold::before { background: linear-gradient(90deg,#bd7a3a,#dda951,#563858); }
.perm-type-card-top { display: flex; justify-content: space-between; gap: 24px; color: var(--indigo); font: 600 11px 'DM Sans',sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.perm-type-card h3 { margin-top: clamp(22px,2.5vh,30px); font-size: clamp(34px,3.2vw,48px); }
.perm-type-tagline { margin: 6px 0 0; color: #774e6c; font: italic 400 clamp(18px,1.65vw,24px) Georgia,serif; }
.perm-type-description { max-width: 670px; margin: 13px 0 0; color: #586072; font-size: 15px; line-height: 1.58; }
.perm-type-card dl { margin: 18px 0 0; border-top: 1px solid rgba(16,22,43,.16); }
.perm-type-card dl > div { display: grid; grid-template-columns: minmax(110px,.4fr) 1fr; gap: 18px; padding: 8px 0; border-bottom: 1px solid rgba(16,22,43,.13); }
.perm-type-card dt { color: var(--indigo); font-size: 13px; font-weight: 700; }
.perm-type-card dd { margin: 0; color: #555e70; font-size: 14px; line-height: 1.45; }

.perm-pricing { padding: clamp(70px,7vw,108px) 8vw; background: #e7eaf3; scroll-margin-top: 82px; }
.perm-price-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin-top: clamp(42px,5vw,70px); }
.perm-price-card { min-width: 0; padding: clamp(24px,2.6vw,38px); border: 1px solid rgba(26,43,104,.15); background: rgba(255,255,255,.96); box-shadow: 0 22px 52px rgba(16,22,43,.09); }
.perm-price-card-heading { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); color: var(--indigo); font: 700 15px 'DM Sans',sans-serif; letter-spacing: .08em; }
.perm-price-card-heading > div { display: grid; gap: 5px; }
.perm-price-card-heading small { color: var(--muted); font-size: 11px; font-weight: 500; text-transform: uppercase; }
.perm-price-list { display: grid; gap: 3px; margin-top: 13px; }
.perm-price-list > div { min-height: 65px; display: grid; grid-template-columns: 30px minmax(0,1fr) auto; gap: 12px; align-items: center; padding: 10px 16px; }
.perm-cold-price .perm-price-list > div:nth-child(1) { background: #eadfc9; }
.perm-cold-price .perm-price-list > div:nth-child(2) { background: #d6ad73; }
.perm-cold-price .perm-price-list > div:nth-child(3) { color: #fff; background: #a66c4b; }
.perm-cold-price .perm-price-list > div:nth-child(4) { color: #fff; background: #563858; }
.perm-digital-price .perm-price-list > div:nth-child(1) { background: #e2dced; }
.perm-digital-price .perm-price-list > div:nth-child(2) { background: #b9acd0; }
.perm-digital-price .perm-price-list > div:nth-child(3) { color: #fff; background: #75608e; }
.perm-digital-price .perm-price-list > div:nth-child(4) { color: #fff; background: #303b72; }
.perm-price-list small { opacity: .72; font: 600 10px 'DM Sans',sans-serif; }
.perm-price-list span { font: 600 15px 'DM Sans',sans-serif; text-transform: uppercase; }
.perm-price-list strong { font: 700 20px 'DM Sans',sans-serif; }
.perm-price-extras { margin-top: 24px; border-top: 1px solid rgba(16,22,43,.18); }
.perm-price-extras > div { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 12px 20px; border-bottom: 1px solid rgba(16,22,43,.16); color: #4f586c; font-size: 16px; }
.perm-price-extras strong { color: #563858; font: 700 18px 'DM Sans',sans-serif; text-align: right; }
.perm-price-extras strong small { color: #697083; font-size: 11px; font-weight: 500; text-transform: uppercase; }
.perm-price-note { margin: 18px 0 0; color: #656d7e; font-size: 13px; line-height: 1.65; }

.perm-aftercare { display: grid; grid-template-columns: .7fr 1.2fr; gap: 9vw; padding: clamp(78px,8.5vw,130px) 9vw; color: #fff; background: #1a2b68; }
.perm-aftercare h2 { margin-top: 20px; color: #fff; font-size: clamp(46px,5.2vw,78px); }
.perm-aftercare h2 em { color: #d4c4ee; }
.perm-aftercare-list { border-top: 1px solid rgba(255,255,255,.25); }
.perm-aftercare-list article { display: grid; grid-template-columns: 42px minmax(190px,.6fr) 1fr; gap: 25px; align-items: start; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.perm-aftercare-list article > span { color: #d4c4ee; font: 600 10px 'DM Sans',sans-serif; }
.perm-aftercare-list h3 { color: #fff; font-size: 21px; letter-spacing: -.02em; }
.perm-aftercare-list p { margin: 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.75; }

.perm-cta { padding: clamp(78px,8vw,128px) 9vw; text-align: center; color: #fff; background: #563858; }
.perm-cta .eyebrow { justify-content: center; }
.perm-cta h2 { margin-top: 20px; color: #fff; font-size: clamp(48px,5.8vw,88px); }
.perm-cta h2 em { color: #ead9ec; }
.perm-cta .button { margin-top: 32px; color: var(--ink); background: #fff; }
.perm-cta .button:hover { background: #ead9ec; }

@media (max-width: 900px) {
  .perm-hero { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; gap: 38px; padding: 56px 22px 0; }
  .perm-hero-copy { padding-bottom: 0; }
  .perm-hero h1 { font-size: clamp(50px,14vw,72px); }
  .perm-hero-copy > p:not(.eyebrow) { margin-top: 25px; font-size: 17px; line-height: 1.75; }
  .perm-hero-media { width: min(100%,520px); padding: 0 0 20px; }
  .perm-hero-rings { inset: -10% -5%; }
  .perm-hero-notes { grid-column: 1; grid-template-columns: 1fr; }
  .perm-hero-notes span { min-height: 52px; border-right: 0; border-bottom: 1px solid rgba(212,196,238,.23); }
  .perm-hero-notes span:last-child { border-bottom: 0; }
  .perm-types { min-height: 0; display: block; padding: 66px 22px; }
  .perm-section-heading,.perm-pricing-heading { grid-template-columns: 1fr; gap: 28px; }
  .perm-section-heading h2,.perm-pricing-heading h2 { font-size: clamp(42px,12vw,60px); }
  .perm-section-heading > p,.perm-pricing-heading > p { font-size: 17px; line-height: 1.75; }
  .perm-type-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .perm-type-card { padding: 30px 22px; }
  .perm-type-card h3 { margin-top: 40px; font-size: clamp(36px,10vw,50px); }
  .perm-type-description { font-size: 16px; }
  .perm-type-card dl > div { grid-template-columns: 1fr; gap: 7px; }
  .perm-pricing { padding: 60px 20px; }
  .perm-price-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
  .perm-price-card { padding: 22px 16px; }
  .perm-price-list > div { min-height: 60px; grid-template-columns: 22px minmax(0,1fr) auto; gap: 8px; padding: 9px 11px; }
  .perm-price-list span { max-width: 150px; font-size: 13px; }
  .perm-price-list strong { font-size: 17px; }
  .perm-price-extras > div { align-items: flex-start; flex-direction: column; gap: 8px; padding: 18px 4px; }
  .perm-price-extras strong { text-align: left; }
  .perm-aftercare { grid-template-columns: 1fr; gap: 38px; padding: 66px 22px; }
  .perm-aftercare h2 { font-size: clamp(42px,12vw,60px); }
  .perm-aftercare-list article { grid-template-columns: 32px 1fr; gap: 12px; padding: 24px 0; }
  .perm-aftercare-list h3 { font-size: 20px; }
  .perm-aftercare-list p { grid-column: 2; font-size: 16px; }
  .perm-cta { padding: 72px 22px; text-align: left; }
  .perm-cta .eyebrow { justify-content: flex-start; }
  .perm-cta h2 { font-size: clamp(42px,12vw,60px); }
}

/* Massage detail */
.massage-detail-page { background: #f3f1eb; }
.massage-hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0,.96fr) minmax(390px,.72fr);
  align-items: center;
  gap: clamp(52px,8vw,132px);
  padding: clamp(62px,7vw,104px) 9vw;
  color: var(--ink);
  background: #f3f1eb;
}
.massage-hero-copy { max-width: 720px; }
.massage-hero h1 {
  margin-top: 24px;
  font-size: clamp(64px,6.8vw,104px);
  line-height: .94;
  letter-spacing: -.065em;
}
.massage-hero h1 em { color: #744860; }
.massage-hero-intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: #4f586a;
  font-size: clamp(17px,1.12vw,20px);
  line-height: 1.85;
}
.massage-hero-prices {
  width: min(100%,680px);
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 32px;
  border-top: 1px solid rgba(16,22,43,.28);
  border-bottom: 1px solid rgba(16,22,43,.28);
}
.massage-hero-price { position: relative; min-width: 0; padding: 14px 18px 13px 0; }
.massage-hero-price + .massage-hero-price { padding-left: 18px; border-left: 1px solid rgba(16,22,43,.18); }
.massage-hero-price > span { display: block; color: #596174; font-size: 13px; font-weight: 500; white-space: nowrap; }
.massage-hero-price strong { display: block; margin-top: 3px; font: 600 clamp(25px,2vw,34px) 'Manrope',sans-serif; letter-spacing: -.04em; }
.massage-hero-price strong small { color: #6d7480; font-size: 10px; letter-spacing: .08em; }
.massage-hero-price em { position: absolute; top: 15px; right: 14px; color: #744860; font: 600 9px 'Noto Sans Thai',sans-serif; letter-spacing: .06em; font-style: normal; }
.massage-text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 600;
}
.massage-text-link:hover { color: var(--indigo); }
.massage-hero-media {
  width: min(100%,620px);
  justify-self: end;
  margin: 0;
}
.massage-hero-media img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(16,22,43,.16);
}
.massage-hero-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
  color: var(--indigo);
  font: 600 9px 'DM Sans',sans-serif;
  letter-spacing: .12em;
}

.massage-options { padding: clamp(78px,8vw,126px) 8vw; background: #fff; scroll-margin-top: 82px; }
.massage-section-heading {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(300px,.58fr);
  align-items: end;
  gap: 8vw;
}
.massage-section-heading h2 {
  margin-top: 22px;
  font-size: clamp(54px,6vw,90px);
  line-height: .98;
  letter-spacing: -.055em;
}
.massage-section-heading h2 em { color: #744860; }
.massage-section-heading > p { margin: 0 0 7px; color: #5d6574; font-size: 17px; line-height: 1.8; }
.massage-option-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(18px,2vw,30px); margin-top: clamp(46px,5vw,72px); }
.massage-option-card { min-width: 0; border-top: 1px solid rgba(16,22,43,.22); }
.massage-option-card img { width: 100%; aspect-ratio: 1.16 / 1; display: block; object-fit: cover; }
.massage-option-copy { position: relative; padding: 24px 0 6px 42px; }
.massage-option-copy > span { position: absolute; top: 31px; left: 0; color: var(--indigo); font: 600 10px 'DM Sans',sans-serif; }
.massage-option-copy h3 { color: var(--ink); font-size: clamp(24px,1.8vw,31px); line-height: 1.15; letter-spacing: -.035em; }
.massage-option-copy p { margin: 16px 0 0; color: #5b6372; font-size: 16px; line-height: 1.8; }

.massage-pricing {
  display: grid;
  grid-template-columns: minmax(320px,.72fr) minmax(0,1.15fr);
  gap: clamp(60px,9vw,150px);
  padding: clamp(80px,8vw,126px) 9vw;
  color: #fff;
  background: #17285f;
}
.massage-pricing-copy h2 { margin-top: 22px; color: #fff; font-size: clamp(52px,5.4vw,82px); line-height: .98; }
.massage-pricing-copy h2 em { color: #dbc9df; }
.massage-pricing-copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.8; }
.massage-book-button { margin-top: 32px; color: var(--ink); background: #fff; }
.massage-book-button:hover { color: #fff; background: #744860; }
.massage-price-list { border-top: 1px solid rgba(255,255,255,.28); }
.massage-price-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  align-items: center;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.massage-price-row.is-recommended { background: linear-gradient(90deg,rgba(116,72,96,.32),transparent); }
.massage-price-number { color: #dbc9df; font: 600 10px 'DM Sans',sans-serif; }
.massage-price-row h3 { color: #fff; font-size: clamp(22px,1.8vw,30px); letter-spacing: -.03em; }
.massage-price-row div small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font: 500 10px 'DM Sans',sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.massage-price-row > strong { color: #fff; font: 600 clamp(29px,2.6vw,42px) 'Manrope',sans-serif; letter-spacing: -.04em; }
.massage-price-row > strong small { color: #dbc9df; font-size: 11px; letter-spacing: .1em; }
.massage-price-note { margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }

@media (max-width: 900px) {
  .massage-hero { min-height: 0; grid-template-columns: 1fr; gap: 46px; padding: 58px 22px 64px; }
  .massage-hero h1 { font-size: clamp(52px,14vw,74px); }
  .massage-hero-intro { font-size: 17px; line-height: 1.75; }
  .massage-hero-media { width: 100%; justify-self: stretch; }
  .massage-section-heading { grid-template-columns: 1fr; gap: 26px; }
  .massage-section-heading h2 { font-size: clamp(45px,12vw,64px); }
  .massage-section-heading > p { font-size: 17px; }
  .massage-options { padding: 68px 22px; }
  .massage-option-grid { grid-template-columns: 1fr; gap: 38px; margin-top: 42px; }
  .massage-option-card { display: grid; grid-template-columns: minmax(0,1fr); align-items: start; overflow: hidden; }
  .massage-option-card img { width: 100%; height: auto; min-height: 0; aspect-ratio: 1.45 / 1; object-position: center; }
  .massage-option-copy { position: relative; z-index: 1; padding: 22px 0 10px; background: #fff; }
  .massage-option-copy > span { position: static; display: block; margin-bottom: 13px; }
  .massage-option-copy h3 { max-width: 100%; font-size: clamp(25px,6.6vw,32px); line-height: 1.18; overflow-wrap: anywhere; }
  .massage-option-copy p { font-size: 16px; line-height: 1.75; }
  .massage-pricing { grid-template-columns: 1fr; gap: 48px; padding: 70px 22px; }
  .massage-pricing-copy h2 { font-size: clamp(46px,12vw,64px); }
  .massage-price-row { min-height: 104px; grid-template-columns: 28px minmax(0,1fr) auto; gap: 12px; }
  .massage-price-row h3 { font-size: 22px; }
  .massage-price-row > strong { font-size: 29px; }
}

@media (max-width: 560px) {
  .massage-hero-prices { grid-template-columns: 1fr; }
  .massage-hero-price { padding: 12px 0; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; }
  .massage-hero-price + .massage-hero-price { padding-left: 0; border-left: 0; border-top: 1px solid rgba(16,22,43,.18); }
  .massage-hero-price strong { margin-top: 0; font-size: 25px; }
  .massage-hero-price em { position: static; grid-column: 1; margin-top: -8px; }
  .massage-option-card img { aspect-ratio: 1.16 / 1; }
  .massage-option-copy { padding: 20px 0 4px; }
  .massage-price-row { grid-template-columns: 24px minmax(0,1fr); }
  .massage-price-row > strong { grid-column: 2; margin-top: -6px; }
}

/* Hair length chart */
.hair-length-detail-page { background: #edf1fb; }
.hair-length-chart {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(290px,.55fr) minmax(650px,1.45fr);
  align-items: center;
  gap: clamp(42px,5.5vw,96px);
  padding: clamp(48px,5.5vw,78px) 7vw;
  overflow: hidden;
  color: var(--ink);
  background: radial-gradient(circle at 70% 42%, rgba(111,133,214,.12), transparent 34%), #edf1fb;
}
.hair-length-heading { align-self: center; }
.hair-length-heading h1 {
  margin-top: 23px;
  color: #101a3a;
  font-size: clamp(54px,4.5vw,80px);
  line-height: .93;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.hair-length-heading h1 em {
  display: block;
  margin-top: .08em;
  color: #4059b4;
  white-space: nowrap;
}
.hair-length-heading > p:last-child {
  max-width: 400px;
  margin: 30px 0 0;
  color: #465477;
  font-size: 17px;
  line-height: 1.75;
}
.hair-length-visual {
  min-width: 0;
  height: clamp(326px,22.5vw,401px);
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(16,22,43,.16);
  box-shadow: 0 24px 62px rgba(16,22,43,.1);
  background: #20367f;
}
.hair-length-visual::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 11.765%;
  background: #dbe4ff;
}
.hair-length-figure {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 42%;
  display: grid;
  place-items: end center;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.34);
  pointer-events: none;
}
.hair-length-figure img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 147.06%;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
}
.hair-length-figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 4;
  padding: 7px 10px;
  color: #fff;
  background: rgba(16,22,43,.82);
  font: 600 9px 'DM Sans',sans-serif;
  letter-spacing: .08em;
}
.hair-length-levels {
  position: absolute;
  inset: 11.765% 0 auto;
  z-index: 1;
  height: 88.235%;
  display: grid;
  grid-template-rows: repeat(6,minmax(0,1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.hair-length-levels li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  align-items: center;
  gap: 13px;
  padding: 8px clamp(18px,2.2vw,34px) 8px calc(42% + 28px);
  border-bottom: 1px solid rgba(255,255,255,.48);
}
.hair-length-levels li:last-child { border-bottom: 0; }
.hair-length-levels li:nth-child(1) { color: var(--ink); background: #dbe4ff; }
.hair-length-levels li:nth-child(2) { color: var(--ink); background: #b8c7f5; }
.hair-length-levels li:nth-child(3) { color: var(--ink); background: #8fa6e8; }
.hair-length-levels li:nth-child(4) { color: #fff; background: #667fd5; }
.hair-length-levels li:nth-child(5) { color: #fff; background: #4059b4; }
.hair-length-levels li:nth-child(6) { color: #fff; background: #20367f; }
.hair-length-levels span { opacity: .72; font: 600 10px 'DM Sans',sans-serif; }
.hair-length-levels strong { font: 600 clamp(20px,1.65vw,28px)/1.1 'Manrope',sans-serif; letter-spacing: -.035em; }

@media (max-width: 1080px) {
  .hair-length-chart { grid-template-columns: minmax(260px,.55fr) minmax(0,1.45fr); gap: 35px; padding-inline: 5vw; }
}

@media (max-width: 800px) {
  .hair-length-chart { min-height: 0; grid-template-columns: 1fr; gap: 38px; padding: 56px 22px 64px; }
  .hair-length-heading h1 { font-size: clamp(48px,12.5vw,64px); }
  .hair-length-heading > p:last-child { margin-top: 22px; font-size: 16px; }
  .hair-length-visual { height: clamp(340px,94vw,390px); }
  .hair-length-figure { width: 48%; overflow: hidden; }
  .hair-length-figure img {
    top: 0;
    left: 50%;
    width: auto;
    height: 147.06%;
    max-width: none;
    object-fit: contain;
    object-position: center top;
    transform: translateX(-50%);
  }
  .hair-length-levels { grid-template-rows: repeat(6,minmax(0,1fr)); }
  .hair-length-levels li { grid-template-columns: 24px minmax(0,1fr); gap: 6px; padding: 5px 15px 5px calc(48% + 10px); }
  .hair-length-levels strong { font-size: clamp(17px,5vw,23px); }
  .hair-length-figure figcaption { left: 8px; bottom: 8px; padding: 5px 7px; font-size: 7px; }
}

@media (max-width: 430px) {
  .hair-length-chart { padding-inline: 16px; }
  .hair-length-visual { height: min(94vw,366px); }
  .hair-length-figure { width: 48%; }
  .hair-length-levels li { grid-template-columns: 20px minmax(0,1fr); padding: 8px 10px 8px calc(48% + 8px); }
  .hair-length-levels strong { font-size: 16px; }
}

/* Contact & visit page */
.contact-page { background: #f5f3ed; }
.contact-page-hero { min-height: calc(100vh - 82px); padding: clamp(70px, 8vw, 130px) max(8vw, calc((100vw - 1500px) / 2)); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); align-items: center; gap: clamp(50px, 8vw, 140px); background: radial-gradient(circle at 78% 38%, rgba(87,105,205,.24), transparent 34%), #101a3a; color: #fff; }
.contact-page-hero-copy { max-width: 850px; }
.contact-page-hero h1 { margin: 22px 0 26px; white-space: nowrap; font: 500 clamp(38px, 3.55vw, 62px)/1 'Manrope', sans-serif; letter-spacing: -.045em; }
.contact-page-hero h1 em { color: #aab8ff; font-family: Georgia, serif; font-weight: 400; }
.contact-page-hero-copy > p:not(.eyebrow):not(.contact-page-response) { max-width: 720px; color: rgba(255,255,255,.76); font: 400 clamp(17px, 1.25vw, 21px)/1.85 'Noto Sans Thai', sans-serif; }
.contact-page-actions { margin-top: 42px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.contact-action { min-height: 108px; padding: 22px 21px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 7px 12px; color: #fff; border: 1px solid rgba(255,255,255,.18); transition: transform .22s ease, filter .22s ease; }
.contact-action:hover { transform: translateY(-3px); filter: brightness(.93); }
.contact-action span { font: 600 19px 'DM Sans', sans-serif; }
.contact-action small { font: 500 14px 'Noto Sans Thai', sans-serif; opacity: .8; }
.contact-action b { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.contact-action-facebook { background: #315dba; }
.contact-action-line { background: #237d67; }
.contact-action-phone { background: #fff; color: #111b3b; }
.contact-page-response { margin-top: 24px; color: rgba(255,255,255,.55); font: 500 13px 'Noto Sans Thai', sans-serif; letter-spacing: .04em; }
.contact-page-hero-mark { min-height: 420px; display: grid; place-content: center; overflow: hidden; text-align: center; border: 1px solid rgba(174,187,255,.25); position: relative; }
.contact-page-hero-mark::before, .contact-page-hero-mark::after { content: ''; position: absolute; border: 1px solid rgba(174,187,255,.2); border-radius: 50%; }
.contact-page-hero-mark::before { width: 270px; height: 270px; left: -35px; top: 20px; }
.contact-page-hero-mark::after { width: 190px; height: 190px; right: -42px; bottom: 14px; }
.contact-page-hero-mark span { color: #aab8ff; font: 600 clamp(38px, 4vw, 70px) 'Manrope', sans-serif; letter-spacing: .15em; z-index: 1; }
.contact-page-hero-mark small { margin-top: 13px; color: rgba(255,255,255,.55); font: 600 11px 'DM Sans', sans-serif; letter-spacing: .18em; z-index: 1; }
.contact-visit { padding: clamp(54px, 5.5vw, 92px) max(7vw, calc((100vw - 1600px) / 2)); }
.contact-visit-heading { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 6vw; margin-bottom: 38px; }
.contact-visit-heading h2 { margin: 14px 0 0; color: #101a3a; font: 500 clamp(40px, 4.1vw, 68px)/.98 'Manrope', sans-serif; letter-spacing: -.06em; }
.contact-opposite-landmark h2 { margin: 18px 0 0; color: #101a3a; font: 500 clamp(44px, 4.6vw, 76px)/.98 'Manrope', sans-serif; letter-spacing: -.06em; }
.contact-visit-heading h2 em, .contact-opposite-landmark h2 em { color: #78506d; font-family: Georgia, serif; font-weight: 400; }
.contact-visit-heading > p { max-width: 700px; color: #536076; font: 400 16px/1.75 'Noto Sans Thai', sans-serif; }
.contact-landmark-feature { display: grid; grid-template-columns: 1.35fr .75fr; gap: 16px; }
.contact-landmark-feature figure { margin: 0; background: #fff; border: 1px solid rgba(16,26,58,.12); }
.contact-landmark-feature img { width: 100%; height: clamp(220px, 21vw, 330px); display: block; object-fit: cover; }
.contact-landmark-pair { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2px; background: #fff; }
.contact-landmark-pair img { height: clamp(250px, 24vw, 370px); }
.contact-landmark-pair img:first-child { object-position: center; }
.contact-landmark-pair img:last-child { object-position: center 43%; }
.contact-landmark-feature figcaption { min-height: 78px; padding: 15px 20px; display: grid; gap: 5px; }
.contact-landmark-feature figcaption span { color: #3b4ba7; font: 600 10px 'DM Sans', sans-serif; letter-spacing: .13em; }
.contact-landmark-feature figcaption strong { color: #101a3a; font: 600 15px/1.45 'Noto Sans Thai', sans-serif; }
.contact-landmark-combined figcaption p { max-width: 900px; margin: 2px 0 0; color: #596276; font: 400 14px/1.65 'Noto Sans Thai', sans-serif; }
.contact-visit-grid { margin-top: 18px; display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); border: 1px solid rgba(16,26,58,.14); background: #fff; }
.contact-visit-card { min-height: 198px; padding: 23px 22px; border-right: 1px solid rgba(16,26,58,.14); position: relative; }
.contact-visit-card:last-child { border-right: 0; }
.contact-card-number { position: absolute; top: 23px; right: 22px; color: #5f6bad; font: 600 11px 'DM Sans', sans-serif; }
.contact-visit-card > p { margin: 0 0 26px; color: #4a58aa; font: 600 10px 'DM Sans', sans-serif; letter-spacing: .14em; }
.contact-visit-card h3 { margin: 0 0 10px; color: #101a3a; font: 600 clamp(19px, 1.25vw, 24px)/1.3 'Noto Sans Thai', sans-serif; }
.contact-visit-card > span:not(.contact-card-number), .contact-visit-card address { color: #596276; font: 400 14px/1.6 'Noto Sans Thai', sans-serif; font-style: normal; }
.contact-visit-card a { margin-top: 17px; display: inline-flex; align-items: center; gap: 10px; color: #303b94; border-bottom: 1px solid currentColor; font: 600 14px 'Noto Sans Thai', sans-serif; }
.contact-opposite-landmark { margin-top: clamp(56px, 5.5vw, 92px); padding: 0; }
.contact-opposite-landmark figure { margin: 0; position: relative; }
.contact-opposite-visuals { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-opposite-visuals:has(> .contact-opposite-map:only-child) { grid-template-columns: 1fr; }
.contact-opposite-card, .contact-opposite-map { min-width: 0; overflow: hidden; background: #fff; border: 1px solid rgba(16,26,58,.14); }
.contact-opposite-card, .contact-opposite-map { display: grid; grid-template-rows: auto 1fr; }
.contact-opposite-landmark img { width: 100%; height: clamp(280px, 24vw, 390px); display: block; object-fit: cover; object-position: center 44%; }
.contact-opposite-landmark figcaption { min-height: 205px; padding: 20px 24px; display: grid; align-content: start; gap: 8px; }
.contact-opposite-landmark figcaption > span { color: #3b4ba7; font: 600 10px 'DM Sans', sans-serif; letter-spacing: .13em; }
.contact-opposite-landmark figcaption strong { color: #101a3a; font: 600 15px/1.45 'Noto Sans Thai', sans-serif; }
.contact-opposite-landmark figcaption p { max-width: 760px; margin: 0; color: #596276; font: 400 14px/1.65 'Noto Sans Thai', sans-serif; }
.contact-opposite-map iframe { width: 100%; height: clamp(280px, 24vw, 390px); display: block; border: 0; filter: grayscale(.3) saturate(.78) contrast(.95); }
.contact-opposite-landmark figcaption a { width: fit-content; margin-top: 4px; color: #101a3a; border-bottom: 1px solid #303b94; font: 600 14px/1.45 'Noto Sans Thai', sans-serif; letter-spacing: 0; }

@media (max-width: 1050px) {
  .contact-page-hero { grid-template-columns: 1fr; min-height: auto; }
  .contact-page-hero-mark { min-height: 260px; }
  .contact-visit-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-visit-card:nth-child(2) { border-right: 0; }
  .contact-visit-card { border-bottom: 1px solid rgba(16,26,58,.14); }
  .contact-visit-card:nth-child(n+3) { border-bottom: 0; }
}
@media (max-width: 760px) {
  .contact-page-hero { padding: 64px 24px 72px; gap: 50px; }
  .contact-page-hero h1 { font-size: clamp(25px, 7.2vw, 36px); letter-spacing: -.04em; }
  .contact-page-actions { grid-template-columns: 1fr; }
  .contact-action { min-height: 88px; }
  .contact-page-hero-mark { min-height: 210px; }
  .contact-visit { padding: 54px 20px 70px; }
  .contact-visit-heading, .contact-landmark-feature { grid-template-columns: 1fr; }
  .contact-visit-heading { gap: 20px; margin-bottom: 30px; }
  .contact-visit-heading h2 { font-size: clamp(42px, 12vw, 57px); }
  .contact-landmark-feature img { height: 220px; }
  .contact-landmark-pair { grid-template-columns: 1fr; }
  .contact-landmark-pair img { height: min(62vw, 310px); }
  .contact-landmark-feature figcaption { min-height: auto; }
  .contact-visit-grid { grid-template-columns: 1fr; }
  .contact-visit-card, .contact-visit-card:nth-child(2), .contact-visit-card:nth-child(n+3) { min-height: 188px; border-right: 0; border-bottom: 1px solid rgba(16,26,58,.14); }
  .contact-visit-card:last-child { border-bottom: 0; }
  .contact-opposite-landmark { padding: 0; }
  .contact-opposite-visuals { grid-template-columns: 1fr; }
  .contact-opposite-landmark img, .contact-opposite-map iframe { height: 250px; }
  .contact-opposite-landmark figcaption { min-height: auto; padding: 19px 20px 22px; }
}

/* About Indigo page */
.about-page { background: #f4f2ec; }
.about-layout { position: relative; }
.about-slides { min-width: 0; }
.about-slide {
  min-height: calc(100svh - 82px);
  scroll-margin-top: 82px;
  padding: clamp(72px,7vw,122px) max(22vw,calc((100vw - 1500px) / 2 + 170px)) clamp(72px,7vw,122px) max(7vw,calc((100vw - 1500px) / 2));
  display: grid;
  align-items: center;
  gap: clamp(54px,7vw,126px);
  overflow: hidden;
  position: relative;
}
.about-slide h1, .about-slide h2, .about-slide h3, .about-slide p { margin-top: 0; }
.about-slide h1, .about-slide h2 { letter-spacing: -.055em; }
.about-slide h2 { margin: 18px 0 28px; color: #101a3a; font: 500 clamp(44px,4.6vw,78px)/.98 'Manrope',sans-serif; }
.about-slide h2 em { color: #78506d; font-family: Georgia,serif; font-weight: 400; }
.about-section-copy > p:not(.eyebrow) { max-width: 700px; color: #536076; font: 400 clamp(16px,1.1vw,19px)/1.85 'Noto Sans Thai',sans-serif; }
.about-english-dark { margin-top: 18px; color: #768093 !important; font: 400 15px/1.7 'DM Sans',sans-serif !important; }
.about-intro { grid-template-columns: minmax(0,1.2fr) minmax(300px,.72fr); gap: clamp(42px,5vw,82px); color: #fff; background: radial-gradient(circle at 72% 45%,rgba(104,122,222,.18),transparent 32%),#101a3a; }
.about-intro-copy { max-width: 800px; }
.about-intro h1 { margin: 22px 0 42px; font: 500 clamp(58px,5.5vw,92px)/.92 'Manrope',sans-serif; }
.about-intro h1 em { color: #aab8ff; font-family: Georgia,serif; font-weight: 400; }
.about-story-copy { max-width: 750px; display: grid; }
.about-story-copy article { padding: 22px 0; display: grid; grid-template-columns: 68px minmax(0,1fr); gap: 24px; border-top: 1px solid rgba(170,184,255,.22); }
.about-story-copy article:last-child { border-bottom: 1px solid rgba(170,184,255,.22); }
.about-story-copy article > span { padding-top: 5px; color: #aab8ff; font: 600 11px/1 'DM Sans',sans-serif; letter-spacing: .14em; }
.about-story-copy p { max-width: 630px; margin: 0; color: rgba(255,255,255,.78); font: 400 clamp(15px,1vw,18px)/1.86 'Noto Sans Thai',sans-serif; text-wrap: pretty; }
.about-lead { max-width: 700px; margin-bottom: 13px; color: rgba(255,255,255,.88); font: 500 clamp(18px,1.25vw,22px)/1.75 'Noto Sans Thai',sans-serif; }
.about-english { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.55); font: 400 15px/1.7 'DM Sans',sans-serif; }
.about-slogan { margin-top: 48px; width: fit-content; display: grid; gap: 4px; color: #aab8ff; }
.about-slogan span { font: 600 10px 'DM Sans',sans-serif; letter-spacing: .18em; }
.about-slogan strong { font: 500 clamp(24px,2.2vw,38px) 'Manrope',sans-serif; letter-spacing: .12em; }
.about-logo-showcase { min-width: 0; min-height: clamp(390px,52vh,570px); padding-left: clamp(34px,3.5vw,62px); display: grid; place-content: center; align-self: stretch; position: relative; right: 0; border-left: 1px solid rgba(170,184,255,.18); isolation: isolate; perspective: 1100px; }
.about-logo-aura { width: min(34vw,510px); aspect-ratio: 1; position: absolute; left: 50%; top: 49%; z-index: -2; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle,rgba(173,187,255,.15) 0,rgba(86,105,211,.07) 38%,transparent 70%); filter: blur(14px); }
.about-logo-aura::before, .about-logo-aura::after { content: ''; position: absolute; border: 1px solid rgba(182,193,255,.16); border-radius: 50%; }
.about-logo-aura::before { inset: 12%; }
.about-logo-aura::after { inset: 29%; }
.about-logo-lockup { width: min(23vw,400px); display: grid; transform: rotateY(-4deg) rotateX(1deg); transform-style: preserve-3d; }
.about-logo-primary { display: grid; grid-template-columns: 21% 1fr; align-items: center; gap: 4%; }
.about-logo-symbol, .about-logo-word { width: 100%; height: auto; display: block; filter: brightness(1.3) saturate(1.05) drop-shadow(4px 5px 0 rgba(3,7,28,.32)) drop-shadow(0 13px 14px rgba(1,4,20,.24)); }
.about-logo-word { transform: translateY(1%); }
.about-logo-salon { min-width: 48%; min-height: clamp(36px,2.7vw,48px); margin: clamp(12px,1.15vw,20px) 3% 0 31%; padding: 4px clamp(15px,1.4vw,24px); display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(145deg,#394bb5,#2f3f9d 68%,#29398f); border: 1px solid rgba(185,197,255,.46); box-shadow: 3px 4px 0 rgba(3,7,28,.25),0 8px 12px rgba(1,4,20,.15),inset 0 1px rgba(255,255,255,.18); font: 400 clamp(18px,1.85vw,31px)/1 'DM Sans',sans-serif; letter-spacing: .17em; white-space: nowrap; }
.about-logo-showcase > p { margin: 35px 0 0; color: rgba(255,255,255,.43); text-align: center; font: 600 9px 'DM Sans',sans-serif; letter-spacing: .18em; }
.about-viewpoint { grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); background: #f4f2ec; }
.about-editorial-image { margin: 0; min-width: 0; }
.about-editorial-image img { width: 100%; height: clamp(400px,60vh,650px); display: block; object-fit: cover; object-position: center; }
.about-editorial-image figcaption { padding-top: 11px; display: flex; justify-content: space-between; color: #5965a4; font: 600 9px 'DM Sans',sans-serif; letter-spacing: .13em; }
.about-length { grid-template-columns: minmax(0,.82fr) minmax(430px,1.18fr); color: #fff; background: #233776; }
.about-length-card { max-width: 650px; }
.about-length h2 { color: #fff; }
.about-length h2 em { color: #c4ccff; }
.about-length-card > p:not(.eyebrow):not(.about-english) { color: rgba(255,255,255,.8); font: 400 clamp(16px,1.1vw,19px)/1.82 'Noto Sans Thai',sans-serif; }
.about-length-card a { margin-top: 30px; display: inline-flex; align-items: center; gap: 12px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.7); font: 600 15px 'Noto Sans Thai',sans-serif; }
.about-length-visual { margin: 0; padding: clamp(16px,2vw,30px); background: rgba(255,255,255,.96); box-shadow: 0 26px 70px rgba(5,11,32,.25); }
.about-length-visual img { width: 100%; max-height: 63vh; display: block; object-fit: contain; }
.about-length-visual .about-length-chart { height: clamp(326px,22.5vw,401px); box-shadow: none; }
.about-length-visual .hair-length-figure img {
  width: auto;
  max-height: none;
  object-fit: contain;
  transform: translateX(-50%) scaleX(.89);
  transform-origin: center bottom;
}
.about-atmosphere { grid-template-columns: minmax(390px,.88fr) minmax(0,1.12fr); background: #f4f2ec; }
.about-atmosphere-image { margin: 0; min-width: 0; }
.about-atmosphere-image img { width: 100%; height: clamp(430px,67vh,700px); display: block; object-fit: cover; }
.about-facts { margin-top: 34px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(16,26,58,.18); }
.about-facts span { padding: 17px 10px 0 0; display: grid; gap: 5px; color: #697287; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .1em; }
.about-facts b { color: #273779; font-size: 14px; }
.about-process { min-height: calc(100svh - 82px); grid-template-columns: minmax(300px,.68fr) minmax(500px,1.32fr); grid-template-rows: 1fr auto; color: #fff; background: radial-gradient(circle at 18% 30%,rgba(111,130,230,.23),transparent 25%),#101a3a; }
.about-process h2 { color: #fff; }
.about-process h2 em { color: #aab8ff; }
.about-process-list { border-top: 1px solid rgba(255,255,255,.2); }
.about-process-list article { min-height: 145px; padding: 24px 0; display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.2); }
.about-process-list article > span { color: #9eaefe; font: 600 11px 'DM Sans',sans-serif; }
.about-process-list p { margin: 0 0 10px; color: #aab8ff; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .14em; }
.about-process-list h3 { margin: 0 0 8px; font: 600 clamp(19px,1.45vw,26px)/1.45 'Noto Sans Thai',sans-serif; }
.about-process-list small { color: rgba(255,255,255,.55); font: 400 14px 'DM Sans',sans-serif; }
.about-process-cta { grid-column: 1 / -1; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.2); }
.about-process-cta p { margin: 0; color: rgba(255,255,255,.65); font: 400 15px 'Noto Sans Thai',sans-serif; }
.about-process-cta a { display: inline-flex; align-items: center; gap: 12px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.7); font: 600 15px 'Noto Sans Thai',sans-serif; }
.about-story-rail { width: clamp(175px,14vw,230px); max-height: calc(100svh - 132px); padding: 24px 0; position: fixed; right: max(3vw,calc((100vw - 1700px) / 2)); top: 106px; z-index: 9; color: #fff; background: rgba(10,18,48,.9); border: 1px solid rgba(170,184,255,.23); box-shadow: 0 18px 55px rgba(7,13,34,.2); backdrop-filter: blur(14px); }
.about-story-rail > p, .about-story-rail > small { margin: 0 21px; color: rgba(255,255,255,.46); font: 600 9px 'DM Sans',sans-serif; letter-spacing: .16em; }
.about-story-rail nav { margin: 18px 0; display: grid; }
.about-story-rail a { min-height: 56px; padding: 0 21px; display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.1); position: relative; transition: color .22s,background .22s; }
.about-story-rail a:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.about-story-rail a::before { content: ''; width: 3px; height: 0; position: absolute; left: 0; top: 50%; transform: translateY(-50%); background: #aab8ff; transition: height .22s; }
.about-story-rail a span { font: 600 9px 'DM Sans',sans-serif; }
.about-story-rail a strong { font: 500 12px 'DM Sans',sans-serif; }
.about-story-rail a:hover, .about-story-rail a.active { color: #fff; background: rgba(109,128,228,.14); }
.about-story-rail a.active::before { height: 100%; }
@media (max-width: 1120px) {
  .about-slide { padding-right: max(24vw,230px); }
  .about-intro, .about-viewpoint, .about-length, .about-atmosphere, .about-process { grid-template-columns: 1fr; align-content: center; }
  .about-logo-showcase { display: none; }
  .about-logo-lockup { width: min(60vw,570px); }
  .about-logo-aura { width: min(63vw,570px); }
  .about-editorial-image img, .about-atmosphere-image img { height: 400px; }
  .about-process-cta { grid-column: auto; }
}
@media (max-width: 800px) {
  .about-slide { min-height: auto; padding: 70px 22px 82px; gap: 42px; scroll-margin-top: 68px; }
  .about-slide h2 { font-size: clamp(42px,11.5vw,58px); }
  .about-intro h1 { margin-bottom: 30px; font-size: clamp(54px,16vw,76px); }
  .about-story-copy article { padding: 20px 0; grid-template-columns: 1fr; gap: 10px; }
  .about-story-copy article > span { padding-top: 0; }
  .about-story-copy p { line-height: 1.8; }
  .about-logo-showcase { min-height: min(76vw,390px); padding-left: 0; display: grid; right: 0; border-left: 0; }
  .about-logo-lockup { width: min(86vw,560px); transform: rotateY(-3deg) rotateX(1deg); }
  .about-logo-aura { width: min(96vw,520px); }
  .about-logo-salon { width: 52%; margin-top: 10px; }
  .about-logo-showcase > p { font-size: 8px; }
  .about-editorial-image img, .about-atmosphere-image img { height: min(108vw,520px); }
  .about-length-visual img { max-height: none; }
  .about-atmosphere-image { order: 2; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts span { padding: 14px 0; border-bottom: 1px solid rgba(16,26,58,.12); }
  .about-process-list article { grid-template-columns: 36px 1fr; }
  .about-process-cta { align-items: flex-start; flex-direction: column; gap: 18px; }
  .about-story-rail { width: auto; max-width: calc(100vw - 24px); padding: 0; display: block; top: auto; right: 12px; bottom: 12px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .about-story-rail::-webkit-scrollbar { display: none; }
  .about-story-rail > p, .about-story-rail > small { display: none; }
  .about-story-rail nav { margin: 0; display: flex; }
  .about-story-rail a { min-width: 120px; min-height: 48px; padding: 0 14px; grid-template-columns: 20px 1fr; border-top: 0; border-right: 1px solid rgba(255,255,255,.1); }
  .about-story-rail a:last-child { border-bottom: 0; border-right: 0; }
  .about-story-rail a::before { width: 0; height: 3px; left: 50%; top: auto; bottom: 0; transform: translateX(-50%); }
  .about-story-rail a.active::before { width: 100%; height: 3px; }
  .about-story-rail a strong { white-space: nowrap; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: 16px; }
  .site-header .brand { font-size: 19px; }
  .contact-page-hero { padding-inline: 20px; }
  .contact-page-hero h1 { font-size: clamp(23px, 7.8vw, 28px); }
  .contact-page-hero-mark::before { width: 220px; height: 220px; left: -28px; }
  .contact-page-hero-mark::after { width: 155px; height: 155px; right: -30px; }
}

/* Hair cut detail */
.haircut-detail-page { background: #f3f1eb; }
.haircut-overview {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(500px,.84fr);
  align-items: center;
  gap: clamp(56px,8vw,138px);
  padding: clamp(64px,7vw,106px) 9vw;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 95%,rgba(222,188,126,.2),transparent 25%),
    #f3f1eb;
}
.haircut-copy { max-width: 760px; }
.haircut-copy h1 {
  margin-top: 24px;
  font-size: clamp(64px,6.8vw,104px);
  line-height: .94;
  letter-spacing: -.065em;
}
.haircut-copy h1 em { color: #744860; }
.haircut-intro {
  max-width: 690px;
  margin: 34px 0 0;
  color: #505868;
  font-size: clamp(17px,1.12vw,20px);
  line-height: 1.85;
}
.haircut-audience { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.haircut-audience span {
  padding: 9px 14px;
  border: 1px solid rgba(26,43,104,.28);
  color: var(--indigo);
  font: 600 11px 'DM Sans',sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.haircut-book-button { margin-top: 30px; color: #fff; background: var(--indigo); }
.haircut-book-button:hover { background: #101b44; }

.haircut-pricing {
  position: relative;
  overflow: hidden;
  padding: clamp(30px,3.3vw,50px);
  color: #fff;
  background: #17285f;
  box-shadow: 0 28px 70px rgba(16,22,43,.2);
}
.haircut-pricing::before,
.haircut-pricing::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.haircut-pricing::before { width: 270px; height: 270px; top: -150px; right: -70px; background: rgba(221,187,123,.86); }
.haircut-pricing::after { width: 210px; height: 210px; top: -65px; right: 80px; background: rgba(116,72,96,.68); }
.haircut-pricing > * { position: relative; z-index: 1; }
.haircut-pricing > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.38);
}
.haircut-pricing header p { margin: 0 0 7px; color: #dbc9df; font: 600 10px 'DM Sans',sans-serif; letter-spacing: .13em; }
.haircut-pricing h2 { color: #fff; font-size: clamp(42px,4vw,62px); letter-spacing: -.055em; }
.haircut-pricing header > span { padding-top: 5px; font: 600 12px 'DM Sans',sans-serif; letter-spacing: .14em; }
.haircut-price-list article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.haircut-price-list article > span { color: #dbc9df; font: 600 10px 'DM Sans',sans-serif; }
.haircut-price-list h3 { color: #fff; font-size: clamp(21px,1.75vw,29px); line-height: 1.15; letter-spacing: -.03em; }
.haircut-price-list p { margin: 7px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.haircut-price-list strong { color: #fff; font: 600 clamp(31px,2.8vw,44px) 'Manrope',sans-serif; letter-spacing: -.045em; }
.haircut-price-note { margin: 20px 0 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.65; }

@media (max-width: 1000px) {
  .haircut-overview { grid-template-columns: minmax(0,1fr) minmax(430px,.88fr); gap: 46px; padding-inline: 6vw; }
}

@media (max-width: 800px) {
  .haircut-overview { min-height: 0; grid-template-columns: 1fr; gap: 46px; padding: 58px 22px 66px; }
  .haircut-copy h1 { font-size: clamp(52px,14vw,74px); }
  .haircut-intro { font-size: 17px; line-height: 1.75; }
  .haircut-pricing { padding: 28px 22px; }
  .haircut-pricing::before { width: 210px; height: 210px; top: -130px; right: -70px; }
  .haircut-pricing::after { width: 160px; height: 160px; top: -75px; right: 55px; }
  .haircut-price-list article { min-height: 104px; grid-template-columns: 25px minmax(0,1fr) auto; gap: 12px; }
  .haircut-price-list h3 { font-size: 21px; }
  .haircut-price-list strong { font-size: 31px; }
}

@media (max-width: 430px) {
  .haircut-overview { padding-inline: 16px; }
  .haircut-audience span { padding-inline: 11px; font-size: 10px; }
  .haircut-price-list article { grid-template-columns: 22px minmax(0,1fr); }
  .haircut-price-list strong { grid-column: 2; margin-top: -5px; }
}

/* Shampoo & blow dry detail */
.shampoo-detail-page { background: #17285f; }
.shampoo-overview {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(480px,.82fr);
  align-items: center;
  gap: clamp(60px,8vw,138px);
  padding: clamp(62px,6.5vw,98px) 9vw;
  color: #fff;
  background:
    radial-gradient(circle at 4% 100%,rgba(116,72,96,.72),transparent 31%),
    radial-gradient(circle at 78% -20%,rgba(222,188,126,.24),transparent 30%),
    #17285f;
}
.shampoo-copy { max-width: 780px; }
.shampoo-copy h1 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(60px,6.25vw,96px);
  line-height: .95;
  letter-spacing: -.062em;
}
.shampoo-copy h1 em { color: #dbc9df; }
.shampoo-intro {
  max-width: 720px;
  margin: 31px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px,1.08vw,20px);
  line-height: 1.8;
}
.shampoo-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin: 36px 0 0; padding: 0; list-style: none; }
.shampoo-steps li { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.28); }
.shampoo-steps li > span { color: #dbc9df; font: 600 10px 'DM Sans',sans-serif; }
.shampoo-steps strong { display: block; margin-top: 14px; color: #fff; font: 600 18px 'Manrope',sans-serif; }
.shampoo-steps p { margin: 9px 0 0; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.65; }
.shampoo-book-button { margin-top: 34px; color: var(--ink); background: #fff; }
.shampoo-book-button:hover { color: #fff; background: #744860; }

.shampoo-pricing {
  padding: clamp(29px,3.2vw,48px);
  color: var(--ink);
  background: #f4f1ea;
  box-shadow: 0 28px 70px rgba(6,12,34,.28);
}
.shampoo-pricing > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(16,22,43,.3);
}
.shampoo-pricing header p { margin: 0 0 7px; color: var(--indigo); font: 600 10px 'DM Sans',sans-serif; letter-spacing: .13em; }
.shampoo-pricing h2 { color: var(--ink); font-size: clamp(42px,4vw,62px); letter-spacing: -.055em; }
.shampoo-pricing header > span { padding-top: 5px; color: var(--indigo); font: 600 12px 'DM Sans',sans-serif; letter-spacing: .14em; }
.shampoo-price-list article {
  min-height: 96px;
  display: grid;
  grid-template-columns: 32px minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16,22,43,.15);
}
.shampoo-price-list article > span { color: #744860; font: 600 10px 'DM Sans',sans-serif; }
.shampoo-price-list h3 { color: var(--ink); font-size: clamp(19px,1.45vw,25px); line-height: 1.15; letter-spacing: -.025em; }
.shampoo-price-list p { margin: 6px 0 0; color: #6a7180; font-size: 13px; }
.shampoo-price-list strong { color: #744860; font: 600 clamp(28px,2.35vw,38px) 'Manrope',sans-serif; letter-spacing: -.04em; }
.shampoo-length-link { display: inline-flex; align-items: center; gap: 26px; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--indigo); font-size: 14px; font-weight: 600; }
.shampoo-length-link:hover { color: #744860; }

@media (max-width: 1000px) {
  .shampoo-overview { grid-template-columns: minmax(0,1fr) minmax(420px,.88fr); gap: 45px; padding-inline: 6vw; }
  .shampoo-steps { gap: 13px; }
}

@media (max-width: 800px) {
  .shampoo-overview { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding: 58px 22px 68px; }
  .shampoo-copy h1 { font-size: clamp(49px,13vw,70px); }
  .shampoo-intro { font-size: 17px; line-height: 1.75; }
  .shampoo-steps { grid-template-columns: 1fr; gap: 20px; }
  .shampoo-steps li { display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 10px; }
  .shampoo-steps strong { margin-top: 0; }
  .shampoo-steps p { grid-column: 2; margin-top: -2px; font-size: 15px; }
  .shampoo-pricing { padding: 28px 22px; }
  .shampoo-price-list article { min-height: 90px; grid-template-columns: 24px minmax(0,1fr) auto; gap: 12px; }
  .shampoo-price-list h3 { font-size: 20px; }
  .shampoo-price-list strong { font-size: 29px; }
}

@media (max-width: 430px) {
  .shampoo-overview { padding-inline: 16px; }
  .shampoo-price-list article { grid-template-columns: 22px minmax(0,1fr); }
  .shampoo-price-list strong { grid-column: 2; margin-top: -5px; }
}

/* Shared booking choices across service pages */
.service-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
.service-contact-actions--center { justify-content: center; }
.service-contact-actions .button { margin-top: 0; white-space: nowrap; }
.services-page-note > .service-contact-actions { align-self: end; }
.service-phone-button {
  color: #fff;
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.06);
  box-shadow: none;
  white-space: nowrap;
}
.service-phone-button:hover,
.service-phone-button:focus-visible {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 10px 24px rgba(4,9,30,.16);
}
.service-contact-actions--light .service-phone-button {
  color: var(--indigo);
  border-color: rgba(48,59,148,.42);
  background: transparent;
}
.service-contact-actions--light .service-phone-button:hover,
.service-contact-actions--light .service-phone-button:focus-visible {
  color: #fff;
  border-color: var(--indigo);
  background: var(--indigo);
}

@media (max-width: 520px) {
  .service-contact-actions {
    width: min(100%, 340px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-contact-actions--center { margin-inline: auto; }
  .service-contact-actions .button { width: 100%; justify-content: space-between; }
  .color-personal-actions .service-phone-button { min-height: 54px; }
}

/* Desktop comfort typography
   Keep mobile sizing unchanged while making long-form and actionable text
   easier to read for the salon's 35+ audience. */
@media (min-width: 801px) {
  :root {
    --desktop-body-text: 17px;
    --desktop-ui-text: 16px;
    --desktop-note-text: 14px;
    --desktop-label-text: 12px;
  }

  body { font-size: var(--desktop-body-text); }

  .desktop-nav,
  .header-social,
  .button,
  .text-link,
  .services-dropdown-group > a,
  .service-contact-actions .button,
  .color-brand-official-link,
  .treatment-official-link,
  .shampoo-length-link {
    font-size: var(--desktop-ui-text);
  }

  main p:not(.eyebrow),
  main address,
  main dd {
    font-size: var(--desktop-body-text);
    line-height: 1.75;
  }

  main figcaption,
  .hero .hero-footer,
  .contact-location-hours small,
  .footer-brand small,
  .color-service-choice-note,
  .color-hero-price-heading small,
  .color-hero-price-board > p,
  .color-brand-number,
  .color-brand-identity small,
  .color-brand-meta > small,
  .color-brand-action,
  .color-brand-detail-label,
  .color-clear-pricing-title-row p,
  .color-clear-pricing-title-row strong,
  .color-clear-pricing-extras p,
  .color-clear-pricing-footer p,
  .treatment-price-card-heading small,
  .treatment-keratin-price > p,
  .straightening-hero-notes small,
  .straightening-price-heading small,
  .straightening-price-note,
  .perm-hero-notes small,
  .perm-type-card dt,
  .perm-price-card-heading small,
  .perm-price-extras strong small,
  .perm-price-note,
  .massage-price-row > strong small,
  .massage-price-note,
  .haircut-price-list article > span,
  .haircut-price-note,
  .shampoo-steps li > span,
  .shampoo-pricing header p,
  .shampoo-pricing header > span,
  .shampoo-price-list article > span {
    font-size: var(--desktop-note-text);
    line-height: 1.6;
  }

  .footer-brand small,
  .color-brand-number,
  .color-brand-identity small,
  .color-brand-meta > small,
  .color-brand-action,
  .color-brand-detail-label,
  .straightening-hero-notes small,
  .perm-hero-notes small,
  .haircut-price-list article > span,
  .shampoo-steps li > span,
  .shampoo-pricing header p,
  .shampoo-pricing header > span,
  .shampoo-price-list article > span {
    font-size: var(--desktop-label-text);
  }

  /* Keep the complete Perm pricing overview visible on a typical laptop
     without reducing the comfortable reading sizes. */
  .perm-pricing {
    padding-block: clamp(38px, 4.2vh, 52px);
  }
  .perm-pricing-heading {
    gap: clamp(36px, 5vw, 76px);
    align-items: center;
  }
  .perm-pricing-heading h2 {
    margin-top: 10px;
    font-size: clamp(46px, 4.5vw, 68px);
    line-height: .96;
  }
  .perm-pricing-heading > p {
    margin-bottom: 0;
    line-height: 1.65;
  }
  .perm-price-grid {
    gap: 18px;
    margin-top: clamp(22px, 2.7vh, 30px);
  }
  .perm-price-card {
    padding: clamp(18px, 1.6vw, 24px);
  }
  .perm-price-card-heading {
    padding-bottom: 12px;
  }
  .perm-price-list {
    margin-top: 9px;
  }
  .perm-price-list > div {
    min-height: 52px;
    padding-block: 6px;
  }
  .perm-price-extras {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    margin-top: 16px;
  }
  .perm-price-extras > div {
    min-height: 58px;
    padding: 8px 16px;
  }
  .perm-price-extras > div:first-child {
    border-right: 1px solid rgba(16,22,43,.16);
  }
  .perm-price-note {
    margin-top: 10px;
  }

  /* Compact the home-page promise section while preserving its four-column
     editorial layout and the desktop comfort type scale. */
  .promises.section {
    padding-block: clamp(42px, 5.5vh, 64px);
  }
  .promises .section-top {
    align-items: center;
  }
  .promise-grid {
    margin-top: clamp(28px, 3.5vh, 40px);
  }
  .promise {
    min-height: 205px;
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .promise h3 {
    margin-top: 28px;
  }
  .promise p {
    margin-top: 9px;
  }

  /* Desktop vertical rhythm: keep feature moments spacious while making
     information-heavy pages quicker to scan. Mobile rules remain unchanged. */
  .service-directory { padding-block: 68px; }
  .service-directory-heading { margin-bottom: 48px; }
  .service-directory-card {
    min-height: 350px;
    padding-block: 30px;
  }
  .service-directory-card h3 { margin-top: 38px; }
  .services-page-note {
    min-height: 360px;
    padding-block: 64px;
  }

  .experience {
    min-height: 0;
    padding-block: 64px;
  }
  .experience-card-copy {
    min-height: 0;
    padding-block: 22px 25px;
  }
  .contact { min-height: 0; }

  .about-slide {
    min-height: clamp(560px, 78svh, 760px);
    padding-block: 64px;
  }
  .about-slide:first-child { min-height: clamp(650px, 88svh, 840px); }

  .color-consultation {
    min-height: 0;
    padding-block: 64px;
  }
  .color-brands { padding-block: 68px; }
  .color-brand-trigger {
    min-height: 104px;
    padding-block: 18px;
  }
  .color-detail-cta { padding-block: 72px; }

  .treatment-guide { padding-block: 68px; }
  .treatment-trigger {
    min-height: 106px;
    padding-block: 18px;
  }
  .treatment-cta { padding-block: 72px; }

  .straightening-technology { padding-block: 68px; }
  .straightening-benefit-grid { margin-top: 48px; }
  .straightening-benefit-grid article {
    min-height: 250px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .straightening-benefit-grid article > p:first-of-type { margin-top: 34px; }
  .straightening-pricing {
    min-height: 0;
    padding-block: 64px;
  }
  .straightening-aftercare,
  .straightening-cta { padding-block: 72px; }

  .perm-types {
    min-height: 0;
    padding-block: 68px;
  }
  .perm-aftercare,
  .perm-cta { padding-block: 72px; }

  .massage-hero { min-height: clamp(620px, 82svh, 820px); }
  .massage-options { padding-block: 68px; }

  .contact-visit { padding-block: 68px; }
  .contact-page-hero {
    min-height: clamp(620px, 82svh, 820px);
    padding-block: 68px;
  }
  .contact-page-hero-mark { min-height: 340px; }
  .contact-landmark-feature figcaption { min-height: 0; }

  /* Desktop line-break corrections after the comfort-type pass. */
  .hero .hero-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    font-size: 12px;
  }
  .hero .hero-footer > span { white-space: nowrap; }

  .service-directory-card:nth-child(6) h3,
  .service-directory-card:nth-child(8) h3 {
    font-size: clamp(34px, 3.45vw, 54px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .straightening-heading-copy h2 {
    font-size: clamp(44px, 4.35vw, 70px);
  }
  .straightening-heading-copy h2 em { white-space: nowrap; }

  .color-brand-identity strong,
  .treatment-identity strong {
    font-size: clamp(22px, 1.65vw, 29px);
    white-space: nowrap;
  }
  .color-brand-trigger,
  .treatment-trigger { min-height: 112px; }

  .contact-page-hero h1 {
    font-size: clamp(36px, 3.25vw, 56px);
  }
  .contact-page-hero h1 em {
    font-family: 'Noto Sans Thai', sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -.045em;
  }

  .service-contact-actions .button {
    padding-inline: 22px;
    font-size: 15px;
  }

  /* Treatment hero: preserve the intended two-line editorial headline at
     normal desktop zoom while keeping the model in its original position. */
  .treatment-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, .65fr);
    gap: clamp(28px, 3.5vw, 62px);
  }
  .treatment-hero-copy { max-width: 980px; }
  .treatment-hero h1 {
    font-size: clamp(60px, 5.35vw, 90px);
    line-height: .95;
  }
  .treatment-hero h1 em { white-space: nowrap; }
}

@media (min-width: 901px) and (max-width: 1366px) {
  .treatment-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr);
    gap: 24px;
    padding-inline: 6vw;
  }
  .treatment-hero h1 { font-size: clamp(50px, 4.7vw, 64px); }
  .treatment-hero-media { width: min(100%, 430px); }
  .treatment-hero-media img { height: min(58vh, 620px); }

  .hero .hero-footer { font-size: 11px; }
  .service-directory-card:nth-child(6) h3,
  .service-directory-card:nth-child(8) h3 { font-size: clamp(31px, 3.6vw, 42px); }
  .straightening-heading-copy h2 { font-size: clamp(39px, 4.6vw, 54px); }
  .color-brand-identity strong,
  .treatment-identity strong { font-size: 22px; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .color-brand-trigger {
    grid-template-columns: 38px minmax(190px, .78fr) minmax(0, 1fr) 124px;
    gap: 16px;
    padding-inline: 16px;
  }
  .treatment-trigger {
    grid-template-columns: 38px minmax(205px, .78fr) minmax(0, 1fr) 124px;
    gap: 16px;
    padding-inline: 16px;
  }
  .color-brand-summary,
  .treatment-concern { font-size: 15px; line-height: 1.5; }
  .color-brand-action,
  .treatment-action { justify-self: end; }

  .straightening-section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .straightening-heading-copy { order: 1; }
  .straightening-section-heading figure {
    order: 2;
    width: min(100%, 520px);
  }
  .straightening-heading-copy h2 { font-size: clamp(44px, 5.2vw, 55px); }

  .service-directory { padding-inline: 6vw; }
  .service-directory-card { padding-inline: 26px; }
  .service-directory-card:nth-child(6) h3,
  .service-directory-card:nth-child(8) h3 {
    font-size: clamp(30px, 3.25vw, 36px);
    white-space: nowrap;
  }
}

/* Preserve the existing compact/tablet Treatment layout below the laptop
   range; the desktop refinements above must not override it. */
@media (min-width: 801px) and (max-width: 900px) {
  .treatment-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 38px;
    padding: 58px 26px 38px;
    overflow: hidden;
  }
  .treatment-hero h1 {
    font-size: clamp(44px, 7vw, 58px);
    white-space: normal;
  }
  .treatment-hero h1 em { white-space: normal; }
  .treatment-hero-media {
    width: min(100%, 520px);
    justify-self: center;
    align-self: auto;
  }
  .treatment-hero-media img { height: auto; max-height: 610px; }
}

/* Perm aftercare progression: light-to-deep Indigo blue. */
.perm-aftercare-list article {
  padding-inline: 24px;
  border-bottom-color: rgba(255,255,255,.28);
}
.perm-aftercare-list article:nth-child(1) { background: linear-gradient(110deg,#4f70c5 0%,#4059aa 100%); }
.perm-aftercare-list article:nth-child(2) { background: linear-gradient(110deg,#3d57aa 0%,#304391 100%); }
.perm-aftercare-list article:nth-child(3) { background: linear-gradient(110deg,#2d428f 0%,#1e2e70 100%); }
.perm-aftercare-list article > span { color: #d9dfff; }
.perm-aftercare-list article h3 { color: #fff; }
.perm-aftercare-list article p { color: rgba(255,255,255,.88); }
