/* ==========================================================================
   Hanbang Skin Solutions — "hanbangskin 2"
   Design language: EDITORIAL SKIN JOURNAL. A magazine feature-story register:
   serif does the talking, whitespace and numbered chapters carry structure,
   photography is a deliberate, occasional full-bleed moment rather than
   wallpaper behind every section. See PROJECT-MEMORY.md for the brief this
   was built against.

   Sections: 1 Tokens · 2 Reset · 3 Typography · 4 Layout · 5 Header
             6 Footer · 7 Buttons · 8 Forms · 9 Chapters & cards
             10 Treatment cards · 11 Components · 12 Utilities
   ========================================================================== */

/* 1. Tokens ================================================================ */
:root {
  /* Ink & paper — the journal's base palette. Brand navy/gold survive only as
     deliberate accent inks (a pull-quote, a chapter numeral, a link), not as
     large background fills the way the old site used --navy-600 panels. */
  --paper:    #f7f2e9;
  --paper-1:  #efe8d9;   /* one shade deeper, for alternating chapters */
  --paper-2:  #fffdf8;   /* near-white, for cards sitting on paper */
  --ink:      #1c1712;
  --ink-mid:  #4a4038;
  --ink-soft: #7c7166;
  --line:     #ddd2bd;
  --line-soft:#e9e1d0;

  --navy:     #0b2a4a;
  --navy-700: #163a5f;
  --gold:     #b8903f;
  --gold-soft:#e4c98a;
  --rust:     #a34728;   /* second accent — used sparingly for warmth/emphasis */

  --font-serif:   "Quattrocento", Georgia, "Times New Roman", serif;
  --font-sans:    "Quattrocento Sans", "Helvetica Neue", Arial, sans-serif;
  --font-label:   "Catamaran", "Helvetica Neue", Arial, sans-serif;

  /* An oversized, confident scale — headlines are the largest thing on most
     pages, not a paragraph-sized h1 competing with a photo. */
  --step--1: clamp(0.86rem, 0.83rem + 0.14vw, 0.95rem);
  --step-0:  clamp(1.05rem, 1rem + 0.2vw, 1.18rem);
  --step-1:  clamp(1.28rem, 1.18rem + 0.4vw, 1.55rem);
  --step-2:  clamp(1.6rem, 1.4rem + 0.8vw, 2.15rem);
  --step-3:  clamp(2rem, 1.6rem + 1.6vw, 2.9rem);
  --step-4:  clamp(2.5rem, 1.8rem + 2.8vw, 4rem);
  --step-5:  clamp(3.1rem, 2rem + 4.4vw, 5.6rem);

  --gap:    1.5rem;
  --pad-x:  clamp(1.15rem, 4vw, 3rem);
  --section:clamp(3.5rem, 8vw, 7.5rem);
  --wide:   1240px;
  --measure:  66ch;

  --radius:   2px;
  --radius-lg:0px;
  --shadow:   0 1px 2px rgba(28, 23, 18, .05), 0 10px 30px -14px rgba(28, 23, 18, .22);
  --shadow-lg:0 2px 8px rgba(28, 23, 18, .08), 0 30px 70px -30px rgba(28, 23, 18, .32);

  --header-h: 84px;

  /* hard offset shadows: paper-on-desk depth, never soft blur */
  --hard:    6px 6px 0 var(--ink);
  --hard-sm: 4px 4px 0 var(--ink);
}
@media (max-width: 900px) { :root { --header-h: 66px; } }

/* 2. Reset ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1.25rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0; font-family: var(--font-sans); font-size: var(--step-0);
  line-height: 1.7; color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; overflow-wrap: break-word;
}
img, picture, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--gap) 0; }
:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; border-radius: 2px; }

/* 3. Typography ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif); color: var(--ink); font-weight: 400;
  line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.01em;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 700; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rust); }
strong, b { font-weight: 700; }
blockquote { margin: 0; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-label); font-size: var(--step--1); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 .7rem;
}
.hero .eyebrow, .chapter__head .eyebrow, .section__head .eyebrow {
  display: flex; align-items: center; gap: .8rem;
}
.hero .eyebrow::after, .chapter__head .eyebrow::after, .section__head .eyebrow::after {
  content: ""; flex: 1 1 50px; max-width: 70px; height: 1px; background: currentColor; opacity: .5;
}
.section__head.text-center .eyebrow { justify-content: center; }

.lede { font-size: var(--step-1); line-height: 1.6; color: var(--ink-mid); }
.script { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* — pull-quote: breaks the column, the one place type gets to be loud — */
.pull-quote {
  font-family: var(--font-serif); font-style: italic; color: var(--navy);
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.4rem); line-height: 1.3;
  margin: clamp(2rem, 5vw, 3.5rem) 0; padding-left: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--gold);
}
.pull-quote cite { display: block; font-family: var(--font-label); font-style: normal;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: .9rem; }

/* 4. Layout ================================================================ */
.container { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--pad-x); }
.container--narrow { max-width: 880px; }
.container--tight  { max-width: 700px; }
.container--text   { max-width: var(--measure); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper1 { background: var(--paper-1); }
.section--ink { background: var(--ink); color: #efe6d6; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .eyebrow { color: var(--gold-soft); }
.section--ink a { color: var(--gold-soft); }
.section--ink p { color: #cfc4b2; }

.section__head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head.text-center { margin-inline: auto; text-align: center; }

.stack > * + * { margin-top: var(--gap); }
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 1.6em; font-size: var(--step-2); }
.prose p { color: var(--ink-mid); }

.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }

/* asymmetric split: an editorial column pairing, deliberately unequal */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide  { grid-template-columns: 1.5fr 1fr; }
  .split--wide-r{ grid-template-columns: 1fr 1.5fr; }
  .split--center{ align-items: center; }
}

.skip-link {
  position: absolute; left: .75rem; top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius);
  transition: top .18s ease;
}
.skip-link:focus { top: .75rem; color: #fff; }

/* 5. Header ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 233, .92); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.site-header__logo img { width: 172px; height: auto; filter: sepia(8%) saturate(120%); }
@media (max-width: 900px) { .site-header__logo img { width: 138px; } }

.nav { display: none; }
/* Book now stays in the header at every width (no fixed bottom bar on mobile) */
.site-header .header-cta { display: inline-flex; margin-inline-start: auto; white-space: nowrap; }
@media (max-width: 1079px) { .site-header .nav-toggle { margin-inline-start: 0; } .site-header__bar { gap: .6rem; } }
@media (max-width: 380px) { .site-header .header-cta { padding: .55rem .85rem; font-size: .66rem; } .nav-toggle__label { display: none; } }
@media (min-width: 1080px) {
  .nav { display: block; margin-inline-start: auto; }
  .nav__list { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
  .nav__link {
    display: block; padding: .5rem .8rem; font-family: var(--font-label); font-size: .78rem;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mid);
    text-decoration: none; border-radius: var(--radius); white-space: nowrap;
  }
  .nav__link:hover { color: var(--rust); }
  .nav__link[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -2px 0 var(--gold); }
  .site-header .header-cta { display: inline-flex; margin-inline-start: .6rem; }
}
.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem; margin-inline-start: auto;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .5rem .7rem; cursor: pointer; font-family: var(--font-label); font-size: .74rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars span, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle__bars::before { top: 0; } .nav-toggle__bars span { top: 5px; } .nav-toggle__bars::after { top: 10px; }
[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }
@media (min-width: 1080px) { .nav-toggle { display: none; } }

.drawer {
  position: fixed; inset: var(--header-h) 0 0; z-index: 99; background: var(--paper-2);
  overflow-y: auto; padding: 1.5rem var(--pad-x) 4rem;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.drawer[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1080px) { .drawer { display: none; } }
.drawer__list { list-style: none; margin: 0; padding: 0; }
.drawer__list li { border-bottom: 1px solid var(--line-soft); }
.drawer__list a {
  display: block; padding: 1.05rem .1rem; text-decoration: none;
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink);
}
.drawer__list a[aria-current="page"] { color: var(--rust); }
.drawer__cta { margin-top: 1.75rem; display: grid; gap: .6rem; }
body[data-nav-open="true"] { overflow: hidden; }

/* 6. Footer ================================================================ */
.site-footer { background: var(--ink); color: #cfc4b2; padding-block: clamp(3rem, 6vw, 5rem) 0; }
.site-footer__top { text-align: center; padding-bottom: clamp(2rem, 5vw, 3.5rem); border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer__mark { font-family: var(--font-serif); font-style: italic; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin: 0 0 .4rem; }
.site-footer__tag { color: #a89a86; margin: 0; }
.site-footer h2 { font-family: var(--font-label); color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.site-footer a { color: #cfc4b2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid { padding-block: clamp(2.5rem, 5vw, 3.5rem); display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .93rem; }
address.site-footer__list { font-style: normal; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center; justify-content: space-between; font-size: .84rem; }
.social { display: flex; gap: .55rem; list-style: none; margin: 1rem 0 0; padding: 0; }
.social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.social a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.social svg { width: 16px; height: 16px; }

/* 7. Buttons ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.7rem; border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-label); font-size: .8rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--rust); color: #fff; }
.btn--ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--gold-soft); }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--wide { width: 100%; }
.btn--sm { padding: .62rem 1.15rem; font-size: .72rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-label); font-weight: 700; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: var(--navy); }
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* 8. Forms ================================================================= */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field > label { font-family: var(--font-label); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mid); }
.field .req { color: var(--rust); }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .9rem; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); font-size: .98rem; font-family: var(--font-sans);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,42,74,.12); }
.field textarea { min-height: 120px; resize: vertical; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .6rem; }
.field--check input { width: 1.05rem; height: 1.05rem; margin-top: .35rem; accent-color: var(--navy); }
.field--check label { font-family: var(--font-sans); font-size: .87rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--ink-mid); line-height: 1.5; }
.form__note { font-size: .8rem; color: var(--ink-soft); }
.form__hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.form-card { background: var(--paper-2); border: 1px solid var(--ink); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--hard); }

/* 10. Treatment cards ======================================================= */
.tx-chapter:nth-of-type(even) { background: var(--paper-1); }
.tcard__more { display: inline-flex; align-items: center; gap: .5rem; margin-top: .9rem; font-family: var(--font-label); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.tcard__more::after { content: "+"; font-size: 1.1rem; line-height: 1; transition: transform .2s ease; }
.tcard[open] .tcard__more::after { transform: rotate(45deg); }
.tcard[open] .tcard__more-open { display: none; }
.tcard:not([open]) .tcard__more-close { display: none; }
.tcard__grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 860px) { .tcard__grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.tcard__grid > * { min-width: 0; }
.tcard__side { display: grid; gap: 1.4rem; align-content: start; }
.tcard__label { margin: 0 0 .55rem; font-family: var(--font-label); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.chips li { border: 1px solid var(--line); background: var(--paper); padding: .25rem .7rem; font-size: .8rem; color: var(--ink-mid); }
.tcard__extra { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.tcard__extra figure { margin: 0; }
.tcard__extra img { width: 100%; border: 1px solid var(--line); background: #fff; }
.tcard__extra figcaption { margin-top: .45rem; font-family: var(--font-label); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.tcard .say blockquote { font-size: 1.1rem; }

.tcard-list { display: grid; gap: 1.1rem; }
.tcard {
  background: var(--paper-2); border: 1px solid var(--ink); padding: clamp(1.3rem, 3vw, 2rem);
  transition: box-shadow .2s ease, transform .2s ease;
}
.tcard summary { cursor: pointer; list-style: none; }
.tcard summary::-webkit-details-marker { display: none; }
.tcard__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.tcard__head h3 { font-size: var(--step-2); margin: 0; flex: 1 1 auto; min-width: 200px; }
.tcard__duration { font-family: var(--font-label); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.tcard__summary { color: var(--ink-mid); margin: .6rem 0 0; max-width: 66ch; }
.tcard__toggle { position: relative; display: inline-block; width: 15px; height: 15px; margin-top: .8rem; }
.tcard__toggle::before, .tcard__toggle::after { content: ""; position: absolute; background: var(--navy); transition: transform .2s ease; }
.tcard__toggle::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.tcard__toggle::after  { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.tcard[open] .tcard__toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.tcard__body { padding-top: clamp(1.5rem, 3vw, 2rem); margin-top: clamp(1.5rem, 3vw, 2rem); border-top: 1px dashed var(--line); display: grid; gap: 1.5rem; }
.tcard__figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.tcard__figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tcard__price { font-family: var(--font-label); font-size: .82rem; letter-spacing: .03em; color: var(--ink); background: var(--paper-1); border-left: 3px solid var(--gold); padding: .8rem 1rem; }
.tcard__price strong { color: var(--rust); font-size: 1.05em; }
.tcard__price--gap { color: var(--ink-soft); font-style: italic; }
.tcard__price--gap a { color: inherit; text-decoration: underline; }
.tcard__reviews { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.tcard__quote { margin: 0; background: var(--paper-1); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.tcard__quote blockquote { font-family: var(--font-serif); font-style: italic; color: var(--ink-mid); font-size: .98rem; }
.tcard__quote figcaption { margin-top: .6rem; font-family: var(--font-label); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }

.tcard--menu { background: transparent; border: 0; border-top: 1px solid var(--line-soft); border-radius: 0; padding: 1.4rem 0; }
.tcard--menu:first-child { border-top: 0; }
.tcard--menu .tcard__head h3 { font-size: var(--step-1); }
.tcard--menu p { color: var(--ink-mid); margin: .5rem 0 0; }
.tcard__steps-inline { font-size: .84rem; color: var(--ink-soft); font-style: italic; }
.tcard--menu .tcard__price { display: inline-block; margin-top: .6rem; padding: .3rem .8rem; background: none; border: 1px solid var(--line); }

.step { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; align-items: start; }
.step__num { font-family: var(--font-serif); font-style: italic; font-size: var(--step-1); color: var(--gold); }
.step__title { font-family: var(--font-sans); font-weight: 700; font-size: 1rem; margin: 0 0 .3rem; color: var(--ink); }
.step p { color: var(--ink-mid); font-size: .95rem; margin: 0; }

.mode-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.mode-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); margin-bottom: .8rem; }
.mode-card h4 { font-family: var(--font-serif); font-weight: 400; font-size: var(--step-1); margin: 0 0 .4rem; }
.mode-card p { color: var(--ink-mid); font-size: .93rem; }

/* 11. Components ============================================================ */

/* — page hero (generic base; index.html's own recipe lives in pages.css) — */
.hero { position: relative; background: var(--paper); color: var(--ink); overflow: hidden; }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 5rem); }
.hero h1 { max-width: 16ch; }
.hero p { color: var(--ink-mid); max-width: 58ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero--image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(247,242,233,.94) 0%, rgba(247,242,233,.76) 40%, rgba(247,242,233,.18) 75%, rgba(247,242,233,0) 100%);
  z-index: 1;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }

.crumbs { font-size: .8rem; color: var(--ink-soft); padding-block: 1rem; border-bottom: 1px solid var(--line); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.crumbs a { color: var(--ink-mid); text-decoration: none; }
.crumbs a:hover { color: var(--rust); }
.crumbs [aria-current] { color: var(--navy); }

.frame { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-1); }
.frame img { width: 100%; }
.frame--shadow { border: 0; box-shadow: none; }

.video { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); aspect-ratio: 16/9; }
.video video, .video img { width: 100%; height: 100%; object-fit: cover; }
.video__play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4)); border: 0; cursor: pointer; color: #fff; }
.video__play span { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--navy); box-shadow: 0 10px 40px -10px rgba(0,0,0,.6); transition: transform .2s ease; }
.video__play:hover span { transform: scale(1.07); }
.video__play svg { width: 24px; height: 24px; margin-left: 3px; }
.video[data-playing="true"] .video__play { display: none; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.ticks li { display: grid; grid-template-columns: 1.2rem 1fr; gap: .65rem; align-items: start; font-size: .95rem; color: var(--ink-mid); }
.ticks li::before { content: ""; margin-top: .4em; width: 1.2rem; height: .8rem; background: var(--gold); clip-path: polygon(14% 46%, 0 60%, 38% 100%, 100% 22%, 86% 8%, 38% 72%); }
.section--ink .ticks li { color: #e4dccb; }

.review { display: flex; flex-direction: column; gap: .85rem; height: 100%; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.review__stars { color: var(--gold); letter-spacing: .12em; font-size: .82rem; }
.review blockquote { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: var(--ink-mid); line-height: 1.6; }
.review figcaption { margin-top: auto; padding-top: .5rem; font-family: var(--font-label); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); }

.outlet { display: grid; gap: .3rem; font-size: .97rem; }
.outlet dt { font-family: var(--font-label); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-top: 1.1rem; }
.outlet dt:first-child { margin-top: 0; }
.outlet dd { margin: 0; color: var(--ink-mid); }

.map-embed { width: 100%; aspect-ratio: 4/3; border: 0; display: block; }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 1.2rem 2.5rem 1.2rem 0; position: relative; font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: ""; position: absolute; right: .4rem; top: 1.65rem; width: 11px; height: 11px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform .2s ease; }
.accordion details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
.accordion summary:hover { color: var(--rust); }
.accordion__body { padding: 0 0 1.4rem; color: var(--ink-mid); font-size: .97rem; max-width: var(--measure); }
.accordion__body ul { margin: 0 0 1em; padding-left: 1.1rem; }
.accordion__body li { margin-bottom: .35rem; }

.pricing { background: var(--paper-2); border: 1px solid var(--ink); box-shadow: var(--hard); overflow: hidden; }
.pricing table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.pricing thead th { background: var(--ink); color: #fff; text-align: right; padding: 1rem; font-family: var(--font-label); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pricing thead th:first-child { text-align: left; }
.pricing td { padding: 1rem; border-top: 1px solid var(--line-soft); text-align: right; white-space: nowrap; font-family: var(--font-serif); }
.pricing td:first-child { text-align: left; white-space: normal; font-weight: 700; color: var(--ink); }
.pricing tbody tr:hover { background: var(--paper-1); }
.pricing .price-trial { color: var(--rust); font-weight: 700; }
@media (max-width: 720px) {
  .pricing thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .pricing tr { display: block; border-top: 1px solid var(--line); padding: 1rem; }
  .pricing tr:first-child { border-top: 0; }
  .pricing td { display: flex; justify-content: space-between; gap: 1rem; border: 0; padding: .3rem 0; text-align: right; }
  .pricing td:first-child { font-size: var(--step-1); padding-bottom: .6rem; font-family: var(--font-serif); }
  .pricing td[data-label]::before { content: attr(data-label); text-align: left; font-family: var(--font-label); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
}
.pricing__notes { padding: 1.2rem 1.3rem; background: var(--paper-1); border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-mid); }
.pricing__notes p { margin-bottom: .4em; }
.price-gap { margin-top: 2.2rem; padding: 1.3rem 1.5rem; border: 1px dashed var(--ink); background: var(--paper-1); }
.price-gap p { color: var(--ink-mid); margin: 0; }

.results-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.results-grid img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.dos-donts { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.dos-donts img { width: 100%; border-radius: var(--radius-lg); }

.callout { background: var(--paper-1); border-left: 3px solid var(--gold); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: .94rem; color: var(--ink-mid); }
.note { font-size: .84rem; color: var(--ink-soft); font-style: italic; }


/* 12. Utilities ============================================================= */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.5rem; }
.kr { font-size: .82em; color: var(--ink-soft); font-weight: 400; font-style: normal; }

/* 13. Journal components ==================================================
   Shared editorial system (first built for Reviews & Press, now sitewide):
   serif headlines with a navy italic accent, roman-numeral chapter labels,
   hard offset shadows instead of soft blur, one dark chapter per page at
   most, and the gold highlighter stroke reserved for quoted words. */

mark.hl {
  color: inherit; padding: 0 .12em; margin: 0 -.06em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M3 9C38 5 84 12 128 7s58 1 69-1l-1 11c-42 2-93-3-134 1-22 2-45 0-60 1z' fill='%23e4c98a'/%3E%3C/svg%3E")
    0 88% / 100% 62% no-repeat;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.ch--ink mark.hl, .close-band mark.hl, .panel-navy mark.hl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M3 9C38 5 84 12 128 7s58 1 69-1l-1 11c-42 2-93-3-134 1-22 2-45 0-60 1z' fill='%23b8903f' fill-opacity='.55'/%3E%3C/svg%3E");
}

.kicker, .ch__label {
  font-family: var(--font-label); font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rust); margin: 0 0 1rem;
}
.ch { padding-block: var(--section); scroll-margin-top: calc(var(--header-h) + 60px); }
.ch__head { max-width: 860px; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.ch__label { display: flex; align-items: baseline; gap: .8rem; }
.ch__num {
  font-family: var(--font-serif); font-style: italic; font-size: 1.9rem; letter-spacing: 0;
  text-transform: none; color: var(--gold); line-height: 1; font-weight: 400;
}
.ch h2 { font-size: var(--step-4); line-height: 1.04; margin-bottom: .45em; }
.ch h2 em, .page-hero__title em, .close-band h2 em { color: var(--navy-700); }
.ch__intro { font-size: var(--step-1); line-height: 1.6; color: var(--ink-mid); max-width: 62ch; }
.fine { font-size: .82rem; color: var(--ink-soft); }

/* one reusable quote unit: serif quote + small-caps attribution */
.say { margin: 0; }
.say blockquote { font-family: var(--font-serif); font-size: var(--step-1); line-height: 1.42; color: var(--ink); }
.say figcaption, .cite {
  display: block; margin-top: .7rem; font-family: var(--font-label); font-style: normal;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}
.say figcaption span { display: block; font-weight: 400; letter-spacing: .04em; text-transform: none; font-size: .82rem; font-family: var(--font-sans); font-style: italic; }


/* dark chapter */
.ch--ink { background: var(--ink); color: #e9dfcd; }
.ch--ink h2 { color: #fff; }
.ch--ink h2 em { color: var(--gold-soft); }
.ch--ink .ch__label { color: var(--gold-soft); }
.ch--ink .ch__intro { color: #bfb3a0; }
.ch--ink .say blockquote { color: #fff; }
.ch--ink .say figcaption { color: #a99c88; }
.ch--ink .cite { color: #a99c88; }

/* split page hero: copy + framed photo */
.page-hero { padding-block: clamp(2rem, 4.5vw, 4rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.page-hero__grid { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
@media (min-width: 980px) { .page-hero__grid { grid-template-columns: 1fr 1.05fr; } }
.page-hero__grid > * { min-width: 0; }
.page-hero__title { font-size: clamp(2.5rem, 1.6rem + 2.7vw, 4.3rem); line-height: 1.02; letter-spacing: -.02em; margin-bottom: .45em; }
.page-hero__title em { display: block; }
.page-hero__lede { font-size: var(--step-1); line-height: 1.6; color: var(--ink-mid); max-width: 36rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: 2rem; }

.page-hero__visual { position: relative; margin-top: 1.4rem; padding: 0 clamp(.5rem, 2vw, 1.4rem) clamp(4.5rem, 9vw, 5.5rem) 0; }
.page-hero__photo { margin: 0; position: relative; }
.page-hero__photo::before {
  content: ""; position: absolute; inset: 0; transform: translate(clamp(10px, 1.6vw, 18px), clamp(10px, 1.6vw, 18px));
  background: var(--navy); z-index: 0;
}
.page-hero__photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 16/11; object-fit: cover; object-position: 60% 50%; border: 1px solid var(--ink); }
.page-hero__photo figcaption {
  position: absolute; z-index: 2; right: .7rem; bottom: .7rem; background: rgba(255,253,248,.92);
  font-family: var(--font-label); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .55rem; color: var(--ink-mid);
}
.page-hero__tag {
  position: absolute; z-index: 3; left: clamp(-1rem, -1.5vw, -.3rem); top: -1.6rem;
  margin: 0; background: var(--paper-2); border: 1px solid var(--ink); box-shadow: var(--hard-sm);
  padding: .7rem .95rem; transform: rotate(-3deg); max-width: 15rem;
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.25;
}
.page-hero__tag span { display: block; font-family: var(--font-label); font-style: normal; font-weight: 800; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .2rem; }
@media (max-width: 560px) { .page-hero__tag { left: 0; top: -1.4rem; font-size: .92rem; max-width: 12rem; } }

.hero-card {
  position: absolute; z-index: 3; left: clamp(.5rem, 3vw, 2rem); bottom: 0;
  display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--ink); box-shadow: var(--hard);
  padding: .9rem 1.4rem .9rem 1.1rem; transition: transform .18s ease, box-shadow .18s ease;
}
.hero-card:hover { color: var(--ink); transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.hero-card__num { font-family: var(--font-serif); font-size: clamp(2.8rem, 2rem + 2.4vw, 3.8rem); line-height: .9; }
.hero-card__meta { display: grid; gap: .15rem; font-size: .9rem; color: var(--ink-mid); }
.hero-card__num { color: var(--gold); }
.hero-card__label { font-family: var(--font-label); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }

@media (max-width: 560px) { .page-hero__photo figcaption { display: none; } }

/* closing call-to-action band */
.close-band { background: var(--navy); color: #dfe6ee; padding-block: clamp(4rem, 10vw, 8rem); text-align: center; position: relative; overflow: hidden; }
.close-band::before {
  content: "\201C"; position: absolute; left: 50%; top: -.32em; transform: translateX(-50%);
  font-family: var(--font-serif); font-size: clamp(16rem, 30vw, 28rem); line-height: 1; color: rgba(255,255,255,.05); pointer-events: none;
}
.close-band__inner { position: relative; max-width: 1000px; }
.close-band .ch__label { justify-content: center; color: var(--gold-soft); }
.close-band h2 { color: #fff; font-size: clamp(3rem, 2rem + 4.4vw, 5.6rem); line-height: 1; margin-bottom: .35em; }
.close-band h2 em { color: var(--gold-soft); }
.close-band__lede { font-size: var(--step-1); line-height: 1.6; color: #c6d1dc; max-width: 40rem; margin-inline: auto; }
.close-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.2rem; }
.close-band__where { margin-top: 1.6rem; font-family: var(--font-label); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #93a4b6; }


/* compact page header for document-style pages (pricing, FAQ, legal) */
.page-head { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.8rem, 4vw, 2.8rem); }
.page-head h1 { font-size: clamp(2.5rem, 1.6rem + 2.7vw, 4.3rem); line-height: 1.02; letter-spacing: -.02em; margin-bottom: .35em; }
.page-head h1 em { color: var(--navy-700); }
.page-head .lede { max-width: 40rem; margin: 0; }
.page-head--center { text-align: center; }
.page-head--center .lede { margin-inline: auto; }

/* navy information panel with a gold hard shadow */
.panel-navy { background: var(--navy); color: #dfe6ee; padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: 8px 8px 0 var(--gold); }
.panel-navy h2, .panel-navy h3 { color: #fff; }
.panel-navy p { color: #c6d1dc; }
.panel-navy a { color: var(--gold-soft); }
.panel-navy a:hover { color: #fff; }

/* bordered paper card */
.card-hard { background: var(--paper-2); border: 1px solid var(--ink); box-shadow: var(--hard-sm); padding: clamp(1.4rem, 2.6vw, 2rem); }

/* numbered index cards (home concerns) */
.index-grid { display: grid; gap: clamp(1.2rem, 2.4vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.index-card {
  display: flex; flex-direction: column; gap: .5rem; text-decoration: none; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--ink); padding: 1.4rem 1.3rem 1.2rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.index-card:hover { color: var(--ink); transform: translate(-3px, -3px); box-shadow: var(--hard); }
.index-card__num { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; line-height: 1; color: var(--gold); }
.index-card h3 { font-size: var(--step-1); margin: .4rem 0 0; }
.index-card p { font-size: .9rem; color: var(--ink-mid); margin: 0; }
.index-card__go { margin-top: auto; padding-top: .8rem; font-family: var(--font-label); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }

/* numbered sequence row (technique steps) */
.seq { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); border-top: 2px solid var(--ink); }
.seq li { padding: 1.3rem 1.2rem 1.4rem 0; }
.seq__num { display: block; font-family: var(--font-serif); font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--gold); margin-bottom: .7rem; }
.seq h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1rem; margin: 0 0 .3rem; }
.seq p { font-size: .9rem; color: var(--ink-mid); margin: 0; }
.ch--ink .seq { border-top-color: var(--gold-soft); }
.ch--ink .seq h3 { color: #fff; }
.ch--ink .seq p { color: #bfb3a0; }

/* definition list for practical details (address, hours) */
.facts { display: grid; grid-template-columns: minmax(7rem, auto) 1fr; gap: .8rem 1.4rem; margin: 0; }
.facts dt { font-family: var(--font-label); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding-top: .2rem; }
.facts dd { margin: 0; color: var(--ink); }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; gap: .2rem; } .facts dd { margin-bottom: .8rem; } }

/* even photo grid */
.photo-grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* two-column editorial split used across pages */
.duo-split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .duo-split { grid-template-columns: 1fr 1fr; } .duo-split--wide { grid-template-columns: 1.15fr .85fr; } }
.duo-split > * { min-width: 0; }
.duo-split p { color: var(--ink-mid); max-width: 36rem; }

/* 14. Full-bleed photography ===============================================
   The site-wide image language, taken from the original home hero: photos
   run edge to edge with a soft paper fade for the copy, never framed or
   stacked on a coloured block. (Reviews & Press keeps its framed hero.) */
.bleed-hero { position: relative; overflow: hidden; background: var(--paper); }
.bleed-hero__media img { width: 100%; height: clamp(260px, 62vw, 440px); object-fit: cover; object-position: var(--focus, 70% 35%); display: block; }
.bleed-hero__inner { position: relative; z-index: 2; padding-block: clamp(2.2rem, 6vw, 3rem) clamp(2.6rem, 7vw, 3.6rem); }
.bleed-hero__text { max-width: 600px; }
.bleed-hero h1 { font-size: clamp(2.7rem, 1.9rem + 3.4vw, 4.6rem); line-height: 1.02; letter-spacing: -.02em; margin-bottom: .4em; }
.bleed-hero h1 em { color: var(--navy-700); }
.bleed-hero__lede { font-size: var(--step-1); line-height: 1.6; color: var(--ink-mid); max-width: 32rem; }
.bleed-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: 2rem; }
@media (min-width: 960px) {
  .bleed-hero { min-height: 580px; display: flex; align-items: center; }
  .bleed-hero--tall { min-height: min(720px, calc(100vh - var(--header-h))); }
  .bleed-hero__media { position: absolute; inset: 0; }
  .bleed-hero__media img { height: 100%; }
  .bleed-hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(247,242,233,.97) 0%, rgba(247,242,233,.74) 36%, rgba(247,242,233,0) 60%);
  }
  .bleed-hero__inner { width: 100%; padding-block: 4rem; }
  /* half variant: for photos too small to stretch full width */
  .bleed-hero--half .bleed-hero__media { left: 44%; }
  .bleed-hero--half .bleed-hero__media::after { background: linear-gradient(90deg, rgba(247,242,233,1) 0%, rgba(247,242,233,0) 28%); }
}

/* vertical spine label along the right edge (home hero) */
.bleed-hero__flag { display: none; }
@media (min-width: 1100px) {
  .bleed-hero__flag {
    position: absolute; right: clamp(1.5rem, 3vw, 3rem); top: 0; bottom: 0; z-index: 2;
    writing-mode: vertical-rl; display: flex; align-items: center; gap: .8rem; padding-block: 3rem; margin: 0;
    font-family: var(--font-label); font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--navy);
  }
  .bleed-hero__flag::before, .bleed-hero__flag::after { content: ""; width: 1px; flex: 1; background: currentColor; opacity: .5; }
}

.trust-row { list-style: none; margin: 2.2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; }
.trust-row li { display: flex; align-items: center; gap: .7rem; }
.trust-row__icon { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--navy); background: rgba(255,253,248,.6); }
.trust-row__icon svg { width: 19px; height: 19px; }
.trust-row__text { display: flex; flex-direction: column; font-size: .8rem; line-height: 1.35; color: var(--ink-mid); }
.trust-row__text strong { font-family: var(--font-serif); font-size: .95rem; font-weight: 700; color: var(--ink); }

/* photo and copy side by side, the photo running to the viewport edge */
.bleed-split { display: grid; background: var(--paper); }
.bleed-split__media img { width: 100%; height: clamp(240px, 60vw, 420px); object-fit: cover; display: block; }
.bleed-split__body { padding: clamp(2.5rem, 7vw, 3.5rem) var(--pad-x); }
.bleed-split__body > p { color: var(--ink-mid); max-width: 34rem; }
.bleed-split__body .ch__head { margin-bottom: 1.3rem; }
.bleed-split__body .ch__head h2 { font-size: var(--step-3); }
@media (min-width: 900px) {
  .bleed-split { grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
  .bleed-split__media img { height: 100%; }
  .bleed-split__body { align-self: center; padding-block: var(--section);
    padding-left: max(var(--pad-x), calc((100vw - var(--wide)) / 2 + var(--pad-x))); padding-right: clamp(2rem, 5vw, 4.5rem); }
  .bleed-split--left .bleed-split__media { order: 0; }
  .bleed-split--left .bleed-split__body { order: 1; padding-left: clamp(2rem, 5vw, 4.5rem);
    padding-right: max(var(--pad-x), calc((100vw - var(--wide)) / 2 + var(--pad-x))); }
  .bleed-split:not(.bleed-split--left) .bleed-split__media { order: 1; }
}
.bleed-split--paper1 { background: var(--paper-1); }

/* Treatments: at-a-glance menu of every treatment */
.tx-overview { display: grid; gap: clamp(1.4rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.tx-overview__group { border-top: 2px solid var(--ink); padding-top: 1rem; }
.tx-overview__group h3 { display: flex; align-items: baseline; gap: .6rem; font-size: var(--step-1); margin: 0 0 .8rem; }
.tx-overview__group h3 span { font-style: italic; color: var(--gold); }
.tx-overview ul { list-style: none; margin: 0; padding: 0; }
.tx-overview li + li { border-top: 1px solid var(--line); }
.tx-overview a { display: block; padding: .65rem 0; text-decoration: none; color: var(--ink); }
.tx-overview a:hover .tx-overview__name { color: var(--rust); }
.tx-overview__name { display: block; font-family: var(--font-serif); font-size: 1.02rem; line-height: 1.3; }
.tx-overview__meta { display: block; margin-top: .15rem; font-family: var(--font-label); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.tx-overview__meta strong { color: var(--rust); }

/* Treatments: always-open image cards */
.tcard--open { padding: 0; overflow: hidden; }
.tcard--open .tcard__grid { gap: 0; }
@media (min-width: 860px) { .tcard--open .tcard__grid { grid-template-columns: 1fr 1fr; } }
.tcard--open .tcard__media .video { height: 100%; min-height: 260px; aspect-ratio: auto; }
.tcard--open .tcard__media > img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
.tcard--open .tcard__content { padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1.2rem; align-content: start; }
.tcard--open .tcard__summary { margin: 0; }
.tcard--open .tcard__extra { padding: 0 clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.2rem); }
.tcard-more { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); margin-top: 1.2rem; }
.tcard-more .tcard--menu { border: 1px solid var(--line); background: var(--paper-2); padding: 1.3rem 1.4rem; }
.tcard-more__label { margin: clamp(2rem, 4vw, 2.6rem) 0 0; }
.tx-overview h3 a { color: inherit; text-decoration: none; }
@media (min-width: 1100px) { .tx-overview { grid-template-columns: repeat(5, 1fr); } }
.tcard--open .tcard__media { position: relative; background: var(--ink); aspect-ratio: 16/9; }
.tcard--open .tcard__media > .video, .tcard--open .tcard__media > img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; aspect-ratio: auto; }
@media (min-width: 860px) {
  .tcard--open .tcard__grid { align-items: stretch; }
  .tcard--open .tcard__media { aspect-ratio: auto; min-height: 320px; }
}
.tcard-more { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
/* videos keep their own 16:9 frame (posters carry text that must not be cropped) */
.tcard--open .tcard__media { display: flex; align-items: center; }
.tcard--open .tcard__media > .video { position: relative; inset: auto; height: auto; aspect-ratio: 16/9; }
@media (min-width: 960px) {
  .bleed-hero__media::after {
    background: linear-gradient(100deg, rgba(247,242,233,.97) 0%, rgba(247,242,233,.84) 38%, rgba(247,242,233,0) 62%);
  }
}

/* treatment name: a clear title strip at the top of every card */
.tcard__band { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: .5rem 1.5rem; }
.tcard--open .tcard__band { padding: clamp(1.3rem, 2.8vw, 1.9rem) clamp(1.4rem, 3vw, 2.2rem); border-bottom: 1px solid var(--ink); }
.tcard__name { margin: 0; font-size: var(--step-3); line-height: 1.05; color: var(--navy); }
.tcard__kr { margin: .4rem 0 0; font-size: .92rem; color: var(--ink-soft); }
.tcard__meta { margin: 0; font-family: var(--font-label); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mid); white-space: nowrap; }
.tcard__meta strong { color: var(--rust); }
.tcard--menu .tcard__band { padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid var(--line); }
.tcard--menu .tcard__name { font-size: var(--step-2); }
.tcard--menu > p { margin-top: 0; }
/* before & after: one per row, shown at their full natural size (never upscaled) */
.tcard--open .tcard__extra { grid-template-columns: 1fr; justify-items: center; gap: clamp(1.6rem, 3vw, 2.4rem); padding-top: clamp(1.4rem, 3vw, 2.2rem); border-top: 1px solid var(--line); }
.tcard__extra figure { width: auto; max-width: 100%; }
.tcard__extra img { width: auto; max-width: 100%; height: auto; max-height: none; border: 0; }
/* when the natural width is known (--w), reserve the box before the image loads */
.tcard__extra img[style*="--w"] { width: min(100%, var(--w)); }
.tcard__extra figcaption { text-align: center; }
.tcard__extra .fine { grid-column: 1 / -1; }
@media (max-width: 600px) { .tcard--open .tcard__extra { padding-inline: .5rem; } }

/* trial prices: large and easy to spot */
.tcard__band { align-items: center; }
.tcard__meta { margin-top: .5rem; }
.tcard__trial { margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 7.5rem;
  padding: .6rem 1.1rem .7rem; border: 2px solid var(--rust); background: #fff; text-align: center; }
.tcard__trial span { font-family: var(--font-label); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); }
.tcard__trial strong { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem); line-height: 1; color: var(--rust); }
.tcard__trial--gap { border-color: var(--line); font-family: var(--font-serif); font-size: 1.05rem; color: var(--ink-mid); }
.tcard__trial--gap span { color: var(--ink-soft); }
.tcard--menu .tcard__trial { min-width: 6.5rem; padding: .45rem .9rem .55rem; }
.tcard--menu .tcard__trial strong { font-size: 1.9rem; }
.tcard__price strong { font-size: 1.35rem; font-family: var(--font-serif); }

.tx-overview__row { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; margin-top: .25rem; }
.tx-overview__row .tx-overview__meta { margin-top: 0; }
.tx-overview__trial { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; line-height: 1; color: var(--rust); white-space: nowrap; }
.tx-overview__trial small { font-family: var(--font-label); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tx-overview__trial--gap { font-family: var(--font-label); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* home concern cards with a photo */
.index-card { padding: 0; overflow: hidden; gap: 0; }
.index-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-1); border-bottom: 1px solid var(--ink); }
.index-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.index-card:hover .index-card__media img { transform: scale(1.04); }
.index-card__body { display: flex; flex-direction: column; gap: .45rem; flex: 1; padding: 1.2rem 1.2rem 1.1rem; }
.index-card h3 { overflow-wrap: normal; hyphens: manual; }
