@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/manrope-site.woff2") format("woff2");
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("fonts/syne-site.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/dm-mono-500-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/dm-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #181417;
  --ink-soft: #342b31;
  --paper: #f4f0eb;
  --paper-deep: #eae1dc;
  --pink: #ec248f;
  --pink-deep: #ec248f;
  --violet: #8363e8;
  --line: rgba(24, 20, 23, .16);
  --white-line: rgba(255, 255, 255, .2);
  --content: min(1240px, calc(100vw - 96px));
  --frame: max(48px, calc((100vw - 1240px) / 2));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 90px; }
body { max-width: 100%; margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: Manrope, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body:has(.nav.is-open) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }

.skip-link { position: fixed; left: 18px; top: -80px; z-index: 99; padding: 12px 16px; color: #fff; background: var(--ink); transition: top .3s var(--ease); }
.skip-link:focus { top: 18px; }
.section-pad { padding-right: var(--frame); padding-left: var(--frame); }

.site-header { position: fixed; top: 0; left: 50%; z-index: 30; display: flex; width: calc(100% - var(--frame) - var(--frame)); min-height: 108px; align-items: center; justify-content: space-between; padding: 0 28px; color: #fff; border-bottom: 1px solid transparent; border-radius: 0 0 18px 18px; transform: translateX(-50%); transition: color .8s var(--ease), background .8s var(--ease), border-color .8s var(--ease); }
.site-header::after { position: absolute; inset: 0; z-index: -1; content: ""; border-radius: inherit; background: rgba(15, 11, 14, .23); backdrop-filter: blur(12px) saturate(120%); -webkit-backdrop-filter: blur(12px) saturate(120%); transition: opacity .8s var(--ease); }
.site-header.is-scrolled { color: #fff; border-bottom-color: rgba(255, 255, 255, .14); }
.site-header.is-scrolled::after { background: rgba(15, 11, 14, .84); }
.service-page .site-header::after, .contact-page .site-header::after { background: rgba(15, 11, 14, .84); }

.brand { display: inline-flex; align-items: center; min-width: 237px; height: 87px; }
.brand-wordmark-wrap { display: block; width: 237px; height: 81px; }
.brand-wordmark { display: block; width: 100%; height: 100%; object-fit: contain; filter: none; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.nav > a:not(.button) { position: relative; opacity: .84; transition: opacity .45s var(--ease); }
.nav > a:not(.button)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .65s var(--ease); }
.nav > a:not(.button):hover, .nav > a:not(.button):focus-visible { opacity: 1; }
.nav > a:not(.button):hover::after, .nav > a:not(.button):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; color: inherit; background: none; border: 0; }

.button { position: relative; display: inline-flex; min-height: 53px; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; isolation: isolate; transition: color .7s var(--ease), border-color .7s var(--ease), box-shadow .7s var(--ease); }
.button::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(110deg, var(--pink) 0%, var(--pink) 54%, var(--violet) 100%); transform: translateX(-102%); transition: transform .9s var(--ease); }
.button:hover::before, .button:focus-visible::before { transform: translateX(0); }
.button:hover, .button:focus-visible { box-shadow: 0 14px 30px rgba(236, 36, 143, .2); }
.button b { font-size: 17px; font-weight: 500; line-height: 1; transition: transform .8s var(--ease); }
.button:hover b, .button:focus-visible b { transform: translate(2px, -2px); }
.button-pink { color: #fff; background: linear-gradient(110deg, var(--pink), var(--pink-deep)); }
.button-ghost { color: #fff; background: rgba(16, 13, 15, .2); border-color: rgba(255, 255, 255, .56); }
.button-ghost::before { background: #fff; }
.button-ghost:hover, .button-ghost:focus-visible { color: var(--ink); border-color: #fff; }
.button-ink { color: #fff; background: var(--ink); }
.button-ink::before { background: linear-gradient(110deg, #251824, #6c3d70); }
.nav-cta { min-height: 43px; padding: 0 15px; color: #fff; }

.hero { position: relative; display: grid; min-height: max(720px, 100svh); overflow: hidden; color: #fff; isolation: isolate; }
.hero-photo, .hero-shade, .hero-grain { position: absolute; inset: 0; }
.hero-photo { z-index: -3; overflow: hidden; filter: saturate(.76) contrast(1.04); transform: scale(1.035); animation: hero-drift 16s ease-in-out infinite alternate; will-change: transform; }
.hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { z-index: -2; background: linear-gradient(90deg, rgba(10, 8, 10, .42) 0%, rgba(12, 9, 11, .22) 44%, rgba(12, 9, 11, .04) 76%), linear-gradient(0deg, rgba(10, 8, 10, .45), transparent 42%); }
.hero-grain { z-index: -1; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.hero-content { align-self: center; width: min(690px, 54vw); margin: 94px 0 136px var(--frame); }
.hero h1 { margin-bottom: 30px; font-family: "Bricolage Grotesque", Manrope, Arial, sans-serif; font-size: clamp(60px, 8vw, 130px); font-weight: 800; font-variation-settings: "opsz" 48, "wdth" 100; letter-spacing: -.082em; line-height: .84; }
.hero h1 span { display: inline-block; color: var(--pink); font-family: Syne, "Bricolage Grotesque", Arial, sans-serif; font-size: .96em; font-weight: 800; letter-spacing: -.085em; }
h2 span { color: var(--pink); font-family: Syne, "Bricolage Grotesque", Arial, sans-serif; font-weight: 800; letter-spacing: -.085em; }
.hero-scope { margin-bottom: 38px; color: rgba(255, 255, 255, .82); font-size: 16px; line-height: 1.76; }
.hero-bottom { position: absolute; right: var(--frame); bottom: clamp(40px, 5vw, 76px); left: var(--frame); display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.statement { padding-top: clamp(110px, 13vw, 190px); padding-bottom: clamp(115px, 13vw, 190px); }
.statement-grid { display: grid; grid-template-columns: 1.6fr .8fr; gap: 38px; max-width: var(--content); margin: 0 auto; align-items: stretch; }
.statement h2, .section-intro h2, .pricing h2, .booking h2 { margin: 0; font-size: clamp(46px, 5.75vw, 88px); font-weight: 800; letter-spacing: -.07em; line-height: .93; }
.statement-copy { display: flex; flex-direction: column; padding-top: 12px; }
.statement-copy .text-cta { margin-top: auto; }
.statement-copy p { margin-bottom: 30px; font-size: 15px; line-height: 1.8; }
.text-cta { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.text-cta b { color: var(--pink); font-size: 17px; font-weight: 500; transition: transform .8s var(--ease); }
.text-cta:hover b, .text-cta:focus-visible b { transform: translate(4px, -4px); }

.care { position: relative; padding-top: clamp(104px, 11vw, 160px); padding-bottom: clamp(72px, 8vw, 110px); overflow: hidden; color: #fff; background: var(--ink); scroll-margin-top: -90px; }
.care::before { position: absolute; top: -27vw; right: -17vw; width: 54vw; height: 54vw; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(236, 36, 143, .19) 0%, rgba(236, 36, 143, 0) 66%); pointer-events: none; }
.section-intro, .care-grid { position: relative; max-width: 1240px; margin: 0 auto; }
.section-intro { display: flex; justify-content: space-between; margin-bottom: 70px; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-top: 1px solid var(--white-line); border-radius: 24px; }
.care-card { position: relative; display: flex; min-height: 320px; align-items: flex-start; overflow: hidden; padding: 28px; border-right: 1px solid var(--white-line); transition: color 1s var(--ease), background-color 1s var(--ease); }
.care-card:first-child { border-left: 1px solid var(--white-line); }
.care-card::before { position: absolute; inset: 0; content: ""; opacity: 0; background: radial-gradient(circle at 80% 15%, rgba(255, 255, 255, .28), transparent 39%); transition: opacity 1.1s var(--ease); }
.care-card::after { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 1s var(--ease); }
.care-card:hover::before, .care-card:focus-visible::before { opacity: 1; }
.care-card:hover::after, .care-card:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.care-card-skin { background: #e7dfd9; color: var(--ink); }
.care-card-body { background: var(--pink); color: #fff; }
.care-card-hair { background: #44324d; color: #fff; }
.care-card h3 { position: absolute; z-index: 2; top: 28px; left: 28px; margin: 0; font-size: clamp(38px, 3.4vw, 54px); font-weight: 800; letter-spacing: -.075em; line-height: .9; }
.care-motif { position: absolute; z-index: 1; top: 91px; left: 50%; width: auto; max-width: 76%; height: calc(100% - 108px); object-fit: contain; object-position: center top; pointer-events: none; transform: translate3d(-50%, 0, 0); transition: transform 1.6s var(--ease); }
.care-card:hover .care-motif, .care-card:focus-visible .care-motif { transform: translate3d(-50%, 0, 0) scale(1.045); }

.home-contact-cta { padding-top: clamp(82px, 9vw, 132px); padding-bottom: clamp(82px, 9vw, 132px); color: #fff; background: #fff; }
.home-contact-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(34px, 7vw, 110px); min-height: 330px; align-items: end; max-width: 1240px; margin: 0 auto; padding: clamp(42px, 6vw, 82px); background: var(--pink); border-radius: 24px; }
.home-contact-cta-copy { max-width: 780px; }
.home-contact-cta h2 { max-width: 770px; margin: 0 0 24px; font-size: clamp(46px, 5.8vw, 86px); font-weight: 800; letter-spacing: -.075em; line-height: .91; }
.home-contact-cta h2 .home-contact-cta-syne { color: inherit; font-family: Syne, "Bricolage Grotesque", Arial, sans-serif; }
.home-contact-cta p { max-width: 640px; margin: 0; font-size: 15px; line-height: 1.8; }
.home-contact-cta .button { min-width: 210px; }

.faq { padding-top: clamp(110px, 13vw, 180px); padding-bottom: clamp(110px, 13vw, 180px); background: #fff; }
.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: min(12vw, 160px); max-width: var(--content); margin: 0 auto; }
.faq h2 { margin: 0; font-size: clamp(46px, 5.75vw, 88px); font-weight: 800; letter-spacing: -.07em; line-height: .93; }
.faq h2 span { color: var(--pink); font-family: Syne, "Bricolage Grotesque", Arial, sans-serif; font-weight: 800; letter-spacing: -.085em; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; cursor: pointer; font-size: clamp(18px, 2vw, 27px); font-weight: 700; letter-spacing: -.055em; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { flex: 0 0 auto; content: "+"; color: var(--pink); font: 400 32px/1 Syne, sans-serif; transition: transform .75s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: -4px 0 27px; color: #665a61; font-size: 15px; line-height: 1.8; }

.pricing { padding-top: clamp(110px, 12vw, 175px); padding-bottom: clamp(110px, 12vw, 175px); color: #fff; background: #151114; }
.pricing-heading { display: grid; grid-template-columns: .66fr 1fr; column-gap: 6vw; max-width: 1240px; margin: 0 auto 76px; }
.pricing-heading p:last-child { max-width: 390px; margin: 16px 0 0; color: rgba(255, 255, 255, .69); font-size: 14px; line-height: 1.8; }
.price-list { max-width: 1240px; margin: 0 auto 42px; border-top: 1px solid var(--white-line); }
.price-list article { display: grid; grid-template-columns: 70px 1fr 175px 32px; gap: 18px; align-items: center; min-height: 94px; border-bottom: 1px solid var(--white-line); transition: color .8s var(--ease); }
.price-list article:hover { color: var(--pink); }
.price-list span { font: 500 10px "DM Mono", monospace; letter-spacing: .08em; }
.price-list h3 { margin: 0; font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; letter-spacing: -.055em; }
.price-list p { margin: 0; color: rgba(255, 255, 255, .7); font: 500 10px "DM Mono", monospace; letter-spacing: .05em; text-transform: uppercase; }
.price-list a { font-size: 23px; text-align: right; }

.booking { display: grid; grid-template-columns: .82fr 1fr; gap: min(12vw, 160px); padding-top: clamp(110px, 12vw, 175px); padding-bottom: clamp(110px, 12vw, 175px); }
.booking-copy h2 { margin-bottom: 30px; }
.booking-copy > p { max-width: 430px; margin-bottom: 38px; font-size: 15px; line-height: 1.8; }
.booking-phone { display: inline-flex; flex-direction: column; gap: 8px; padding-left: 16px; border-left: 2px solid var(--pink); }
.booking-phone span { font: 500 10px "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.booking-phone strong { font-size: 16px; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 22px; padding-top: 4px; }
.booking-form label { display: flex; flex-direction: column; gap: 11px; color: #40373b; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; padding: 8px 0 12px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; transition: border-color .45s var(--ease); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--pink); }
.booking-form textarea { resize: vertical; }
.field-wide, .form-note, .form-status { grid-column: 1 / -1; }
.booking-form .button { justify-self: start; margin-top: 8px; }
.form-note { margin: -10px 0 0; color: #766d71; font-size: 10px; line-height: 1.55; }
.form-status { min-height: 18px; margin: -12px 0 0; color: var(--pink-deep); font-size: 12px; font-weight: 700; }

.site-footer { display: grid; grid-template-columns: 1.35fr .82fr .82fr .7fr; gap: 48px; align-items: start; padding: 78px var(--frame); color: #fff; background: #050506; }
.footer-brand { display: flex; align-items: center; min-height: 184px; }
.footer-mark { display: block; width: 184px; height: 184px; overflow: hidden; background: #f4f2f1; border-radius: 50%; transition: transform 1s var(--ease); }
.footer-mark:hover, .footer-mark:focus-visible { transform: rotate(-3deg) scale(1.03); }
.footer-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.footer-label { margin: 5px 0 16px; color: var(--pink); font-family: Syne, Manrope, Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: -.03em; }
.site-footer address, .site-footer a:not(.footer-mark) { font-size: 14px; font-style: normal; line-height: 1.95; }
.site-footer a:not(.footer-mark) { transition: color .5s var(--ease); }
.site-footer a:not(.footer-mark):hover, .site-footer a:not(.footer-mark):focus-visible { color: var(--pink); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1.05s var(--ease), transform 1.05s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.care-card[data-reveal]:nth-child(2) { transition-delay: .12s; }
.care-card[data-reveal]:nth-child(3) { transition-delay: .24s; }

@keyframes hero-drift { from { transform: scale(1.035) translate3d(0, 0, 0); } to { transform: scale(1.075) translate3d(-.8%, -.4%, 0); } }

/* Service detail pages */
.service-page { background: var(--paper); }
.service-header { position: sticky; top: 0; z-index: 25; display: flex; min-height: 84px; align-items: center; justify-content: space-between; padding: 0 max(32px, 4vw); color: #fff; background: rgba(15, 11, 14, .9); border-bottom: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(14px); }
.service-logo { display: inline-flex; align-items: center; width: 158px; height: 58px; }
.service-logo img { width: 158px; height: 54px; object-fit: contain; }
.service-header nav { display: flex; align-items: center; gap: 27px; font-size: 11px; font-weight: 800; }
.service-hero { position: relative; overflow: hidden; padding: clamp(150px, 12vw, 180px) max(48px, calc((100vw - 1240px) / 2)) clamp(95px, 10vw, 145px); color: #fff; background: #171217; }
.service-hero::after { position: absolute; top: -20vw; right: -14vw; width: 50vw; height: 50vw; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(236, 36, 143, .5), transparent 65%); }
.service-hero > * { position: relative; z-index: 1; max-width: 1240px; margin-right: auto; margin-left: auto; }
.service-hero h1 { margin-bottom: 27px; font-family: Syne, "Bricolage Grotesque", Arial, sans-serif; font-size: clamp(68px, 9.5vw, 132px); font-weight: 800; letter-spacing: -.09em; line-height: .78; }
.service-hero p:last-child { max-width: 515px; margin: 0; font-size: 16px; line-height: 1.8; }
.service-section { scroll-margin-top: -90px; }
.service-section .service-hero::after { z-index: 0; right: 2vw; width: min(48vw, 650px); height: min(48vw, 650px); }
.service-section-skin .service-hero::after { background: radial-gradient(circle, rgba(231, 223, 217, .9), rgba(231, 223, 217, 0) 66%); }
.service-section-body .service-hero::after { background: radial-gradient(circle, rgba(236, 36, 143, .58), rgba(236, 36, 143, 0) 66%); }
.service-section-hair .service-hero::after { background: radial-gradient(circle, rgba(131, 99, 232, .54), rgba(131, 99, 232, 0) 66%); }
.service-hero-icon { position: absolute !important; z-index: 2 !important; top: clamp(120px, 9vw, 142px); right: max(128px, calc((100vw - 1240px) / 2 + 82px)); width: auto; height: clamp(145px, 17vw, 235px); margin: 0 !important; color: var(--ink); object-fit: contain; pointer-events: none; }
.service-hero-icon * { fill: currentColor; }
.service-content { max-width: 1240px; margin: 0 auto; padding: clamp(82px, 10vw, 130px) max(48px, calc((100vw - 1240px) / 2)); }
.service-list { border-top: 1px solid var(--line); }
.service-list article { display: grid; grid-template-columns: 68px 1fr minmax(180px, .72fr); gap: 25px; align-items: center; min-height: 110px; border-bottom: 1px solid var(--line); }
.service-list span { color: #766d71; font: 500 10px "DM Mono", monospace; }
.service-list h2 { margin: 0; font-size: clamp(23px, 2.7vw, 34px); letter-spacing: -.06em; }
.service-list p { margin: 0; color: #665a61; font-size: 13px; line-height: 1.7; }
.service-list b { display: none; }
.service-back { display: inline-flex; align-items: center; gap: 14px; margin-top: 46px; padding: 14px 0; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.service-back::after { content: "↗"; color: var(--pink); font-size: 18px; font-weight: 400; transition: transform .7s var(--ease); }
.service-back:hover::after { transform: translate(3px, -3px); }
.service-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 32px; padding: 28px max(48px, calc((100vw - 1240px) / 2)); color: rgba(255, 255, 255, .72); background: var(--ink); font: 500 10px/1.5 "DM Mono", monospace; letter-spacing: .05em; }
.service-footer a { color: #fff; transition: color .5s var(--ease); }
.service-footer a:hover, .service-footer a:focus-visible { color: var(--pink); }
.service-drawer { position: fixed; top: 50%; right: 0; z-index: 40; overflow: hidden; transform: translateY(-50%); animation: drawer-arrive 1.25s var(--ease) both; }
.service-drawer-list { display: grid; overflow: hidden; border-radius: 18px 0 0 18px; }
.service-drawer-item { position: relative; display: grid; grid-template-columns: 82px max-content; width: 82px; height: 82px; align-items: center; overflow: hidden; color: #fff; transition: width 1.1s var(--ease), filter 1.1s var(--ease); }
.service-drawer-item:hover, .service-drawer-item:focus-visible { filter: brightness(1.06); }
.service-drawer-item::after { position: absolute; top: 50%; right: 12px; width: 7px; height: 7px; content: ""; border: 1px solid rgba(21, 17, 20, .3); border-radius: 50%; background: #fff; opacity: 0; transform: translateY(-50%) scale(.4); transition: opacity .5s var(--ease), transform .7s var(--ease); }
.service-drawer-item[aria-current="page"] { filter: brightness(1.045); }
.service-drawer-item[aria-current="page"]::after { opacity: 1; transform: translateY(-50%) scale(1); }
.service-drawer-plet { background: #e7dfd9; color: var(--ink); }
.service-drawer-telo { background: var(--pink); }
.service-drawer-vlasy { background: #44324d; }
.service-drawer-icon { display: grid; width: 82px; height: 82px; place-items: center; }
.service-drawer-icon img { width: 56px; height: 64px; object-fit: contain; }
.service-drawer-label { padding-right: 25px; font-family: Syne, Manrope, Arial, sans-serif; font-size: 23px; font-weight: 800; letter-spacing: -.07em; opacity: 0; transform: translateX(9px); transition: opacity .72s var(--ease), transform .9s var(--ease); }
.service-drawer:is(:hover, :focus-within, .is-expanded) .service-drawer-item { width: 224px; }
.service-drawer:is(:hover, :focus-within, .is-expanded) .service-drawer-label { opacity: 1; transform: none; }
@keyframes drawer-arrive { from { opacity: 0; transform: translate(100%, -50%); } to { opacity: 1; transform: translateY(-50%); } }

@media (max-width: 820px) {
  :root { --content: calc(100% - 48px); --frame: 24px; }
  html { scroll-padding-top: 72px; }
  .section-pad { padding-right: 24px; padding-left: 24px; }
  .site-header { top: 0; right: 0; left: 0; width: auto; min-height: 92px; padding: 0 24px; transform: none; }
  .brand { min-width: 198px; height: 72px; }
  .brand-wordmark-wrap { width: 198px; height: 68px; }
  .brand-wordmark { height: 68px; }
  .menu-toggle { display: grid; width: 44px; height: 44px; padding: 11px 0; align-content: center; justify-items: end; gap: 8px; }
  .menu-toggle span { display: block; width: 27px; height: 1px; background: currentColor; transition: transform .65s var(--ease), width .65s var(--ease); }
  .menu-toggle span:last-child { width: 18px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { width: 27px; transform: translateY(-4.5px) rotate(-45deg); }
  .nav { position: absolute; top: 72px; right: 0; left: 0; display: grid; gap: 0; padding: 20px 24px 30px; color: #fff; visibility: hidden; background: rgba(22, 16, 21, .98); opacity: 0; transform: translateY(-16px); transition: opacity .6s var(--ease), visibility .6s var(--ease), transform .6s var(--ease); }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav > a:not(.button) { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); font-size: 13px; }
  .nav > a:not(.button)::after { display: none; }
  .nav-cta { width: 100%; margin-top: 24px; min-height: 52px; }
  .hero { width: 100%; height: 100svh; min-height: 0; }
  .hero-photo img { object-position: 72% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10, 8, 10, .52), rgba(15, 10, 13, .20) 68%, rgba(12, 9, 11, .06)), linear-gradient(0deg, rgba(10, 8, 10, .5), transparent 52%); }
  .hero-content { min-width: 0; width: calc(100% - 48px); margin: 108px 24px 150px; }
  .hero h1 { max-width: 100%; margin-bottom: 24px; font-size: clamp(47px, 13.4vw, 74px); letter-spacing: -.09em; }
  .hero-scope { max-width: 335px; font-size: 14px; }
  .hero-bottom { right: 24px; bottom: 26px; left: 24px; align-items: flex-end; }
  .statement { padding-top: 100px; padding-bottom: 108px; }
  .statement-grid { display: block; }
  .statement h2, .section-intro h2, .pricing h2, .booking h2 { font-size: clamp(42px, 12vw, 61px); letter-spacing: -.08em; }
  .statement h2 { font-size: clamp(38px, 10vw, 52px); }
  .statement-copy { max-width: 440px; padding-top: 33px; }
  .statement-copy p { font-size: 14px; }
  .faq { padding-top: 100px; padding-bottom: 105px; }
  .faq-layout { display: block; }
  .faq-list { margin-top: 52px; }
  .faq h2 { font-size: clamp(42px, 12vw, 61px); letter-spacing: -.08em; }
  .faq summary { padding: 21px 0; font-size: 20px; }
  .faq details p { margin-bottom: 23px; font-size: 14px; }
  .care { padding-top: 92px; padding-bottom: 64px; scroll-margin-top: -72px; }
  .section-intro { display: block; margin-bottom: 42px; }
  .care-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--white-line); border-radius: 18px; }
  .care-card, .care-card:first-child { min-width: 0; min-height: 220px; padding: 14px; border: 0; border-right: 1px solid var(--white-line); }
  .care-card:first-child { border-left: 1px solid var(--white-line); }
  .care-card h3 { top: 16px; left: 14px; font-size: clamp(21px, 6.8vw, 31px); }
  .care-motif { top: 57px; max-width: 82%; height: calc(100% - 70px); }
  .home-contact-cta { padding-top: 82px; padding-bottom: 82px; }
  .home-contact-cta-inner { grid-template-columns: 1fr; gap: 34px; min-height: 0; align-items: start; padding: 38px 24px; border-radius: 18px; }
  .home-contact-cta h2 { margin-bottom: 20px; font-size: clamp(38px, 10.5vw, 54px); }
  .home-contact-cta p { font-size: 14px; }
  .home-contact-cta .button { width: 100%; }
  .pricing { padding-top: 100px; padding-bottom: 100px; }
  .pricing-heading { display: block; margin-bottom: 50px; }
  .pricing-heading p:last-child { margin-top: 27px; }
  .price-list article { grid-template-columns: 30px 1fr 27px; gap: 12px; min-height: 96px; padding: 18px 0; }
  .price-list p { grid-column: 2; }
  .price-list a { grid-column: 3; grid-row: 1 / 3; }
  .booking { display: block; padding-top: 100px; padding-bottom: 105px; }
  .booking-copy { margin-bottom: 60px; }
  .booking-form { gap: 27px 18px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 42px 24px; padding: 62px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand { min-height: 135px; }
  .footer-mark { width: 135px; height: 135px; }
  .service-header { min-height: 72px; padding: 0 24px; }
  .service-logo { width: 132px; height: 50px; }
  .service-logo img { width: 132px; height: 45px; }
  .service-header nav { gap: 14px; font-size: 10px; }
  .service-drawer { top: auto; bottom: 20px; transform: none; animation-name: drawer-arrive-mobile; }
  .service-drawer-list { border-radius: 15px 0 0 15px; }
  .service-drawer-item { grid-template-columns: 64px max-content; width: 64px; height: 64px; }
  .service-drawer-icon { width: 64px; height: 64px; }
  .service-drawer-icon img { width: 45px; height: 52px; }
  .service-drawer-label { padding-right: 20px; font-size: 19px; }
  .service-drawer:is(:hover, :focus-within, .is-expanded) .service-drawer-item { width: 184px; }
  .service-section { scroll-margin-top: -72px; }
  .service-hero { padding: 136px 24px 75px; }
  .service-hero h1 { max-width: calc(100% - 74px); font-size: clamp(50px, 14vw, 74px); }
  .service-hero p:last-child { font-size: 14px; }
  .service-hero-icon { top: 104px; right: 24px; width: auto; height: min(27vw, 116px); }
  .service-content { padding: 70px 24px 92px; }
  .service-footer { padding: 24px; }
  .service-list article { grid-template-columns: 28px 1fr; gap: 8px 15px; padding: 23px 0; }
  .service-list p, .service-list b { grid-column: 2; }
  .service-list h2 { font-size: 24px; }
  .service-list p { font-size: 12px; }
}
@supports (height: 100dvh) {
  @media (max-width: 820px) { .hero { height: 100dvh; } }
}
@keyframes drawer-arrive-mobile { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: none; } }

@media (max-width: 410px) {
  .care-card, .care-card:first-child { min-height: 200px; }
  .care-card h3 { font-size: 21px; }
  .care-motif { top: 52px; height: calc(100% - 62px); }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form label { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
