:root {
  --ink: #1e1c1a;
  --paper: #f2eee8;
  --paper-soft: #f8f5f0;
  --cream: #e9e0d5;
  --brown: #8a6651;
  --brown-dark: #664837;
  --sage: #8c9481;
  --line: rgba(30, 28, 26, 0.18);
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Montserrat, Arial, Helvetica, sans-serif;
  --page: min(1180px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; }
h2 { margin-bottom: 28px; font-size: clamp(2.5rem, 5vw, 5.3rem); letter-spacing: -0.045em; }
p { margin-bottom: 1.25em; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(24px, calc((100vw - 1340px) / 2));
  color: var(--white);
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  min-height: 76px;
  color: var(--ink);
  background: rgba(248, 245, 240, 0.94);
  box-shadow: 0 8px 30px rgba(30, 28, 26, 0.08);
  backdrop-filter: blur(12px);
}
.brand { display: block; width: 185px; filter: invert(1); transition: filter .3s ease; }
.is-scrolled .brand { filter: none; }
.site-nav { display: flex; align-items: center; gap: 18px; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.site-nav > a:not(.button) { text-decoration: none; }
.site-nav > a:not(.button)::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 3px;
  background: currentColor;
  content: "";
  transition: width .2s ease;
}
.site-nav > a:hover::after { width: 100%; }
.menu-button { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brown-dark); border-color: var(--brown-dark); }
.button--small { min-height: 42px; padding: 10px 17px; }
.site-header:not(.is-scrolled) .button--small { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.13); }
.button--light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button--light:hover { border-color: var(--cream); background: var(--cream); }
.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link--light { color: var(--white); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero__image, .hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; transform: scale(1.015); }
.hero__veil { background: linear-gradient(90deg, rgba(18,16,14,.75) 0%, rgba(18,16,14,.34) 58%, rgba(18,16,14,.16) 100%), linear-gradient(0deg, rgba(18,16,14,.28), transparent 50%); }
.hero__content { position: relative; z-index: 2; width: var(--page); padding: 150px 0 110px; }
.hero h1 { max-width: 800px; margin-bottom: 28px; font-size: clamp(4rem, 9vw, 8.6rem); letter-spacing: -0.06em; }
.hero h1 em { font-weight: 400; }
.hero__lead { max-width: 610px; margin-bottom: 34px; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.45; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__location {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1340px) / 2));
  bottom: 34px;
  padding: 15px 18px;
  border-left: 1px solid rgba(255,255,255,.6);
  text-decoration: none;
}
.hero__location span, .hero__location small { display: block; }
.hero__location span { font-family: var(--serif); font-size: 1.28rem; }
.hero__location small { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { margin-bottom: 18px; color: var(--brown); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: rgba(255,255,255,.82); }

.section { padding: clamp(90px, 11vw, 155px) 0; }
.section__inner { width: var(--page); margin: 0 auto; }
.intro { background: var(--paper); }
.intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12vw; align-items: start; }
.intro__heading h2 { max-width: 690px; }
.intro__copy { padding-top: 45px; }
.intro__copy .lead { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.45; }
.ornament { display: flex; max-width: 230px; align-items: center; gap: 14px; margin-top: 42px; color: var(--brown); }
.ornament span { flex: 1; height: 1px; background: var(--brown); }
.ornament b { font-size: 1.2rem; font-weight: 400; }

.place-story { position: relative; min-height: 880px; padding: 90px max(24px, calc((100vw - 1340px) / 2)); background: #d5cec5; overflow: hidden; }
.place-story__photo { margin: 0; }
.place-story__photo img { width: 100%; height: 100%; object-fit: cover; }
.place-story__photo--large { width: 66%; height: 700px; }
.place-story__photo--detail { position: absolute; right: 5%; bottom: 55px; width: 30%; height: 390px; border: 12px solid #d5cec5; }
.place-story__card { position: absolute; z-index: 2; top: 160px; right: 7%; width: min(510px, 40%); padding: clamp(40px, 5vw, 72px); background: rgba(248,245,240,.94); }
.place-story__card h2 { font-size: clamp(2.6rem, 4.5vw, 4.7rem); }

.first-visit { background: var(--paper); }
.visit-moments { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 260px auto; gap: 12px; margin: 0 0 clamp(55px, 7vw, 85px); }
.visit-moments figure { margin: 0; overflow: hidden; background: var(--cream); }
.visit-moments__main { grid-row: 1 / span 2; }
.visit-moments img { width: 100%; height: 100%; object-fit: cover; }
.visit-moments__main img { object-position: center 70%; }
.visit-moments > p { margin: 0; padding: 22px 26px; background: var(--cream); font-family: var(--serif); font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.45; }
.visit-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.visit-step { padding: 32px 28px 8px 0; }
.visit-step + .visit-step { padding-left: 28px; border-left: 1px solid var(--line); }
.visit-step span { color: var(--brown); font-size: .64rem; letter-spacing: .15em; }
.visit-step h3 { margin: 23px 0 14px; font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 1.9rem); font-weight: 400; }
.visit-step p { margin: 0; color: #625a54; font-size: .86rem; }

.services { background: var(--paper-soft); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 9vw; align-items: end; margin-bottom: 70px; }
.section-heading > p { max-width: 410px; margin-bottom: 12px; }
.service-list { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 70px .8fr 1.2fr; gap: 35px; align-items: baseline; padding: 35px 0; border-bottom: 1px solid var(--line); }
.service__number { color: var(--brown); font-size: .68rem; letter-spacing: .15em; }
.service h3 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.service p { max-width: 530px; margin: 0; }
.service-picker { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 100px); margin-top: clamp(75px, 9vw, 120px); padding: clamp(42px, 5vw, 70px); border: 1px solid var(--line); background: var(--paper); }
.service-picker__heading h3 { margin-bottom: 20px; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.4rem); font-weight: 400; line-height: 1; }
.service-picker__heading > p:last-child { max-width: 450px; color: #625a54; }
.service-picker__options { border-top: 1px solid var(--line); }
.service-picker__options div { display: grid; grid-template-columns: .95fr 1.05fr; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.service-picker__options strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.service-picker__options p { margin: 0; color: #655d57; font-size: .82rem; }
.service-picker > .button { grid-column: 2; justify-self: start; }
.treatments-guide { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; align-items: end; margin-top: clamp(85px, 10vw, 140px); padding: clamp(65px, 8vw, 105px) clamp(24px, 5vw, 70px); overflow: hidden; }
.treatments-guide::before { position: absolute; inset: 0; background: linear-gradient(rgba(248,245,240,.76), rgba(248,245,240,.76)), url("assets/work-process.webp") center 42% / cover; content: ""; filter: saturate(.72); }
.treatments-guide > * { position: relative; z-index: 1; }
.treatments-guide h3 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4.5rem); font-weight: 400; line-height: .98; }
.treatments-guide > p { max-width: 440px; margin-bottom: 8px; color: #655d57; }
.color-care { display: grid; grid-template-columns: 1.08fr .92fr; margin-top: clamp(45px, 6vw, 75px); background: #201d1a; color: var(--white); }
.color-care__story, .color-care__details { padding: clamp(48px, 6vw, 88px); }
.color-care__story { background: linear-gradient(145deg, #24201d, #171513); }
.color-care__story h3 { margin-bottom: 35px; font-family: var(--serif); font-size: clamp(4rem, 7vw, 7.4rem); font-weight: 400; line-height: .83; }
.color-care__story h3 i { color: #b99378; font-weight: 400; }
.color-care__lead { max-width: 610px; margin-bottom: 30px; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.35; }
.color-care__story > p:not(.eyebrow):not(.color-care__lead) { max-width: 620px; color: rgba(255,255,255,.7); }
.color-care__details { background: #8a6651; }
.color-care__label { margin-bottom: 25px; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.color-care__list { margin: 0 0 38px; padding: 0; list-style: none; }
.color-care__list li { position: relative; padding: 13px 0 13px 32px; border-bottom: 1px solid rgba(255,255,255,.24); font-family: var(--serif); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.color-care__list li::before { position: absolute; left: 2px; color: rgba(255,255,255,.78); content: "✓"; font-family: var(--sans); font-size: .78rem; }
.color-care__important { margin-bottom: 34px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,.55); }
.color-care__important strong { display: block; margin-bottom: 8px; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.color-care__important p { margin: 0; color: rgba(255,255,255,.75); font-size: .82rem; }
.treatments { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 115px); margin-top: clamp(75px, 9vw, 125px); padding-top: clamp(65px, 8vw, 105px); border-top: 1px solid var(--line); }
.treatments--list-only { display: block; margin-top: clamp(65px, 8vw, 105px); padding-top: 0; border-top: 0; }
.treatments--list-only .treatment-list { width: min(880px, 72%); margin-left: auto; }
.treatments__intro { position: sticky; top: 130px; align-self: start; }
.treatments__intro h3, .aftercare__heading h3 { font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4.5rem); font-weight: 400; line-height: .98; }
.treatments__intro > p:last-child { max-width: 430px; color: #655d57; }
.treatment-list { border-top: 1px solid var(--line); }
.treatment { border-bottom: 1px solid var(--line); }
.treatment summary { position: relative; display: grid; grid-template-columns: .62fr 1.38fr; gap: 24px; padding: 27px 55px 27px 0; cursor: pointer; list-style: none; }
.treatment summary::-webkit-details-marker { display: none; }
.treatment summary::after { position: absolute; top: 24px; right: 5px; color: var(--brown); content: "+"; font-family: var(--serif); font-size: 2rem; line-height: 1; transition: transform .25s ease; }
.treatment[open] summary::after { transform: rotate(45deg); }
.treatment summary span { padding-top: 5px; color: var(--brown); font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.treatment summary strong { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); font-weight: 400; line-height: 1.2; }
.treatment__body { max-width: 650px; padding: 0 45px 28px calc(38% + 5px); color: #5f5751; }
.treatment__body p { margin-bottom: 12px; }
.treatment__note { font-size: .86rem; }
.aftercare { margin-top: clamp(90px, 12vw, 165px); padding: clamp(45px, 6vw, 75px); background: var(--ink); color: var(--white); }
.aftercare__heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: end; margin-bottom: 55px; }
.aftercare__heading h3 { margin-bottom: 0; }
.aftercare__heading > p:last-child { color: rgba(255,255,255,.72); }
.aftercare__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.aftercare__item { padding: 30px 24px 10px 0; }
.aftercare__item + .aftercare__item { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.22); }
.aftercare__item span { color: #c4a68e; font-size: .62rem; letter-spacing: .15em; }
.aftercare__item h4 { margin: 18px 0 12px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.aftercare__item p { margin: 0; color: rgba(255,255,255,.7); font-size: .83rem; }
.aftercare__disclaimer { margin: 38px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.58); font-size: .72rem; }
.services__action { margin-top: 48px; text-align: right; }

.team { background: var(--cream); }
.team__intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; align-items: end; margin-bottom: clamp(60px, 8vw, 105px); }
.team__intro h2 { margin-bottom: 0; font-size: clamp(3rem, 6vw, 6.4rem); }
.team__intro > p { max-width: 470px; margin-bottom: 10px; }
.team__portraits { display: grid; grid-template-columns: 1.12fr .88fr .88fr; grid-template-rows: auto auto; gap: clamp(18px, 3vw, 42px); align-items: start; }
.person { margin: 0; }
.person--featured { grid-row: 1 / span 2; }
.person--natasza { grid-column: 3; }
.person__photo { position: relative; margin: 0 0 22px; padding: 5px; overflow: hidden; border: 1px solid rgba(138,102,81,.28); background: #eee5da; box-shadow: 0 18px 42px rgba(58,45,37,.2); }
.person__photo::after { position: absolute; inset: 5px; pointer-events: none; box-shadow: inset 0 0 16px rgba(244,236,226,.3); content: ""; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s ease; }
.person:hover .person__photo img { transform: scale(1.02); }
.person--featured .person__photo { aspect-ratio: 1 / 1.24; }
.person--featured .person__photo img { object-position: center center; }
.person:not(.person--featured) .person__photo { aspect-ratio: 4 / 4.5; }
.person--agnieszka .person__photo img { object-position: center 34%; }
.person--ewelina .person__photo img { object-position: center 30%; }
.person--natasza .person__photo img { object-position: center 36%; }
.person__caption { padding-right: 12px; }
.person__role { margin-bottom: 7px; color: var(--brown); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.person__caption h3 { margin-bottom: 12px; font-size: clamp(2rem, 3.5vw, 3.6rem); }
.person__caption > p:last-child:not(.person__role) { max-width: 430px; color: #5f5751; }
.person__quote { position: relative; max-width: 510px; margin: 24px 0 0; padding: 26px 0 0 38px; border-top: 1px solid rgba(138,102,81,.4); }
.person__quote::before { position: absolute; top: 13px; left: 0; color: var(--brown); content: "“"; font-family: var(--serif); font-size: 4.6rem; line-height: 1; }
.person__quote p { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(1.12rem, 1.5vw, 1.34rem); line-height: 1.5; }
.person__quote footer { color: var(--brown); font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.team__note { max-width: 650px; margin: 65px 0 0 auto; padding-left: 18px; border-left: 1px solid var(--brown); color: #665e58; font-size: .82rem; }

.gallery { background: var(--paper-soft); }
.section-heading--compact { align-items: center; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 245px; grid-auto-flow: dense; gap: 14px; }
.gallery__item { margin: 0; overflow: hidden; background: var(--cream); }
.gallery__item img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery__item:hover img { transform: scale(1.035); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--sunny { grid-row: span 2; }
.gallery__item--sunny img { object-position: center 38%; }
.instagram-invite { position: relative; display: flex; min-height: 660px; align-items: flex-end; justify-content: flex-end; margin-top: clamp(65px, 8vw, 105px); padding: clamp(48px, 6vw, 90px); overflow: hidden; color: var(--white); }
.instagram-invite::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20,17,15,.12), rgba(20,17,15,.78)); content: ""; }
.instagram-invite h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.4rem); font-weight: 400; line-height: 1; }
.instagram-invite__visual { position: absolute; inset: 0; }
.instagram-invite__photo { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.instagram-invite__photo img { width: 100%; height: 100%; object-fit: cover; }
.instagram-invite__photo--main img { object-position: center 52%; }
.instagram-invite__icon { width: 42px; height: 42px; margin-bottom: 34px; fill: none; stroke: var(--white); stroke-width: 1.4; }
.instagram-invite__copy { position: relative; z-index: 2; width: min(510px, 48%); }
.instagram-invite__copy h3 { margin-bottom: 28px; }
.instagram-invite__copy .eyebrow { color: #d8bda9; }
.instagram-invite__copy > p:not(.eyebrow) { max-width: 470px; margin-bottom: 28px; color: rgba(255,255,255,.78); }
.instagram-invite__copy .button { border-color: var(--white); background: var(--white); color: var(--ink); }

.reviews { background: var(--cream); }
.reviews__heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; margin-bottom: clamp(55px, 7vw, 90px); }
.reviews__heading h2 { max-width: 830px; margin-bottom: 0; }
.reviews__score { padding-left: 28px; border-left: 1px solid var(--brown); }
.reviews__score strong, .reviews__score span { display: block; }
.reviews__score strong { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; line-height: 1; }
.reviews__score span { margin-top: 8px; color: #675f59; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review { margin: 0; padding: clamp(35px, 4vw, 58px); }
.review + .review { border-left: 1px solid var(--line); }
.review p { min-height: 125px; margin-bottom: 35px; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.35; }
.review footer strong, .review footer span { display: block; }
.review footer strong { color: var(--brown); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.review footer span { margin-top: 6px; color: #746c66; font-size: .68rem; }
.reviews__action { margin-top: 35px; text-align: right; }

.booking { position: relative; min-height: 660px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.booking__image, .booking__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.booking__image { object-fit: cover; }
.booking__overlay { background: rgba(25,21,18,.58); }
.booking__content { position: relative; z-index: 2; width: min(700px, calc(100% - 48px)); }
.booking__content h2 { font-size: clamp(3.5rem, 7vw, 7rem); }
.booking__content p:not(.eyebrow) { max-width: 500px; margin: 0 auto 30px; font-family: var(--serif); font-size: 1.25rem; }

.faq { background: var(--paper-soft); }
.faq__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 125px); }
.faq__heading { position: sticky; top: 130px; align-self: start; }
.faq__heading h2 { font-size: clamp(3rem, 5vw, 5.8rem); }
.faq__heading > p:last-child { max-width: 430px; color: #655d57; }
.faq__list { border-top: 1px solid var(--line); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary { position: relative; padding: 26px 48px 26px 0; cursor: pointer; font-family: var(--serif); font-size: clamp(1.18rem, 1.8vw, 1.5rem); list-style: none; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { position: absolute; top: 22px; right: 5px; color: var(--brown); content: "+"; font-size: 1.8rem; transition: transform .25s ease; }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { max-width: 690px; padding: 0 45px 25px 0; color: #625a54; }
.faq__links { padding-top: 35px; }

.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12vw; }
.contact__heading h2 { max-width: 720px; }
.contact__heading > p:not(.eyebrow) { font-family: var(--serif); font-size: 1.35rem; }
.contact__heading .contact__parking { max-width: 500px; margin-top: 24px; font-family: var(--sans); font-size: .84rem; color: #655d57; }
.contact__details { padding-top: 36px; }
.contact__item { padding: 25px 0; border-bottom: 1px solid var(--line); }
.contact__item span, .contact__item a { display: block; }
.contact__item span { margin-bottom: 8px; color: var(--brown); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact__item a { width: fit-content; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); text-decoration: none; }
.contact__arrival { display: grid; grid-template-columns: .42fr .58fr; gap: 16px; grid-column: 1 / -1; margin-top: clamp(55px, 8vw, 100px); }
.contact__location-photo { position: relative; min-height: clamp(390px, 48vw, 570px); margin: 0; overflow: hidden; background: #171513; }
.contact__location-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact__location-photo figcaption { position: absolute; top: 24px; right: 24px; left: 24px; color: var(--white); font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.35; text-shadow: 0 2px 12px rgba(0,0,0,.72); }
.contact__map { position: relative; height: clamp(390px, 48vw, 570px); overflow: hidden; background: #d6d0c9; }
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.72) contrast(.95); }
.contact__map-caption { position: absolute; right: 22px; bottom: 22px; display: flex; gap: 35px; align-items: center; padding: 18px 22px; background: rgba(248,245,240,.94); box-shadow: 0 12px 35px rgba(26,22,19,.16); }
.contact__map-caption span { font-family: var(--serif); font-size: 1.1rem; }
.contact__map-caption a { color: var(--brown); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { padding: 70px 24px 35px; background: #1b1917; color: rgba(255,255,255,.78); text-align: center; }
.site-footer__inner { width: min(700px, 100%); margin: 0 auto; }
.site-footer img { width: 230px; margin: 0 auto 25px; }
.site-footer p { font-family: var(--serif); font-size: 1.2rem; }
.site-footer__links { display: flex; justify-content: center; gap: 28px; margin: 30px 0 50px; }
.site-footer__links a { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer small { color: rgba(255,255,255,.45); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
section:target .reveal { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --page: min(100% - 36px, 720px); }
  .site-header { min-height: 74px; padding: 14px 18px; }
  .brand { width: 150px; }
  .menu-button { position: relative; z-index: 102; display: grid; width: 46px; height: 46px; place-content: center; gap: 7px; border: 0; background: transparent; color: inherit; }
  .menu-button__line { display: block; width: 26px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] .menu-button__line:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; justify-content: center; gap: 22px; background: var(--paper-soft); color: var(--ink); font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0; text-transform: none; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav .button { margin-top: 10px; font-family: var(--sans); font-size: .72rem; }
  .site-header:has(.site-nav.is-open) .brand { position: relative; z-index: 102; filter: none; }
  .hero__location { display: none; }
  .hero__content { width: var(--page); }
  .intro__grid, .contact__grid { grid-template-columns: 1fr; gap: 35px; }
  .intro__copy { padding-top: 0; }
  .place-story { min-height: auto; padding: 50px 18px; }
  .place-story__photo--large { width: 88%; height: 560px; }
  .place-story__card { position: relative; top: auto; right: auto; width: 85%; margin: -95px 0 0 auto; }
  .place-story__photo--detail { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .visit-steps { grid-template-columns: 1fr 1fr; }
  .visit-step:nth-child(3) { border-left: 0; }
  .visit-step:nth-child(n+3) { border-top: 1px solid var(--line); }
  .service { grid-template-columns: 48px 1fr; gap: 20px; }
  .service p { grid-column: 2; }
  .service-picker { grid-template-columns: 1fr; }
  .service-picker > .button { grid-column: 1; }
  .treatments-guide { grid-template-columns: 1fr; gap: 20px; }
  .color-care { grid-template-columns: 1fr; }
  .treatments { grid-template-columns: 1fr; gap: 45px; }
  .treatments--list-only .treatment-list { width: 100%; }
  .treatments__intro { position: static; }
  .aftercare__heading { grid-template-columns: 1fr; gap: 20px; }
  .aftercare__grid { grid-template-columns: 1fr 1fr; }
  .aftercare__item:nth-child(3) { border-left: 0; }
  .aftercare__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.22); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .instagram-invite__copy { width: min(540px, 62%); }
  .reviews__heading { grid-template-columns: 1fr; gap: 35px; }
  .faq__layout { grid-template-columns: 1fr; gap: 45px; }
  .faq__heading { position: static; }
  .contact__details { padding-top: 0; }
  .contact__arrival { grid-template-columns: 1fr; }
  .contact__location-photo { min-height: 520px; }
  .team__intro { grid-template-columns: 1fr; gap: 25px; }
  .team__portraits { grid-template-columns: 1.05fr .95fr; grid-template-rows: auto; }
  .person--featured { grid-row: 1 / span 2; }
  .person--natasza { grid-column: 2; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 32px); }
  body { font-size: 15px; }
  h2 { margin-bottom: 22px; }
  .section { padding: 82px 0; }
  .hero { min-height: 760px; align-items: end; }
  .hero__image { object-position: 58% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(18,16,14,.82) 0%, rgba(18,16,14,.32) 75%); }
  .hero__content { padding: 125px 0 75px; }
  .hero h1 { font-size: clamp(3.55rem, 18vw, 5rem); }
  .hero__lead { font-size: 1.12rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .intro__copy .lead { font-size: 1.25rem; }
  .place-story { padding: 28px 0 70px; }
  .place-story__photo--large { width: 100%; height: 470px; }
  .place-story__card { width: calc(100% - 32px); margin: -55px auto 0; padding: 35px 26px; }
  .place-story__card h2 { font-size: 2.65rem; }
  .section-heading { margin-bottom: 45px; }
  .visit-steps { grid-template-columns: 1fr; }
  .visit-moments { grid-template-columns: 1fr 1fr; grid-template-rows: 340px auto; }
  .visit-moments__main { grid-column: 1 / -1; grid-row: auto; }
  .visit-moments > p { padding: 18px; }
  .visit-step, .visit-step + .visit-step { padding: 27px 0; border-top: 1px solid var(--line); border-left: 0; }
  .visit-step:first-child { border-top: 0; }
  .service { grid-template-columns: 36px 1fr; padding: 27px 0; }
  .service h3 { font-size: 2rem; }
  .service-picker { margin-inline: -16px; padding: 48px 26px; }
  .service-picker__options div { grid-template-columns: 1fr; gap: 7px; }
  .treatments-guide { margin-top: 70px; padding-top: 65px; }
  .color-care { margin-inline: -16px; margin-top: 42px; }
  .color-care__story, .color-care__details { padding: 55px 26px; }
  .color-care__story h3 { font-size: 4.2rem; }
  .treatments { margin-top: 70px; padding-top: 65px; }
  .treatment summary { grid-template-columns: 1fr; gap: 7px; padding-right: 42px; }
  .treatment__body { padding: 0 35px 25px 0; }
  .aftercare { margin-inline: -16px; padding: 55px 26px; }
  .aftercare__grid { grid-template-columns: 1fr; }
  .aftercare__item, .aftercare__item + .aftercare__item { padding: 25px 0; border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .aftercare__item:first-child { border-top: 0; }
  .services__action { text-align: left; }
  .team__portraits { grid-template-columns: 1fr 1fr; gap: 30px 12px; }
  .person--featured { grid-column: 1 / span 2; grid-row: auto; }
  .person--featured .person__photo { aspect-ratio: 1 / 1.08; }
  .person--agnieszka, .person--ewelina, .person--natasza { grid-column: auto; }
  .person--natasza { grid-column: 1 / span 2; width: calc(50% - 6px); margin-left: auto; }
  .person:not(.person--featured) .person__photo { aspect-ratio: 4 / 5; }
  .person__photo { margin-bottom: 14px; padding: 3px; }
  .person__photo::after { inset: 3px; }
  .person__caption h3 { font-size: 2rem; }
  .person__role { font-size: .57rem; letter-spacing: .11em; }
  .person__quote { padding-left: 30px; }
  .person__quote::before { font-size: 4rem; }
  .person__quote p { font-size: 1.08rem; }
  .team__note { margin-top: 45px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 205px; gap: 9px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .instagram-invite { min-height: 720px; margin-inline: -16px; padding: 48px 26px; }
  .instagram-invite::after { background: linear-gradient(0deg, rgba(20,17,15,.88), rgba(20,17,15,.08) 78%); }
  .instagram-invite__photo--main img { object-position: 44% center; }
  .instagram-invite__copy { width: 100%; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review + .review { border-top: 1px solid var(--line); border-left: 0; }
  .review p { min-height: auto; }
  .reviews__action { text-align: left; }
  .faq__list details p { padding-right: 20px; }
  .contact__arrival { margin-inline: -16px; }
  .contact__location-photo { min-height: 470px; }
  .contact__map { height: 470px; }
  .contact__map-caption { right: 12px; bottom: 12px; left: 12px; align-items: flex-start; flex-direction: column; gap: 5px; }
  .booking { min-height: 580px; }
  .contact__item a { overflow-wrap: anywhere; }
  .site-footer img { width: 190px; }
}

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