/* OUNA — V2 "Under the light". Espresso + gold, Fraunces + Instrument Sans. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,340;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@600;700&family=Poppins:wght@600;700&display=swap');

:root {
  --ground: #FAF8F4;        /* Ivory Paper  - booklet page */
  --ground-2: #F3F1ED;      /* Pale Stone   - cool light panel */
  --surface: #F1ECE4;       /* Soft Fog     - card ground */
  --surface-2: #EAE2D6;     /* Parchment    - warm section */
  --ivory: #2A2622;         /* Ink Charcoal - text */
  --ivory-70: rgba(42, 38, 34, 0.72);
  --ivory-50: rgba(42, 38, 34, 0.68);
  --gold: #A9814F;          /* Muted Bronze - accent */
  --gold-bright: #7E5A30;
  --gold-deep: #D6C4A4;
  --band: #EAE2D6;
  --ink-on-gold: #2A2622;
  --stone: #9C948A;         /* Editorial Stone - structure */
  --espresso: #5B4F47;      /* Ouna Espresso   - CTA */
  --hairline: rgba(42, 38, 34, 0.20);
  --gold-hairline: rgba(169, 129, 79, 0.45);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 84px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--ground);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  text-wrap: pretty;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--ivory); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: rgba(169, 129, 79, 0.35); }

/* ---------- atmosphere: cursor lamp + grain ---------- */
.lamp {
  position: fixed; left: 0; top: 0; z-index: 1; pointer-events: none;
  width: 900px; height: 900px; margin: -450px 0 0 -450px;
  background: radial-gradient(circle, rgba(169, 129, 79, 0.07), rgba(169, 129, 79, 0.025) 38%, transparent 65%);
  will-change: transform;
}
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

main, header, footer { position: relative; z-index: 2; }

/* ---------- utility nav: contrasted brown menu bar ---------- */
.topbar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 18px var(--gutter);
  font-size: 15.5px; font-weight: 500;
  background: var(--brown, #2b1e0e);
  border-bottom: 4px double rgba(217, 201, 168, 0.45);
}
.topbar nav { display: flex; gap: clamp(20px, 2.6vw, 38px); grid-column: 2; justify-content: center; }
.topbar .bag-btn { grid-column: 3; justify-self: end; }
@media (max-width: 760px) {
  .topbar { display: flex; flex-wrap: wrap; justify-content: center; }
}
.topbar nav a {
  color: rgba(250, 248, 244, 0.85); letter-spacing: 0.04em; position: relative;
  padding: 6px 0;
}
.topbar nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: #D6C4A4; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-soft);
}
.topbar nav a:hover { color: #ffffff; }
.topbar nav a:hover::after { transform: scaleX(1); }
.topbar .bag-btn { white-space: nowrap; }
.topbar .btn-line {
  color: var(--cream, #f6eeda); border-color: rgba(250, 248, 244, 0.45);
  font-size: 14.5px;
}
.topbar .btn-line:hover { color: #D6C4A4; border-color: #D6C4A4; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-weight: 600; font-size: 14px; line-height: 1.2;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              transform 0.25s var(--ease-soft), box-shadow 0.25s ease;
}
.btn-gold {
  color: #FAF8F4; background: var(--espresso); border-color: var(--espresso);
}
.btn-gold:hover {
  background: var(--gold-bright); border-color: var(--gold-bright); color: #FAF8F4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(169, 129, 79, 0.32);
}
.btn-gold:active { transform: translateY(0); box-shadow: none; }
.btn-line {
  color: var(--ivory); background: transparent; border-color: var(--hairline);
}
.btn-line:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- masthead ---------- */
.masthead { padding: clamp(20px, 2.6vw, 34px) var(--gutter) 0; }
.masthead .word {
  display: flex; justify-content: center; gap: clamp(16px, 3.2vw, 52px); align-items: baseline;
  font-family: var(--serif); font-optical-sizing: auto;
  font-weight: 300; line-height: 0.9; color: var(--gold);
  font-size: clamp(48px, 8.5vw, 124px);
  -webkit-user-select: none; user-select: none;
}
.masthead .word span { display: block; }
.masthead .strap {
  display: flex; align-items: center; gap: 18px; margin-top: clamp(10px, 1.4vw, 18px);
}
.masthead .strap .line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-hairline), transparent); }
.masthead .strap .t {
  font-size: clamp(9px, 1.1vw, 12px); letter-spacing: 0.42em; text-indent: 0.42em;
  text-transform: uppercase; color: var(--gold-bright); white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  align-items: center; gap: clamp(28px, 5vw, 80px);
  padding: clamp(22px, 3vw, 44px) var(--gutter) clamp(36px, 4.6vw, 64px);
}
/* the hero card fits fully in the first viewport */
.hero figure.portrait {
  width: min(100%, calc((100dvh - 400px) * 0.8));
  justify-self: end;
}
@media (max-width: 900px) {
  .hero figure.portrait { width: min(100%, 420px); justify-self: center; }
}
.eyebrow {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 340; font-optical-sizing: auto;
  font-size: clamp(38px, 4.6vw, 68px); line-height: 1.05; margin: 0;
  letter-spacing: -0.01em;
}
.hero h1 .alt {
  display: block; font-style: italic; font-weight: 300; color: var(--gold);
}
.hero .lede {
  font-size: 16.5px; line-height: 1.7; max-width: 44ch;
  color: var(--ivory-70); margin: 26px 0 0;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero .hint {
  margin-top: 30px; font-size: 12.5px; color: var(--ivory-50);
  display: flex; align-items: center; gap: 10px;
}
.hero .hint::before {
  content: ""; width: 34px; height: 1px; background: var(--gold-hairline);
}

.portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25), 0 30px 80px rgba(42, 38, 34, 0.16);
}
.portrait::after {
  content: ""; position: absolute; inset: 12px; border-radius: 8px; z-index: 6;
  border: 1px solid rgba(169, 129, 79, 0.3); pointer-events: none;
}
.portrait .layer {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.portrait .layer.reveal { pointer-events: none; }
.portrait canvas { display: none; }
.badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 7; white-space: nowrap;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 7px 11px; border-radius: 5px; pointer-events: none;
}

/* ---------- load orchestration ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(30px); filter: blur(10px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes clipIn { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0% 0); } }
@keyframes portraitIn { from { opacity: 0; transform: scale(1.04) translateY(16px); } to { opacity: 1; transform: none; } }
.anim { opacity: 0; animation: riseIn 1.05s var(--ease-out) forwards; }
.anim-word { clip-path: inset(0 0 100% 0); animation: clipIn 1.2s var(--ease-out) 0.15s forwards; }
.anim-portrait { opacity: 0; animation: portraitIn 1.5s var(--ease-out) 0.65s forwards; }

/* ---------- shared section furniture ---------- */
section { padding: 0 var(--gutter); }
.sect { padding-top: clamp(56px, 7vw, 104px); padding-bottom: clamp(56px, 7vw, 104px); }
.sect-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: clamp(30px, 4vw, 52px); }
.sect-head h2 {
  font-family: var(--serif); font-weight: 340; letter-spacing: -0.01em;
  font-size: clamp(32px, 4vw, 54px); line-height: 1.05; margin: 0;
}
.sect-head .rule { flex: 1; height: 1px; background: linear-gradient(to right, var(--gold-hairline), transparent); position: relative; top: -6px; }
.sect-head .count { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-bright); white-space: nowrap; }
.reveal-block { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s var(--ease-soft); }
.reveal-block.on { opacity: 1; transform: none; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap; padding: 15px 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.marquee .track { display: inline-flex; align-items: baseline; animation: marquee 40s linear infinite; }
.marquee .w { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 19px; color: var(--ivory-70); padding: 0 10px; }
.marquee .dot { color: var(--gold); font-size: 13px; padding: 0 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- the ritual (products) ---------- */
.ritual-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px); align-items: start;
}
.step-card { position: relative; }
.ritual-grid .step-card:nth-child(2) { margin-top: 34px; }
.ritual-grid .step-card:nth-child(3) { margin-top: 68px; }
.ritual-grid .step-card:nth-child(4) { margin-top: 34px; }
.step-num {
  position: absolute; top: -0.52em; left: -6px; z-index: 5;
  font-family: var(--serif); font-weight: 300; font-style: italic; line-height: 1;
  font-size: clamp(56px, 6vw, 92px); color: var(--gold);
  text-shadow: 0 4px 24px rgba(42, 38, 34, 0.16);
  pointer-events: none;
}
.step-card .frame {
  position: relative; background: var(--surface); border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(42, 38, 34, 0.09);
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s ease;
}
.step-card:hover .frame {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.4), 0 24px 50px rgba(42, 38, 34, 0.14);
}
.step-card .media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.step-card .media > * { transition: transform 0.9s var(--ease-soft); }
.step-card:hover .media > * { transform: scale(1.045); }
.photo {
  position: absolute; inset: 0;
  background-position: center 18%; background-size: cover; background-repeat: no-repeat;
}
.photo.after {
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.55s ease, transform 0.9s var(--ease-soft);
}
.step-card:hover .photo.after { opacity: 1; transform: scale(1.02); }
.mini-badge {
  position: absolute; left: 12px; bottom: 12px; z-index: 3; white-space: nowrap;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(255, 253, 248, 0.9);
  padding: 5px 9px; border-radius: 4px; pointer-events: none;
}
.mini-badge .b2, .step-card:hover .mini-badge .b1 { display: none; }
.step-card:hover .mini-badge .b2 { display: inline; }
.step-card .body { padding: 18px 18px 20px; }
.step-card .label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright);
}
.step-card .name { font-family: var(--serif); font-weight: 400; font-size: 19px; margin-top: 9px; }
.step-card .price { font-size: 13.5px; color: var(--ivory-50); margin-top: 5px; }
.step-card .add {
  margin-top: 14px; width: 100%;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-soft);
}
.step-card:hover .add, .step-card:focus-within .add { opacity: 1; transform: none; }

/* placeholder tiles */
.tile {
  position: absolute; inset: 0; display: grid; place-items: center;
  background:
    radial-gradient(120% 100% at 18% 0%, rgba(169, 129, 79, 0.2), transparent 55%),
    radial-gradient(120% 110% at 88% 100%, rgba(220, 198, 132, 0.35), transparent 60%),
    linear-gradient(160deg, #fffdf6, #f3ecd8);
}
.tile::before {
  content: ""; position: absolute; inset: 13px; border-radius: 7px;
  border: 1px solid rgba(169, 129, 79, 0.4);
}
.tile .m { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(26px, 3vw, 40px); color: var(--gold); line-height: 1.1; text-align: center; padding: 0 16px; }
.tile .l { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-indent: 0.32em; text-transform: uppercase; color: var(--ivory-50); margin-top: 11px; text-align: center; }

/* ---------- proof: spotlight portrait ---------- */
.proof { text-align: center; }
.proof .sub { max-width: 52ch; margin: 0 auto; color: var(--ivory-70); font-size: 16px; }
.proof-portrait { max-width: 720px; margin: clamp(30px, 4vw, 48px) auto 0; }

/* ---------- manifesto band ---------- */
.band { background: var(--band); color: var(--ink-on-gold); border-radius: 0; }
.band-inner { padding: clamp(64px, 8vw, 120px) var(--gutter); }
.band h2 {
  font-family: var(--serif); font-weight: 340; letter-spacing: -0.01em;
  font-size: clamp(40px, 6vw, 88px); line-height: 1.0; margin: 0; max-width: 14ch;
}
.band h2 em { font-style: italic; font-weight: 300; }
.band .claims {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(26px, 4vw, 48px); margin-top: clamp(40px, 5vw, 72px);
  padding-top: 30px; border-top: 2px solid rgba(42, 38, 34, 0.35);
}
.band .claims .t { font-family: var(--serif); font-weight: 400; font-size: 21px; }
.band .claims p { font-size: 14.5px; line-height: 1.6; color: rgba(42, 38, 34, 0.78); margin: 9px 0 0; }

/* ---------- routine builder ---------- */
.routine {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px); align-items: center;
}
.routine h2 {
  font-family: var(--serif); font-weight: 340; font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08; margin: 0; letter-spacing: -0.01em;
}
.routine .intro { color: var(--ivory-70); font-size: 15.5px; margin: 18px 0 0; max-width: 42ch; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.chip {
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ivory-70); border: 1px solid var(--hairline);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.chip:hover { border-color: var(--gold-hairline); color: var(--ivory); }
.chip[aria-pressed="true"] { background: var(--espresso); color: #FAF8F4; border-color: var(--espresso); }
.routine .cta-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.ritual-card {
  background: var(--surface); border-radius: 14px; padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.22), 0 24px 60px rgba(42, 38, 34, 0.12);
  position: relative; overflow: hidden;
}
.ritual-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ritual-card .rk {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-bright);
}
.ritual-card .rt { font-family: var(--serif); font-weight: 400; font-size: 26px; margin-top: 10px; }
.ritual-card ol { list-style: none; margin: 22px 0 0; padding: 0; }
.ritual-card li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 0; border-top: 1px solid var(--hairline);
  opacity: 1; transform: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-soft);
}
.ritual-card li.swap { opacity: 0; transform: translateY(8px); }
.ritual-card li .n { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 15px; min-width: 22px; }
.ritual-card li .s { font-size: 15.5px; font-weight: 500; }
.ritual-card li .w { margin-left: auto; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ivory-50); white-space: nowrap; }
.ritual-card .note { margin: 18px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ivory-70); }

/* ---------- how-to strip ---------- */
.howto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.how-card {
  padding: 24px 22px; border-radius: 12px; background: rgba(247, 242, 230, 0.55);
  box-shadow: 0 0 0 1px rgba(42, 38, 34, 0.08);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s ease;
}
.how-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.35), 0 18px 40px rgba(42, 38, 34, 0.1); }
.how-card .when {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-bright);
  border: 1px solid var(--gold-hairline); border-radius: 999px; padding: 4px 10px;
}
.how-card .t { font-family: var(--serif); font-weight: 400; font-size: 21px; margin-top: 14px; }
.how-card p { font-size: 14px; line-height: 1.6; color: var(--ivory-70); margin: 8px 0 0; }

/* ---------- contact ---------- */
.contact-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; align-items: end;
  border-top: 1px solid var(--hairline); padding-top: clamp(36px, 5vw, 56px);
}
.contact-inner h2 {
  font-family: var(--serif); font-weight: 340; font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1; margin: 0; max-width: 20ch;
}
.contact-inner h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.contact-inner p { font-size: 15px; color: var(--ivory-70); margin: 16px 0 0; max-width: 44ch; }
.contact-inner form { display: flex; gap: 12px; max-width: 480px; }
.input {
  flex: 1; min-height: 48px; padding: 8px 18px; font: inherit; font-size: 14px;
  color: var(--ivory); caret-color: var(--gold);
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 999px;
}
.input::placeholder { color: var(--ivory-50); }
.input:hover { border-color: var(--gold-hairline); }
.input:focus-visible { border-color: var(--gold); outline-offset: 0; }

/* ---------- footer ---------- */
.site-footer { margin-top: clamp(56px, 7vw, 96px); overflow: hidden; }
.site-footer .ghost {
  font-family: var(--serif); font-weight: 300; line-height: 0.78;
  font-size: clamp(120px, 24vw, 380px); text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(169, 129, 79, 0.22);
  -webkit-user-select: none; user-select: none; pointer-events: none;
  transform: translateY(0.16em);
}
.site-footer .bar {
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hairline);
  padding: 26px var(--gutter) 36px;
  font-size: 13px; color: var(--ivory-70);
}
.site-footer .links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer .links a { color: inherit; }
.site-footer .links a:hover { color: var(--ivory); }

/* ---------- sticky bag bar ---------- */
.bag-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 12px var(--gutter); display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-hairline);
  transform: translateY(120%); transition: transform 0.4s var(--ease-soft);
}
.bag-bar.on { transform: translateY(0); }
.bag-bar .info { flex: 1; min-width: 200px; }
.bag-bar .label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.bag-bar .steps { font-family: var(--serif); font-size: 16px; margin-top: 3px; }
.bag-bar .price { font-size: 15px; color: var(--ivory-70); }
#bag-count { display: inline-block; }
#bag-count.pop { animation: pop 0.4s var(--ease-out); }
@keyframes pop { 30% { transform: scale(1.5); } 100% { transform: scale(1); } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .ritual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-card:nth-child(n) { margin-top: 0; }
  .routine { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ritual-grid { grid-template-columns: 1fr; }
  .portrait { cursor: default; }
  .contact-inner form { flex-direction: column; }
  .input, .contact-inner form .btn { width: 100%; }
}

@media (hover: none) {
  .hero .hint { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, .anim-word, .anim-portrait { animation: none; opacity: 1; clip-path: none; }
  .reveal-block { opacity: 1; transform: none; transition: none; }
  .marquee .track, .grain { animation: none; }
  .lamp { display: none; }
  .step-card .frame, .how-card, .btn, .step-card .media > *, .ritual-card li { transition: none; }
  .step-card .add { opacity: 1; transform: none; }
}

/* ═══════════ subpages: shop / product / partners ═══════════ */
.masthead-sm { padding: clamp(18px, 3vw, 34px) var(--gutter) 0; text-align: center; }
.masthead-sm a { color: inherit; }
.masthead-sm .word-sm {
  font-family: var(--serif); font-weight: 300; font-size: clamp(44px, 6vw, 72px);
  letter-spacing: .14em; text-indent: .14em; line-height: 1; color: var(--gold);
}
.masthead-sm .strap { display: flex; align-items: center; gap: 18px; margin-top: 14px; }
.masthead-sm .strap .line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-hairline), transparent); }
.masthead-sm .strap .t {
  font-size: 10px; letter-spacing: .4em; text-indent: .4em; text-transform: uppercase;
  color: var(--gold-bright); white-space: nowrap;
}

.page-head { text-align: center; padding: clamp(40px, 6vw, 72px) var(--gutter) 0; }
.page-head h1 {
  font-family: var(--serif); font-weight: 340; letter-spacing: -0.01em;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin: 0;
}
.page-head h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.page-head .sub { max-width: 52ch; margin: 18px auto 0; color: var(--ivory-70); font-size: 16px; }

.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 26px); align-items: stretch;
}
.shop-grid .step-card .frame { display: flex; flex-direction: column; height: 100%; }
.shop-grid .step-card .body { display: flex; flex-direction: column; flex: 1; }
.shop-grid .card-links { display: flex; gap: 10px; margin-top: auto; padding-top: 16px; }
.shop-grid .card-links .btn { flex: 1; opacity: 1; transform: none; }

.bundle {
  margin-top: clamp(28px, 4vw, 44px); border-radius: 14px; overflow: hidden;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25), 0 24px 60px rgba(42, 38, 34, 0.12);
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.bundle .bl { padding: clamp(26px, 4vw, 44px); }
.bundle .bl .rk { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.bundle .bl h2 { font-family: var(--serif); font-weight: 340; font-size: clamp(26px, 3vw, 40px); margin: 10px 0 0; }
.bundle .bl p { color: var(--ivory-70); font-size: 15px; max-width: 46ch; margin: 14px 0 0; }
.bundle .bl .row { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.bundle .bl .price { font-family: var(--serif); font-size: 22px; }
.bundle .br {
  background:
    radial-gradient(120% 100% at 18% 0%, rgba(169, 129, 79, 0.2), transparent 55%),
    linear-gradient(160deg, #fffdf6, #f3ecd8);
  display: grid; place-items: center; padding: 30px; min-height: 220px;
}
.bundle .br ol { list-style: none; margin: 0; padding: 0; }
.bundle .br li { display: flex; gap: 12px; align-items: baseline; padding: 8px 0; font-size: 15.5px; }
.bundle .br li .n { font-family: var(--serif); font-style: italic; color: var(--gold); }

.crumb { padding: 26px var(--gutter) 0; font-size: 13px; color: var(--ivory-50); }
.crumb a { color: var(--ivory-70); }
.crumb a:hover { color: var(--ivory); }

.pdp {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 64px); padding: clamp(24px, 4vw, 44px) var(--gutter) clamp(56px, 7vw, 96px);
  align-items: start;
}
.pdp .gallery { position: sticky; top: 24px; }
.pdp .g-main { position: relative; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.22); }
.pdp .g-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.pdp .g-thumbs .th { position: relative; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; box-shadow: 0 0 0 1px rgba(240, 241, 242, 0.001), 0 0 0 1px rgba(169, 129, 79, 0.18); }
.pdp .step-label { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); }
.pdp h1 { font-family: var(--serif); font-weight: 340; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 12px 0 0; }
.pdp .price { font-family: var(--serif); font-size: 22px; margin-top: 12px; color: var(--ivory-70); }
.pdp .desc { color: var(--ivory-70); font-size: 15.5px; margin: 18px 0 0; max-width: 46ch; }
.pdp .buy-row { display: flex; gap: 14px; margin-top: 26px; align-items: stretch; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: 999px; }
.qty button { background: none; border: 0; color: var(--ivory); font-size: 18px; width: 42px; height: 46px; cursor: pointer; }
.qty button:hover { color: var(--gold-bright); }
.qty .q { min-width: 28px; text-align: center; font-weight: 600; }
.info-block { border-top: 1px solid var(--hairline); margin-top: 28px; padding-top: 20px; }
.info-block .t { font-family: var(--serif); font-size: 19px; }
.info-block p { color: var(--ivory-70); font-size: 14.5px; margin: 10px 0 0; max-width: 52ch; }
.pairs { padding: 0 var(--gutter) clamp(56px, 7vw, 96px); }
.pairs .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.pairs a.p-card {
  display: block; padding: 20px; border-radius: 12px; background: var(--surface);
  box-shadow: 0 0 0 1px rgba(240, 241, 242, 0.001), var(--shadow-sm, 0 0 0 1px rgba(217,160,140,0.15));
  color: var(--ivory); transition: transform .4s var(--ease-soft);
}
.pairs a.p-card:hover { transform: translateY(-4px); }
.pairs a.p-card .s { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.pairs a.p-card .n { font-family: var(--serif); font-size: 19px; margin-top: 8px; }

.type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.type-card {
  padding: 26px 24px; border-radius: 12px; background: rgba(247, 242, 230, 0.55);
  box-shadow: 0 0 0 1px rgba(42, 38, 34, 0.08);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease;
}
.type-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.35); }
.type-card .t { font-family: var(--serif); font-weight: 400; font-size: 21px; }
.type-card p { font-size: 14px; line-height: 1.6; color: var(--ivory-70); margin: 8px 0 0; }

.logo-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.logo-slot {
  aspect-ratio: 16 / 9; border-radius: 10px; display: grid; place-items: center;
  background: rgba(247, 242, 230, 0.4); box-shadow: 0 0 0 1px rgba(42, 38, 34, 0.08);
  font-size: 10px; font-weight: 600; letter-spacing: .28em; text-indent: .28em;
  text-transform: uppercase; color: var(--ivory-50);
}

.p-form { max-width: 900px; }
.p-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.p-form .field { margin-top: 14px; }
.p-form label { display: block; font-size: 12px; letter-spacing: .06em; color: var(--ivory-70); margin-bottom: 7px; }
.p-form .input { border-radius: 10px; }
.p-form textarea.input { min-height: 120px; resize: vertical; padding-top: 12px; border-radius: 10px; }
.p-form select.input { appearance: none; }
.p-form .btn { margin-top: 20px; }
.form-note { font-size: 12.5px; color: var(--ivory-70); margin-top: 12px; }

@media (max-width: 900px) {
  .bundle { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp .gallery { position: static; }
  .p-form .grid2 { grid-template-columns: 1fr; }
}

/* ---------- partners: represented brand panel ---------- */
.rep-panel {
  border-radius: 14px; overflow: hidden;
  background: #efe9e2; color: #57504a;
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25), 0 24px 60px rgba(42, 38, 34, 0.12);
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.rep-panel .rp-main { padding: clamp(28px, 4vw, 48px); }
.rep-panel .rp-word {
  font-family: var(--serif); font-weight: 340;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: .3em; text-indent: .3em; color: #57504a;
}
.rep-panel .rp-tag {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: #5F584E; margin-top: 12px;
}
.rep-panel .rp-copy { font-size: 15px; line-height: 1.7; color: #6b6357; margin: 20px 0 0; max-width: 54ch; }
.rep-panel .rp-note {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(87, 80, 74, 0.2);
  font-size: 12.5px; letter-spacing: .06em; color: #5F584E;
}
.rep-panel .rp-side {
  background: #57504a; color: #efe9e2;
  padding: clamp(26px, 3.5vw, 42px); display: flex; flex-direction: column; justify-content: center;
}
.rep-panel .rp-side .h { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #DDD5C8; }
.rep-panel .rp-side ul { list-style: none; margin: 16px 0 0; padding: 0; }
.rep-panel .rp-side li { padding: 9px 0; border-top: 1px solid rgba(239, 233, 226, 0.18); font-size: 14.5px; }
.rep-panel .rp-side li:first-child { border-top: 0; }
@media (max-width: 900px) { .rep-panel { grid-template-columns: 1fr; } }

/* ---------- shop filters + brand slots ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.filter-row .chip[disabled] { opacity: .45; cursor: default; }
.shop-count { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ivory-50); margin: 18px 0 0; }
.slot-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-top: 14px; }
.brand-slot {
  padding: 24px; border-radius: 12px;
  border: 1px dashed rgba(169, 129, 79, 0.35);
  background: rgba(247, 242, 230, 0.3);
}
.brand-slot .bs-t { font-family: var(--serif); font-size: 19px; }
.brand-slot p { font-size: 14px; color: var(--ivory-70); margin: 8px 0 0; }

/* ═══════════ revamp: concerns, real photos, checkout, clinics ═══════════ */

.pairs-h { font-family: var(--serif); font-weight: 340; font-size: clamp(24px, 3vw, 36px); margin: 0; }

/* concern tiles */
.concern-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.concern-card {
  display: flex; flex-direction: column; padding: 26px 22px; border-radius: 12px;
  background: var(--surface); color: var(--ivory);
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease;
}
.concern-card:hover { color: var(--ivory); transform: translateY(-5px); box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.55), 0 20px 44px rgba(42, 38, 34, 0.12); }
.concern-card .t { font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--gold-bright); }
.concern-card p { font-size: 13.5px; line-height: 1.55; color: var(--ivory-70); margin: 9px 0 0; flex: 1; }
.concern-card .go { font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--gold-bright); margin-top: 16px; }

/* real product photos on cards + pdp */
.photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #fff; }
.step-card .oneline { font-size: 13.5px; line-height: 1.55; color: var(--ivory-70); margin: 8px 0 0; }
.shop-note { margin: 26px auto 0; max-width: 62ch; text-align: center; font-size: 13.5px; color: var(--ivory-70); }
.g-photo { background: #fff; display: grid; place-items: center; }
.g-photo img { width: 100%; height: 100%; object-fit: cover; }

/* checkout */
.checkout-sect { max-width: 860px; margin: 0 auto; }
.empty-line { font-size: 16px; color: var(--ivory-70); margin: 0 0 18px; }
.bag-list { display: flex; flex-direction: column; }
.bag-row {
  display: flex; align-items: center; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.bag-row img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: #fff; box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.2); }
.bag-row .br-info { flex: 1; min-width: 0; }
.bag-row .br-name { font-family: var(--serif); font-size: 17px; }
.bag-row .br-line { font-size: 12.5px; color: var(--ivory-50); }
/* quantity gets its own line above the price, so the two never blur together */
.bag-row .br-qty { margin-top: 6px; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ivory-70); }
.bag-row .br-price { margin-top: 2px; font-family: var(--serif); font-size: 18px;
  font-weight: 400; color: var(--gold-bright); }
.bag-row .br-remove {
  background: none; border: 0; cursor: pointer; font: inherit; font-size: 12.5px;
  color: var(--ivory-50); text-decoration: underline; text-underline-offset: 3px; padding: 6px;
}
.bag-row .br-remove:hover { color: var(--gold-bright); }
.bag-total { font-size: 13px; letter-spacing: .04em; color: var(--ivory-50); margin: 14px 0 0; text-align: right; }
.order-note { font-size: 14.5px; line-height: 1.65; color: var(--ivory-70); margin: 0 0 18px; }
.order-done { text-align: center; padding: clamp(30px, 5vw, 54px) 0; }
.order-done .od-mark {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 26px;
  background: var(--gold); color: #fff;
}
.order-done h2 { font-family: var(--serif); font-weight: 340; font-size: clamp(26px, 3.4vw, 40px); margin: 0 0 12px; }
.order-done p { color: var(--ivory-70); max-width: 48ch; margin: 0 auto 24px; }

/* clinics */
.clinic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.clinic-card {
  padding: 24px 22px; border-radius: 12px;
  border: 1px dashed rgba(169, 129, 79, 0.4); background: var(--surface);
}
.clinic-card .cc-city { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); }
.clinic-card .cc-name { font-family: var(--serif); font-size: 20px; margin-top: 10px; }
.clinic-card p { font-size: 13px; color: var(--ivory-50); margin: 8px 0 0; }

/* form success */
.form-ok {
  margin: 16px 0 0; padding: 14px 18px; border-radius: 10px; font-size: 14.5px;
  background: rgba(169, 129, 79, 0.12); color: var(--ivory);
  border: 1px solid rgba(169, 129, 79, 0.4);
}
.contact-inner form { flex-wrap: wrap; }
.contact-inner form .form-ok { flex-basis: 100%; }

/* ═══════════ home V2: editorial gold/white, logo mark, concern index ═══════════ */
.v2h-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px var(--gutter); min-height: 68px;
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 40;
}
.v2h-lockup { display: flex; align-items: center; gap: 12px; color: var(--ivory); }
.v2h-lockup svg { display: block; }
.v2h-lockup .w {
  font-family: var(--sans); font-weight: 600; font-size: 17px;
  letter-spacing: 0.3em; text-indent: 0.3em;
}
.v2h-nav nav { display: flex; gap: 22px; font-size: 13.5px; }
.v2h-nav nav a { color: var(--ivory-70); }
.v2h-nav nav a:hover, .v2h-nav nav a.here { color: var(--ivory); }

.v2h-hero {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
  padding: clamp(40px, 6vw, 88px) var(--gutter) clamp(48px, 6vw, 88px);
}
.v2h-hero h1 {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(40px, 5.4vw, 76px); line-height: 1.04; margin: 0;
}
.v2h-hero h1 em {
  font-family: var(--serif); font-style: italic; font-weight: 340;
  letter-spacing: -0.01em; color: var(--gold);
  line-height: 1.1; display: inline-block; padding-bottom: 4px;
}
.v2h-hero .sub { font-size: 16.5px; line-height: 1.65; color: var(--ivory-70); max-width: 40ch; margin: 22px 0 0; }
.v2h-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.v2h-hero .mark { margin-bottom: 26px; }

.v2h-visual { position: relative; min-height: clamp(340px, 44vw, 560px); }
.v2h-visual .ring {
  position: absolute; right: 6%; top: 4%; width: 52%; aspect-ratio: 1;
  border: 2px solid rgba(169, 129, 79, 0.35); border-radius: 50%;
}
.v2h-visual .ph1, .v2h-visual .ph2 {
  position: absolute; border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25), 0 24px 60px rgba(42, 38, 34, 0.14);
}
.v2h-visual .ph1 { left: 0; top: 8%; width: 58%; aspect-ratio: 4 / 5; }
.v2h-visual .ph2 { right: 0; bottom: 0; width: 52%; aspect-ratio: 4 / 5; }
.v2h-visual img { width: 100%; height: 100%; object-fit: cover; }

.v2h-index { padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 6vw, 88px); }
.v2h-index .head { padding: 0 var(--gutter); margin-bottom: 8px; }
.v2h-index h2 {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(26px, 3vw, 40px); margin: 0 0 10px;
}
.v2h-index .head p { color: var(--ivory-70); font-size: 15px; margin: 0 0 26px; max-width: 52ch; }
.v2h-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center; gap: clamp(14px, 3vw, 40px);
  padding: clamp(18px, 2.6vw, 30px) var(--gutter);
  border-top: 1px solid var(--hairline);
  color: var(--ivory); cursor: pointer;
  transition: background 0.25s ease;
}
.v2h-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.v2h-row:hover { background: #fff; color: var(--ivory); }
.v2h-row .cn {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(24px, 3.6vw, 48px); line-height: 1.05;
  transition: transform 0.35s var(--ease-soft);
}
.v2h-row:hover .cn { transform: translateX(10px); color: var(--gold); }
.v2h-row .cl { font-size: 13.5px; color: var(--ivory-50); max-width: 30ch; text-align: right; }
.v2h-row .thumb {
  width: 62px; height: 62px; border-radius: 10px; overflow: hidden; background: #fff;
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25);
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-soft);
}
.v2h-row:hover .thumb { opacity: 1; transform: none; }
.v2h-row .thumb img { width: 100%; height: 100%; object-fit: cover; }

.v2h-band { background: var(--band); color: var(--ink-on-gold); }
.v2h-band .inner {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(52px, 7vw, 100px) var(--gutter);
}
.v2h-band h2 {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(28px, 3.6vw, 52px); line-height: 1.06; margin: 0;
}
.v2h-band h2 em { font-family: var(--serif); font-style: italic; font-weight: 340; }
.v2h-band .bp { font-size: 15.5px; line-height: 1.65; color: rgba(42, 38, 34, 0.8); margin: 18px 0 0; max-width: 44ch; }
.v2h-band .btn-ink { background: #FAF8F4; color: #191307; border-color: #FAF8F4; }
.v2h-band .btn-ink:hover { background: #fff; border-color: #fff; color: #191307; transform: translateY(-2px); }
.v2h-band ul { list-style: none; margin: 0; padding: 0; align-self: center; }
.v2h-band li {
  padding: 14px 0; border-top: 1px solid rgba(42, 38, 34, 0.28);
  display: flex; justify-content: space-between; gap: 16px; font-size: 15px;
}
.v2h-band li:first-child { border-top: 0; }
.v2h-band li .r { color: rgba(42, 38, 34, 0.65); font-size: 13px; text-align: right; }

.v2h-bento {
  display: grid; gap: 14px; padding: clamp(48px, 6vw, 88px) var(--gutter);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas: "img img p1 p2" "img img p3 cta";
}
.v2h-bento .cell { border-radius: 14px; padding: clamp(20px, 2.4vw, 30px); background: var(--surface); box-shadow: 0 0 0 1px rgba(42, 38, 34, 0.1); }
.v2h-bento .cell .t { font-family: var(--sans); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.v2h-bento .cell p { font-size: 14px; line-height: 1.6; color: var(--ivory-70); margin: 8px 0 0; }
.v2h-bento .c-img { grid-area: img; padding: 0; overflow: hidden; background: #fff; position: relative; min-height: 280px; }
.v2h-bento .c-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2h-bento .c-p1 { grid-area: p1; }
.v2h-bento .c-p2 { grid-area: p2; }
.v2h-bento .c-p3 { grid-area: p3; }
.v2h-bento .c-cta {
  grid-area: cta; display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  background: rgba(169, 129, 79, 0.1); box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.35);
}
.v2h-head-center { text-align: center; padding: 0 var(--gutter); margin-bottom: 26px; }
.v2h-head-center h2 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; font-size: clamp(26px, 3vw, 40px); margin: 0 0 10px; }
.v2h-head-center p { color: var(--ivory-70); font-size: 15px; margin: 0 auto; max-width: 52ch; }

.v2h-contact {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; align-items: center;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
  border-top: 1px solid var(--hairline);
}
.v2h-contact h2 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; font-size: clamp(24px, 2.8vw, 36px); margin: 0; }
.v2h-contact p { color: var(--ivory-70); font-size: 15px; margin: 12px 0 0; max-width: 44ch; }
.v2h-contact form { display: flex; gap: 12px; flex-wrap: wrap; }
.v2h-contact .input { flex: 1; min-width: 220px; }
.v2h-contact .form-ok { flex-basis: 100%; }

.v2h-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s var(--ease-soft); }
.v2h-stagger.on > * { opacity: 1; transform: none; }
.v2h-stagger.on > *:nth-child(2) { transition-delay: 0.06s; }
.v2h-stagger.on > *:nth-child(3) { transition-delay: 0.12s; }
.v2h-stagger.on > *:nth-child(4) { transition-delay: 0.18s; }
.v2h-stagger.on > *:nth-child(5) { transition-delay: 0.24s; }
.v2h-stagger.on > *:nth-child(6) { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .v2h-hero { grid-template-columns: 1fr; }
  .v2h-visual { min-height: 0; height: 380px; }
  .v2h-band .inner { grid-template-columns: 1fr; }
  .v2h-bento { grid-template-columns: 1fr 1fr; grid-template-areas: "img img" "p1 p2" "p3 cta"; }
  .v2h-row { grid-template-columns: minmax(0, 1fr) auto; }
  .v2h-row .cl { display: none; }
}
@media (max-width: 640px) {
  .v2h-nav nav { display: none; }
  .v2h-bento { grid-template-columns: 1fr; grid-template-areas: "img" "p1" "p2" "p3" "cta"; }
}
@media (prefers-reduced-motion: reduce) {
  .v2h-stagger > * { opacity: 1; transform: none; transition: none; }
  .v2h-row .cn, .v2h-row .thumb { transition: none; }
}

/* ═══════════ tri-tone rhythm: white / gold / brown ═══════════ */
:root { --brown: #4A3F37; --cream: #FAF8F4; --ink-deep: #2A2622; }

.tint-gold { background: #EAE2D6; }
.tint-brown { background: var(--brown); color: var(--cream); }
.tint-brown h2, .tint-brown .rt { color: var(--cream); }
.tint-brown .eyebrow { color: #D6C4A4; }
.tint-brown .intro, .tint-brown p { color: rgba(250, 248, 244, 0.8); }
.tint-brown .btn-line { color: var(--cream); border-color: rgba(250, 248, 244, 0.4); }
.tint-brown .btn-line:hover { color: #D6C4A4; border-color: #D6C4A4; }
.tint-brown .btn-gold { background: var(--cream); color: var(--brown); border-color: var(--cream); }
.tint-brown .btn-gold:hover { background: #fff; border-color: #fff; color: var(--brown); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.tint-brown .ritual-card { color: var(--ivory); }
.tint-brown .ritual-card .rt { color: var(--ivory); }
.tint-brown .ritual-card li .s { color: var(--ivory); }
.tint-brown .ritual-card p, .tint-brown .ritual-card .note { color: var(--ivory-70); }

.site-footer { background: var(--ink-deep); margin-top: clamp(56px, 7vw, 96px); }
.site-footer .ghost { -webkit-text-stroke: 1px rgba(217, 201, 168, 0.35); }
.site-footer .bar { color: rgba(250, 248, 244, 0.78); border-top: 1px solid rgba(250, 248, 244, 0.2); }
.site-footer .links a { color: inherit; }
.site-footer .links a:hover { color: #D6C4A4; }

/* ═══════════ luxury lines: frame, double rules, ornaments ═══════════ */
/* double-rule dividers (fine stationery lines) */
.sect-head .rule {
  height: 5px; background: transparent;
  border-top: 1px solid var(--gold-hairline);
  border-bottom: 1px solid var(--gold-hairline);
  position: relative; top: -8px;
}
.contact-inner { border-top: 4px double var(--gold-hairline); }
.marquee { border-top: 4px double var(--gold-hairline); border-bottom: 4px double var(--gold-hairline); }
.band { border-top: 4px double rgba(42, 38, 34, 0.45); border-bottom: 4px double rgba(42, 38, 34, 0.45); }
.tint-brown { border-top: 4px double rgba(217, 201, 168, 0.45); border-bottom: 4px double rgba(217, 201, 168, 0.45); }
.site-footer .bar { border-top: 4px double rgba(250, 248, 244, 0.3); }

/* diamond ornament under page titles */
.page-head h1::after {
  content: "◆"; display: block; width: 180px; margin: 20px auto 0;
  font-size: 8px; line-height: 1; color: var(--gold); text-align: center;
  background:
    linear-gradient(to right, transparent, var(--gold-hairline) 20%, var(--gold-hairline) 38%, transparent 42%) left center / 100% 1px no-repeat,
    linear-gradient(to left, transparent, var(--gold-hairline) 20%, var(--gold-hairline) 38%, transparent 42%) right center / 100% 1px no-repeat;
}

/* vertical hairlines between band claims */
@media (min-width: 900px) {
  .band .claims > div + div { border-left: 1px solid rgba(42, 38, 34, 0.35); padding-left: clamp(26px, 4vw, 48px); }
  .band .claims { gap: 0; }
  .band .claims > div { padding-right: clamp(26px, 4vw, 48px); }
}

/* gold top tick on white cards, for quiet detail */
.concern-card, .type-card, .clinic-card, .step-card .frame, .ritual-card {
  position: relative;
}
.concern-card::before, .type-card::before, .clinic-card::before {
  content: ""; position: absolute; top: 0; left: 22px; width: 44px; height: 2px;
  background: var(--gold);
}

/* ═══════════ photos + 3D layer ═══════════ */
.photo-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.g-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.g-thumbs .th {
  position: relative; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.22);
}

/* photographic brown section */
.photo-brown {
  background:
    linear-gradient(rgba(32, 22, 10, 0.88), rgba(32, 22, 10, 0.93)),
    var(--photo) center / cover no-repeat;
}

/* 3D gyroscope rings behind the hero card */
.hero { position: relative; }
.hero .gyro {
  position: absolute; right: clamp(8px, 4vw, 90px); top: 50%;
  width: min(52vh, 500px); aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none; z-index: 0;
  perspective: 900px;
}
.hero figure.portrait { position: relative; z-index: 1; }
.gyro span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(169, 129, 79, 0.5);
  transform-style: preserve-3d;
  animation: gyroSpin 16s linear infinite;
}
.gyro span:nth-child(2) {
  inset: 11%; border-color: rgba(169, 129, 79, 0.34);
  animation-duration: 24s; animation-direction: reverse;
}
.gyro span:nth-child(3) {
  inset: 22%; border-color: rgba(169, 129, 79, 0.22);
  animation-duration: 34s;
}
@keyframes gyroSpin {
  from { transform: rotate3d(1, 0.65, 0.15, 0deg); }
  to { transform: rotate3d(1, 0.65, 0.15, 360deg); }
}
@media (max-width: 900px) { .hero .gyro { display: none; } }

/* pointer tilt (3D cards) */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.25s var(--ease-soft);
}
[data-tilt].tilting { transition: transform 0.06s linear; }

@media (prefers-reduced-motion: reduce) {
  .gyro span { animation: none; }
  [data-tilt], [data-tilt].tilting { transition: none; transform: none !important; }
}

/* ═══════════ hero 3D card + glare tilt ═══════════ */
.hero-3d-card {
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(201, 162, 58, 0.16), transparent 55%),
    radial-gradient(140% 120% at 80% 100%, rgba(90, 64, 20, 0.5), transparent 60%),
    linear-gradient(160deg, #241a0c, #140f04);
}
.hero-3d-card canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-3d-card .gl-fallback {
  position: absolute; inset: 0; display: none; place-items: center;
}
.hero-3d-card.gl-fail .gl-fallback { display: grid; }
.hero-3d-card.gl-fail canvas { display: none; }

/* glare sheen that follows the pointer on tilting cards */
[data-tilt] { position: relative; }
[data-tilt]::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 8;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 250, 235, 0.22), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
[data-tilt].tilting::after { opacity: 1; }
[data-tilt].tilting { box-shadow: 0 24px 60px rgba(42, 38, 34, 0.22); }
@media (prefers-reduced-motion: reduce) { [data-tilt]::after { display: none; } }

.concern-copy { max-width: 62ch; margin: 0 auto; text-align: center; font-size: 16.5px; line-height: 1.7; color: var(--ivory-70); }


/* ═══════════ sweeping gold flow lines (per sketch) ═══════════ */
.gold-flow, .gold-flow-dark { position: relative; }
.gold-flow > *, .gold-flow-dark > * { position: relative; z-index: 1; }
.gold-flow::before, .gold-flow-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-position: center; background-repeat: no-repeat; background-size: 100% 100%;
}
.gold-flow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23a67c1a' stroke-width='1.6'%3E%3Cpath stroke-opacity='0.34' d='M-60 690 C 320 560 760 340 1500 70'/%3E%3Cpath stroke-opacity='0.2' d='M-60 430 C 420 480 920 260 1500 390'/%3E%3Cpath stroke-opacity='0.13' d='M-60 780 C 520 700 1020 570 1500 310'/%3E%3C/g%3E%3C/svg%3E");
}
.gold-flow-dark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23e8c877' stroke-width='1.6'%3E%3Cpath stroke-opacity='0.3' d='M-60 690 C 320 560 760 340 1500 70'/%3E%3Cpath stroke-opacity='0.18' d='M-60 430 C 420 480 920 260 1500 390'/%3E%3Cpath stroke-opacity='0.11' d='M-60 780 C 520 700 1020 570 1500 310'/%3E%3C/g%3E%3C/svg%3E");
}

/* hero without media: single centered column */
.hero.no-media { grid-template-columns: 1fr; text-align: center; padding-bottom: clamp(48px, 6vw, 84px); }
.hero.no-media .lede { margin-left: auto; margin-right: auto; max-width: 52ch; }
.hero.no-media .cta-row { justify-content: center; }

/* ---------- official company statement ---------- */
.about-copy { max-width: 72ch; }
.about-copy p { font-size: 15.5px; line-height: 1.75; color: var(--ivory-70); margin: 0 0 18px; }
.about-copy .lead {
  font-family: var(--serif); font-weight: 340; font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.4; color: var(--ivory); margin-bottom: 22px;
}
.about-copy .signature {
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 15.5px; color: var(--gold-bright);
  margin: 26px 0 0; padding-top: 20px; border-top: 1px solid var(--gold-hairline);
}

/* ---------- filled cards + footer line clearance ---------- */
.quick-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.quick-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ivory);
  padding: 9px 16px; border: 1px solid var(--gold-hairline); border-radius: 999px;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.quick-links a:hover { background: #fff; color: var(--gold-bright); border-color: var(--gold); }
.mini-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.mini-points li { display: flex; flex-direction: column; gap: 2px; padding-left: 14px; border-left: 2px solid var(--gold); }
.mini-points .mp-t { font-family: var(--serif); font-weight: 400; font-size: 16.5px; color: var(--ivory); }
.mini-points li span:last-child { font-size: 13px; color: var(--ivory-50); }
.cta-col { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: flex-start; }
@media (max-width: 640px) { .mini-points { grid-template-columns: 1fr; } }
.site-footer .ghost { transform: none; padding-bottom: 14px; }

.site-footer .bar { border-top: 0; }

.pro-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.pro-grid .p-form { max-width: none; }
@media (max-width: 860px) { .pro-grid { grid-template-columns: 1fr; } }

/* ---------- hero-like closing sections ---------- */
.hero-like { text-align: center; }
.hero-like .eyebrow { margin-bottom: 18px; }
.hl-h {
  font-family: var(--serif); font-weight: 340; font-optical-sizing: auto;
  font-size: clamp(30px, 4vw, 56px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 auto; max-width: 22ch;
}
.hl-h em { font-style: italic; font-weight: 300; color: var(--gold); }
.hl-p { font-size: 16.5px; line-height: 1.7; color: var(--ivory-70); max-width: 52ch; margin: 20px auto 0; }
.hero-like .quick-links.hl-center, .hero-like .cta-row.hl-center { justify-content: center; margin-top: 26px; }
.hl-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 560px; margin: 28px auto 0; }
.hl-form .input { flex: 1; min-width: 240px; }
.hl-form .form-ok, .hl-form .form-note { flex-basis: 100%; }
.mini-points.hl-points { max-width: 760px; margin: 30px auto 0; text-align: left; }

/* hero-like applied across homepage sections */
.hl-card { max-width: 640px; margin: 34px auto 0; text-align: left; }
.tint-brown .hl-h { color: var(--cream); }
.tint-brown .hl-h em { color: #D6C4A4; }
.tint-brown .hl-p { color: rgba(250, 248, 244, 0.82); }
.band-inner { text-align: center; }
.band-inner h2 { margin-left: auto; margin-right: auto; }
.band .claims { text-align: left; }
.hero-like .about-copy { max-width: 72ch; margin: 26px auto 0; text-align: center; }

/* ---------- manifesto plaque ---------- */
.manifesto {
  position: relative; max-width: 880px; margin: 0 auto;
  background: #F1ECE4;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 72px);
  border: 1px solid var(--gold-hairline);
  box-shadow: 0 24px 60px rgba(42, 38, 34, 0.08);
}
.manifesto::before {
  content: ""; position: absolute; inset: 10px; pointer-events: none;
  border: 1px solid rgba(169, 129, 79, 0.28);
}
.manifesto .mf-mark { display: block; margin: 0 auto 18px; }
.manifesto .hl-h { font-size: clamp(28px, 3.2vw, 44px); }
.hero-like .manifesto .about-copy { margin-top: 22px; }
.manifesto .about-copy .signature {
  border-top: 0; padding-top: 0; margin-top: 30px;
}
.manifesto .about-copy .signature::before {
  content: "◆"; display: block; width: 180px; margin: 0 auto 16px;
  font-size: 8px; line-height: 1; color: var(--gold); text-align: center;
  background:
    linear-gradient(to right, transparent, var(--gold-hairline) 20%, var(--gold-hairline) 38%, transparent 42%) left center / 100% 1px no-repeat,
    linear-gradient(to left, transparent, var(--gold-hairline) 20%, var(--gold-hairline) 38%, transparent 42%) right center / 100% 1px no-repeat;
}

/* ═══════════ client-data pass: bundles, reviews, badges ═══════════ */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.bundle-grid.one { grid-template-columns: minmax(0, 560px); justify-content: center; }
.bundle-card {
  background: var(--surface); border-radius: 12px; padding: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.3);
  display: flex; flex-direction: column;
}
.bundle-card .bc-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); }
.bundle-card .bc-name { font-family: var(--serif); font-weight: 400; font-size: 22px; margin-top: 10px; }
.bundle-card .bc-line { font-size: 13.5px; line-height: 1.55; color: var(--ivory-70); margin: 8px 0 0; }
.bundle-card .bc-items { list-style: none; margin: 16px 0 0; padding: 0; flex: 1; }
.bundle-card .bc-items li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 13.5px; padding: 8px 0; border-top: 1px solid var(--hairline);
}
.bundle-card .bc-items li span:last-child { color: var(--ivory-50); white-space: nowrap; }
.bundle-card .bc-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px; }
.bundle-card .bc-total { font-family: var(--serif); font-size: 21px; }
.best-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--gold-bright); padding: 5px 10px; border-radius: 4px;
}
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2.4vw, 28px); max-width: 980px; margin: 32px auto 0; text-align: left;
}
.review-card {
  margin: 0; background: var(--surface); border-radius: 12px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 0 0 1px rgba(169, 129, 79, 0.25);
}
.review-card p { font-family: var(--serif); font-weight: 340; font-size: 17px; line-height: 1.6; margin: 0; }
.review-card footer { margin-top: 16px; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-bright); }
.sci-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px, 3vw, 40px); }
.sci-grid p { font-size: 14.5px; line-height: 1.65; color: var(--ivory-70); margin: 10px 0 0; }

/* client feedback 25/08: the sweeping background lines read as a watermark — removed */
.gold-flow::before, .gold-flow-dark::before { display: none; }

/* manifesto with visual (client: "put a visual there that breaks the pattern") */
.manifesto.has-visual { display: block; padding: 0; overflow: hidden; max-width: 1040px; }
.manifesto.has-visual .mf-visual { position: relative; display: block; }
.manifesto.has-visual .mf-visual img { display: block; width: 100%; height: auto; }
.manifesto.has-visual .mf-body { padding: clamp(30px, 4vw, 56px) clamp(24px, 4vw, 56px); }
/* font consistency (client: "Ouna Cosmetics has a different font setting") */
.manifesto .hl-h { font-size: clamp(30px, 4vw, 56px); }
.about-copy .lead {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: 16.5px; line-height: 1.65; color: var(--ivory-70);
}

/* font consistency guard: form controls do not inherit fonts by default */
button, input, select, textarea, option { font-family: var(--sans); }

/* ═══════════ taste pass: parchment ground + plaque card system ═══════════ */
/* Editorial-luxury language: every card is a double-bezel plaque — square corners,
   gold hairline shell, inner concentric hairline, ivory face, warm tinted shadow.
   Echoes the manifesto plaque so the whole site speaks one material. */

.step-card .frame,
.concern-card,
.type-card,
.how-card,
.clinic-card,
.bundle-card,
.review-card,
.ritual-card,
.pairs a.p-card,
.logo-slot,
.rep-panel {
  border-radius: 0;
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(169, 129, 79, 0.38),
    0 22px 44px -20px rgba(42, 38, 34, 0.28);
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s ease;
}
.clinic-card { border: 0; }
.type-card, .how-card, .logo-slot { border: 0; }

/* inner concentric hairline */
.concern-card, .type-card, .how-card, .clinic-card, .bundle-card,
.review-card, .ritual-card, .pairs a.p-card, .step-card .frame {
  position: relative;
}
.concern-card::after, .type-card::after, .how-card::after, .clinic-card::after,
.bundle-card::after, .review-card::after, .ritual-card::after,
.pairs a.p-card::after, .step-card .frame::after {
  content: ""; position: absolute; inset: 8px; z-index: 4; pointer-events: none;
  border: 1px solid rgba(169, 129, 79, 0.18);
  transition: border-color 0.5s ease;
}
.step-card:hover .frame, .concern-card:hover, .type-card:hover, .how-card:hover,
.bundle-card:hover, .review-card:hover, .pairs a.p-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(169, 129, 79, 0.62),
    0 30px 56px -22px rgba(42, 38, 34, 0.38);
}
.step-card:hover .frame::after, .concern-card:hover::after, .type-card:hover::after,
.how-card:hover::after, .bundle-card:hover::after, .review-card:hover::after,
.pairs a.p-card:hover::after {
  border-color: rgba(169, 129, 79, 0.38);
}
.ritual-card::before { border-radius: 0; }
.step-card .body { padding: 20px 22px 24px; }

/* square supporting elements */
.mini-badge, .best-badge, .form-ok, .bag-row img { border-radius: 0; }
.p-form .input, .p-form textarea.input { border-radius: 0; }
.brand-slot { border-radius: 0; background: transparent; }
.logo-slot { font-size: 11px; color: var(--ivory-70); }

/* serif italic prices — merchandise reads like a menu, not a spreadsheet */
.step-card .price {
  font-family: var(--serif); font-style: italic; font-weight: 340;
  font-size: 15.5px; color: var(--gold-bright); margin-top: 7px;
}

/* concern tiles: image-led, warm-graded, numbered */
.concern-grid { counter-reset: concern; gap: 18px; }
.concern-card { padding: 0 0 24px; overflow: hidden; counter-increment: concern; }
.concern-card .cc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.concern-card .cc-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.28) saturate(0.78) contrast(1.02);
  transition: transform 1s var(--ease-soft), filter 0.6s ease;
}
.concern-card .cc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36, 23, 8, 0) 40%, rgba(36, 23, 8, 0.28) 100%);
}
.concern-card .cc-media::before {
  content: "0" counter(concern); position: absolute; right: 14px; top: 8px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 44px; line-height: 1; color: rgba(255, 253, 246, 0.9);
  text-shadow: 0 2px 18px rgba(36, 23, 8, 0.5);
}
.concern-card:hover .cc-media img { transform: scale(1.05); filter: sepia(0.1) saturate(0.95) contrast(1.02); }
.concern-card .t { padding: 20px 22px 0; }
.concern-card p { padding: 0 22px; }
.concern-card .go { padding: 0 22px; }

/* review cards: oversized serif quote mark */
.review-card { padding-top: clamp(34px, 4vw, 48px); }
.review-card::before {
  content: "\201C"; position: absolute; top: 6px; left: 18px;
  font-family: var(--serif); font-weight: 300; font-size: 74px; line-height: 1;
  color: rgba(169, 129, 79, 0.3); pointer-events: none;
}

/* gold band: tonal gradient instead of flat fill */
.band { background: linear-gradient(175deg, #cda63a 0%, #ba9024 100%); }

/* heading ornament: the signature diamond, under every centered section heading */
.hero-like .hl-h::after {
  content: "\25C6"; display: block; width: 190px; margin: 20px auto 0;
  font-size: 8px; line-height: 1; color: var(--gold); text-align: center;
  background:
    linear-gradient(to right, transparent, var(--gold-hairline) 20%, var(--gold-hairline) 38%, transparent 42%) left center / 100% 1px no-repeat,
    linear-gradient(to left, transparent, var(--gold-hairline) 20%, var(--gold-hairline) 38%, transparent 42%) right center / 100% 1px no-repeat;
}
.manifesto .hl-h::after { display: none; }
.tint-brown .hl-h::after { color: #D6C4A4; }

/* paper feel: a touch more grain on parchment */
.grain { opacity: 0.032; }
/* rep-panel keeps its taupe partner-brand ground (plaque frame + square corners only) */
.rep-panel { background: #efe9e2; }

/* band recolor (user pick): champagne cream statement band, sitewide */
.band, .v2h-band {
  background: #EAE2D6;
  color: var(--ivory);
  border-top: 4px double rgba(169, 129, 79, 0.5);
  border-bottom: 4px double rgba(169, 129, 79, 0.5);
}
.band h2, .v2h-band h2 { color: var(--ivory); }
.band h2 em, .v2h-band h2 em { color: var(--gold-bright); }
.band .claims { border-top-color: rgba(42, 38, 34, 0.25); }
.band .claims .t { color: var(--gold-bright); }
.band .claims p { color: var(--ivory-70); }

/* manifesto refresh: plaque contrast, photo focus, editorial voice */
.manifesto { background: var(--surface); }
.manifesto.has-visual .mf-visual img {
  object-position: 20% 30%;
  filter: sepia(0.14) saturate(0.85) contrast(1.02);
}
.manifesto.has-visual .mf-visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(42, 38, 34, 0) 55%, rgba(42, 38, 34, 0.32) 100%);
}
.manifesto .about-copy p:not(.lead):not(.signature) { font-size: 16.5px; line-height: 1.7; color: var(--ivory-70); }

/* verbatim client testimonials can run to two paragraphs */
.review-card p + p { margin-top: 12px; }

a.logo-slot { text-decoration: none; transition: box-shadow .4s ease, transform .4s var(--ease-soft); }
a.logo-slot:hover { color: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 65%, transparent), 0 18px 34px -18px rgba(42, 38, 34, 0.4); }

/* ═══════════ professional booklet: stages, protocols, results, packages ═══════════ */
.sect-lede { font-size: 16px; line-height: 1.7; color: var(--ivory-70); max-width: 74ch; margin: -18px 0 30px; }

/* four-stage protocol journey */
.stage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; }
.stage-card { position: relative; background: var(--surface); padding: 26px 22px 24px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.28); }
.stage-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent); pointer-events: none; }
.stage-card .sg-n { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-bright); }
.stage-card .sg-t { font-family: var(--serif); font-weight: 400; font-size: 21px; margin-top: 6px; }
.stage-card p { font-size: 14px; line-height: 1.6; color: var(--ivory-70); margin: 9px 0 0; }

/* the seven protocols */
.protocol-list { display: flex; flex-direction: column; gap: 12px; }
.protocol { position: relative; background: var(--surface); padding: clamp(20px, 2.4vw, 30px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 34%, transparent), 0 18px 38px -20px rgba(42, 38, 34, 0.26);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease; }
.protocol:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 62%, transparent), 0 26px 50px -22px rgba(42, 38, 34, 0.34); }
.pr-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pr-n { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 30px; color: var(--gold); line-height: 1; }
.pr-name { font-family: var(--serif); font-weight: 400; font-size: 23px; margin: 0; letter-spacing: -0.01em; }
.pr-tag { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-bright); border: 1px solid var(--gold-hairline); padding: 4px 10px; margin-left: auto; white-space: nowrap; }
.pr-body { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 8px 22px; margin: 16px 0 0; }
.pr-body dt { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-50); padding-top: 3px; }
.pr-body dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ivory-70); }
@media (max-width: 700px) {
  .pr-body { grid-template-columns: 1fr; gap: 3px; }
  .pr-body dd { margin-bottom: 10px; }
  .pr-tag { margin-left: 0; }
}

/* documented before / after — matched to the booklet: seamless pair + caption bar */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(460px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.ba-card { margin: 0; position: relative; background: var(--surface); overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 20px 40px -20px rgba(42, 38, 34, 0.3); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ba-pair img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; display: block; }
.ba-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 13px; background: var(--surface-2);
  font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-70); }
.ba-bar span:last-child { color: var(--gold-bright); text-align: right; }
.ba-disclaimer { font-size: 12px; line-height: 1.6; color: var(--ivory-70); margin: 22px 0 0; max-width: 96ch; }

/* collaboration packages */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 14px; }
.pkg-card { position: relative; background: var(--surface); padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.28);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease; }
.pkg-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent); pointer-events: none; }
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 64%, transparent), 0 30px 54px -22px rgba(42, 38, 34, 0.36); }
.pk-name { font-family: var(--serif); font-weight: 400; font-size: 24px; }
.pk-for { font-size: 13px; line-height: 1.55; color: var(--gold-bright); margin: 6px 0 0; }
.pkg-card dl { margin: 18px 0 0; }
.pkg-card dt { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-50); margin-top: 14px; }
.pkg-card dd { margin: 4px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--ivory-70); }

/* renophase brand panel: real logo, positioning quote, campaign image */
.rep-panel .rp-logo { display: block; width: min(300px, 74%); height: auto; margin: 0 0 20px; }
.rep-panel .rp-quote { font-family: var(--serif); font-style: italic; font-weight: 340;
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.5; color: #57504a; margin: 0 0 18px; max-width: 46ch; }
.rep-visual { margin: 14px 0 0; max-width: none; overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 34%, transparent); }
.rep-visual img { width: 100%; height: auto; display: block; }

/* protocol numbers as booklet-style discs */
.pr-n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brown); color: var(--cream); font-family: var(--sans); font-style: normal;
  font-weight: 600; font-size: 12px; letter-spacing: .02em; flex: none; }
.pr-head { align-items: center; }

/* ═══════════ booklet: approach, why, full range, closing CTA ═══════════ */
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.approach-card { position: relative; background: var(--surface); padding: 30px 24px 26px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.28); }
.approach-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent); pointer-events: none; }
.ap-n { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brown); color: var(--cream); font-weight: 600; font-size: 13px; }
.ap-t { font-family: var(--serif); font-weight: 400; font-size: 22px; margin-top: 16px; }
.approach-card p { font-size: 14.5px; line-height: 1.65; color: var(--ivory-70); margin: 9px 0 0; }
.approach-foot { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold-bright); margin: 22px 0 0; }

.understand-list { list-style: none; margin: 0; padding: 0; max-width: 82ch; }
.understand-list li { position: relative; padding: 15px 0 15px 26px; border-top: 1px solid var(--hairline);
  font-size: 15.5px; line-height: 1.6; color: var(--ivory-70); }
.understand-list li:last-child { border-bottom: 1px solid var(--hairline); }
.understand-list li::before { content: ""; position: absolute; left: 4px; top: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pull-quote { margin: 34px 0 0; background: var(--espresso); color: var(--cream);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 72px); max-width: none; position: relative;
  text-align: center; }
.pull-quote::before { content: "\201C"; display: block; font-family: var(--serif); font-weight: 300;
  font-size: 68px; line-height: .6; color: var(--gold-deep); opacity: .6; margin-bottom: 10px; }
.pull-quote p { font-family: var(--serif); font-weight: 340; font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.35; margin: 0 auto; max-width: 30ch; }
.pull-quote footer { margin-top: 20px; font-size: 10.5px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-deep); }
.pq-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.pq-cta .btn-line { color: var(--cream); border-color: rgba(214, 196, 164, 0.5); }
.pq-cta .btn-line:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.range-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(16px, 2.4vw, 30px); }
.range-col { background: var(--surface); padding: clamp(22px, 2.4vw, 32px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.26); }
.rc-head { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-bright); padding-bottom: 14px; border-bottom: 2px solid var(--gold-hairline); }
.rc-group { margin-top: 20px; }
.rc-t { font-family: var(--serif); font-weight: 400; font-size: 17px; }
.rc-group ul { list-style: none; margin: 7px 0 0; padding: 0; }
.rc-group li { font-size: 14px; line-height: 1.5; color: var(--ivory-70); padding: 4px 0 4px 14px; position: relative; }
.rc-group li::before { content: "·"; position: absolute; left: 3px; color: var(--gold); }

.build-list { list-style: none; margin: 22px auto 0; padding: 0; max-width: 40ch; text-align: left; }
.build-list li { padding: 12px 0 12px 24px; position: relative; font-size: 15.5px;
  color: var(--cream); border-top: 1px solid rgba(250, 248, 244, 0.18); }
.build-list li:last-child { border-bottom: 1px solid rgba(250, 248, 244, 0.18); }
.build-list li::before { content: ""; position: absolute; left: 2px; top: 21px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep); }

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 48px); margin: 0 0 26px; }
.stat { display: flex; align-items: baseline; gap: 10px; }
.stat .s-n { font-family: var(--serif); font-weight: 340; font-size: 27px; color: var(--gold-bright); }
.stat .s-l { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-70); }

/* ═══════════ images shown in full — no cropping ═══════════ */
/* clinical before/after pairs: both halves share one frame so the card is
   symmetrical. The frame is 10:7, which is the plates' own aspect to within 2%,
   so contain trims nothing - it just stops the two halves drifting apart. */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.ba-pair img { width: 100%; height: 100%; aspect-ratio: 10 / 7; object-fit: contain;
  background: #fff; display: block; }
.ba-pair img + img { border-left: 1px solid var(--gold-hairline); }
/* product shots are never clipped — contain on their own white ground */
.step-card .media .photo-img,
.g-photo img,
.pairs a.p-card img,
.bag-row img { object-fit: contain !important; background: #fff; }
/* editorial tiles: gentler ratio so far less of the photo is lost */
.concern-card .cc-media { aspect-ratio: 4 / 3; }
.pdp .th .photo-fill { object-fit: contain; background: #fff; }

/* ═══════════ mobile: kill the horizontal overflow the scan found ═══════════ */
html { overflow-x: hidden; }
.grain { inset: 0; }
@media (max-width: 640px) {
  .masthead .strap .t, .masthead-sm .strap .t { letter-spacing: .18em; text-indent: .18em; font-size: 8.5px; white-space: normal; text-align: center; }
  .masthead .strap, .masthead-sm .strap { gap: 10px; }
  .pr-body { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* ═══════════ booklet: built for professionals, pricing, contact ═══════════ */
.ph-position { font-family: var(--serif); font-style: italic; font-weight: 340;
  font-size: clamp(17px, 2vw, 22px); color: var(--gold-bright); margin: 14px 0 0; }

/* PARTNERSHIP 07 — numbered items over a rule, exactly as the booklet sets them */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(24px, 4vw, 56px); }
.partner-item { padding: 18px 0 22px; border-top: 1px solid var(--gold-hairline); }
.pi-n { font-size: 10px; font-weight: 600; letter-spacing: .2em; color: var(--ivory-50); }
.pi-t { font-family: var(--serif); font-weight: 400; font-size: 20px; margin-top: 8px; }
.partner-item p { font-size: 14.5px; line-height: 1.65; color: var(--ivory-70); margin: 7px 0 0; }
.partner-visual { margin: 30px 0 0; max-width: 460px; overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 34%, transparent); }
.partner-visual img { display: block; width: 100%; height: auto; }

/* COLLABORATION 09 — prices, featured tier */
.pk-price { font-family: var(--serif); font-weight: 340; font-size: 27px; color: var(--ivory); margin-top: 10px; }
.pk-price span { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ivory-50); margin-right: 4px; vertical-align: middle; font-family: var(--sans); }
.pk-price-na { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--gold-bright); letter-spacing: .02em; }
.pkg-card.pkg-featured { box-shadow: 0 0 0 2px var(--gold), 0 28px 52px -20px rgba(42, 38, 34, 0.4); }
.pkg-featured .pk-name, .pkg-featured .pk-price { color: var(--ivory); }
.pkg-featured::before { content: "Most complete"; position: absolute; top: 0; right: 0;
  font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  background: var(--brown); color: var(--cream); padding: 6px 12px; }

/* GET IN TOUCH — the booklet's contact block */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0 clamp(24px, 4vw, 56px); }
.cg-item { padding: 16px 0; border-top: 1px solid var(--hairline); font-size: 15px; }
.cg-l { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory-50); margin-bottom: 6px; }
.cg-item a { color: var(--gold-bright); }
.cg-item a:hover { color: var(--ivory); }
.cg-item span { color: var(--ivory-70); }

.rp-kicker { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: #7E5A30; margin-bottom: 14px; }
.rep-panel .rp-copy + .rp-copy { margin-top: 14px; }

/* the booklet's OUNA-approach still life (product + LED mask) */
.approach-visual { margin: 26px 0 0 auto; max-width: 380px; overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 34%, transparent); }
.approach-visual img { display: block; width: 100%; height: auto; }
@media (max-width: 700px) { .approach-visual { margin-left: 0; } }

/* ═══════════ booklet 03: featured brand card + RENOPHASE spread ═══════════ */
.featured-brand { margin: 0; background: var(--surface); overflow: hidden; max-width: 720px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 24px 46px -20px rgba(42, 38, 34, 0.3); }
.featured-brand > img { display: block; width: 100%; height: auto; }

.fb-label { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); }
.fb-name { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.6vw, 46px); letter-spacing: .06em; margin-top: 10px; line-height: 1.05; }
.featured-brand p { font-size: 15.5px; line-height: 1.75; color: var(--ivory-70); margin: 0; max-width: 78ch; }
.fb-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--gold-hairline);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory-70); }

.reno-detail { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.rd-quote { font-family: var(--serif); font-style: italic; font-weight: 340;
  font-size: clamp(18px, 2.1vw, 23px); line-height: 1.45; color: var(--ivory); margin: 0 0 18px; }
.rd-copy p { font-size: 15px; line-height: 1.7; color: var(--ivory-70); margin: 0 0 12px; }
.rd-mark { text-align: center; }
.rd-mark img { display: block; width: min(300px, 100%); height: auto; margin: 0 auto; }
.rd-kicker { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gold-hairline);
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); }
@media (max-width: 820px) { .reno-detail { grid-template-columns: 1fr; } }

/* ═══════════ dead-space pass: adopt the booklet's own layouts ═══════════ */

/* APPROACH — booklet stacks the three items with hairlines; photo sits beside them */
.approach-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(26px, 4vw, 56px); align-items: start; }
.approach-grid { display: block; }
.approach-card { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 0 18px;
  align-items: start; background: none; box-shadow: none; padding: 20px 0; border-top: 1px solid var(--gold-hairline); }
.approach-card::after { display: none; }
.approach-card:first-child { border-top: 0; padding-top: 4px; }
.ap-n { grid-row: span 2; }
.ap-t { margin-top: 4px; }
.approach-card p { grid-column: 2; }
.approach-visual { margin: 0; max-width: none; }
@media (max-width: 820px) { .approach-layout { grid-template-columns: 1fr; } }

/* BUILT FOR PROFESSIONALS — booklet uses two columns; the photo takes the empty third */
.partner-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(26px, 4vw, 56px); align-items: start; }
.partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(20px, 3vw, 40px); }
.partner-visual { margin: 0; max-width: none; }
@media (max-width: 900px) { .partner-layout { grid-template-columns: 1fr; } .partner-grid { grid-template-columns: 1fr; } }

/* GET IN TOUCH — booklet sets label/value rows, so no ragged trailing cells */
.contact-rows { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(28px, 5vw, 72px); }
.contact-rows .cg-item { display: grid; grid-template-columns: 108px minmax(0, 1fr);
  align-items: baseline; gap: 14px; padding: 15px 0; border-top: 1px solid var(--hairline); font-size: 15px; }
.contact-rows .cg-l { margin: 0; }
@media (max-width: 760px) { .contact-rows { grid-template-columns: 1fr; } }

/* blocks the booklet runs full-column width — stop them floating in dead space */
.pull-quote { max-width: none; }
.understand-list { max-width: none; }
.build-list { max-width: 900px; }
/* booklet 04: featured brand card, text-led, filling the column */
.featured-brand { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 4vw, 64px); align-items: center; max-width: none;
  padding: clamp(30px, 4vw, 52px) clamp(28px, 4vw, 56px); }
.featured-brand .fb-mark { border-left: 1px solid var(--gold-hairline); padding-left: clamp(20px, 3vw, 44px); }
@media (max-width: 820px) {
  .featured-brand { grid-template-columns: 1fr; gap: 22px; }
  .featured-brand .fb-id { border-right: 0; border-bottom: 1px solid var(--gold-hairline); padding: 0 0 18px; }
}

/* white ground for the protocol-approach card */
.tint-white { background: var(--brown); color: var(--cream); }
.tint-white .sect-head h2, .tint-white .sect-lede { color: var(--cream); }
.tint-white .sect-head .rule { background: linear-gradient(to right, rgba(214,196,164,.5), transparent); }
.tint-white .stage-card { background: transparent; box-shadow: none; border-top: 1px solid rgba(214,196,164,.28); padding: 20px 0; }
.tint-white .stage-card::after { display: none; }
.tint-white .sg-n { color: var(--gold-deep); }
.tint-white .sg-t { color: var(--cream); }
.tint-white .stage-card p { color: rgba(250,248,244,.72); }
.tint-white .shop-note { color: rgba(250,248,244,.72); }

/* ═══════════ booklet page 06: stacked stages + credential discs ═══════════ */
.tint-white .stage-grid { display: block; }
.tint-white .stage-card { display: grid; grid-template-columns: 120px minmax(0, 1fr);
  gap: 0 24px; align-items: start; padding: 20px 0; }
.tint-white .sg-n { grid-row: span 2; font-family: var(--sans); font-style: normal;
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); padding-top: 6px; }
.tint-white .sg-t { margin-top: 0; }
.tint-white .stage-card p { grid-column: 2; }
.stage-foot { max-width: 74ch; margin: 26px 0 0; font-size: 15px; line-height: 1.7; color: rgba(250, 248, 244, 0.78); }
.cred-row { display: flex; gap: clamp(28px, 5vw, 72px); margin: 34px 0 0; flex-wrap: wrap; }
.cred { text-align: center; }
.cred .cr-n { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid rgba(214, 196, 164, 0.55); color: var(--gold-deep);
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .06em; }
.cred .cr-l { display: block; margin-top: 12px; font-size: 9.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(250, 248, 244, 0.66); }
@media (max-width: 700px) { .tint-white .stage-card { grid-template-columns: 1fr; } .tint-white .stage-card p { grid-column: 1; } }

/* ═══════════ consultation dialog ═══════════ */
.modal { border: 0; padding: 0; max-width: min(680px, calc(100vw - 32px)); width: 100%;
  background: var(--surface); color: var(--ivory);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 42%, transparent), 0 40px 90px -30px rgba(42, 38, 34, 0.5); }
.modal::backdrop { background: rgba(42, 38, 34, 0.55); backdrop-filter: blur(3px); }
.modal .modal-body { padding: clamp(26px, 4vw, 44px); }
.modal .sect-head { margin-bottom: 14px; }
.modal .sect-head h2 { font-size: clamp(26px, 3vw, 36px); }
.modal .sect-lede { margin: 0 0 22px; font-size: 15px; }
.modal .p-form { max-width: none; }
.modal-close-form { position: absolute; top: 0; right: 0; margin: 0; }
.modal-close { background: none; border: 0; cursor: pointer; font-size: 26px; line-height: 1;
  padding: 12px 16px; color: var(--ivory-70); }
.modal-close:hover { color: var(--ivory); }
@media (max-width: 560px) { .modal .grid2 { grid-template-columns: 1fr; } }

/* the clinics 'join the directory' block was flat text - give it the plaque treatment */
.join-card { position: relative; background: var(--surface); padding: clamp(26px, 3vw, 40px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(20px, 3vw, 40px); align-items: center;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.28); }
.join-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent); pointer-events: none; }
.join-card h2 { margin: 8px 0 0; font-family: var(--serif); font-weight: 340;
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.08; letter-spacing: -0.01em; }
.join-card p { margin: 10px 0 0; color: var(--ivory-70); max-width: 62ch; font-size: 15px; line-height: 1.65; }
.join-card .eyebrow { margin-bottom: 0; }
.join-card .btn { flex: none; white-space: nowrap; }
@media (max-width: 760px) { .join-card { grid-template-columns: 1fr; } }

/* product detail: benefits + INCI from the client sheet */
.benefit-list { list-style: none; margin: 8px 0 0; padding: 0; }
.benefit-list li { position: relative; padding: 6px 0 6px 20px; font-size: 14.5px; line-height: 1.6; color: var(--ivory-70); }
.benefit-list li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.info-block .inci { font-size: 11.5px; line-height: 1.65; color: var(--ivory-50); word-break: break-word; }

/* ═══════════ clinical pairing protocols (client pairing document) ═══════════ */
.rx-wrap { display: grid; gap: clamp(16px, 2vw, 24px); }
.rx-card { position: relative; background: var(--surface); padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.28); }
.rx-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent); pointer-events: none; }
.rx-name { font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2.4vw, 27px); }
.rx-desc { font-size: 14.5px; line-height: 1.65; color: var(--ivory-70); margin: 8px 0 0; }
.rx-phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 40px); margin-top: 24px; }
.rx-phase { border-top: 1px solid var(--gold-hairline); padding-top: 16px; }
.rx-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.rx-day { font-family: var(--serif); font-size: 17px; }
.rx-note { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); border: 1px solid var(--gold-hairline); padding: 3px 8px; }
.rx-list { list-style: none; margin: 14px 0 0; padding: 0; }
.rx-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-top: 1px solid var(--hairline); font-size: 14.5px; line-height: 1.5; }
.rx-list li:first-child { border-top: 0; }
.rx-list a { color: var(--ivory); text-decoration: none; border-bottom: 1px solid var(--gold-hairline); }
.rx-list a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.rx-when { flex: none; font-size: 9.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-bright); white-space: nowrap; }
.rx-pro { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid var(--gold-hairline); }
.rx-pro-l { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-50); }
.rx-pro-v { font-size: 14.5px; color: var(--gold-bright); }

/* pairs-well-with cards show the real product shot */
.pairs a.p-card { padding: 0; overflow: hidden; }
.pairs a.p-card .p-media { aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.pairs a.p-card .p-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pairs a.p-card .s { padding: 16px 18px 0; }
.pairs a.p-card .n { padding: 0 18px 18px; }

/* partnership enquiry: form beside the real contact channels */
.enq-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.enq-grid .p-form { max-width: none; }
.enq-aside { position: relative; background: var(--surface); padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.26); }
.enq-aside::after { content: ""; position: absolute; inset: 8px; border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent); pointer-events: none; }
.ea-t { font-family: var(--serif); font-weight: 400; font-size: 20px; }
.ea-list { list-style: none; margin: 16px 0 0; padding: 0; }
.ea-list li { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 12px; align-items: baseline;
  padding: 11px 0; border-top: 1px solid var(--hairline); font-size: 14.5px; }
.ea-l { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-50); }
.ea-list a { color: var(--gold-bright); }
.ea-list a:hover { color: var(--ivory); }
.ea-list span:not(.ea-l) { color: var(--ivory-70); line-height: 1.5; }
.ea-note { margin: 16px 0 0; font-size: 13px; line-height: 1.6; color: var(--ivory-70); }
@media (max-width: 860px) { .enq-grid { grid-template-columns: 1fr; } }

/* section-level calls to action */
.sect-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3vw, 38px); }
.tint-white .sect-cta .btn-line { color: var(--cream); border-color: rgba(214, 196, 164, 0.45); }
.tint-white .sect-cta .btn-line:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
@media (max-width: 520px) { .sect-cta .btn { width: 100%; } }


/* corrections: break the all-left rhythm in 'From products to protocols' */
.understand-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 clamp(24px, 4vw, 56px); }
@media (max-width: 700px) { .understand-list { grid-template-columns: 1fr; } }

/* ═══════════ treatments index ═══════════ */
.treat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(16px, 2.2vw, 26px); }
.treat-card { position: relative; display: flex; flex-direction: column; background: var(--surface);
  color: var(--ivory); text-decoration: none; overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.28);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease; }
.treat-card:hover { transform: translateY(-5px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 66%, transparent), 0 30px 56px -22px rgba(42, 38, 34, 0.38); }
/* product shots: white ground, contained so the pack is never clipped */
.tc-media { aspect-ratio: 4 / 3; overflow: hidden; background: #fff;
  border-bottom: 1px solid var(--gold-hairline); }
.tc-media img { width: 100%; height: 100%; object-fit: contain; display: block;
  padding: clamp(10px, 1.6vw, 20px); transition: transform 1s var(--ease-soft); }
.treat-card:hover .tc-media img { transform: scale(1.04); }
.tc-body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; flex: 1; }
.tc-name { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.tc-desc { font-size: 14.5px; line-height: 1.6; color: var(--ivory-70); margin: 8px 0 0; }
.tc-meta { list-style: none; margin: 16px 0 0; padding: 0; flex: 1; }
.tc-meta li { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 10px;
  padding: 8px 0; border-top: 1px solid var(--hairline); font-size: 13.5px; color: var(--ivory-70); }
.tc-meta li span { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-50); }
.tc-go { margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--gold-bright); }

/* ═══════════ two audience tracks on the merged professionals page ═══════════ */
.track-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(16px, 2.2vw, 26px); }
.track-card { position: relative; display: flex; flex-direction: column; gap: 6px;
  background: var(--surface); color: var(--ivory); text-decoration: none;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.26);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease; }
.track-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 66%, transparent), 0 28px 52px -22px rgba(42, 38, 34, 0.36); }
.tk-l { font-size: 9.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.tk-t { font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2.4vw, 27px); margin-top: 6px; }
.tk-d { font-size: 14.5px; line-height: 1.6; color: var(--ivory-70); margin-top: 8px; }
.tk-go { margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--gold-bright); }

/* client's composed before/after plates - captions are part of the artwork */
.ba-card.ba-single { padding: 0; }
/* the client's composed plates run from portrait to wide landscape. A single
   square frame lets every plate stay whole while the grid still lines up. */
.ba-card.ba-single img { display: block; width: 100%; height: 100%;
  aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }

/* 'One skin, three layers' reads centred rather than hard-left */
.tint-white .sect-head { justify-content: center; }
.tint-white .sect-head .rule { display: none; }
.tint-white .sect-head h2 { text-align: center; }
.tint-white .sect-lede { margin-left: auto; margin-right: auto; text-align: center; max-width: 68ch; }
.tint-white .stage-grid { max-width: 900px; margin-left: auto; margin-right: auto; }
.tint-white .stage-card { grid-template-columns: 110px minmax(0, 1fr); text-align: left; }
.tint-white .stage-foot { margin-left: auto; margin-right: auto; text-align: center; }
.tint-white .cred-row { justify-content: center; }
.tint-white .sect-cta { justify-content: center; }

/* ═══════════ mobile & tablet ═══════════ */

/* comfortable tap targets on every touch size */
@media (max-width: 1024px) {
  .topbar nav a { padding: 12px 0; }
  .site-footer .links a { padding: 10px 0; display: inline-block; }
  .crumb a { padding: 8px 0; display: inline-block; }
  .chip { min-height: 44px; padding: 11px 18px; }
  .qty button { width: 46px; height: 46px; }
  .bag-row .br-remove { padding: 10px 6px; }
  .modal-close { padding: 14px 18px; font-size: 30px; }
}

/* small labels stay legible on a phone */
@media (max-width: 640px) {
  .masthead .strap .t, .masthead-sm .strap .t { font-size: 10px; letter-spacing: .16em; text-indent: .16em; }
  .fb-label, .rd-kicker, .cr-l, .tk-l, .rx-note, .rx-pro-l, .ea-l, .pi-n,
  .cg-l, .tc-meta li span, .sg-n, .stat .s-l, .rc-head { font-size: 11px; }
  .fb-meta, .best-badge, .step-card .label, .bundle-card .bc-tag, .logo-slot,
  .clinic-card .cc-city, .pdp .step-label, .pairs a.p-card .s, .review-card footer,
  .sect-head .count, .ba-bar { font-size: 11.5px; }
  .info-block .inci { font-size: 12px; line-height: 1.7; }
  .shop-count, .form-note, .shop-note, .ba-disclaimer { font-size: 12.5px; }
}

/* the phone menu */
.nav-toggle { display: none; }
@media (max-width: 640px) {
  .topbar { position: relative; display: flex; align-items: center;
    justify-content: space-between; gap: 12px; padding: 10px var(--gutter); }
  .nav-toggle { display: inline-flex; align-items: center; gap: 9px;
    background: none; border: 0; cursor: pointer; padding: 11px 2px;
    color: var(--cream); font-family: var(--sans); font-size: 13px;
    font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
  .nav-toggle .bars { position: relative; width: 20px; height: 12px; flex: none; }
  .nav-toggle .bars::before, .nav-toggle .bars::after,
  .nav-toggle .bars span { content: ""; position: absolute; left: 0; right: 0; height: 1.5px;
    background: var(--cream); transition: transform .3s var(--ease-soft), opacity .2s ease; }
  .nav-toggle .bars::before { top: 0; }
  .nav-toggle .bars span { top: 5px; }
  .nav-toggle .bars::after { bottom: 0; }
  html[data-nav-open] .nav-toggle .bars::before { transform: translateY(5px) rotate(45deg); }
  html[data-nav-open] .nav-toggle .bars span { opacity: 0; }
  html[data-nav-open] .nav-toggle .bars::after { transform: translateY(-5px) rotate(-45deg); }

  .topbar nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 70;
    flex-direction: column; gap: 0; background: var(--brown);
    border-top: 1px solid rgba(214, 196, 164, .28);
    box-shadow: 0 22px 44px rgba(42, 38, 34, .38); }
  html[data-nav-open] .topbar nav { display: flex; }
  .topbar nav a { padding: 16px var(--gutter); border-bottom: 1px solid rgba(214, 196, 164, .16);
    font-size: 15px; }
  .topbar nav a::after { display: none; }
  .topbar .bag-btn { font-size: 13px; padding: 11px 16px; }
}

/* tablet: two-up rather than one long column */
@media (min-width: 641px) and (max-width: 1024px) {
  .shop-grid, .concern-grid, .treat-grid, .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .range-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* phones: products two-up so the shop is not an endless scroll */
@media (max-width: 640px) {
  .shop-grid, .concern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .step-card .body { padding: 14px 12px 16px; }
  .step-card .name { font-size: 16px; }
  .step-card .oneline { display: none; }
  .card-links { flex-direction: column; gap: 8px; }
  .card-links .btn { width: 100%; }
  .sect { padding-top: clamp(44px, 9vw, 64px); padding-bottom: clamp(44px, 9vw, 64px); }
}

/* header must sit above main, or the open phone menu is painted over */
header { z-index: 60; }

/* ── touch sizing and label legibility across phone AND tablet ── */
@media (max-width: 1024px) {
  .btn { min-height: 44px; padding-top: 12px; padding-bottom: 12px; }
  .nav-toggle { padding-top: 14px; padding-bottom: 14px; }
  .logo-slot { min-height: 56px; }
  .rx-list li { padding: 13px 0; }
  .ea-list li, .contact-rows .cg-item { padding: 14px 0; }

  /* small caps labels: readable on a handheld, same selector weight as the originals */
  .masthead .strap .t, .masthead-sm .strap .t { font-size: 11px; letter-spacing: .18em; text-indent: .18em; }
  .cred .cr-l { font-size: 11px; }
  .tint-white .sg-n { font-size: 11px; }
  .protocol .pr-tag, .pr-tag { font-size: 11px; }
  .fb-label, .fb-meta, .rd-kicker, .tk-l, .rx-note, .rx-pro-l, .ea-l, .pi-n,
  .cg-l, .stat .s-l, .rc-head, .review-card footer, .sect-head .count,
  .best-badge, .step-card .label, .bundle-card .bc-tag, .clinic-card .cc-city,
  .pdp .step-label, .pairs a.p-card .s, .ba-bar, .tc-meta li span { font-size: 11px; }
  .featured-brand .fb-meta { font-size: 11px; line-height: 1.6; }
}

/* ═══════════ journal ═══════════ */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(16px, 2.2vw, 26px); margin-top: 26px; }
.post-card { position: relative; display: flex; flex-direction: column; background: var(--surface);
  color: var(--ivory); text-decoration: none; overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 38%, transparent), 0 22px 44px -20px rgba(42, 38, 34, 0.26);
  transition: transform .45s var(--ease-soft), box-shadow .45s ease; }
.post-card:hover { transform: translateY(-5px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 66%, transparent), 0 30px 56px -22px rgba(42, 38, 34, 0.36); }
/* post images vary (square product shot, 4:3 photo, portrait still life) - contain, never clip */
.pc-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ground-2);
  border-bottom: 1px solid var(--gold-hairline); }
.pc-media img { width: 100%; height: 100%; object-fit: contain; display: block;
  padding: clamp(8px, 1.4vw, 16px); transition: transform 1s var(--ease-soft); }
.post-card:hover .pc-media img { transform: scale(1.05); }
.pc-body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; flex: 1; }
.pc-meta { display: flex; gap: 14px; font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-bright); }
.pc-title { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.2; margin-top: 10px; }
.pc-sum { font-size: 14.5px; line-height: 1.6; color: var(--ivory-70); margin: 9px 0 0; flex: 1; }
.pc-go { margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--gold-bright); }

.art { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter) clamp(40px, 5vw, 64px); }
.art-head { text-align: center; padding-top: clamp(10px, 2vw, 22px); }
.art-meta { display: flex; justify-content: center; gap: 16px; font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.art h1 { font-family: var(--serif); font-weight: 340; font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.08; letter-spacing: -0.01em; margin: 14px 0 0; }
.art-sum { font-size: 17px; line-height: 1.6; color: var(--ivory-70); margin: 16px auto 0; max-width: 60ch; }
.art-hero { margin: clamp(28px, 4vw, 44px) 0; overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 34%, transparent); }
.art-hero img { display: block; width: 100%; height: auto; }
.art-body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2.4vw, 27px);
  margin: clamp(28px, 3.4vw, 40px) 0 0; }
.art-body p { font-size: 16.5px; line-height: 1.75; color: var(--ivory-70); margin: 12px 0 0; }
.art .sect-cta { justify-content: center; margin-top: clamp(30px, 4vw, 46px); }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* filter chips: consistent hit size on every input type */
.chip { min-height: 44px; }


/* scan fixes: three-across steps instead of a narrow centred list in a full-width band */
.build-steps { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px); margin: 30px auto 0; padding: 0; max-width: 1000px; text-align: left; }
.build-steps li { padding: 20px 22px; background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(250, 248, 244, 0.14); position: relative; }
.build-steps .bs-n { display: block; font-family: var(--serif); font-size: 24px; font-weight: 340;
  color: var(--gold-deep); line-height: 1; margin-bottom: 12px; }
.build-steps .bs-t { display: block; font-size: 15.5px; line-height: 1.5; color: var(--cream); }
@media (max-width: 820px) { .build-steps { grid-template-columns: 1fr; max-width: 520px; gap: 12px; } }

/* four condition cards read as an even 2x2 rather than 3 + 1 orphan */
@media (min-width: 900px) { .treat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* contact aside actions */
.ea-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ea-cta .btn { flex: 1 1 auto; }

/* scan fixes: grid orphans that left a card stranded beside empty space */
/* four collaboration packages: 2x2 on tablet rather than 3 + 1 */
@media (min-width: 700px) and (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* these grids hold 3 or 4 cards depending on the page, so match the column
   count to what is actually in them rather than forcing one shape on both */
@media (min-width: 820px) {
  .type-grid:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .type-grid:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* an odd final plate is centred at the same size as the rest, rather than
   stretching across the row and dwarfing everything above it */
@media (min-width: 1000px) {
  .ba-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - (clamp(18px, 2.4vw, 30px) / 2));
  }
}


/* before & after grids sit on an even baseline at every width */
.ba-grid { align-items: stretch; }
.ba-grid > .ba-card { display: flex; flex-direction: column; }
.ba-grid > .ba-card .ba-pair { flex: 1 1 auto; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } }


/* the official lockup, used where the brand is presented as a brand */
.rp-lockup { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; }
.rp-lockup img { display: block; width: auto; height: clamp(30px, 3.4vw, 42px); }
.rp-lockup .rp-l {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ivory-50);
  padding-left: 14px; border-left: 1px solid var(--gold-hairline);
}
@media (max-width: 620px) {
  .rp-lockup { gap: 10px; }
  .rp-lockup .rp-l { padding-left: 10px; font-size: 9px; }
}
/* the footer credit sits quietly under the links */
.rp-credit { display: flex; align-items: center; gap: 12px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid rgba(250, 248, 244, 0.14); }
.rp-credit img { height: 30px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .85; }
.rp-credit span { font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ivory-50); }


/* the footer credit sits on the dark panel, so it needs the panel's own ink */
.site-footer .rp-credit { grid-column: 1 / -1; width: 100%; }
.site-footer .rp-credit span { color: rgba(250, 248, 244, 0.55); }

/* a lockup inside a centred page head is centred with it */
.page-head .rp-lockup { justify-content: center; }
.page-head.gold-flow .rp-lockup { margin-bottom: 22px; }


/* the featured brand is shown by its own mark rather than set as type */
.featured-brand { max-width: none; align-items: center; }
.fb-mark { text-align: center; }
.fb-mark img { display: block; width: min(280px, 100%); height: auto; margin: 14px auto 0; }
.fb-kicker { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gold-hairline);
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory-50); }
@media (max-width: 820px) {
  .featured-brand { grid-template-columns: 1fr; }
  .featured-brand .fb-mark { border-left: 0; padding-left: 0; border-top: 1px solid var(--gold-hairline);
    padding-top: clamp(20px, 4vw, 30px); margin-top: 6px; }
}


/* treatment cards: one square frame whatever the card leads with, so a
   before/after plate and a product shot sit on identical footprints */
.treat-card .tc-media { aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.treat-card .tc-media img { width: 100%; height: 100%; object-fit: contain; display: block; }


/* honeypot: present for bots, never seen by a person */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }


/* brochure handover, shown once the email is in */
.brochure-ready { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gold-hairline); }
.brochure-ready .btn { display: inline-block; }
.brochure-ready .form-note { margin-top: 10px; }


/* clinic cards read as a clean directory: the practice name leads, centred */
.clinic-card { text-align: center; }
.clinic-card .cc-name { font-family: var(--serif); font-size: clamp(19px, 2vw, 23px);
  font-weight: 400; line-height: 1.25; margin-bottom: 6px; }
.clinic-card .cc-city { font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 12px; }
.clinic-card p { margin-left: auto; margin-right: auto; max-width: 34ch; }
.clinic-card .cc-phone { margin-top: 8px; }


/* ═══════════ clinic directory ═══════════ */
/* location and phone are on the card, so nobody has to click to find out */
.clinic-card { display: flex; flex-direction: column; align-items: center; }
.clinic-card .cc-desc { margin: 0 auto; max-width: 34ch; }
.cc-contact { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 5px; }
.cc-contact li { font-size: 13.5px; line-height: 1.5; color: var(--ivory-70); }
.cc-contact .cc-loc::before { content: ""; display: inline-block; width: 5px; height: 5px;
  margin-right: 8px; vertical-align: middle; border-radius: 50%; background: var(--gold); }
.cc-contact .cc-tel a { color: var(--gold-bright); font-weight: 600; letter-spacing: .01em; }
.cc-contact .cc-tel a:hover { color: var(--ivory); }
.cc-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: auto; padding-top: 18px; }
.cc-actions .btn { font-size: 12px; padding: 9px 14px; }

/* the size sits on its own line, as it does in the cart */
.step-card .body .size, .pdp .size {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ivory-50); margin-bottom: 2px;
}


/* ═══════════ RENOPHASE wordmark ═══════════ */
/* Set as real type, not as a picture of type.
   Earlier versions masked the shape out of the brand's logo. Even once traced to
   vector it read soft at 9-12px, because a mask is plain geometry - it gets none
   of the hinting or sub-pixel rendering the browser gives actual glyphs. Real
   text is crisp at every size and on every screen, and stays selectable. */
.rp {
  font-family: 'Poppins', 'Montserrat', var(--sans);
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
h1 .rp, h2 .rp, .hero-h .rp, .hl-h .rp, .sect-head h2 .rp {
  font-weight: 600;
  font-size: 0.84em;
  letter-spacing: 0.035em;
}
.tint-brown .rp, .hero-like .rp, .pull-quote .rp, .site-footer .rp { color: inherit; }

/* the same mark used as a small brand credit, in place of the logo image */
.rp-textmark {
  font-family: 'Poppins', 'Montserrat', var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.rp-credit .rp-textmark { font-size: 14px; color: var(--cream); }

/* ═══════════ Under the light: drag to compare on touch ═══════════ */
/* A finger cannot chase a spotlight without covering it, so small screens get a
   split view with a handle in the middle instead. The desktop effect is
   untouched - .is-compare is only ever set below the breakpoint. */
.portrait.is-compare .layer.reveal {
  -webkit-mask-image: none !important;
          mask-image: none !important;
  clip-path: inset(0 0 0 var(--split, 50%));
}
.portrait.is-compare { cursor: ew-resize; touch-action: pan-y; }

.compare { position: absolute; inset: 0; z-index: 7; pointer-events: none; }
.cmp-divider {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%);
  width: 2px; margin-left: -1px; background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 0 12px rgba(42, 38, 34, 0.45);
}
.cmp-handle {
  position: absolute; top: 50%; left: var(--split, 50%);
  width: 46px; height: 46px; margin: -23px 0 0 -23px; padding: 0;
  border-radius: 50%; border: 1px solid rgba(169, 129, 79, 0.5);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 6px 20px rgba(42, 38, 34, 0.3);
  pointer-events: auto; cursor: ew-resize; touch-action: none;
  display: grid; place-items: center;
}
.cmp-handle:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
/* two chevrons facing outwards, drawn with borders so no icon font is needed */
.cmp-handle span { position: relative; display: block; width: 22px; height: 12px; }
.cmp-handle span::before,
.cmp-handle span::after {
  content: ""; position: absolute; top: 50%; width: 7px; height: 7px;
  border-top: 2px solid var(--gold-bright); border-right: 2px solid var(--gold-bright);
}
.cmp-handle span::before { left: 1px; transform: translateY(-50%) rotate(-135deg); }
.cmp-handle span::after { right: 1px; transform: translateY(-50%) rotate(45deg); }

.cmp-tag {
  position: absolute; bottom: 14px; z-index: 8;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px; border-radius: 5px;
}
.cmp-before { left: 14px; }
.cmp-after { right: 14px; }


/* ═══════════ from the client's change list ═══════════ */
/* Partner and stockist tiles read as a clean wall when the names are centred */
.logo-wall .logo-slot {
  display: grid; place-items: center; text-align: center;
  min-height: 96px; padding: 18px 16px; line-height: 1.35;
}

/* a product's size, shown beside its name inside a paired set */
.bc-items .bc-size {
  font-style: normal; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ivory-50); margin-left: 8px; white-space: nowrap;
}


/* ═══════════ partner locations ═══════════ */
/* One box per partner, each its own small location card. The map panel is a
   real link out to that partner's Google listing, which resolves the business
   exactly - so the destination is always right even though the panel itself is
   drawn rather than tiled. Drop an <iframe> inside .loc-map to make it a live
   map, once the site's CSP permits Google frames. */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.2vw, 26px); }
.loc-card { display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--gold-hairline); overflow: hidden; }

.loc-map { position: relative; aspect-ratio: 16 / 10; background:
  radial-gradient(circle at 30% 25%, rgba(169,129,79,.16), transparent 60%),
  linear-gradient(140deg, var(--ground-2) 0%, var(--surface-2) 100%); }
.loc-map-link { position: absolute; inset: 0; display: grid; place-content: center;
  gap: 8px; justify-items: center; text-decoration: none; }
.loc-pin { width: 20px; height: 20px; border-radius: 50%; background: var(--gold);
  border: 3px solid var(--cream); box-shadow: 0 3px 10px rgba(42,38,34,.32); }
.loc-map-area { font-family: var(--serif); font-size: 19px; color: var(--ivory); }
.loc-map-cta { font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-bright); }
.loc-map-link:hover .loc-map-cta { color: var(--ivory); }

.loc-body { padding: clamp(16px, 2vw, 22px); display: flex; flex-direction: column; flex: 1; }
.loc-kind { font-size: 9.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-bright); }
.loc-name { font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 2vw, 22px);
  line-height: 1.25; margin: 6px 0 0; }
.loc-desc { font-size: 13.5px; line-height: 1.55; color: var(--ivory-70); margin: 6px 0 0; }
.loc-addr { font-style: normal; font-size: 13.5px; line-height: 1.6;
  color: var(--ivory-70); margin: 12px 0 0; }
.loc-tel { display: inline-block; margin-top: 8px; font-weight: 600;
  letter-spacing: .01em; color: var(--gold-bright); }
.loc-tel:hover { color: var(--ivory); }
.loc-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; }
.loc-actions .btn { font-size: 12px; padding: 9px 13px; }

/* ---------- human check on forms ---------- */
.hcheck { --hc-line: color-mix(in oklab, var(--ink) 14%, transparent); }
.hcheck > label { display: block; }
.hcheck .hcheck-input { max-width: 190px; letter-spacing: .04em; }
.hcheck.is-wrong .hcheck-input { border-color: #b4553f; box-shadow: 0 0 0 3px rgba(180, 85, 63, .12); }
.hcheck-err { margin: 7px 0 0; font-size: 13px; line-height: 1.4; color: #b4553f; }
@media (max-width: 640px) { .hcheck .hcheck-input { max-width: 100%; } }

/* ---------- map inside each partner box ---------- */
.loc-map { position: relative; overflow: hidden; background: #e9e5dc; }
.loc-map-img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* the live map sits behind the preview and is revealed once it has drawn, so
   the box never flashes empty while Google is still loading */
.loc-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  opacity: 0; transition: opacity .3s ease;
}
.loc-map.has-embed iframe { opacity: 1; }
.loc-map.has-embed .loc-map-img,
.loc-map.has-embed .loc-map-link { display: none; }

/* ---------- concern cards: the product, not a mood photo ---------- */
/* Each card promises "the products that help", so it leads with one - the
   clearest product for that concern. The shots are photographed on white, so
   they are blended into the card's own ground rather than sitting on it as a
   pale rectangle. */
.concern-card .cc-media.cc-shelf {
  display: grid;
  place-items: end center;
  padding: 10px 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(70% 62% at 50% 110%, rgba(169, 129, 79, .18), transparent 64%),
    linear-gradient(180deg, #f6f1e9 0%, #ece4d7 100%);
}
.concern-card .cc-shelf img {
  width: auto;
  max-width: 74%;
  height: 104%;
  object-fit: contain;
  object-position: bottom center;
  /* the white studio background drops away against the card */
  mix-blend-mode: multiply;
  filter: none;
  transition: transform .55s var(--ease-soft);
}
.concern-card:hover .cc-shelf img { transform: translateY(-6px) scale(1.03); filter: none; }
/* the tint and vignette belonged to the photography these replaced */
.concern-card .cc-shelf::after,
.concern-card .cc-shelf::before { display: none; }

@media (max-width: 560px) {
  .concern-card .cc-shelf img { max-width: 66%; }
}
