:root {
  --seam: 90px;             /* blød overgangszone mellem creme og tonede sektioner */
  --bg: #1E0E06;
  --bg-2: #301A0C;          /* lysnet et trin ift. bg, så kort/bokse faktisk skiller sig ud */
  --bg-3: #402412;
  --line: #6B4426;          /* lysnet markant — usynlige kant-linjer var en del af "boks"-problemet */
  --line-soft: #3E2410;
  --peach: #E8B080;
  --peach-2: #C89060;
  --peach-3: #B87A46;       /* lysnet fra #7A4820 (kontrast 2.5:1 → 5.3:1) — brugtes til labels/roller der var ulæselige */
  --peach-4: #5A3018;
  --text: #C8A078;
  --text-soft: #B08A64;     /* lysnet fra #7A5838 (kontrast 2.9:1 → ~6:1, WCAG AA) */
  --text-faint: #967D5E;    /* lysnet fra #4A2810 (kontrast 1.4:1 → ~4.5:1, WCAG AA) */
  --good: #9AAB8E;
  --gold: #E8C264;          /* warm yellow-gold for celestial accents (dark mode) */
  --gold-soft: #F2D88E;     /* lighter, glowy gold */
  --serif: 'Prata', 'Times New Roman', serif;
  --sans: 'Jost', system-ui, sans-serif;
  --max: 1280px;
  --gutter: 32px;
  --section-py: 120px;
}
/* ---------- DAY MODE ----------
   Levende, lys og feminin, et lille tvist af eventyr og glade dage.
   Cremehvid baggrund, rosé/peach toner, salviegrøn accent.
   Alle tekstfarver er testet for læsbarhed (WCAG AA) på cremebaggrunden.
*/
[data-theme="light"] {
  --bg: #FAF3E9;            /* varm cremehvid */
  --bg-2: #EFDFC8;          /* blød rosé/peach, lidt mere mættet */
  --bg-3: #E3CAA8;          /* peach-creme, klar adskillelse */
  --line: #B89070;
  --line-soft: #D5B894;
  --peach: #7A2E0E;         /* dyb mørk terrakotta — primær læsbar accent */
  --peach-2: #93431B;       /* sekundær terrakotta */
  --peach-3: #A85A2C;       /* tertiær terrakotta — bruges KUN på store flader/decorationer ikke små labels */
  --peach-4: #C77A4D;       /* dekorativ */
  --text: #1F0D04;          /* nær-sort chokolade, maksimal læsbarhed */
  --text-soft: #44210E;     /* dyb brun, tydelig på cremebaggrund */
  --text-faint: #5C3018;    /* mørk peach-brun, sikkert AA på creme */
  --good: #3F5A3B;          /* mørk salviegrøn, eventyr/glade dage */
  --rose: #C57068;          /* dybere rosa-accent, blomsten i dag-mode */
  --bloom-center: #6B8460;  /* salviegrøn blomsterhjerte i dag-mode */
  --gold: #B8862A;          /* dyb honninggul, læsbar på creme */
  --gold-soft: #D4A84A;     /* lysere honninggul, dekorativ */
}
[data-theme="dark"] {
  --bloom-center: var(--bg);
}

/* Day-mode contrast overrides
   In day mode --peach-3 is reserved for decorative use only.
   Small labels, eyebrows and meta text use --peach-2 (mellem terrakotta) for AA contrast on creme. */
[data-theme="light"] .eyebrow,
[data-theme="light"] .credential-photo .ph-tag,
[data-theme="light"] .hero-photo .ph-tag,
[data-theme="light"] .lang-pill button,
[data-theme="light"] .chip,
[data-theme="light"] .t-card .num,
[data-theme="light"] .t-card .cat,
[data-theme="light"] .t-card .arr,
[data-theme="light"] .t-card .learn,
[data-theme="light"] .tm-num,
[data-theme="light"] .tm-stat-label,
[data-theme="light"] .tm-se-block h5,
[data-theme="light"] .tm-back,
[data-theme="light"] .ba-label,
[data-theme="light"] .credential-meta,
[data-theme="light"] .credential-tag,
[data-theme="light"] .cert-name,
[data-theme="light"] .team-card .role,
[data-theme="light"] .review .author,
[data-theme="light"] .field .lb,
[data-theme="light"] .blog-card .meta,
[data-theme="light"] .faq summary .x,
[data-theme="light"] .price-head .x,
[data-theme="light"] .gift-card-art .sub,
[data-theme="light"] .gift-card-art .from,
[data-theme="light"] .contact-info dt,
[data-theme="light"] .scroll-ind { color: var(--peach-2); }

/* Soft borders on hover/decorative chrome can stay --peach-3 since the *text* contrast is what matters */
[data-density="compact"] {
  --section-py: 90px;
  --gutter: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}

::selection { background: var(--peach); color: var(--bg); }

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--peach-2);
}

.serif-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--peach);
  font-style: normal;
}
.serif-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--peach-2);
}

.h1 { font-size: clamp(54px, 8vw, 120px); }
.h2 { font-size: clamp(38px, 5vw, 68px); }
.h3 { font-size: clamp(26px, 3vw, 38px); }

.body-l {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 56ch;
  font-weight: 300;
}
.body-m { font-size: 15px; line-height: 1.7; color: var(--text); }
.body-s { font-size: 13px; line-height: 1.6; color: var(--text-soft); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--peach-3);
  color: var(--peach);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--peach); color: var(--bg); border-color: var(--peach); }
.btn .arr { transition: transform .4s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn--solid { background: var(--peach); color: var(--bg); border-color: var(--peach); }
.btn--solid:hover { background: var(--peach-2); border-color: var(--peach-2); }

[data-btn-style="pill"] .btn { border-radius: 999px; padding: 16px 30px; }
[data-btn-style="square"] .btn { border-radius: 0; }
[data-btn-style="soft"] .btn { border-radius: 6px; }
[data-btn-style="ghost"] .btn { border: 0; padding-left: 0; padding-right: 0; gap: 18px; }
[data-btn-style="ghost"] .btn::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px; background: var(--peach-3);
  transition: background .3s;
}
[data-btn-style="ghost"] .btn:hover { background: none; color: var(--peach); }
[data-btn-style="ghost"] .btn:hover::after { background: var(--peach); }

/* ---------- LOGO BLOOM ---------- */
.bloom { display: inline-block; line-height: 0; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding .4s ease, background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--peach);
}
.nav-logo .sub {
  font-size: 8px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--peach-3);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach-2);
  transition: color .3s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--peach); }
.nav-links a::after {
  content:""; position:absolute; left:50%; bottom:0;
  width: 0; height: 1px; background: var(--peach);
  transition: width .3s ease, left .3s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-side { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--peach-2);
  transition: all .3s;
}
.icon-btn:hover { color: var(--peach); border-color: var(--peach-3); background: var(--bg-2); }
.lang-pill {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px;
}
.lang-pill button {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; color: var(--peach-3); transition: all .3s;
}
.lang-pill button.on { background: var(--peach); color: var(--bg); }

.section.section--team { padding-top: 0; }
.section.section--fteaser { padding: 0 0 var(--section-py); }
.fteaser { display: flex; align-items: center; gap: 18px; padding: 22px 26px; border: 1px solid color-mix(in oklch, var(--line) 80%, transparent); border-radius: 3px; background: color-mix(in oklab, var(--bg-2) 55%, transparent); }
.fteaser__mark { flex: 0 0 auto; color: var(--good); display: flex; }
.fteaser__text { flex: 1 1 auto; margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-soft); }
.fteaser__link { flex: 0 0 auto; font-size: 13px; letter-spacing: .02em; color: var(--peach); text-decoration: none; border-bottom: 1px solid color-mix(in oklch, var(--peach) 35%, transparent); transition: border-color .2s; }
.fteaser__link:hover { border-bottom-color: var(--peach); }
@media (max-width: 700px) { .fteaser { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, color-mix(in oklab, var(--peach) 14%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, color-mix(in oklab, var(--peach-3) 22%, transparent), transparent 60%);
}
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 80% 30%, color-mix(in oklab, var(--peach-2) 22%, transparent), transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 95%, color-mix(in oklab, var(--rose, var(--peach-3)) 32%, transparent), transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 90%, color-mix(in oklab, var(--good) 14%, transparent), transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNjAnIGhlaWdodD0nMTYwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nLjknIG51bU9jdGF2ZXM9JzInIHN0aXRjaFRpbGVzPSdzdGl0Y2gnLz48ZmVDb2xvck1hdHJpeCB2YWx1ZXM9JzAgMCAwIDAgMC45MSAwIDAgMCAwIDAuNjkgMCAwIDAgMCAwLjUgMCAwIDAgMC4xOCAwJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoJTIzbiknLz48L3N2Zz4=");
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach-2);
  margin-bottom: 36px;
}
.hero-tag .dot { display: none; } /* removed — visual noise */
.hero-text .hero-tag { padding-left: 0; padding-right: 0; } /* borderless in hero — align flush with the headline axis */
.hero-tag .sep { width: 1px; height: 10px; background: var(--line); }

/* Authorisation badge — primary trust signal in the hero.
   Sits between the H1 and the lead, given visual weight as a
   medallion + label so it reads as an official seal, not decoration. */
.hero-auth {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 22px 14px 18px;
  margin: 4px 0 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  max-width: 100%;
}
.hero-auth__seal {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--peach);
  flex-shrink: 0;
}
.hero-auth__copy {
  display: inline-flex; flex-direction: column; gap: 2px; line-height: 1.2;
}
.hero-auth__lb {
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--peach-2);
}
.hero-auth__txt {
  font-size: 13px; letter-spacing: 0.01em; color: var(--text);
  font-weight: 500;
}
@media (max-width: 540px) {
  .hero-auth { padding: 12px 18px 12px 14px; gap: 12px; }
  .hero-auth__txt { font-size: 12px; }
}

/* Hero photo as full background — whole image visible, cream scrim keeps the headline readable */
.hero-photo-bg { position: absolute; inset: 0; margin: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-grid { position: relative; z-index: 2; }
.hero-photo-bg img { position: absolute; right: 0; top: 0; height: 100%; width: auto; max-width: none; object-fit: contain; object-position: right center; display: block; }
.hero-photo-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 44%, color-mix(in oklab, var(--bg) 78%, transparent) 52%, color-mix(in oklab, var(--bg) 30%, transparent) 60%, transparent 68%); }
.hero-photo-bg figcaption { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 4px 8px; border-radius: 2px; background: rgba(31,15,8,.38); font-family: var(--sans); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.92); text-shadow: 0 1px 3px rgba(0,0,0,.6); }
@media (max-width: 980px) {
  .hero-photo-bg img { left: auto; right: 0; top: 0; bottom: auto; width: 42%; height: 100%; max-height: none; object-fit: cover; object-position: 62% 22%; margin: 0; }
  .hero-photo-bg::after { background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 50%, color-mix(in oklab, var(--bg) 70%, transparent) 58%, color-mix(in oklab, var(--bg) 22%, transparent) 66%, transparent 74%); }
  .hero-text { max-width: 54%; }
}
@media (max-width: 620px) {
  .hero-photo-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 24%; }
  .hero-photo-bg::after { background: linear-gradient(178deg, var(--bg) 0%, var(--bg) 46%, color-mix(in oklab, var(--bg) 62%, transparent) 62%, color-mix(in oklab, var(--bg) 18%, transparent) 80%, transparent 94%); }
  .hero-text { max-width: none; }
}
.hero .float-celestial--pen, .hero .float-bloom--hero-side { display: none; }
.hero-title { margin-bottom: 32px; font-size: clamp(40px, 4.6vw, 72px); line-height: 1.05; }
.hero-title em { display: block; margin-top: .8em; font-size: .4em; letter-spacing: .18em; text-transform: uppercase; font-style: normal; font-family: var(--sans); font-weight: 400; color: var(--text); }
.hero-title br { display: none; }
.hero-lead { color: var(--text); max-width: 56ch; font-size: 17px; line-height: 1.7; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 56px; }

.hero-trust {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.hero-trust .t {
  padding: 24px 28px;
  border-right: 1px solid var(--line-soft);
  display: flex; align-items: flex-start; gap: 14px;
}
.hero-trust .t:last-child { border-right: 0; }
.hero-trust .t .ck {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--peach);
  margin-top: 2px;
}
.hero-trust .t .lb {
  font-size: 12px; letter-spacing: 0.04em; color: var(--text); line-height: 1.5;
}
/* First item — Styrelsen for Patientsikkerhed — gets a subtly heavier weight
   so the authorisation reads first across the row of four. */
.hero-trust .t:first-child {
  background: var(--bg);
}
.hero-trust .t:first-child .lb {
  color: var(--ink, var(--text));
  font-weight: 500;
}
.hero-trust .t:first-child .ck { color: var(--peach); }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-photo .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--peach-3);
  background-image: repeating-linear-gradient(135deg, transparent 0 8px, color-mix(in oklab, var(--peach) 6%, transparent) 8px 9px);
}
.hero-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-photo .ph-tag {
  position: absolute; top: 18px; left: 18px;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--peach-2);
  background: var(--bg);
  padding: 4px 8px;
}

/* Hero variants */
.hero[data-hero="centered"] .hero-grid { display: block; text-align: center; }
.hero[data-hero="centered"] .hero-lead { margin-left: auto; margin-right: auto; }
.hero[data-hero="centered"] .hero-ctas { justify-content: center; }
.hero[data-hero="centered"] .hero-photo { display: none; }

.hero[data-hero="split"] .hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }

.hero[data-hero="editorial"] .hero-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
.hero[data-hero="editorial"] .hero-photo { aspect-ratio: 16/7; }
.hero[data-hero="editorial"] .hero-photo .placeholder { background-image: repeating-linear-gradient(90deg, transparent 0 12px, color-mix(in oklab, var(--peach) 6%, transparent) 12px 13px); }

.hero[data-hero="overlap"] .hero-grid { position: relative; display: block; }
.hero[data-hero="overlap"] .hero-text { max-width: 720px; position: relative; z-index: 2; }
.hero[data-hero="overlap"] .hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 38%;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero[data-hero="split"] .hero-grid,
  .hero[data-hero="overlap"] .hero-grid { display: block; }
  .hero[data-hero="overlap"] .hero-photo { position: relative; width: 100%; margin-top: 40px; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .hero-trust .t:nth-child(2) { border-right: 0; }
  .nav-links { display: none; }
}

/* Floating bloom decoration */
.float-bloom {
  position: absolute;
  pointer-events: none;
  opacity: .35;
  animation: drift 18s ease-in-out infinite;
  transition: opacity .4s ease, filter .4s ease;
}
[data-theme="light"] .float-bloom {
  opacity: .55;
  filter: drop-shadow(0 6px 14px color-mix(in oklab, var(--rose, var(--peach-3)) 35%, transparent));
}
@keyframes drift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(20deg); }
}

/* Prominent hero-side bloom — drifts past, more visible, but never overlaps text */
.float-bloom--hero-side {
  opacity: .85 !important;
  animation: drift-side 14s ease-in-out infinite;
  filter: drop-shadow(0 10px 24px color-mix(in oklab, var(--peach-3) 45%, transparent));
}
[data-theme="light"] .float-bloom--hero-side {
  opacity: .9 !important;
  filter: drop-shadow(0 10px 24px color-mix(in oklab, var(--peach) 50%, transparent));
}
@keyframes drift-side {
  0%   { transform: translate(0, 0) rotate(-6deg); }
  25%  { transform: translate(8px, -14px) rotate(4deg); }
  50%  { transform: translate(14px, -28px) rotate(12deg); }
  75%  { transform: translate(6px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(-6deg); }
}
@media (max-width: 980px) {
  /* on smaller screens, hide the hero-side bloom — too tight to keep clear of text */
  .float-bloom--hero-side { display: none; }
}

/* Floating face mark — sits slightly above and to the right of the headline,
   clear of text, drifts gently. Hidden on small screens. */
.float-face {
  position: absolute;
  pointer-events: none;
  right: 6%;
  top: 8%;
  opacity: 0.78;
  animation: drift-face 16s ease-in-out infinite;
  filter: drop-shadow(0 14px 30px color-mix(in oklab, var(--peach-3) 40%, transparent));
  z-index: 2;
}
[data-theme="light"] .float-face {
  opacity: 0.9;
  filter: drop-shadow(0 14px 30px color-mix(in oklab, var(--peach) 55%, transparent));
}
@keyframes drift-face {
  0%   { transform: translate(0, 0) rotate(-3deg); }
  50%  { transform: translate(-6px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(-3deg); }
}
@media (max-width: 1100px) {
  .float-face { display: none; }
}

/* Floating celestial decorations (moon + star, golden) */
.float-celestial {
  position: absolute;
  pointer-events: none;
  opacity: .45;
  filter: drop-shadow(0 0 14px color-mix(in oklab, var(--gold-soft, var(--gold)) 50%, transparent));
  transition: opacity .4s ease, filter .4s ease;
}
[data-theme="light"] .float-celestial {
  opacity: .7;
  filter: drop-shadow(0 4px 12px color-mix(in oklab, var(--gold) 40%, transparent));
}
.float-celestial--moon {
  animation: drift-moon 22s ease-in-out infinite;
}
.float-celestial--star {
  animation: drift-star 14s ease-in-out infinite, twinkle 4s ease-in-out infinite;
}
.float-celestial--bottle {
  animation: drift-bottle 26s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px color-mix(in oklab, var(--peach-3) 30%, transparent));
}
.float-celestial--ball {
  animation: drift-ball 16s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px color-mix(in oklab, #8AAA40 35%, transparent));
}
.float-celestial--pen {
  animation: drift-pen 20s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px color-mix(in oklab, var(--peach-3) 30%, transparent));
}
.float-celestial--vial {
  animation: drift-vial 24s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px color-mix(in oklab, var(--gold) 30%, transparent));
}
[data-theme="light"] .float-celestial--bottle,
[data-theme="light"] .float-celestial--ball {
  opacity: .8;
}
@keyframes drift-moon {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(14px,-18px) rotate(-12deg); }
  66% { transform: translate(-10px,8px) rotate(6deg); }
}
@keyframes drift-star {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  50% { transform: translate(-12px,-22px) rotate(45deg) scale(1.08); }
}
@keyframes drift-bottle {
  0%,100% { transform: translate(0,0) rotate(-3deg); }
  50% { transform: translate(-8px,-14px) rotate(4deg); }
}
@keyframes drift-ball {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(-6px,-10px) rotate(180deg); }
  50% { transform: translate(8px,-22px) rotate(360deg); }
  75% { transform: translate(4px,-8px) rotate(540deg); }
}
@keyframes drift-pen {
  0%,100% { transform: translate(0,0) rotate(-8deg); }
  33% { transform: translate(-10px,-18px) rotate(10deg); }
  66% { transform: translate(8px,-6px) rotate(-4deg); }
}
@keyframes drift-vial {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-8px,-16px) rotate(6deg); }
}
@keyframes twinkle {
  0%,100% { opacity: .35; }
  50% { opacity: .85; }
}
[data-theme="light"] .float-celestial--star { animation: drift-star 14s ease-in-out infinite, twinkle-light 4s ease-in-out infinite; }
@keyframes twinkle-light {
  0%,100% { opacity: .55; }
  50% { opacity: 1; }
}

/* ---------- SECTIONS ---------- */
.section { padding: var(--section-py) 0; position: relative; }
/* Consecutive soft-background sections share one seam instead of doubling padding */
/* Toned sections fade into the cream over a soft seam instead of meeting at a hard edge */
.section--soft, .section--financing, .section--firstvisit, .section--launchday { --tone: var(--bg-2); }
:is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop) {
  background: linear-gradient(to bottom, var(--bg) 0, var(--tone) var(--seam), var(--tone) calc(100% - var(--seam)), var(--bg) 100%);
}
/* Toned section directly after another: keep the top solid, no fade inside the pair */
:is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop) + :is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop) {
  background: linear-gradient(to bottom, var(--tone) 0, var(--tone) calc(100% - var(--seam)), var(--bg) 100%);
}
/* …and the one before it keeps its bottom solid */
:is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop):has(+ :is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop)) {
  background: linear-gradient(to bottom, var(--bg) 0, var(--tone) var(--seam), var(--tone) 100%);
}
:is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop) + :is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop):has(+ :is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop)) {
  background: var(--tone);
}
.section--soft + .section--soft { padding-top: 0; }
/* Shop sits on a deeper tone than the run above it — glide between the two tones instead of stepping */
:is(.section--soft, .section--financing, .section--firstvisit, .section--launchday) + .section--shop {
  background: linear-gradient(to bottom, var(--bg-2) 0, var(--bg-3) var(--seam), var(--bg-3) calc(100% - var(--seam)), var(--bg) 100%);
}
:is(.section--soft, .section--financing, .section--firstvisit, .section--launchday) + .section--shop:has(+ :is(.section--soft, .section--financing, .section--firstvisit, .section--launchday, .section--shop)) {
  background: linear-gradient(to bottom, var(--bg-2) 0, var(--bg-3) var(--seam), var(--bg-3) 100%);
}
.section-head { margin-bottom: 80px; max-width: none; }
.section-head .h2, .section-head > .body-l { max-width: 760px; }
.section-head .section-rule, .shop-intro .section-rule { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.section-head .section-rule .eyebrow, .shop-intro .section-rule .eyebrow { display: inline-flex; align-items: center; font-weight: 400; letter-spacing: 0.3em; }
.section-rule__num { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.24em; color: var(--good); flex: 0 0 auto; }
.section-head h2 { margin-bottom: 24px; text-wrap: balance; }

.split-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 880px) { .split-head { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- TREATMENTS ---------- */
.t-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.chip {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach-2);
  transition: all .3s;
}
.chip:hover { color: var(--peach); border-color: var(--peach-3); }
.chip.on { background: var(--peach); color: var(--bg); border-color: var(--peach); }
.chip .count { opacity: .6; margin-left: 8px; }

.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
[data-density="compact"] .t-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .t-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .t-grid { grid-template-columns: 1fr !important; } }

.t-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .4s, transform .4s;
  cursor: pointer;
  min-height: 360px;
}
.t-card:hover { background: var(--bg-2); }
.t-card .num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--peach-3);
  letter-spacing: 0.2em;
}
.t-card .cat {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--peach-3);
  margin-bottom: auto;
}
.t-card .title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--peach);
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin: 80px 0 14px;
  font-weight: 500;
}
.t-card .desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 22px;
}
.t-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-card .price { color: var(--peach); font-family: var(--serif); font-size: 14px; letter-spacing: 0.04em; }
.t-card .arr { color: var(--peach-3); transition: transform .4s, color .3s; }
.t-card:hover .arr { color: var(--peach); transform: translateX(6px); }
.t-card.has-detail { cursor: pointer; }
.t-card.has-detail:focus-visible { outline: 1px solid var(--peach); outline-offset: 4px; }
.t-card .learn-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--peach-3); font-family: var(--serif); font-style: italic;
  transition: gap .3s, color .3s;
}
.t-card.has-detail:hover .learn-more { color: var(--peach); gap: 12px; }
.t-card .top-row { display: flex; justify-content: space-between; align-items: flex-start; }

/* ---------- TREATMENT DETAIL MODAL ---------- */
.tm-backdrop {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8, 4, 2, 0.78);
  backdrop-filter: blur(8px) saturate(0.9);
  -webkit-backdrop-filter: blur(8px) saturate(0.9);
  display: flex; justify-content: center; align-items: flex-start;
  padding: 5vh 24px;
  overflow-y: auto;
  animation: tmFade .25s ease;
}
@keyframes tmFade { from { opacity: 0; } to { opacity: 1; } }
.tm-modal {
  position: relative;
  width: 100%; max-width: 880px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 56px 64px 40px;
  animation: tmRise .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes tmRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.tm-close {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--line);
  color: var(--peach); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.tm-close:hover { background: var(--bg-2); border-color: var(--peach-3); }

.tm-header { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.tm-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--peach-3); margin-bottom: 18px;
}
.tm-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 5vw, 56px);
  color: var(--peach); line-height: 1.05;
  letter-spacing: -0.015em; margin: 0 0 16px;
}
.tm-hero {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--text); line-height: 1.5;
  max-width: 60ch; margin: 0 0 14px;
}
.tm-products { font-size: 12.5px; color: var(--text-soft); margin: 0 0 22px; letter-spacing: 0.01em; }
.tm-products strong { color: var(--peach); font-weight: 500; }
.tm-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 24px;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.tm-stats > div {
  padding: 16px 18px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--line-soft);
}
.tm-stats > div:last-child { border-right: 0; }
.tm-stat-label {
  font-family: 'Courier New', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--peach-3);
}
.tm-stat-val { font-family: var(--serif); color: var(--peach); font-size: 16px; }

.tm-body { padding: 32px 0 8px; }
.tm-section { margin: 0 0 36px; }
.tm-h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; color: var(--peach);
  margin: 0 0 14px; letter-spacing: -0.005em;
}
.tm-section .tm-p {
  font-size: 14.5px; color: var(--text); line-height: 1.65;
  margin: 0 0 12px; max-width: 65ch;
}
.tm-section ul { list-style: none; padding: 0; margin: 0; }
.tm-section ul li {
  position: relative; padding: 10px 0 10px 24px;
  font-size: 14px; color: var(--text); line-height: 1.55;
  border-bottom: 1px solid var(--line-soft);
}
.tm-section ul li:last-child { border-bottom: 0; }
.tm-section ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 12px; height: 1px; background: var(--peach-3);
}
.tm-warn ul li::before { background: #c87a5a; }
.tm-warn .tm-h3 { color: #d89878; }

.tm-li-why { display: flex; flex-direction: column; gap: 6px; padding: 14px 0 14px 24px; }
.tm-li-t { font-size: 14px; color: var(--text); line-height: 1.55; font-weight: 500; }
.tm-li-w { font-size: 13px; color: var(--text-soft); line-height: 1.6; max-width: 62ch; }
.tm-section ul li.tm-li-why::before { top: 22px; }

.tm-se-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 12px;
}
.tm-se-block {
  border: 1px solid var(--line); padding: 18px;
  background: var(--bg-2);
}
.tm-se-label {
  font-family: 'Courier New', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--peach-3); margin-bottom: 10px;
}
.tm-se-block ul li {
  font-size: 12.5px; padding: 6px 0 6px 16px; line-height: 1.5;
  border: 0;
}
.tm-se-block ul li::before { top: 13px; width: 8px; }

.tm-important {
  margin: 36px 0; padding: 22px 26px;
  background: var(--bg-2); border-left: 2px solid var(--peach-3);
}
.tm-important-label {
  font-family: 'Courier New', monospace;
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 10px;
}
.tm-important p {
  margin: 0; font-size: 13px; color: var(--text-soft); line-height: 1.6;
  max-width: 60ch;
}

.tm-sources ul li { font-family: 'Courier New', monospace; font-size: 11.5px; letter-spacing: 0.04em; color: var(--text-soft); }

.tm-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  gap: 16px; flex-wrap: wrap;
}
.tm-back {
  background: transparent; border: 0; color: var(--peach-3);
  font-family: var(--serif); font-style: italic; font-size: 14px;
  cursor: pointer; padding: 8px 0;
  transition: color .2s;
}
.tm-back:hover { color: var(--peach); }
.tm-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px;
  background: var(--peach); color: var(--bg);
  text-decoration: none; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
  transition: background .2s;
border: 0; font-family: inherit; cursor: pointer; }
.tm-cta:hover { background: var(--peach-2, var(--peach)); filter: brightness(1.08); }

@media (max-width: 720px) {
  .tm-modal { padding: 48px 22px 28px; }
  .tm-title { font-size: 32px; }
  .tm-stats { grid-template-columns: 1fr; }
  .tm-stats > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .tm-stats > div:last-child { border-bottom: 0; }
  .tm-se-grid { grid-template-columns: 1fr; }
  .tm-footer { flex-direction: column-reverse; align-items: stretch; }
  .tm-cta { justify-content: center; }
}

/* ---------- BEFORE / AFTER ---------- */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .ba-wrap { grid-template-columns: 1fr; gap: 40px; } }

.ba-slider {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: var(--bg-2);
}
.ba-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--peach-3);
}
.ba-before { background-image: repeating-linear-gradient(135deg, var(--bg-2) 0 8px, var(--bg-3) 8px 9px); }
.ba-after { background-image: repeating-linear-gradient(45deg, var(--bg-3) 0 8px, color-mix(in oklab, var(--peach) 14%, var(--bg-2)) 8px 9px); }
.ba-after-wrap { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 2px; background: var(--peach);
  left: 50%; transform: translateX(-50%); pointer-events: none;
}
.ba-handle::before {
  content:""; position: absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--peach); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.ba-handle::after {
  content:"⇄"; position: absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  font-size: 18px; color: var(--bg);
}
.ba-label {
  position: absolute; bottom: 18px;
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--peach); padding: 6px 12px; background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(6px);
}
.ba-label.l { left: 18px; }
.ba-label.r { right: 18px; }

.ba-thumbs { display: flex; gap: 10px; margin-top: 22px; }
.ba-thumb {
  flex: 1;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  background: var(--bg-2);
  background-image: repeating-linear-gradient(135deg, transparent 0 6px, color-mix(in oklab, var(--peach) 6%, transparent) 6px 7px);
  font-family: 'Courier New', monospace;
  font-size: 8px; letter-spacing: 0.2em; color: var(--peach-3);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.ba-thumb.on { border-color: var(--peach); background-color: var(--bg-3); }

/* ---------- ABOUT / TEAM ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.about-grid:has(.about-text-only) { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-photo {
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  background-image: repeating-linear-gradient(135deg, var(--bg-2) 0 8px, var(--bg-3) 8px 9px);
  overflow: hidden;
  position: relative;
}
@media (min-width: 981px) {
  .about-photo { position: sticky; top: 100px; }
}
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
@media (max-width: 980px) {
  .about-photo { aspect-ratio: 1/1; width: 100%; max-width: 420px; margin: 0 auto; }
  .about-photo img { object-position: center center; }
}
.about-photo .ph-tag {
  margin: 18px;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--peach-2);
  background: var(--bg);
  padding: 4px 8px;
}

.about-body p { margin-bottom: 22px; max-width: 60ch; }
.about-body .pull {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--peach);
  line-height: 1.3;
  font-style: italic;
  font-weight: 400;
  border-left: 1px solid var(--peach-3);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
  max-width: 24ch;
}

.credential-card {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
}
.credential-card::before {
  content: "";
  position: absolute; top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--peach-3);
  border-left: 1px solid var(--peach-3);
}
.credential-card::after {
  content: "";
  position: absolute; bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--peach-3);
  border-right: 1px solid var(--peach-3);
}
.credential-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-3);
  position: relative;
}
.credential-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.credential-text { display: flex; flex-direction: column; gap: 10px; }
.credential-text .eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--peach-3);
}
.credential-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--peach);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.credential-sub {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 8px;
  max-width: 50ch;
}
.cert-list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line-soft);
}
.cert-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 4px;
}
.cert-list li:last-child { border-bottom: 0; }
.cert-name {
  font-size: 13px;
  color: var(--peach);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cert-meta {
  font-family: 'Courier New', monospace;
  font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--peach-3);
}
.cert-detail {
  font-size: 11.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-top: 4px;
  max-width: 60ch;
}
@media (max-width: 720px) {
  .credential-card { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
  .credential-photo { max-width: 240px; }
  .credential-title { font-size: 19px; }
}

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 60px; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--bg); padding: 40px; }
.team-card .team-photo { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin-bottom: 22px; border: 1px solid var(--line-soft); position: relative; flex-shrink: 0; }
.team-card .team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card .role { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--peach-3); margin-bottom: 14px; }
.team-card h3 { font-family: var(--serif); font-size: 30px; color: var(--peach); margin-bottom: 8px; font-weight: 500; }
.team-card .credentials { font-size: 12px; color: var(--text-soft); margin-bottom: 18px; letter-spacing: 0.04em; }
.team-card .bio { font-size: 13px; color: var(--text); line-height: 1.7; margin-bottom: 24px; }

/* ---------- REVIEWS ---------- */
.reviews-marquee {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
@media (max-width: 880px) { .reviews-marquee { grid-template-columns: 1fr; } }
.review {
  background: var(--bg);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 22px;
}
.stars { color: var(--peach); letter-spacing: 4px; font-size: 12px; }
.review .quote { font-family: var(--serif); font-size: 22px; color: var(--peach); line-height: 1.4; font-weight: 400; flex: 1; }
.review .author { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--peach-3); }
.review .author span { color: var(--text-soft); }

/* ---------- BOOKING ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  display: flex; align-items: stretch; justify-content: center;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: 100%;
  max-width: 880px;
  margin: 40px auto;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 80px);
  overflow: hidden;
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head {
  padding: 22px 32px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.modal-head .title { font-family: var(--serif); font-size: 20px; color: var(--peach); font-weight: 500; }
.bk-powered {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-faint);
}
.bk-powered svg { color: var(--peach); }
.bk-powered strong { font-weight: 600; letter-spacing: .12em; color: var(--text-soft); }
.bk-foot-note {
  padding: 12px 32px 18px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  border-top: 1px dashed var(--line-soft);
}
.field .hint { display: block; margin-top: 6px; font-size: 11px; color: var(--text-faint); letter-spacing: 0; text-transform: none; line-height: 1.5; }
.field .req { color: var(--peach); margin-left: 4px; }
.modal-body { flex: 1; overflow-y: auto; padding: 40px 48px; }
.modal-foot { padding: 20px 32px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; gap: 14px; }

.steps { display: flex; gap: 10px; align-items: center; margin-bottom: 36px; }
.steps .step { display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); }
.steps .step .n {
  width: 24px; height: 24px; border-radius: 999px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif);
}
.steps .step.active { color: var(--peach); }
.steps .step.active .n { border-color: var(--peach); color: var(--peach); }
.steps .step.done .n { background: var(--peach); border-color: var(--peach); color: var(--bg); }
.steps .bar { flex: 1; height: 1px; background: var(--line); }

.bk-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
@media (max-width: 600px) { .bk-list { grid-template-columns: 1fr; } }
.bk-item {
  padding: 22px 24px;
  background: var(--bg);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  cursor: pointer; transition: all .3s;
}
.bk-item:hover { background: var(--bg-2); }
.bk-item.on { background: var(--bg-3); }
.bk-item .nm { font-family: var(--serif); font-size: 18px; color: var(--peach); font-weight: 500; }
.bk-item .sub { font-size: 11px; color: var(--text-soft); margin-top: 4px; }
.bk-item .pr { font-family: var(--serif); font-size: 14px; color: var(--peach); white-space: nowrap; }

.cal {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  align-items: start;
}
@media (max-width: 700px) { .cal { grid-template-columns: 1fr; } }
.cal-month { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month h4 { font-family: var(--serif); font-size: 18px; color: var(--peach); font-weight: 500; text-transform: capitalize; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .dow { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); text-align: center; padding: 6px 0; }
.cal-day {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  color: var(--text);
  border: 1px solid transparent;
  transition: all .25s;
  cursor: pointer;
  border-radius: 999px;
}
.cal-day:hover:not(.disabled) { background: var(--bg-2); color: var(--peach); }
.cal-day.disabled { color: var(--text-faint); cursor: default; }
.cal-day.on { background: var(--peach); color: var(--bg); }
.cal-day.today { border-color: var(--peach-3); }

.times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time {
  padding: 12px 8px;
  border: 1px solid var(--line);
  font-family: var(--serif); font-size: 14px; color: var(--text); text-align: center;
  transition: all .25s;
}
.time:hover { border-color: var(--peach-3); color: var(--peach); }
.time.on { background: var(--peach); border-color: var(--peach); color: var(--bg); }
.time.disabled { color: var(--text-faint); cursor: default; text-decoration: line-through; }

.field { display: block; margin-bottom: 18px; }
.field .lb { display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--peach-3); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--peach);
  font: inherit;
  font-family: var(--serif);
  font-size: 16px;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--peach); }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--peach-3) 50%), linear-gradient(135deg, var(--peach-3) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 12px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 36px; cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; color: var(--text-soft); line-height: 1.5; cursor: pointer; }
.checkbox input { margin-top: 3px; accent-color: var(--peach); }

.summary { background: var(--bg-2); border: 1px solid var(--line-soft); padding: 22px 24px; margin-bottom: 22px; }
.summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--text); border-bottom: 1px dashed var(--line-soft); }
.summary .row:last-child { border-bottom: 0; }
.summary .row .v { color: var(--peach); font-family: var(--serif); }

.confirm {
  text-align: center; padding: 40px 20px;
}
.confirm .check {
  width: 72px; height: 72px; margin: 0 auto 28px;
  border: 1px solid var(--peach); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--peach); font-size: 32px;
}
.confirm h3 { font-family: var(--serif); font-size: 36px; color: var(--peach); margin-bottom: 16px; font-weight: 500; }
.confirm p { color: var(--text-soft); margin-bottom: 24px; max-width: 48ch; margin-left: auto; margin-right: auto; }

/* ---------- PRICES ---------- */
.intro-price-banner {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 28px 32px;
  border: 1px solid var(--peach);
  border-radius: 4px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--peach) 12%, transparent) 0%, transparent 70%);
  position: relative;
}
.intro-price-banner::before {
  content: '';
  position: absolute;
  left: -1px; top: -1px; bottom: -1px;
  width: 3px;
  background: var(--peach);
}
.intro-price-banner .ipb-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach-3);
  margin-bottom: 12px;
  font-weight: 500;
}
.intro-price-banner .ipb-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  text-wrap: pretty;
}
.price-wrap { max-width: 720px; margin: 0 auto; }
.price-section { margin-bottom: 6px; }
.price-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: all .3s;
}
.price-head.open { background: var(--bg-2); border-color: var(--line); border-radius: 6px 6px 0 0; }
.price-head .l { display: flex; align-items: center; gap: 14px; }
.price-head .l .ico { color: var(--peach-2); font-size: 12px; }
.price-head .l .ttl {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--peach-2); transition: color .3s;
}
.price-head.open .l .ttl { color: var(--peach); }
.price-head .x { color: var(--peach-3); font-size: 18px; transition: transform .3s; }
.price-head.open .x { transform: rotate(45deg); color: var(--peach); }
.price-items { background: var(--bg-2); border: 1px solid var(--line); border-top: none; border-radius: 0 0 6px 6px; overflow: hidden; }
.price-item { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--line-soft); gap: 18px; }
.price-item:last-child { border-bottom: 0; }
.price-item .nm { font-size: 13px; color: var(--text); flex: 1; }
.price-item .pr { font-family: var(--serif); font-size: 14px; color: var(--peach); white-space: nowrap; font-weight: 500; }
.price-item .pr.free { color: var(--good); }
.price-item--link a.price-link { flex: 0 0 auto; align-self: flex-start; display: inline; font-size: 13px; color: var(--peach); text-decoration: none; border-bottom: 1px solid color-mix(in oklch, var(--peach) 35%, transparent); transition: border-color .2s; }
.price-split { display: block; width: fit-content; margin-top: 5px; font-size: 12px; letter-spacing: 0.01em; color: var(--good); text-decoration: none; border-bottom: 1px solid color-mix(in oklch, var(--good) 35%, transparent); transition: color .2s, border-color .2s; }
.price-split:hover { color: var(--peach); border-bottom-color: var(--peach); }
.price-item--link a.price-link:hover { border-bottom-color: var(--peach); }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; cursor: pointer; }
.blog-card .img {
  aspect-ratio: 4/5;
  background-image: repeating-linear-gradient(135deg, var(--bg-2) 0 8px, var(--bg-3) 8px 9px);
  border: 1px solid var(--line);
  margin-bottom: 22px;
  transition: transform .5s ease;
  overflow: hidden;
}
.blog-card:hover .img { transform: translateY(-4px); }
.blog-card .meta { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--peach-3); margin-bottom: 10px; }
.blog-card .ttl { font-family: var(--serif); font-size: 22px; color: var(--peach); line-height: 1.25; font-weight: 500; margin-bottom: 8px; }
.blog-card .ex { font-size: 13px; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 22px; color: var(--peach); font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .x { color: var(--peach-3); font-size: 22px; flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq[open] summary .x { transform: rotate(45deg); color: var(--peach); }
.faq .a { padding: 0 0 26px 0; color: var(--text); font-size: 14px; max-width: 64ch; line-height: 1.7; }
.faq-inline-link { color: var(--peach-2); text-decoration: underline; white-space: nowrap; }
.faq-inline-link:hover { color: var(--peach); }

/* ---------- GIFT ---------- */
.gift {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--peach-3);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  overflow: hidden;
}
@media (max-width: 880px) { .gift { grid-template-columns: 1fr; padding: 50px 30px; } }
.gift::before {
  content:""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, color-mix(in oklab, var(--peach) 35%, transparent), transparent 70%);
}
.gift h3 { font-family: var(--serif); font-size: 44px; color: var(--peach); line-height: 1.1; margin-bottom: 20px; font-weight: 500; }
.gift p { color: var(--text); margin-bottom: 28px; max-width: 40ch; }
.gift-card-art {
  position: relative;
  aspect-ratio: 1.65/1;
  background: var(--bg);
  border: 1px solid var(--peach-3);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.gift-card-art .top { display: flex; justify-content: space-between; align-items: flex-start; }
.gift-card-art .name {
  font-family: var(--serif); font-size: 26px; color: var(--peach); font-weight: 600;
  letter-spacing: 0.04em;
}
.gift-card-art .sub { font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--peach-3); margin-top: 2px; }
.gift-card-art .amount { font-family: var(--serif); font-size: 60px; color: var(--peach); line-height: 1; font-weight: 500; }
.gift-card-art .from { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--peach-3); }

/* ---------- CONTACT / FOOTER ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info dl { display: grid; grid-template-columns: auto 1fr; gap: 16px 32px; }
.contact-info dt { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--peach-3); padding-top: 6px; }
.contact-info dd { font-family: var(--serif); font-size: 18px; color: var(--peach); }
.contact-info dd a, .contact-link { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .25s, color .25s; }
.contact-info dd a:hover, .contact-link:hover { color: var(--peach-2); border-color: var(--peach-2); }

.map-placeholder {
  aspect-ratio: 1.4/1;
  background-image:
    linear-gradient(0deg, color-mix(in oklab, var(--peach) 6%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--peach) 6%, transparent) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  background-color: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
}
.map-placeholder .pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  font-family: var(--serif); font-size: 14px; color: var(--peach);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-placeholder .pin .dot { width: 14px; height: 14px; border-radius: 999px; background: var(--peach); box-shadow: 0 0 0 6px color-mix(in oklab, var(--peach) 25%, transparent); }

.map-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-frame iframe {
  width: 100%;
  aspect-ratio: 1.3/1;
  border: 0;
  display: block;
}
.map-parking-badge{padding:12px 20px;font-size:13.5px;font-weight:400;letter-spacing:.04em;color:var(--bg);background:var(--peach);text-align:center}
.map-cta {
  display: block;
  padding: 14px 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  background: var(--bg);
  transition: background .3s, color .3s;
}
.map-cta:hover { background: var(--peach); color: var(--bg); }

.parking strong { color: var(--peach); font-weight: 400; }

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 80px 0 40px;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }

/* ============================================================
   ABOUT — safety sub-block
   ============================================================ */
.about-safety { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 22px; }
.about-sprout { display: inline-block; margin-bottom: 14px; opacity: 0.9; }
.about-safety .eyebrow { margin-bottom: 10px; }
.about-safety p { font-size: 15px; line-height: 1.7; color: var(--text); max-width: 60ch; }

/* ============================================================
   PRICES — group labels, packages, CTA
   ============================================================ */
.price-group-label { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin: 8px 0 18px; }
.price-packages-block { margin-top: 56px; }
.pkg-intro { font-size: 16px; line-height: 1.6; color: var(--muted, var(--text)); max-width: 64ch; margin: 0 0 28px; text-wrap: pretty; }
.price-packages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.price-pkg { background: var(--bg); padding: 30px 26px 28px; display: flex; flex-direction: column; }
.price-pkg h4 { font-size: 21px; font-weight: 500; color: var(--peach); margin-bottom: 6px; }
.pkg-meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.price-pkg ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 8px; }
.price-pkg li { font-size: 13.5px; color: var(--text-soft, var(--text)); padding-left: 16px; position: relative; }
.price-pkg li::before { content: "·"; position: absolute; left: 2px; color: var(--gold); }
.pkg-price { margin-top: auto; font-family: var(--serif); font-size: 22px; color: var(--text); border-top: 1px solid var(--line-soft); padding-top: 16px; }
.pkg-note { font-size: 12.5px; color: var(--text-soft, var(--text)); opacity: .75; margin-top: 18px; max-width: 70ch; }
.prices-cta { margin-top: 32px; }
@media (max-width: 1020px) { .price-packages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-packages { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAMS — Vores forløb
   ============================================================ */
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.program-card { background: var(--bg); border: 1px solid var(--line-soft); padding: 32px 28px 28px; display: flex; flex-direction: column; }
.program-card h3 { font-size: 24px; font-weight: 500; color: var(--peach); margin: 4px 0 12px; }
.program-card p { font-size: 14px; line-height: 1.65; color: var(--text); margin-bottom: 26px; }
.program-actions { margin-top: auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.program-more { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--peach-2); padding: 0 0 2px; border-bottom: 1px solid var(--line); text-decoration: none; }
.program-more:hover { color: var(--peach); border-color: var(--peach); }
.btn--sm { padding: 12px 20px; font-size: 11px; }
@media (max-width: 1020px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .program-grid { grid-template-columns: 1fr; } }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--peach); margin-bottom: 20px; font-weight: 400; }
.footer ul { list-style: none; }
.footer li { padding: 6px 0; font-size: 13px; color: var(--text-soft); }
.footer li a:hover { color: var(--peach); }
.footer .brand-blurb { color: var(--text-soft); font-size: 13px; max-width: 38ch; margin-top: 18px; line-height: 1.7; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Big bloom decoration */
.giant-bloom {
  position: absolute; right: -8%; top: 10%; pointer-events: none;
  opacity: .08; width: 540px;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--peach-3); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
}
.scroll-ind .ln {
  width: 1px; height: 40px; background: linear-gradient(var(--peach-3), transparent);
  animation: drop 2.4s ease-in-out infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* dim list of behandlings on hover */
.t-hovergroup .t-card { transition: opacity .3s, background .4s, transform .4s; }
.t-hovergroup:hover .t-card:not(:hover) { opacity: .55; }

/* ---------- BLOG CARD: clickable variant + image background ---------- */
.blog-card .img { position: relative; }
.blog-card--live .img { cursor: pointer; }
.blog-card--live .ttl { transition: color .3s; }
.blog-card--live:hover .ttl { color: var(--peach-2); }
.blog-card--live:hover .img { transform: translateY(-6px); }
.blog-card .img .blog-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Courier New', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bg);
  background: var(--peach);
  padding: 6px 10px;
}
[data-theme="light"] .blog-card .img .blog-badge { color: var(--bg); background: var(--peach-2); }

/* ---------- JOURNAL MODAL ---------- */
.journal-modal {
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, black);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
  animation: jm-fade .25s ease-out;
}
@keyframes jm-fade { from { opacity: 0; } to { opacity: 1; } }
.journal-modal__sheet {
  position: relative;
  width: 100%; max-width: 760px;
  background: var(--bg);
  border: 1px solid var(--line);
  animation: jm-rise .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes jm-rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.journal-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--peach);
  font-size: 24px; line-height: 32px;
  cursor: pointer;
}
.journal-modal__close:hover { background: var(--bg-2); }
.journal-modal__hero {
  aspect-ratio: 16/9;
  background: var(--bg-2);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.journal-modal__img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.journal-modal__body { padding: 40px 48px 56px; }
@media (max-width: 700px) { .journal-modal__body { padding: 28px 24px 40px; } }
.journal-modal__meta {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--peach-2);
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.journal-modal__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--peach);
  line-height: 1.1;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.journal-modal__content { font-family: var(--sans); font-size: 16px; color: var(--text); line-height: 1.75; }
.journal-modal__content p { margin: 0 0 18px; max-width: 64ch; }
.journal-modal__content h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--peach);
  margin: 36px 0 14px;
  letter-spacing: -0.005em;
}
.journal-modal__content ul { margin: 0 0 22px 0; padding: 0; list-style: none; }
.journal-modal__content li {
  position: relative; padding-left: 22px;
  margin-bottom: 10px; max-width: 62ch;
}
.journal-modal__content li::before {
  content: '·'; position: absolute; left: 6px; top: -2px;
  color: var(--peach); font-size: 22px; line-height: 1;
}

/* ---------- FINANCING ---------- */
.section--financing { --tone: var(--bg-2); }
.financing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .financing-grid { grid-template-columns: 1fr; gap: 48px; } }
.financing-copy .eyebrow { margin-bottom: 18px; }
.financing-title {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--peach);
  text-wrap: pretty;
}
.financing-title em { font-style: italic; font-weight: 300; opacity: 0.8; }
.financing-lead { color: var(--text); margin: 0 0 28px; max-width: 48ch; }
.financing-foot {
  margin-top: 22px;
  font-size: 11px; line-height: 1.6;
  color: var(--peach-2);
  max-width: 50ch;
}

.financing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 36px 36px 28px;
  position: relative;
}
@media (max-width: 700px) { .financing-card { padding: 28px 22px 22px; } }
.financing-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 28px;
}
.financing-card__partner {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  color: var(--peach);
  letter-spacing: -0.01em;
}
.financing-card__sub {
  font-family: 'Courier New', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--peach-2);
  margin-top: 6px;
}
.financing-card__plus {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--peach);
  border: 1px solid var(--line);
}

.financing-points { list-style: none; padding: 0; margin: 0 0 28px; }
.financing-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.financing-points li:last-child { border-bottom: none; }
.financing-point__num {
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--peach-3);
  padding-top: 3px;
}
.financing-point__t {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  color: var(--peach);
  margin-bottom: 4px;
  line-height: 1.3;
}
.financing-point__s { font-size: 13px; color: var(--text-soft); line-height: 1.55; }

.financing-example {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  padding: 16px 20px;
}
.financing-example__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px;
  color: var(--text-soft);
  padding: 6px 0;
}
.financing-example__row--big {
  border-top: 1px solid var(--line-soft);
  margin-top: 6px; padding-top: 12px;
  font-size: 14px;
  color: var(--peach);
}
.financing-example__row--big strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
[data-theme="light"] .financing-card__sub,
[data-theme="light"] .financing-point__num,
[data-theme="light"] .financing-foot { color: var(--peach-2); }

/* ---------- DAY-MODE HERO TITLE — switchable via body[data-hero-color] ----------
   Default = "ink": warm espresso-brown (matches the palette, gender-neutral)
   "sage"         : deep moss green — ties to the bloom-mark center
   "white"        : crisp white (works over a hero photo / dark fill)
   "terracotta"   : original peach-pink gradient, kept as opt-in           */

/* INK — warm espresso-brown (opt-in via tweak) */
[data-theme="light"] body[data-hero-color="ink"] .hero-title {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #2A1810;
  font-weight: 500;
}
[data-theme="light"] body[data-hero-color="ink"] .hero-title em {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #5A3018;          /* warm peach-brown, intentional hierarchy */
  font-weight: 300;
  font-style: italic;
  opacity: 1;
}

/* TERRACOTTA — DEFAULT for day mode: deep brand terracotta, fits the entire palette */
[data-theme="light"] .hero-title,
[data-theme="light"] body[data-hero-color="terracotta"] .hero-title {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--peach);          /* #7A2E0E — deep terracotta, the brand accent */
  font-weight: 500;
}
[data-theme="light"] .hero-title em,
[data-theme="light"] body[data-hero-color="terracotta"] .hero-title em {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--text);
  font-weight: 400;
  font-style: normal;
}

/* SAGE — opt-in: deep moss green */
[data-theme="light"] body[data-hero-color="sage"] .hero-title {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #3F4F2A;
  font-weight: 500;
}
[data-theme="light"] body[data-hero-color="sage"] .hero-title em {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #6B7A4A;
  font-weight: 300;
  font-style: italic;
}

/* WHITE — crisp white headline with a subtle warm shadow for legibility */
[data-theme="light"] body[data-hero-color="white"] .hero-title {
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(31,15,8,0.18), 0 8px 28px rgba(31,15,8,0.12);
}
[data-theme="light"] body[data-hero-color="white"] .hero-title em {
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
  background: none;
  font-weight: 300;
  font-style: italic;
  opacity: .92;
}

/* ---------- N'AGE ENDORSEMENT ---------- */
.endorsement {
  position: relative;
  margin: 56px 0 0;
  padding: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.endorsement__body { padding: 44px 48px 36px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 820px) { .endorsement { grid-template-columns: 1fr; } .endorsement__body { padding: 36px 26px 28px; } }
.endorsement__mark {
  position: absolute;
  top: -18px; left: 36px;
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  color: var(--peach);
  padding-top: 12px;
}
.endorsement__photo {
  position: relative;
  margin: 0;
  border-left: 1px solid var(--line);
  overflow: hidden;
  min-height: 340px;
  background: #1f0f06;
}
@media (max-width: 820px) { .endorsement__photo { border-left: 0; border-top: 1px solid var(--line); min-height: 260px; aspect-ratio: 16 / 10; } }
.endorsement__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 22%;
  display: block;
}
.endorsement__caption {
  /* legacy */
}
.endorsement__credit{position:absolute;right:8px;bottom:6px;font-family:'Courier New',monospace;font-size:8.5px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.85);background:rgba(31,15,6,.45);padding:3px 8px;border-radius:3px;pointer-events:none}
.endorsement__caption-old {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(20,12,6,0) 0%, rgba(20,12,6,0.85) 100%);
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.endorsement__quote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--peach);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.endorsement__quote em { font-style: italic; font-weight: 400; color: var(--peach-2); }
[data-theme="light"] .endorsement__quote em { color: var(--peach); font-weight: 500; }
.endorsement__cite {
  display: flex; flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-style: normal;
}
.endorsement__name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--peach);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.endorsement__role {
  font-family: 'Courier New', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--peach-2);
}


/* ============================================================
   LAUNCH BANNER
   ============================================================ */
.launch-band { padding: 40px 0 80px; background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.launch-band__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 880px) { .launch-band__inner { grid-template-columns: 1fr; gap: 40px; } }
.launch-band__pill { display:inline-flex; align-items:center; gap:10px; padding:8px 14px; border:1px solid var(--peach-3); border-radius:999px; font-family:var(--sans); font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--peach-2); margin-bottom:24px; }
.launch-band__dot { width:8px; height:8px; border-radius:50%; background:var(--peach); box-shadow:0 0 0 4px color-mix(in srgb, var(--peach) 18%, transparent); animation:pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.2);opacity:.7} }
.launch-band__title { font-size:clamp(28px,4vw,46px); line-height:1.05; margin-bottom:18px; letter-spacing:-.01em; }
.launch-band__title em { font-style:italic; color:var(--peach); }
.launch-band__lead { color:var(--text-soft); font-size:15px; line-height:1.65; margin-bottom:22px; max-width:48ch; }
.launch-band__perks { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.launch-band__perks li { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--text); }
.launch-band__perks .ck { width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:var(--peach); color:var(--bg); }
.launch-form { background:var(--bg); border:1px solid var(--line-soft); padding:28px; border-radius:6px; }
.launch-form__lb { display:flex; align-items:center; gap:6px; font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--peach-2); margin-bottom:10px; }
.launch-form__row { display:flex; gap:10px; }
@media (max-width:560px) { .launch-form__row { flex-direction:column; } }
.launch-form__input { flex:1; min-width:0; padding:14px 16px; border:1px solid var(--line); background:transparent; color:var(--text); font-family:var(--sans); font-size:14px; border-radius:3px; outline:none; transition:border-color .2s; }
.launch-form__input:focus { border-color:var(--peach); }
.launch-form__input.is-error { border-color:#c44; }
.launch-form__priv { font-size:11px; color:var(--text-faint); margin-top:14px; line-height:1.5; }
.launch-form--done { display:flex; gap:14px; align-items:center; min-height:120px; }
.launch-form__check { width:42px; height:42px; border-radius:50%; background:var(--peach); color:var(--bg); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.launch-form__success { font-family:var(--serif); font-size:18px; line-height:1.4; color:var(--text); }

/* ============================================================
   FIRST VISIT
   ============================================================ */
.section--firstvisit { --tone: var(--bg-2); }
.fv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:60px; }
@media (max-width:980px) { .fv-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px) { .fv-grid { grid-template-columns:1fr; } }
.fv-card { padding:30px 24px; border:1px solid var(--line-soft); background:var(--bg); border-radius:4px; transition:transform .3s, border-color .3s; }
.fv-card:hover { transform:translateY(-3px); border-color:var(--peach-3); }
.fv-card__num { font-family:var(--serif); font-size:34px; color:var(--peach); margin-bottom:14px; line-height:1; font-style:italic; }
.fv-card__t { font-family:var(--serif); font-size:20px; margin-bottom:10px; color:var(--text); font-weight:500; }
.fv-card__s { font-size:13px; line-height:1.6; color:var(--text-soft); }
.closing-photo { margin: 56px auto 0; max-width: 280px; overflow: hidden; }
.closing-photo img { width: 100%; height: auto; display: block; }
@media (max-width:700px) { .closing-photo { margin-top: 40px; max-width: 220px; } }

.section--launchday { position: relative; }
.safety-head { position: relative; min-height: 0; margin-bottom: 0; }
.safety-photo { position: absolute; top: 100%; right: 2%; width: 380px; aspect-ratio: 556 / 900; z-index: 0; pointer-events: none; }
.safety-photo img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 26px; opacity: .2; -webkit-mask-image: radial-gradient(82% 78% at 50% 40%, #000 48%, transparent 100%); mask-image: radial-gradient(82% 78% at 50% 40%, #000 48%, transparent 100%); }
.section--launchday > .container, .section--firstvisit > .container { position: relative; z-index: 1; }
@media (max-width: 1100px) { .safety-photo { width: 280px; right: 0; } }
@media (max-width: 900px) { .safety-photo { position: relative; top: 0; right: auto; transform: none; width: 300px; margin: 28px auto 0; }
  .safety-photo img { opacity: .15; } }

/* ============================================================
   SHOP TEASER
   ============================================================ */
.section--shop { --tone: var(--bg-3); }
.shop-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
@media (max-width:980px) { .shop-grid { grid-template-columns:1fr; gap:50px; } }
.shop-title { font-size:clamp(34px,4.8vw,54px); line-height:1.05; margin:14px 0 22px; letter-spacing:-.01em; }
.shop-title em { font-style:italic; color:var(--peach); }
.shop-lead { color:var(--text-soft); margin-bottom:30px; max-width:46ch; }
.shop-brands { display:flex; flex-direction:column; gap:16px; }
.shop-brand { display:grid; grid-template-columns:140px 1fr; gap:18px; padding:14px 0; border-top:1px solid var(--line-soft); }
.shop-brand:last-child { border-bottom:1px solid var(--line-soft); }
.shop-brand__n { font-family:var(--serif); font-size:18px; color:var(--peach); }
.shop-brand__s { font-size:13px; color:var(--text-soft); line-height:1.5; }
.shop-card { background:var(--bg); border:1px solid var(--line-soft); padding:36px; border-radius:6px; }
.shop-card__label { font-size:10px; letter-spacing:.28em; text-transform:uppercase; color:var(--peach-2); margin-bottom:18px; }
.shop-countdown { display:flex; gap:8px; align-items:flex-end; margin-bottom:24px; }
.cd-cell { flex:1; text-align:center; padding:18px 4px; background:var(--bg-2); border:1px solid var(--line-soft); border-radius:4px; }
.cd-num { font-family:var(--serif); font-size:clamp(28px,4vw,42px); color:var(--peach); line-height:1; font-variant-numeric:tabular-nums; }
.cd-lb { font-size:9px; letter-spacing:.2em; text-transform:uppercase; color:var(--text-faint); margin-top:8px; }
.cd-sep { font-family:var(--serif); font-size:28px; color:var(--peach-3); padding-bottom:14px; }
.shop-perk { font-size:11px; color:var(--text-faint); margin-bottom:18px; line-height:1.5; }
.shop-form { display:flex; gap:8px; flex-direction:column; }
.shop-input { padding:14px 16px; border:1px solid var(--line); background:transparent; color:var(--text); font-family:var(--sans); font-size:14px; border-radius:3px; outline:none; }
.shop-input:focus { border-color:var(--peach); }
.shop-input.is-error { border-color:#c44; }
.shop-btn { width:100%; justify-content:center; }
.shop-success { display:flex; gap:12px; align-items:center; padding:16px; background:var(--bg-2); border-radius:4px; font-family:var(--serif); font-size:15px; color:var(--text); }
.shop-success__ck { width:30px; height:30px; border-radius:50%; background:var(--peach); color:var(--bg); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner { position:fixed; bottom:20px; left:20px; right:20px; max-width:920px; margin:0 auto; background:var(--bg); border:1px solid var(--peach-3); border-radius:6px; padding:22px 26px; z-index:9000; box-shadow:0 12px 40px rgba(0,0,0,.25); animation:slideUp .4s ease-out; }
@keyframes slideUp { from { transform:translateY(20px); opacity:0; } to { transform:translateY(0); opacity:1; } }
.cookie-banner__inner { display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; }
@media (max-width:680px) { .cookie-banner__inner { grid-template-columns:1fr; } }
.cookie-banner__title { font-family:var(--serif); font-size:18px; color:var(--text); margin-bottom:6px; }
.cookie-banner__body { font-size:12px; color:var(--text-soft); line-height:1.5; }
.cookie-banner__body a { color:var(--peach); text-decoration:underline; }
.cookie-banner__actions { display:flex; gap:10px; }
.cookie-banner__actions .btn { padding:10px 16px; font-size:11px; }

/* ============================================================
   POLICY MODAL
   ============================================================ */
.policy-modal { position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:9500; display:flex; align-items:flex-start; justify-content:center; padding:60px 20px; overflow-y:auto; }
.policy-modal__sheet { background:var(--bg); border:1px solid var(--line-soft); border-radius:6px; max-width:720px; width:100%; padding:50px 44px; position:relative; }
@media (max-width:560px) { .policy-modal__sheet { padding:40px 24px; } }
.policy-modal__close { position:absolute; top:14px; right:18px; background:none; border:none; color:var(--text); font-size:32px; cursor:pointer; line-height:1; padding:6px 12px; }
.policy-modal__title { font-size:32px; margin:8px 0 30px; }
.policy-modal__body h3 { font-family:var(--serif); font-size:18px; margin:24px 0 10px; color:var(--peach); font-weight:500; }
.policy-modal__body p { font-size:13px; line-height:1.7; color:var(--text-soft); margin-bottom:12px; }
.policy-modal__body ul { padding-left:20px; margin-bottom:12px; }
.policy-modal__body li { font-size:13px; line-height:1.7; color:var(--text-soft); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta { position:fixed; bottom:16px; left:16px; right:16px; z-index:8500; opacity:0; pointer-events:none; transform:translateY(80px); transition:transform .3s, opacity .3s; }
.sticky-cta.is-visible { opacity:1; pointer-events:auto; transform:translateY(0); }
.sticky-cta__btn { width:100%; justify-content:center; padding:16px 22px; box-shadow:0 8px 24px rgba(0,0,0,.25); }
@media (min-width:720px) { .sticky-cta { display:none; } }

/* ============================================================
   LAUNCH RIBBON (sticky top)
   ============================================================ */
.launch-ribbon {
  position: sticky; top: 0; z-index: 9100;
  background: linear-gradient(90deg, #2B1810 0%, #4A2418 50%, #2B1810 100%);
  color: #FAF3E9;
  border-bottom: 1px solid rgba(212, 168, 74, 0.25);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.launch-ribbon__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 9px 24px;
}
.launch-ribbon__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #D4A84A;
  box-shadow: 0 0 0 4px rgba(212, 168, 74, 0.18);
  flex: none;
  animation: ribbonPulse 2.4s ease-in-out infinite;
}
@keyframes ribbonPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.25);opacity:.65} }
.launch-ribbon__text {
  display: inline-flex; align-items: center; gap: 10px;
  flex: 1 1 auto; min-width: 0;
}
.launch-ribbon__text strong {
  font-weight: 500; color: #FAF3E9;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.launch-ribbon__sep {
  color: rgba(250, 243, 233, 0.35); flex: none;
}
.launch-ribbon__count {
  color: #D4A84A; font-weight: 500; flex: none;
  font-variant-numeric: tabular-nums;
}
.launch-ribbon__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(212, 168, 74, 0.5);
  border-radius: 999px;
  color: #D4A84A; text-decoration: none;
  font-weight: 500; font-size: 11px; letter-spacing: 0.04em;
  transition: background .2s, border-color .2s;
  flex: none; white-space: nowrap;
}
.launch-ribbon__cta:hover { background: rgba(212, 168, 74, 0.14); border-color: #D4A84A; }
.launch-ribbon__close {
  background: transparent; border: none; color: rgba(250, 243, 233, 0.55);
  cursor: pointer; padding: 4px; line-height: 0;
  border-radius: 4px; flex: none;
  transition: color .2s, background .2s;
}
.launch-ribbon__close:hover { color: #FAF3E9; background: rgba(250, 243, 233, 0.08); }
@media (max-width: 640px) {
  .launch-ribbon__inner { padding: 8px 14px; gap: 10px; font-size: 11px; }
  .launch-ribbon__sep, .launch-ribbon__count { display: none; }
  .launch-ribbon__cta { padding: 5px 10px; font-size: 10px; }
}

/* ============================================================
   LAUNCH DAY (opening day perks)
   ============================================================ */
.section--launchday { --tone: var(--bg-2); }
.ld-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 36px; margin-top: 200px; position: relative; z-index: 1; }
@media (max-width: 1100px) { .ld-grid { margin-top: 130px; } }
@media (max-width: 900px) { .ld-grid { margin-top: 8px; } }
@media (max-width: 980px) { .ld-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ld-grid { grid-template-columns: 1fr; } }
.ld-card { position: relative; }
.ld-card__n { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--peach); line-height: 1; margin-bottom: 12px; }
.ld-card__t { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; color: var(--text); font-weight: 500; line-height: 1.3; }
.ld-card__s { font-size: 14px; line-height: 1.6; color: var(--text-soft); }

/* price-note (e.g. botox treatment areas list) */
.price-note { padding: 14px 18px; margin: 0 0 18px 0; border-left: 2px solid var(--peach-3); background: color-mix(in srgb, var(--peach) 4%, transparent); font-size: 12.5px; line-height: 1.65; color: var(--text-soft); font-style: italic; }

.social-bar { margin-top: 30px; }
.social-bar__lb { margin-bottom: 16px; font-size: 9px; letter-spacing: 0.32em; }
.social-bar__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.social-bar__list li + li { margin-top: 2px; }
.social-link {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  text-decoration: none; transition: padding-left .25s ease, border-color .25s ease;
}
.social-link:hover { padding-left: 6px; border-bottom-color: var(--peach); }
.social-link__name {
  font-family: var(--serif); font-size: 15px; color: var(--text);
  font-style: italic; font-weight: 400; letter-spacing: 0.005em;
}
.social-link:hover .social-link__name { color: var(--peach); }
.social-link__handle {
  font-family: var(--sans); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-faint);
}
.social-link.is-soon { cursor: default; }
.social-link.is-soon:hover { padding-left: 0; border-bottom-color: var(--line-soft); }
.social-link.is-soon:hover .social-link__name { color: var(--text); }
.social-link.is-soon .social-link__name { color: var(--text-soft); }

/* ============================================================
   AWARD-WINNING PRODUCTS SHOWCASE  (inside Shop teaser)
   ============================================================ */
.shop-awards { margin-top:120px; padding-top:100px; border-top:1px solid var(--line-soft); }
.shop-awards__head { max-width:680px; margin:0 auto 64px; text-align:center; }
.shop-awards__title { font-size:clamp(28px,3.6vw,42px); line-height:1.1; letter-spacing:-.01em; margin:0 0 18px; }
.shop-awards__title em { font-style:italic; color:var(--peach); }
.shop-awards__lead { font-size:15px; color:var(--text-soft); line-height:1.6; max-width:56ch; margin:0 auto; }

.shop-products {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:24px;
}
@media (min-width:1100px) { .shop-products { grid-template-columns:repeat(3,1fr); } }

.prod {
  background:var(--bg);
  border:1px solid var(--line-soft);
  border-radius:6px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:border-color .25s ease, transform .25s ease;
}
.prod:hover { border-color:var(--peach-3); transform:translateY(-2px); }

.prod__visual {
  position:relative;
  aspect-ratio:1.2/1;
  background:linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--line-soft);
  overflow:hidden;
}

/* Real product photo (Nuori) */
.prod__photo {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background:#FFFFFF;
}
.prod__photo img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
  padding:8px;
  transition:transform 0.6s ease;
}
.prod:hover .prod__photo img { transform:scale(1.04); }
[data-theme="light"] .prod__photo { background:#FFFFFF; }

/* Stylised bottle placeholder */
.prod__bottle {
  width:120px;
  height:170px;
  background:linear-gradient(180deg, #F4E5D0 0%, #E8D2B5 100%);
  border-radius:6px 6px 4px 4px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:18px 14px;
  position:relative;
  box-shadow: inset 0 -20px 30px rgba(122,46,14,0.08), 0 8px 24px rgba(30,14,6,0.25);
}
.prod__bottle--sc { background:linear-gradient(180deg, #DDD7CE 0%, #B8B0A4 100%); }
.prod__bottle--nu { background:linear-gradient(180deg, #FAFAFA 0%, #E0E0E0 100%); }
.prod__bottle-cap {
  position:absolute;
  top:-12px;
  width:46px;
  height:14px;
  background:linear-gradient(180deg, #6B4A2E, #3A2010);
  border-radius:3px;
}
.prod__bottle--sc .prod__bottle-cap { background:linear-gradient(180deg, #B0A696, #807666); }
.prod__bottle--nu .prod__bottle-cap { background:linear-gradient(180deg, #BBB, #888); }
.prod__bottle-brand {
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:0.25em;
  font-weight:500;
  color:#1F0D04;
  margin-top:24px;
  text-align:center;
}
.prod__bottle--nu .prod__bottle-brand { letter-spacing:0.4em; font-weight:400; }
.prod__bottle-name {
  font-family:var(--serif);
  font-style:italic;
  font-weight:300;
  font-size:11px;
  color:#1F0D04;
  margin-top:auto;
  text-align:center;
  line-height:1.2;
  opacity:0.85;
}
.prod__bottle-cat {
  font-size:8px;
  letter-spacing:0.18em;
  color:#5C3018;
  margin-top:6px;
  text-transform:uppercase;
  opacity:0.7;
}

.prod__awards {
  position:absolute;
  top:14px;
  right:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:flex-end;
}
.prod__award {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--bg);
  border:1px solid var(--peach-3);
  color:var(--peach);
  padding:5px 9px 5px 7px;
  border-radius:99px;
  font-size:9px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:500;
}

.prod__body {
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.prod__brand-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.prod__brand {
  font-size:10px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--peach-2);
}
.prod__cat-tag {
  font-size:9px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--text-faint);
}
.prod__name {
  font-family:var(--serif);
  font-weight:300;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.005em;
  color:var(--text);
  margin:0;
}
.prod__price-row {
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-top:2px;
}
.prod__price {
  font-family:var(--serif);
  font-weight:400;
  font-size:18px;
  letter-spacing:-.005em;
  color:var(--text);
}
.prod__size {
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-faint);
}
.prod__desc {
  font-size:13px;
  line-height:1.55;
  color:var(--text-soft);
  margin:0;
}
.prod__note {
  display:flex;
  gap:10px;
  margin-top:6px;
  padding-top:14px;
  border-top:1px dashed var(--line-soft);
  align-items:flex-start;
}
.prod__note-star {
  color:var(--peach);
  font-size:14px;
  flex-shrink:0;
  line-height:1.4;
}
.prod__note-text {
  font-family:var(--serif);
  font-style:italic;
  font-size:13px;
  line-height:1.5;
  color:var(--text);
}

.shop-awards__foot {
  margin-top:48px;
  display:flex;
  justify-content:center;
}

/* Day-mode adjustments — bottles stay realistic */
[data-theme="light"] .prod__bottle {
  background:linear-gradient(180deg, #F8E8D0 0%, #E8C8A0 100%);
  box-shadow: inset 0 -20px 30px rgba(122,46,14,0.12), 0 8px 24px rgba(30,14,6,0.15);
}
[data-theme="light"] .prod__bottle--sc { background:linear-gradient(180deg, #E8E2D6 0%, #BFB6A8 100%); }
[data-theme="light"] .prod__bottle--nu { background:linear-gradient(180deg, #FFF 0%, #DCDCDC 100%); }
[data-theme="light"] .prod__visual {
  background:linear-gradient(160deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
[data-theme="light"] .prod__award { background:var(--bg); border-color:var(--peach-2); color:var(--peach); }

/* ============================================================
   BEFORE / AFTER  →  refined coming-soon placeholder
   ============================================================ */
.ba-placeholder { display:flex; justify-content:center; padding-top:32px; }
.ba-placeholder__inner {
  max-width:720px; padding:64px 48px;
  background:var(--bg);
  border:1px dashed var(--line-soft);
  border-radius:6px;
  text-align:center;
  display:flex; flex-direction:column; gap:18px; align-items:center;
}
.ba-placeholder__icon { color:var(--peach); margin-bottom:6px; }
.ba-placeholder__head {
  font-size:clamp(24px,2.4vw,30px); line-height:1.2; letter-spacing:-.005em;
  margin:0; color:var(--text);
}
.ba-placeholder__body {
  font-size:14px; line-height:1.7; color:var(--text-soft); margin:0;
  max-width:48ch;
}
.ba-placeholder__caseline {
  margin-top:32px; padding-top:32px; border-top:1px solid var(--line-soft);
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
  width:100%; max-width:520px;
  text-align:left;
}
@media (min-width:760px) { .ba-placeholder__caseline { grid-template-columns:repeat(4,1fr); } }
.ba-placeholder__case { display:flex; flex-direction:column; gap:4px; }
.ba-placeholder__case-num {
  font-family:var(--sans); font-size:10px; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--peach-2);
}
.ba-placeholder__case-title {
  font-family:var(--serif); font-size:14px; font-weight:400;
  color:var(--text); line-height:1.3;
}
.ba-placeholder__case-note {
  font-size:11px; color:var(--text-faint); line-height:1.4;
}

.t-result{margin:0 0 10px;font-family:var(--serif);font-size:15px;font-style:italic;line-height:1.4;color:var(--peach)}
.tm-prices{margin:0 0 34px;padding:22px 24px;border:1px solid var(--line);border-radius:3px;background:var(--bg-2)}
.tm-prices-label{font-family:var(--sans);font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:var(--good);margin-bottom:14px}
.tm-price-row{display:flex;justify-content:space-between;align-items:baseline;gap:20px;padding:9px 0;border-bottom:1px solid color-mix(in oklab,var(--line) 60%,transparent);font-size:14px;line-height:1.45}
.tm-price-row:last-of-type{border-bottom:0}
.tm-price-row>span:last-child{flex:0 0 auto;font-family:var(--serif);font-size:16px;white-space:nowrap}
.tm-price-row--free>span:last-child{color:var(--good);letter-spacing:.1em;font-family:var(--sans);font-size:12px}
.tm-price-row--course{color:var(--good)}
.tm-price-row--course>span:last-child{color:var(--good)}
.tm-prices-note{margin:14px 0 0;font-size:12px;color:color-mix(in oklab,var(--text) 62%,transparent)}
.credential-list{margin:14px 0 0;display:grid;gap:14px}
.credential-list dt{font-family:var(--sans);font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--good);margin-bottom:5px}
.credential-list dd{margin:0;font-size:14px;line-height:1.6}
@media(max-width:620px){.tm-price-row{flex-wrap:wrap;gap:2px}.tm-price-row>span:last-child{margin-left:auto}}

/* ============================================================
   MOBILVISNING — rettelser tilføjet 28. juli 2026
   Reglerne ligger sidst i filen, så de vinder på kaskaden uden
   at ændre en eneste af de oprindelige regler ovenfor.
   ============================================================ */

/* 1 · Lange, ubrydelige strenge (mailadresse, URL) tvang layoutet
       bredere end skærmen. De må gerne brydes midt i et ord. */
.contact-link,
.contact-info dd,
.footer a,
.footer li,
.social-link__handle { overflow-wrap: anywhere; }

/* 2 · Sikkerhedsnet: intet medie må stikke ud over skærmkanten. */
@media (max-width: 760px) {
  img, iframe, video { max-width: 100%; }
}

/* 3 · Footeren gik fra 5 til 2 kolonner ved 880px og stoppede der.
       To kolonner er stadig for meget på en telefon. */
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; margin-bottom: 44px; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer .brand-blurb { max-width: none; }
}

/* 4 · Kontaktsektionens definitionsliste stod i to kolonner, hvor
       mailadressen alene var bredere end telefonen. */
@media (max-width: 620px) {
  .contact-info dl { grid-template-columns: 1fr; gap: 0; }
  .contact-info dt { padding-top: 20px; }
  .contact-info dl > dt:first-of-type { padding-top: 0; }
  .contact-info dd { font-size: 17px; }
}

/* 5 · N'AGE-fotoet holdt fast i min-height og blev bredere end skærmen. */
@media (max-width: 620px) {
  .endorsement__photo { min-height: 0; aspect-ratio: 4 / 3; }
}

/* 6 · Navigationen: logo + sprogvælger + "Book tid" kunne ikke være
       på linjen. Knappen har white-space:nowrap og kan ikke krympe. */
@media (max-width: 480px) {
  .nav-inner { gap: 10px; }
  .nav-side { gap: 8px; }
  .nav-side .btn--solid { padding: 11px 14px; letter-spacing: 0.14em; }
  .lang-pill button { padding: 6px 9px; }
}

/* 7 · "Se behandlinger" stod som ren kontur oven på hero-fotoet og
       var reelt ulæselig. Giver den en cremet flade at stå på, og
       lader begge knapper fylde bredden på telefon. */
/* Knappen ligger oven på hero-fotoet i ALLE bredder, ikke kun på telefon.
   Uden en flade bag teksten er den reelt ulæselig, hvor fotoet er lyst. */
.hero-ctas .btn:not(.btn--solid) {
  background: rgba(250, 243, 233, 0.94);
  border-color: var(--peach);
  color: var(--peach);
}
.hero-ctas .btn:not(.btn--solid):hover {
  background: var(--peach);
  color: var(--bg);
  border-color: var(--peach);
}
@media (max-width: 820px) {
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* 8 · Sidens margen (--gutter) var låst til 32px hele vejen ned, fordi
       de 22px hører til Tweaks' "compact"-indstilling og ikke til en
       breakpoint. På en telefon åd de 64px af en 390px skærm. */
@media (max-width: 560px) { :root { --gutter: 20px; } }
@media (max-width: 380px) { :root { --gutter: 16px; } }

/* 9 · "Book tid" har white-space:nowrap og kunne derfor ikke krympe.
       Den blev skåret af i højre kant på telefon. */
@media (max-width: 480px) {
  .nav-side .btn--solid { padding: 10px 12px; font-size: 9px; letter-spacing: 0.12em; gap: 8px; }
  .nav-side .btn--solid .arr { width: 12px; height: 12px; }
  .nav-logo .name { font-size: 19px; }
  .nav-logo .sub { font-size: 7px; letter-spacing: 0.34em; }
}

/* 10 · Den faste "Book tid"-bjælke i bunden lagde sig hen over
        footerens nederste linjer. Footeren får plads til at slutte
        over bjælken. */
@media (max-width: 820px) {
  .footer { padding-bottom: 96px; }
}

/* 11 · Meget smalle telefoner (iPhone SE, 320px): logo + sprogvælger
        + "Book tid" krævede 350px på en 288px bred linje. Alt tre
        strammes, og pilen i knappen ryger ud — teksten bærer den fint. */
@media (max-width: 400px) {
  .nav-inner { gap: 8px; }
  .nav-side { gap: 6px; }
  .nav-logo { gap: 8px; }
  .nav-logo .bloom svg { width: 24px; height: 24px; }
  .nav-logo .name { font-size: 17px; }
  .nav-logo .sub { font-size: 6.5px; letter-spacing: 0.26em; }
  .lang-pill button { padding: 5px 7px; font-size: 9px; }
  .nav-side .btn--solid { padding: 9px 11px; font-size: 8.5px; letter-spacing: 0.08em; gap: 0; }
  .nav-side .btn--solid .arr { display: none; }
}

/* 12 · .btn har white-space:nowrap. På 320px kunne "BOOK EN
        KONSULTATION" ikke være på én linje og pressede hele
        dokumentet 37px bredere — det var derfor navigationen
        også så ud til at flyde over. Teksten må bryde. */
@media (max-width: 400px) {
  .btn {
    white-space: normal;
    text-align: center;
    padding: 15px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }
  /* navigationsknappen er allerede strammet i regel 11 og skal blive
     på én linje — den er kort nok */
  .nav-side .btn--solid { white-space: nowrap; padding: 9px 11px; font-size: 8.5px; }
}

/* 13 · Sprogvælgeren flytter til footeren på telefon.
        Logo + DA/EN + "Book tid" er tre ting for meget på én linje i
        toppen, og "Book tid" er den vigtigste. Sprogvælgeren findes
        derfor to steder i markup'en, og her afgøres hvilken der vises. */
.lang-pill--footer { display: none; }
.footer-lang { margin-top: 30px; }
.footer-lang__lb { margin-bottom: 12px; }

@media (max-width: 620px) {
  .nav .lang-pill--nav { display: none; }
  .lang-pill--footer { display: inline-flex; }
}

/* Med sprogvælgeren ude af toppen er der rigelig plads igen, så
   knappen behøver ikke længere være presset sammen. */
@media (max-width: 620px) {
  .nav-side .btn--solid { padding: 12px 18px; font-size: 10px; letter-spacing: 0.16em; }
}
@media (max-width: 400px) {
  .nav-side .btn--solid { padding: 11px 15px; font-size: 9.5px; letter-spacing: 0.12em; gap: 8px; }
  .nav-side .btn--solid .arr { display: inline-block; }
  .nav-logo .name { font-size: 19px; }
  .nav-logo .bloom svg { width: 28px; height: 28px; }
}

/* 14 · Samtykke-flade hvor Google Maps ellers ville stå. Cookiepolitikken
        lover et statisk alternativ, indtil der er sagt ja til alle cookies. */
.map-consent {
  width: 100%;
  aspect-ratio: 1.3/1;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  padding: 28px;
}
.map-consent__inner { text-align: center; max-width: 42ch; }
.map-consent__t { font-family: var(--serif); font-size: 19px; color: var(--peach); margin-bottom: 10px; }
.map-consent__s { font-size: 13.5px; line-height: 1.65; color: var(--text-soft); margin-bottom: 20px; }
.map-consent__link { display: inline-block; margin-top: 16px; font-size: 12px; letter-spacing: 0.1em; color: var(--peach-2); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.map-consent__link:hover { color: var(--peach); border-color: var(--peach); }

/* 15 · Hero-fotoet på telefon.
        Fotoet lå som baggrund bag teksten, og cremeskyggen ovenpå var solid
        ned til 46% af højden — præcis dér hvor ansigtet er. Man så derfor
        kun underkroppen. På telefon lægges fotoet i stedet som et selvstændigt
        felt under teksten, ligesom det står ved siden af teksten på skærm. */
@media (max-width: 620px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding: 128px 0 0;
  }
  .hero-grid { order: 1; }

  .hero-photo-bg {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 5 / 4;
    margin-top: 38px;
    overflow: hidden;
  }
  .hero-photo-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 18%;   /* holder ansigtet inde i udsnittet */
  }
  /* teksten ligger ikke længere oven på fotoet, så sløret er overflødigt */
  .hero-photo-bg::after { display: none; }

  .scroll-ind { display: none; }
}

/* 16 · Fejlbesked i bookingformularen. Vises kun hvis afsendelsen fejler —
        formularen må aldrig kvittere for en tid, klinikken ikke har fået. */
.bk-error {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #C0553C;
  background: rgba(192, 85, 60, 0.07);
  color: #8A3A22;
  font-size: 13.5px;
  line-height: 1.6;
}

/* 17 · Forklaring når man vælger en injektionsbehandling. Den bookes som
        forundersøgelse, fordi der skal gå 48 timer før første behandling. */
.bk-consult-note {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--peach);
  background: var(--bg-2);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-soft);
}
.bk-consult-note strong { display: block; color: var(--peach); font-weight: 400; margin-bottom: 4px; }
