/* ============================================================
   Skin Touch — concept V2
   Design language: "diskret luksus". The arch is the signature;
   everything else is sharp (2px buttons, 6px cards) so the arch
   reads as deliberate architecture, not general roundness.
   ============================================================ */
:root {
  color-scheme: light;
  --sand:      #f4efe8;
  --sand-2:    #ece4d9;
  --paper:     #fbf9f6;
  --wash:      #f3f1ec;
  --ink:       #241d17;
  --ink-2:     #55524b;
  --ink-soft:  #7d6f62;   /* darkened from #8b7d70: holds 4.5:1 on sand at small sizes */
  --hairline:  #e9e6df;
  --hairline-2:#d9d5cb;
  --line:      var(--hairline-2);
  --line-soft: var(--hairline);
  --clay:      #a9714f;   /* bronze — brand chrome only */
  --clay-deep: #7c5436;
  --clay-dim:  rgba(169,113,79,0.09);
  --gold:      #d8a983;   /* dark-band accent only */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --gut: clamp(20px, 5vw, 76px);
  --r-arch: 300px;
  --r-card: 6px;
  --r-btn: 2px;
  --sp-section: clamp(64px, 9vw, 132px);
  --sp-head: clamp(32px, 4vw, 56px);
  --serif-scale: 1;
}
/* Cormorant runs optically small and light; scale display sizes back up. */
html[data-type="cormorant"] { --serif-scale: 1.07; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-weight: 300; font-size: 16.5px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
/* paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.06; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 var(--gut); }
.eyebrow {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 400;
  color: var(--clay-deep);
}
.rule { display: inline-block; width: 30px; height: 1px; background: var(--clay); vertical-align: middle; margin-right: 12px; }
.rule-gold { background: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  padding: 16px 30px; border-radius: var(--r-btn); border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  cursor: pointer; transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.btn.ghost { background: none; color: var(--ink); border-color: var(--hairline-2); }
.btn.ghost:hover { border-color: var(--ink); background: none; color: var(--ink); }
.btn.light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.light:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.btn.outline-light { background: none; border-color: rgba(244,239,232,.34); color: var(--sand); }
.btn.outline-light:hover { background: none; border-color: var(--gold); color: var(--gold); }

/* ---------- utility bar ---------- */
.ann {
  background: var(--ink); color: var(--sand); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; padding: 0 var(--gut); min-height: 42px;
  display: flex; align-items: center; justify-content: center; gap: 30px; position: relative;
}
.ann b { color: #fff; font-weight: 400; }
.ann a { color: inherit; display: inline-flex; align-items: center; min-height: 42px; }
.ann-rotor { position: relative; height: 42px; flex: 0 1 auto; min-width: 0; width: min(640px, 100%); }
.ann-rotor span {
  position: absolute; inset: 0; display: block; line-height: 42px;
  text-align: center; opacity: 0; transition: opacity 1.1s var(--ease);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ann-rotor span.on { opacity: 1; }
.ann-side { display: flex; align-items: center; gap: 14px; position: absolute; right: var(--gut); color: #a2948a; }
.ann-side a:hover { color: var(--gold); }
@media (max-width: 900px) { .ann-side { display: none; } }
@media (max-width: 620px) { .ann { font-size: 10px; letter-spacing: .07em; padding: 0 10px; } }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 60; background: rgba(251,249,246,.86);
  backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .4s, background .4s;
}
header.stuck { border-bottom-color: var(--hairline); }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 18px 0; }
.logo { font-family: var(--serif); font-size: calc(24px * var(--serif-scale)); letter-spacing: .04em; display: inline-flex; align-items: center; min-height: 44px; }
.logo em { font-style: italic; color: var(--clay-deep); }
.logo-lg { font-size: calc(27px * var(--serif-scale)); }
nav.main { display: flex; gap: 30px; font-size: 13.5px; letter-spacing: .04em; }
nav.main a { position: relative; padding: 4px 0; color: var(--ink-2); }
nav.main a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--clay);
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
nav.main a:hover { color: var(--ink); }
nav.main a:hover::after { transform: scaleX(1); transform-origin: left; }
.bar .btn { padding: 13px 24px; }
.burger {
  display: none; background: none; border: 0; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; cursor: pointer; min-height: 44px; padding: 0 6px; color: var(--ink);
}
.sheet {
  position: fixed; inset: 0; z-index: 80; background: var(--paper); padding: 26px var(--gut);
  display: none; flex-direction: column; gap: 6px;
}
.sheet.open { display: flex; }
.sheet .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.sheet a.item {
  font-family: var(--serif); font-size: calc(34px * var(--serif-scale)); padding: 12px 0; border-bottom: 1px solid var(--hairline);
}
.sheet .btn { margin-top: 28px; justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -14vw; top: -12vw; width: 46vw; height: 46vw; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(169,113,79,.14), rgba(169,113,79,0) 66%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 74px); align-items: center; }
.hero h1 { font-size: calc(clamp(48px, 8vw, 110px) * var(--serif-scale)); margin: 20px 0 0; }
.hero h1 em, .sec-head h2 em { font-style: italic; color: var(--clay-deep); }
.hero .lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2); max-width: 46ch; margin: 28px 0 0; }
.hero .acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 1/1; max-height: min(68vh, 600px);
  object-fit: cover; object-position: 50% 30%;
  border-radius: var(--r-arch) var(--r-arch) 18px 18px;
  filter: saturate(.92) contrast(1.02);
}
.hero-media .badge {
  position: absolute; left: -26px; bottom: 34px; background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-btn); padding: 14px 22px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 22px 50px rgba(36,29,23,.10);
}
.hero-media .badge b { font-family: var(--serif); font-size: 20px; letter-spacing: 0; margin-right: 8px; font-weight: 400; }

/* ---------- signature technology ---------- */
.tech { background: var(--sand); border-block: 1px solid var(--hairline); }
.tech-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.tech h2 { font-size: calc(clamp(34px, 4.8vw, 62px) * var(--serif-scale)); margin: 14px 0 0; max-width: 16ch; }
.tech h2 em { font-style: italic; color: var(--clay-deep); }
.tech .prose-t p { color: var(--ink-2); margin: 22px 0 0; max-width: 56ch; }
.tech-chips { display: grid; gap: 12px; }
.tech-chips > div {
  border: 1px solid var(--hairline-2); border-radius: var(--r-btn); background: var(--paper);
  padding: 20px 24px;
}
.tech-chips .k { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.tech-chips .v { font-family: var(--serif); font-size: calc(24px * var(--serif-scale)); margin-top: 4px; }
.tech .acts { margin-top: 34px; }

/* ---------- ambassadors ---------- */
.faces { padding: var(--sp-section) 0; }
.face-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(10px, 1.4vw, 20px);
  margin-top: var(--sp-head);
}
.face { margin: 0; min-width: 0; }
.face img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: 50% 20%;
  border-radius: 999px 999px var(--r-card) var(--r-card); filter: saturate(.94);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.face:hover img { transform: translateY(-4px); filter: saturate(1); }
.face figcaption {
  margin-top: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); text-align: center; line-height: 1.35;
}
.face-quote { margin: clamp(40px, 5vw, 64px) auto 0; max-width: 780px; text-align: center; }
.face-quote .stars { color: var(--clay); letter-spacing: .24em; font-size: 12px; }
.face-quote blockquote {
  margin: 18px 0 0; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: calc(clamp(22px, 2.8vw, 34px) * var(--serif-scale)); line-height: 1.3; letter-spacing: -.01em; color: var(--ink);
}
.face-quote .who { margin-top: 18px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

/* #laserbabes marquee — one slow, quiet pass. If it catches the eye on first
   scroll, it is too fast. */
.marq { border-top: 1px solid var(--hairline); overflow: hidden; padding: 18px 0 0; margin-top: clamp(40px, 5vw, 64px); }
.marq-inner { display: flex; width: max-content; animation: slide 70s linear infinite; }
.marq span {
  font-family: var(--serif); font-size: calc(clamp(17px, 1.8vw, 22px) * var(--serif-scale)); font-style: italic; color: var(--ink-soft);
  padding: 0 28px; white-space: nowrap;
}
.marq span::after { content: "\2022"; color: var(--clay); margin-left: 28px; font-style: normal; opacity: .5; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- trust ---------- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); }
.trust > div { background: var(--paper); padding: clamp(30px, 4vw, 52px) clamp(20px, 3vw, 44px); }
.trust h3 { font-size: calc(clamp(21px, 2vw, 27px) * var(--serif-scale)); margin: 14px 0 8px; }
.trust p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- sections ---------- */
section { position: relative; }
.sec-pad { padding: var(--sp-section) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: var(--sp-head); }
.sec-head h2 { font-size: calc(clamp(34px, 5vw, 64px) * var(--serif-scale)); margin: 14px 0 0; max-width: 18ch; }
.sec-head p { margin: 0; max-width: 38ch; color: var(--ink-2); font-size: 15.5px; }
.h2-md { font-size: calc(clamp(30px, 4.2vw, 52px) * var(--serif-scale)); margin: 14px 0 0; }

/* ---------- treatment cards ---------- */
.treat { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 30px); }
.card { position: relative; background: var(--paper); }
.card .shot { position: relative; overflow: hidden; border-radius: var(--r-card); }
.card .shot img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .8s var(--ease); filter: saturate(.9);
}
.card:hover .shot img { transform: scale(1.055); filter: saturate(1); }
.card .no { position: absolute; top: 14px; left: 16px; font-family: var(--serif); font-size: 13px; color: #fff; mix-blend-mode: difference; letter-spacing: .1em; }
.card h3 { font-size: calc(clamp(22px, 2.1vw, 28px) * var(--serif-scale)); margin: 18px 0 6px; }
.card p { margin: 0 0 12px; font-size: 14.5px; color: var(--ink-soft); min-height: 3.2em; }
.card .from { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-deep); }
.card .arrow { float: right; transition: transform .5s var(--ease); }
.card:hover .arrow { transform: translateX(6px); }
.tile-all {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: clamp(18px, 2.4vw, 32px); padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 40px);
  background: var(--sand); border: 1px solid var(--hairline); border-radius: var(--r-card);
  transition: border-color .4s var(--ease);
}
.tile-all:hover { border-color: var(--clay); }
.tile-all .t { font-family: var(--serif); font-size: calc(clamp(22px, 2.6vw, 32px) * var(--serif-scale)); }
.tile-all .t em { font-style: italic; color: var(--clay-deep); }
.tile-all .arrow { font-size: 22px; color: var(--clay-deep); transition: transform .5s var(--ease); }
.tile-all:hover .arrow { transform: translateX(8px); }

/* ---------- split / why ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.split img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-card); }
.why { list-style: none; margin: 34px 0 0; padding: 0; }
.why li { border-top: 1px solid var(--hairline); padding: 22px 0; display: grid; grid-template-columns: 42px 1fr; gap: 18px; }
.why li:last-child { border-bottom: 1px solid var(--hairline); }
.why .k { font-family: var(--serif); font-size: 13px; color: var(--clay); padding-top: 5px; }
.why h4 { margin: 0 0 4px; font-family: var(--serif); font-weight: 400; font-size: calc(21px * var(--serif-scale)); letter-spacing: -.01em; }
.why p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- founder quote ---------- */
.quote { background: var(--sand); }
.quote blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: calc(clamp(26px, 3.6vw, 47px) * var(--serif-scale)); line-height: 1.22; letter-spacing: -.02em; max-width: 20ch;
}
.quote .sig { margin-top: 30px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.quote-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.quote-mark { text-align: center; }
.quote-mark .g { font-family: var(--serif); font-size: clamp(64px, 9vw, 120px); line-height: .9; color: var(--clay); opacity: .5; }
.quote-mark p { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 18px; }

/* ---------- reviews ---------- */
.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.rev { border: 1px solid var(--hairline); border-radius: var(--r-card); padding: clamp(24px, 2.6vw, 36px); background: var(--paper); }
.rev .stars { color: var(--clay); letter-spacing: .22em; font-size: 12px; }
.rev p { font-family: var(--serif); font-size: calc(19px * var(--serif-scale)); line-height: 1.45; font-style: italic; color: var(--ink-2); margin: 16px 0 20px; }
.rev .who { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- prices ---------- */
.prices { background: var(--sand); }
.price-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 74px); align-items: start; }
.plist { margin: 0; }
.plist div {
  display: flex; align-items: baseline; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--hairline-2);
}
.plist dt { font-size: 16px; }
.plist .dots { flex: 1 1 auto; border-bottom: 1px dotted var(--hairline-2); transform: translateY(-4px); }
.plist dd { margin: 0; font-family: var(--serif); font-size: calc(19px * var(--serif-scale)); }
.price-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 22px; max-width: 42ch; }
/* /priser/ page */
.price-sec { border-top: 1px solid var(--hairline); padding: clamp(28px, 3.4vw, 44px) 0; }
.price-sec:last-of-type { border-bottom: 1px solid var(--hairline); }
.price-sec-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.price-sec h3 { font-size: calc(clamp(24px, 2.6vw, 32px) * var(--serif-scale)); margin: 0 0 6px; }
.price-sec h3 a { transition: color .4s var(--ease); }
.price-sec h3 a:hover { color: var(--clay-deep); }
.price-sec .sub { font-size: 13.5px; color: var(--ink-soft); max-width: 34ch; }
.plist-group + .plist-group { margin-top: clamp(26px, 3vw, 38px); }
.plist-group h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500; margin: 0 0 6px;
}
.price-foot { font-size: 13px; color: var(--ink-soft); margin: clamp(26px, 3vw, 38px) 0 0; }

/* ---------- Gecko booking embed (/book/) ---------- */
.gecko { min-height: 620px; }
.gecko iframe { display: block; width: 100%; border: 0; min-height: 620px; }
.price-foot a { border-bottom: 1px solid var(--hairline-2); }
.price-foot a:hover { color: var(--clay-deep); }

/* ---------- booking band ---------- */
.book { background: var(--ink); color: var(--sand); }
.book h2 { font-size: calc(clamp(34px, 5vw, 66px) * var(--serif-scale)); color: var(--paper); max-width: 16ch; margin: 16px 0 0; }
.book h2 em { font-style: italic; color: var(--gold); }
.book-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: end; }
.book .eyebrow { color: var(--gold); }
.book-acts { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.facts { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }
.facts li { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(244,239,232,.16); }
.facts span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #a2948a; padding-top: 3px; }

/* ---------- footer ---------- */
footer { padding: clamp(44px, 5vw, 70px) 0 40px; border-top: 1px solid var(--hairline); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-blurb { max-width: 34ch; color: var(--ink-soft); font-size: 14.5px; margin-top: 14px; }
footer h5 { margin: 0 0 14px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; }
footer a { display: flex; align-items: center; min-height: 44px; padding: 4px 0; font-size: 14.5px; color: var(--ink-2); }
footer a:hover { color: var(--clay-deep); }
/* payment marks in the footer: which methods the clinic accepts (online trade via Gecko) */
.pay { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pay-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.pay ul { display: flex; align-items: center; gap: 14px; list-style: none; margin: 0; padding: 0; }
.pay li { display: flex; }
.pay img { height: 22px; width: auto; display: block; }
.pay img[alt="Mastercard"] { height: 26px; }
.pay img[alt="MobilePay"] { height: 18px; }
.pay p { font-size: 12.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 620px) { .pay { gap: 10px; } .pay p { flex-basis: 100%; } }
/* legal links sit inline in the base row (footer a is flex for tap targets elsewhere) */
.foot-base a { display: inline; min-height: 0; padding: 0; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.foot-base a:hover { color: var(--clay-deep); }
.foot-base { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; gap: 20px; font-size: 12.5px; color: var(--ink-soft); flex-wrap: wrap; }

/* ---------- inner-page hero / treatment pages ---------- */
.crumb { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding-top: 30px; }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--clay-deep); }
.tp-hero { padding: 22px 0 clamp(44px, 6vw, 78px); }
.tp-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.tp-hero h1 { font-size: calc(clamp(40px, 6vw, 80px) * var(--serif-scale)); margin: 16px 0 0; }
.tp-hero h1 em { font-style: italic; color: var(--clay-deep); }
.tp-hero .lede { font-size: clamp(16px, 1.3vw, 18.5px); color: var(--ink-2); max-width: 46ch; margin: 24px 0 0; }
.tp-hero img {
  width: 100%; aspect-ratio: 1/1; max-height: min(64vh, 560px);
  object-fit: cover; object-position: var(--focus, 50% 32%); border-radius: 260px 260px 16px 16px;
}
.meta-row { display: flex; flex-wrap: wrap; gap: 0; margin: 32px 0 0; border-top: 1px solid var(--hairline); }
.meta-row div { flex: 1 1 140px; padding: 16px 20px 16px 0; border-bottom: 1px solid var(--hairline); }
.meta-row .k { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.meta-row .v { font-family: var(--serif); font-size: calc(21px * var(--serif-scale)); margin-top: 4px; }
.tp-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.prose { max-width: 62ch; }
.prose h2 { font-size: calc(clamp(28px, 3.4vw, 42px) * var(--serif-scale)); margin: 0 0 18px; }
.prose p { color: var(--ink-2); margin: 0 0 18px; }
/* legal pages: many short sections, so smaller headings and visible links */
.prose.legal h2 { font-size: calc(clamp(22px, 2.2vw, 28px) * var(--serif-scale)); margin: 38px 0 12px; }
.prose.legal h2:first-child { margin-top: 0; }
.prose.legal ul { color: var(--ink-2); margin: 0 0 18px; padding-left: 20px; }
.prose.legal li { margin: 4px 0; }
.prose.legal a { border-bottom: 1px solid var(--hairline-2); }
.prose.legal a:hover { color: var(--clay-deep); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 30px); }
.steps li { border-top: 1px solid var(--hairline-2); padding-top: 20px; }
.steps .n { font-family: var(--serif); font-size: 13px; color: var(--clay); letter-spacing: .1em; }
.steps h4 { font-family: var(--serif); font-weight: 400; font-size: calc(22px * var(--serif-scale)); margin: 10px 0 6px; letter-spacing: -.01em; }
.steps p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

.suits { list-style: none; margin: 26px 0 0; padding: 0; }
.suits li { padding: 13px 0 13px 30px; border-bottom: 1px solid var(--hairline); position: relative; color: var(--ink-2); }
.suits li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 12px; height: 1px; background: var(--clay); }

/* Retouch-style long-form care columns */
.care { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); }
.care h3 { font-size: calc(clamp(22px, 2.4vw, 30px) * var(--serif-scale)); margin: 0 0 14px; }
.care p { color: var(--ink-2); font-size: 15px; margin: 0 0 14px; max-width: 52ch; }

.faq { border-top: 1px solid var(--hairline-2); }
.faq details { border-bottom: 1px solid var(--hairline-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--serif); font-size: calc(clamp(19px, 2vw, 24px) * var(--serif-scale)); letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 21px; font-family: var(--sans); font-size: 22px;
  color: var(--clay); transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 40px 24px 0; color: var(--ink-2); max-width: 68ch; margin: 0; }

.more { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.more a {
  border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 22px 24px; background: var(--paper);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.more a:hover { border-color: var(--clay); transform: translateY(-3px); }
.more .t { font-family: var(--serif); font-size: calc(22px * var(--serif-scale)); }
.more .p { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

/* ---------- reveal (gated on .js: content never depends on animation) ---------- */
.js .rise { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .rise.in { opacity: 1; transform: none; }
.js .hero .rise { transition-delay: var(--d, 0ms); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .quote-grid, .price-grid, .book-grid, .tech-grid, .care, .price-sec-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { max-height: 56vh; border-radius: 220px 220px 16px 16px; }
  .treat, .revs { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; }
  nav.main { display: none; }
  .burger { display: inline-block; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .face-row {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); padding-bottom: 6px;
  }
  .face { flex: 0 0 44vw; max-width: 210px; scroll-snap-align: start; }
  .tech-chips { grid-template-columns: repeat(3, 1fr); }
  .tp-hero .tp-media { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .more { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .treat, .revs, .tech-chips { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr; }
  .card p { min-height: 0; }
  .hero-media .badge { left: 0; bottom: -18px; }
  .tile-all { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rise { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .ann-rotor span { opacity: 0; }
  .ann-rotor span.on { opacity: 1; }
}

/* ---------- staff (Mød klinikken) ---------- */
.staff-grid { display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.staff-grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 18%;
  border-radius: 999px 999px var(--r-card) var(--r-card); filter: saturate(.95);
}
@media (max-width: 980px) {
  .staff-grid { grid-template-columns: 1fr; }
  .staff-grid img { max-width: 300px; }
  .hero-pair img:last-of-type { transform: translateY(10px); }
}

/* ---------- header dropdown (Behandlinger) ---------- */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 7px; }
.nav-drop > a::before {
  content: ""; order: 2; width: 7px; height: 7px; margin-top: -3px;
  border-right: 1px solid var(--ink-soft); border-bottom: 1px solid var(--ink-soft);
  transform: rotate(45deg); transition: transform .4s var(--ease);
}
.nav-drop:hover > a::before, .nav-drop:focus-within > a::before { transform: rotate(225deg); margin-top: 3px; }
.drop {
  position: absolute; top: 100%; left: -18px; z-index: 70; min-width: 250px;
  /* top-padding bridges the hover gap between link and panel */
  padding: 14px 0 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
}
.nav-drop:hover .drop, .nav-drop:focus-within .drop {
  opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
}
.drop::before {
  content: ""; position: absolute; inset: 14px 0 0; z-index: -1;
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-card); box-shadow: 0 24px 54px rgba(36,29,23,.13), 0 3px 9px rgba(36,29,23,.05);
}
/* nav.main prefix: must outweigh nav.main a (per-property cascade stole the padding) */
nav.main .drop a {
  display: block; padding: 11px 20px; font-size: 13.5px; color: var(--ink-2);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.drop a:first-of-type { margin-top: 8px; }
/* neutralize the nav underline animation inside the panel */
.drop a::after { display: none; }
.drop a:hover { background: var(--wash); color: var(--ink); }
nav.main .drop a.drop-all {
  margin: 8px 0 0; padding: 13px 20px 15px; border-top: 1px solid var(--hairline);
  font-family: var(--serif); font-size: calc(15.5px * var(--serif-scale)); font-style: italic; color: var(--clay-deep);
}
@media (prefers-reduced-motion: reduce) {
  .drop { transition: none; }
}

/* ---------- hero v3 — Retouch-inspired stage, Skin Touch identity ----------
   The pair is BIG: one shared arch masks both portraits, the mask bleeds to
   the right viewport edge and sits flush on the hero's bottom edge, grounding
   into the sand tech-band below. Text column stays aligned with .wrap. */
.hero-v3 { padding: 0; }
.hero-grid3 {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 64px); align-items: stretch;
  padding-left: max(var(--gut), calc(50vw - 660px + var(--gut)));
}
.hero-copy { align-self: center; max-width: 600px; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); }
.hero-stage { position: relative; align-self: end; display: flex; align-items: flex-end; }
.pair-mask {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; width: 100%;
  border-radius: min(21vw, 290px) min(21vw, 290px) 0 0; overflow: hidden;
  margin-top: clamp(40px, 6vw, 80px);
}
.pair-mask img {
  width: 100%; height: clamp(400px, 60vh, 640px);
  object-fit: cover; object-position: 50% 16%;
  filter: saturate(.94) contrast(1.01);
}
.hero-stage .badge {
  position: absolute; left: clamp(-14px, -1vw, -8px); bottom: 34px;
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-btn); padding: 14px 22px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 22px 50px rgba(36,29,23,.10);
}
.hero-stage .badge b { font-family: var(--serif); font-size: 20px; letter-spacing: 0; margin-right: 8px; font-weight: 400; }
@media (max-width: 980px) {
  .hero-grid3 { grid-template-columns: 1fr; padding-inline: var(--gut) 0; gap: 0; }
  .hero-copy { padding: clamp(36px, 6vw, 60px) var(--gut) clamp(30px, 5vw, 48px) 0; max-width: none; }
  .hero-stage { margin-left: calc(var(--gut) * -1); }
  .pair-mask { margin-top: 0; border-radius: min(30vw, 220px) 0 0 0; }
  .pair-mask img { height: clamp(300px, 46vh, 460px); }
  .hero-stage .badge { left: 0; bottom: 20px; }
}
