/* ============================================================
   dafna. — paramedical skincare clinic
   Editorial monochrome design system
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&family=Suez+One&family=Frank+Ruhl+Libre:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Comfortaa:wght@400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* palette — pure monochrome */
  --bone:        #f2f1ec;
  --bone-deep:   #eae8e1;
  --cream:       #fbfaf6;
  --ink:         #211f1c;
  --charcoal:    #2b2926;
  --charcoal-2:  #33312d;
  --taupe:       #6f6a61;
  --taupe-soft:  #9a948a;
  --line:        rgba(43,41,38,0.14);
  --line-soft:   rgba(43,41,38,0.08);
  --on-dark:     #f4f2ec;
  --on-dark-dim: rgba(244,242,236,0.62);

  /* type */
  --sans: 'Assistant', system-ui, sans-serif;
  --serif: 'Cormorant Garamond', 'Frank Ruhl Libre', Georgia, serif;
  --serif-he: 'Frank Ruhl Libre', Georgia, serif;
  --head: 'Suez One', 'Frank Ruhl Libre', Georgia, serif;
  --logo: 'Comfortaa', var(--sans);

  /* spacing scale */
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(72px, 11vw, 168px);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.7s;

  --maxw: 1480px;
  --radius: 2px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 400;
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--charcoal); color: var(--bone); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-block;
}
.eyebrow--light { color: var(--on-dark-dim); }

h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }

.display {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 94px);
  line-height: 1.06;
  letter-spacing: 0;
}
.h-section {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(25px, 3.4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}
.serif {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
}
.lede {
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 56ch;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.divider { height: 1px; background: var(--line); border: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg: var(--charcoal); --fg: var(--bone);
  display: inline-flex; align-items: center; gap: 0.7em;
  background: var(--bg); color: var(--fg);
  padding: 1.05em 2.2em;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 100px;
  position: relative; overflow: hidden;
  transition: color .5s var(--ease), transform .35s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }
.btn--ghost {
  --bg: transparent; --fg: var(--charcoal);
  border: 1px solid var(--line);
}
.btn--ghost::before { background: var(--charcoal); }
.btn--ghost:hover { color: var(--bone); }
.btn--light { --bg: var(--bone); --fg: var(--charcoal); }
.btn--light::before { background: var(--cream); }
.btn--light:hover { color: var(--charcoal); }
.btn .arr { transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(-4px); }

/* text link with underline sweep */
.tlink {
  position: relative; font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 4px;
}
.tlink::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(1); transform-origin: right;
  transition: transform .5s var(--ease);
}
.tlink:hover::after { transform: scaleX(0); transform-origin: left; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  padding-block: 14px;
  background: rgba(74,71,66,0.42);
  backdrop-filter: blur(14px) saturate(1.1);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px;
}
.header.is-solid {
  background: rgba(43,41,38,0.78);
  padding-block: 11px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.logo {
  font-family: var(--logo); font-weight: 700;
  font-size: 25px; letter-spacing: -0.02em;
  color: var(--on-dark); justify-self: center;
  transition: color .5s var(--ease);
}
.logo .dot { color: var(--on-dark); }
.nav { display: flex; gap: clamp(14px, 1.8vw, 30px); align-items: center; justify-self: start; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--on-dark);
  letter-spacing: 0.02em; position: relative; padding-block: 6px;
  opacity: 0.85; transition: opacity .3s;
}
.nav a::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-active { opacity: 1; }

.header__actions { display: flex; align-items: center; gap: 16px; justify-self: end; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--bone); color: var(--charcoal);
  padding: 0.62em 1.25em; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .4s var(--ease), background .4s;
}
.pill:hover { transform: translateY(-1px); background: var(--cream); }
.icons { display: flex; gap: 13px; align-items: center; }
.icons a, .cart-btn { color: var(--on-dark); opacity: 0.8; transition: opacity .3s, transform .3s; display: inline-flex; }
.icons a:hover, .cart-btn:hover { opacity: 1; transform: translateY(-1px); }
.icon { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; inset-block-start: -7px; inset-inline-start: -8px;
  background: var(--bone); color: var(--charcoal);
  font-size: 10px; font-weight: 700; min-width: 17px; height: 17px;
  border-radius: 100px; display: grid; place-items: center; padding: 0 3px;
  transform: scale(0); transition: transform .35s var(--ease);
}
.cart-count.has { transform: scale(1); }

.burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.burger span { height: 1.5px; background: var(--on-dark); transition: transform .4s var(--ease), opacity .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--on-dark); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.16) translate(1.5%, -1.5%); }
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,19,16,0.78) 0%, rgba(20,19,16,0.25) 45%, rgba(20,19,16,0.35) 100%);
}
.hero__inner { padding-block-end: clamp(56px, 9vh, 130px); padding-block-start: 140px; width: 100%; }
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { color: var(--on-dark); max-width: 16ch; }
.hero__sub {
  margin-top: 28px; max-width: 46ch; font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300; color: var(--on-dark-dim); line-height: 1.7;
}
.hero__cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; inset-block-end: 30px; inset-inline-start: var(--gutter);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--on-dark-dim); display: flex; align-items: center; gap: 10px;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__scroll::after { content: ''; width: 1px; height: 46px; background: linear-gradient(var(--on-dark-dim), transparent); animation: scrolldot 2.4s ease-in-out infinite; }
@keyframes scrolldot { 0%,100%{ opacity:.3; transform: scaleY(.6);} 50%{ opacity:1; transform: scaleY(1);} }

/* ============================================================
   LOGO HERO (homepage — giant dafna wordmark on cream)
   ============================================================ */
.logohero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding-block: 140px 60px;
}
.logohero__mark {
  font-family: var(--logo); font-weight: 700; color: var(--ink);
  font-size: clamp(96px, 26vw, 420px); line-height: 0.82; letter-spacing: -0.04em;
}
.logohero__mark .dot { display: inline-block; }
.logohero__title {
  font-weight: 700; font-size: clamp(24px, 3.4vw, 46px); color: var(--ink);
  margin-top: clamp(36px, 6vh, 90px); letter-spacing: -0.01em; max-width: 18ch;
}
.logohero__sub { color: var(--taupe); font-weight: 300; margin-top: 16px; max-width: 50ch; font-size: clamp(15px, 1.2vw, 18px); }
.logohero .eyebrow { margin-bottom: clamp(24px, 4vh, 48px); }
.logohero__accent { font-style: italic; font-size: clamp(16px, 1.6vw, 22px); color: var(--taupe-soft); letter-spacing: 0.04em; margin-top: 10px; }
.logohero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.logohero__scroll { margin-top: clamp(40px, 7vh, 90px); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe-soft); display: inline-flex; flex-direction: column; align-items: center; gap: 12px; }
.logohero__scroll::after { content: ''; width: 1px; height: 44px; background: linear-gradient(var(--taupe-soft), transparent); animation: scrolldot 2.4s ease-in-out infinite; }

/* ============================================================
   TREATMENT SELECTOR (homepage)
   ============================================================ */
.tsel { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 70px); align-items: center; }
.tsel__media { position: relative; overflow: hidden; }
.tsel__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform 1.2s var(--ease); }
.tsel:hover .tsel__media img { transform: scale(1.04); }
.tsel__tabs { display: flex; gap: clamp(18px, 2.4vw, 36px); margin-bottom: 30px; border-block-end: 1px solid var(--line); }
.tsel__tab {
  font-size: clamp(13px, 1vw, 15px); font-weight: 500; letter-spacing: 0.04em; color: var(--taupe-soft);
  padding: 0 0 16px; position: relative; transition: color .4s var(--ease);
}
.tsel__tab::after {
  content: ''; position: absolute; inset-inline: 0; inset-block-end: -1px; height: 1.5px;
  background: var(--charcoal); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.tsel__tab:hover { color: var(--charcoal); }
.tsel__tab.is-on { color: var(--charcoal); }
.tsel__tab.is-on::after { transform: scaleX(1); transform-origin: left; }
.tsel__list { border-block-start: 1px solid var(--line); }
.tsel__row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: clamp(16px, 1.8vw, 24px); border-block-end: 1px solid var(--line);
  color: var(--ink); position: relative;
}
.tsel__row span { font-size: clamp(18px, 1.8vw, 26px); font-weight: 500; transition: transform .45s var(--ease); }
.tsel__row .chev { color: var(--taupe-soft); transition: transform .45s var(--ease), color .45s; }
.tsel__row:hover span { transform: translateX(-8px); }
.tsel__row:hover .chev { transform: translateX(-6px); color: var(--charcoal); }
.tsel__cta { margin-top: 28px; }

/* ============================================================
   IMAGE BAND ("בואי נכיר")
   ============================================================ */
.band {
  position: relative; min-height: clamp(420px, 62vh, 640px); display: grid; place-items: center;
  text-align: center; color: var(--on-dark); overflow: hidden; padding: 60px var(--gutter);
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(20,19,16,.4), rgba(20,19,16,.55)); }
.band__title { font-weight: 600; font-size: clamp(30px, 4.6vw, 64px); color: var(--on-dark); }
.band__sub { color: var(--on-dark-dim); max-width: 48ch; margin: 18px auto 0; font-weight: 300; }
.band__cta { margin-top: 30px; }

/* catalog product (homepage products row — no card, clean on cream) */
.prod--mini { background: transparent; border: none; }
.prod--mini:hover { transform: none; box-shadow: none; }
.prod--mini .prod__media { aspect-ratio: 3/4; background: var(--cream); overflow: hidden; display: grid; place-items: center; }
.prod--mini .prod__media img { object-fit: contain; width: 78%; height: 78%; transition: transform .9s var(--ease); }
.prod--mini:hover .prod__media img { transform: scale(1.06); }
.prod--mini .prod__body { padding: 18px 4px 0; text-align: center; align-items: center; border-top: 1px solid var(--line); }
.prod--mini .prod__cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe-soft); }
.prod--mini .prod__name { font-size: 16px; font-weight: 500; margin-top: 7px; }
.prod--mini .tlink { font-size: 11px; color: var(--taupe); }
.prod--mini .tlink::after { background: var(--taupe); }

/* testimonial small label */
.quote__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-soft); margin-bottom: 14px; display: block; }

@media (max-width: 860px) {
  .tsel { grid-template-columns: 1fr; }
  .tsel__media { order: -1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: clamp(20px, 2.6vw, 34px); }
.marquee--dark { background: var(--ink); border-color: rgba(255,255,255,0.08); }
.marquee__track { display: flex; gap: clamp(40px, 6vw, 92px); width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 34px); color: var(--taupe-soft);
  white-space: nowrap; display: flex; align-items: center; gap: clamp(40px, 6vw, 92px);
}
.marquee--dark .marquee__item { color: var(--on-dark-dim); }
.marquee__item::after { content: '✦'; font-size: 0.5em; color: var(--line); font-style: normal; }
.marquee--dark .marquee__item::after { color: rgba(255,255,255,0.18); }
@keyframes marquee { to { transform: translateX(50%); } }

/* brand marquee (logos as wordmarks) */
.brandmq__item {
  font-family: var(--sans); font-weight: 300; font-style: normal;
  font-size: clamp(18px, 2vw, 28px); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--taupe);
}
/* real logo images in dark strip */
.brand-logo { height: clamp(26px, 3vw, 42px); width: auto; opacity: 0.85; filter: brightness(0) invert(1); transition: opacity .4s; }
.marquee--dark .marquee__item:hover .brand-logo { opacity: 1; }
.marquee--dark .marquee__item::after { content: none; }

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.statement { text-align: center; max-width: 22ch; margin-inline: auto; }
.statement .h-section { font-weight: 300; }
.statement em { font-family: var(--serif); font-style: italic; }

/* ============================================================
   FEATURED (3 מכיים)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); }
.feat {
  background: var(--bone); padding: clamp(30px, 3vw, 52px) clamp(24px, 2.4vw, 44px);
  display: flex; flex-direction: column; min-height: 320px;
  transition: background .6s var(--ease);
}
.feat:hover { background: var(--cream); }
.feat__num { font-family: var(--serif); font-size: 15px; color: var(--taupe-soft); }
.feat__title { font-size: clamp(22px, 2vw, 30px); font-weight: 500; margin-top: auto; }
.feat__desc { color: var(--taupe); font-size: 15px; font-weight: 300; margin-top: 14px; line-height: 1.7; }
.feat__link { margin-top: 22px; }

/* ============================================================
   EDITORIAL INDEX (treatments list)
   ============================================================ */
.index { position: relative; }
.index__bar {
  display: grid; grid-template-columns: auto minmax(0,1fr) auto auto;
  gap: clamp(18px, 3vw, 52px); align-items: baseline; padding-block-end: 20px;
}
.index__bar span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe-soft); }
.index__row {
  display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center;
  gap: clamp(18px, 3vw, 52px);
  padding-block: clamp(28px, 3.2vw, 48px);
  border-block-start: 1px solid var(--line);
  position: relative; cursor: pointer;
}
.index__row:last-child { border-block-end: 1px solid var(--line); }
.index__row::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--cream); transform: scaleY(0); transform-origin: bottom;
  transition: transform .55s var(--ease);
}
.index__row:hover::before { transform: scaleY(1); }
.index__row > * { position: relative; z-index: 1; }
.index__num { font-family: var(--serif); font-size: clamp(26px, 3vw, 46px); color: var(--taupe-soft); font-style: italic; min-width: 1.4em; transition: color .5s; }
.index__row:hover .index__num { color: var(--charcoal); }
.index__name {
  font-family: var(--serif-he); font-size: clamp(22px, 2.7vw, 40px); font-weight: 500; color: var(--ink); line-height: 1.1;
}
.index__meta { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe); white-space: nowrap; }
.index__cta {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 100px;
  display: grid; place-items: center; color: var(--charcoal);
  transition: background .5s var(--ease), color .5s, transform .5s var(--ease);
}
.index__row:hover .index__cta { background: var(--charcoal); color: var(--bone); transform: rotate(-45deg); }
/* cursor-follow preview */
.index__preview {
  position: fixed; top: 0; left: 0; width: 230px; height: 300px; z-index: 60;
  pointer-events: none; opacity: 0; overflow: hidden; border-radius: 3px;
  transform: translate(-50%, -50%) scale(0.92); transition: opacity .4s var(--ease), transform .4s var(--ease);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.index__preview.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.index__preview img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SPLIT / EDITORIAL IMAGE BLOCKS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 88px); align-items: center; }
.split--reverse { direction: ltr; }
.split--reverse > * { direction: rtl; }
.split__media { position: relative; overflow: hidden; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.split:hover .split__media img { transform: scale(1.04); }
.split__media--tall img { aspect-ratio: 3/4; }
.media-tag {
  position: absolute; inset-block-end: 18px; inset-inline-start: 18px;
  background: rgba(20,19,16,.55); backdrop-filter: blur(6px);
  color: var(--on-dark); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
}
.stack > * + * { margin-top: 24px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 28px); }
.prod {
  background: var(--cream); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.prod:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.08); }
.prod__media { aspect-ratio: 1; background: var(--bone-deep); position: relative; overflow: hidden; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.prod:hover .prod__media img { transform: scale(1.06); }
.prod__brand { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); background: var(--cream); padding: 5px 11px; border-radius: 100px; }
.prod__body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.prod__cat { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-soft); }
.prod__name { font-size: 18px; font-weight: 500; margin-top: 8px; color: var(--ink); }
.prod__add {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.prod__add .tlink { font-size: 12px; }
.prod__plus {
  width: 38px; height: 38px; border-radius: 100px; border: 1px solid var(--line);
  display: grid; place-items: center; transition: background .4s var(--ease), color .4s, transform .4s;
}
.prod__plus:hover { background: var(--charcoal); color: var(--bone); transform: rotate(90deg); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); }
.quote { background: var(--bone); padding: clamp(28px, 3vw, 48px); }
.quote__mark { font-family: var(--serif); font-size: 60px; line-height: 0.6; color: var(--line); }
.quote__text { font-family: var(--serif-he); font-size: clamp(18px, 1.5vw, 23px); font-weight: 400; color: var(--charcoal); margin-top: 18px; line-height: 1.55; }
.quote__by { margin-top: 22px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.acc__item { border-block-start: 1px solid var(--line); }
.acc__item:last-child { border-block-end: 1px solid var(--line); }
.acc__head {
  width: 100%; text-align: start; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-block: clamp(20px, 2.2vw, 30px); font-size: clamp(17px, 1.5vw, 22px); font-weight: 500; color: var(--ink);
}
.acc__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after { content: ''; position: absolute; inset-block-start: 50%; inset-inline-start: 0; width: 100%; height: 1.5px; background: var(--charcoal); transition: transform .45s var(--ease); }
.acc__icon::after { transform: rotate(90deg); }
.acc__item.open .acc__icon::after { transform: rotate(0); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.acc__body p { padding-block-end: clamp(20px, 2.2vw, 30px); color: var(--taupe); font-weight: 300; max-width: 64ch; }

/* ============================================================
   CLOSER / CONTACT
   ============================================================ */
.closer { background: var(--ink); color: var(--on-dark); text-align: center; }
.closer__latin { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(54px, 9vw, 132px); line-height: 1; color: var(--on-dark); }
.closer .lede { color: var(--on-dark-dim); margin-inline: auto; text-align: center; }
.cform { max-width: 620px; margin-inline: auto; margin-top: 48px; display: grid; gap: 0; }
.field { position: relative; border-block-end: 1px solid rgba(255,255,255,0.18); }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; color: var(--on-dark);
  padding: 22px 4px 14px; font-size: 16px; font-weight: 300;
}
.field input:focus, .field textarea:focus { outline: none; }
.field label {
  position: absolute; inset-block-start: 22px; inset-inline-start: 4px; color: var(--on-dark-dim);
  pointer-events: none; transition: transform .4s var(--ease), font-size .4s var(--ease), color .4s;
  transform-origin: inline-start;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(0.78); color: var(--on-dark-dim);
}
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 28px; text-align: start; font-size: 13px; color: var(--on-dark-dim); }
.consent input { accent-color: var(--bone); margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bone); border-block-start: 1px solid var(--line); padding-block: clamp(40px, 5vw, 72px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { font-family: var(--logo); font-weight: 600; font-size: 30px; color: var(--ink); }
.footer__tag { color: var(--taupe); font-weight: 300; margin-top: 14px; max-width: 30ch; font-size: 15px; }
.footer__col h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-soft); font-weight: 600; margin-bottom: 18px; }
.footer__col a { display: block; padding-block: 6px; color: var(--charcoal); font-weight: 300; transition: opacity .3s; }
.footer__col a:hover { opacity: 0.6; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: clamp(40px, 5vw, 70px); padding-top: 28px; border-top: 1px solid var(--line); font-size: 12px; color: var(--taupe); letter-spacing: 0.04em; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { color: var(--charcoal); transition: opacity .3s; }
.footer__social a:hover { opacity: 0.6; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(20,19,16,0.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; z-index: 200; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; inset-block: 0; inset-inline-start: 0; width: min(440px, 92vw);
  background: var(--bone); z-index: 201; transform: translateX(100%);
  transition: transform .55s var(--ease); display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,.12);
}
.drawer.open { transform: translateX(0) !important; }

/* toast confirmation */
.toast {
  position: fixed; inset-block-end: 26px; inset-inline-start: 50%;
  transform: translate(50%, 24px); /* RTL: 50% re-centers */
  background: var(--ink); color: var(--on-dark);
  padding: 14px 26px; border-radius: 100px; z-index: 250;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.toast.show { opacity: 1; visibility: visible; transform: translate(50%, 0); }
.toast a { text-decoration: underline; text-underline-offset: 3px; color: var(--on-dark); pointer-events: auto; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 26px var(--gutter); border-block-end: 1px solid var(--line); }
.drawer__head h3 { font-size: 18px; font-weight: 600; letter-spacing: 0.04em; }
.drawer__close { width: 36px; height: 36px; border-radius: 100px; border: 1px solid var(--line); display: grid; place-items: center; transition: background .4s, color .4s; }
.drawer__close:hover { background: var(--charcoal); color: var(--bone); }
.drawer__body { flex: 1; overflow-y: auto; padding: 10px var(--gutter); }
.drawer__empty { text-align: center; color: var(--taupe); padding-block: 60px; font-weight: 300; }
.citem { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; padding-block: 20px; border-block-end: 1px solid var(--line-soft); align-items: center; }
.citem__media { width: 64px; height: 64px; background: var(--bone-deep); overflow: hidden; }
.citem__media img { width:100%; height:100%; object-fit: cover; }
.citem__name { font-weight: 500; font-size: 15px; }
.citem__brand { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-soft); }
.citem__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.citem__qty button { width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 100px; display: grid; place-items: center; font-size: 14px; line-height: 1; }
.citem__remove { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe-soft); }
.drawer__foot { padding: 24px var(--gutter); border-block-start: 1px solid var(--line); }
.drawer__note { font-size: 13px; color: var(--taupe); font-weight: 300; margin-bottom: 18px; text-align: center; }
.drawer__foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FILTER CHIPS
   ============================================================ */
.chip {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.6em 1.3em; border-radius: 100px; border: 1px solid var(--line);
  color: var(--taupe); transition: background .4s var(--ease), color .4s, border-color .4s;
}
.chip:hover { border-color: var(--charcoal); color: var(--charcoal); }
.chip.is-on { background: var(--charcoal); color: var(--bone); border-color: var(--charcoal); }

/* before/after placeholder cells */
.ba-cell {
  aspect-ratio: 3/4; background: var(--bone-deep);
  position: relative; overflow: hidden;
}
.ba-cell::after {
  content: 'לפני · אחרי'; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-soft);
}
.index__row.hide { display: none; }

/* responsive 3-up grid utility (hairline-separated) */
.tri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); }
@media (max-width: 860px) {
  .tri-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero { position: relative; padding-block-start: clamp(140px, 18vh, 220px); padding-block-end: clamp(50px, 7vw, 90px); }
.phero__eyebrow { margin-bottom: 22px; }
.phero h1 { max-width: 18ch; }
.phero .lede { margin-top: 26px; }
.crumbs { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 30px; }
.crumbs a:hover { color: var(--charcoal); }

/* ============================================================
   TREATMENTS — editorial page head (asymmetric)
   ============================================================ */
.thead { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 4vw, 72px); align-items: end; }
.thead h1 { font-size: clamp(40px, 6.8vw, 100px); }
.thead__aside { padding-bottom: clamp(6px, 1vw, 14px); }
.thead__aside .lede { margin-top: 0; }
.thead__count { margin-top: 26px; display: flex; align-items: baseline; gap: 12px; color: var(--taupe); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }
.thead__count b { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(34px, 4vw, 54px); color: var(--ink); letter-spacing: 0; }
@media (max-width: 860px) { .thead { grid-template-columns: 1fr; align-items: start; } }

/* treatment index filter — tabs (echoes homepage selector) */
.ttabs { display: flex; gap: clamp(18px, 2.6vw, 42px); flex-wrap: wrap; border-block-end: 1px solid var(--line); }
.ttab {
  font-size: clamp(14px, 1.15vw, 18px); font-weight: 500; letter-spacing: 0.01em;
  color: var(--taupe-soft); padding: 0 0 18px; position: relative;
  display: inline-flex; align-items: baseline; gap: 7px; transition: color .4s var(--ease);
}
.ttab sup { font-family: var(--serif); font-style: italic; font-size: 0.66em; color: var(--taupe-soft); top: -0.1em; }
.ttab::after {
  content: ''; position: absolute; inset-inline: 0; inset-block-end: -1px; height: 1.5px;
  background: var(--charcoal); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.ttab:hover { color: var(--charcoal); }
.ttab.is-on { color: var(--ink); }
.ttab.is-on sup { color: var(--charcoal); }
.ttab.is-on::after { transform: scaleX(1); transform-origin: left; }

/* enriched index cell (name + description) */
.index__cell { display: flex; flex-direction: column; gap: 7px; transition: transform .55s var(--ease); }
.index__row:hover .index__cell { transform: translateX(-10px); }
.index__desc { font-size: clamp(13px, 1vw, 15px); font-weight: 300; color: var(--taupe); max-width: 46ch; line-height: 1.6; }

/* ============================================================
   TREATMENT DETAIL — type-driven (no photos)
   ============================================================ */
.tdhero { position: relative; padding-block-start: clamp(140px, 18vh, 230px); padding-block-end: clamp(34px, 5vw, 64px); overflow: hidden; }
.tdhero__wm {
  position: absolute; inset-block-start: clamp(96px, 13vh, 168px); inset-inline-end: clamp(-12px, 1vw, 30px);
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(190px, 36vw, 560px); line-height: 0.72; color: var(--bone-deep);
  z-index: 0; pointer-events: none; user-select: none;
}
.tdhero__inner { position: relative; z-index: 1; }
.tdhero h1 { font-size: clamp(42px, 7.4vw, 108px); max-width: 14ch; }
.tdhero .lede { margin-top: 26px; }

/* spec sheet (label / value) */
.spec { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.spec__item { padding: clamp(22px, 2.4vw, 34px) clamp(18px, 2vw, 30px); border-inline-start: 1px solid var(--line); }
.spec__item:first-child { border-inline-start: none; padding-inline-start: 0; }
.spec__label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-soft); }
.spec__val { font-size: clamp(18px, 1.7vw, 24px); font-weight: 400; color: var(--ink); margin-top: 12px; }
@media (max-width: 680px) {
  .spec { grid-template-columns: 1fr; }
  .spec__item { border-inline-start: none; border-block-start: 1px solid var(--line); padding-inline-start: 0; }
  .spec__item:first-child { border-block-start: none; }
}

/* benefits grid */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line-soft); }
.benefit { background: var(--bone); padding: clamp(32px, 3.4vw, 58px); display: flex; flex-direction: column; min-height: 260px; transition: background .6s var(--ease); }
.benefit:hover { background: var(--cream); }
.benefit__num { font-family: var(--serif); font-style: italic; font-size: clamp(30px, 3.2vw, 48px); color: var(--taupe-soft); }
.benefit__title { font-size: clamp(20px, 1.9vw, 27px); font-weight: 500; color: var(--ink); margin-top: auto; }
.benefit__desc { color: var(--taupe); font-weight: 300; margin-top: 13px; font-size: 15px; line-height: 1.7; }
@media (max-width: 680px) { .benefits { grid-template-columns: 1fr; } }

/* dark pull-quote band (replaces photo band) */
.pullband { background: var(--ink); color: var(--on-dark); text-align: center; }
.pullband__q { font-family: var(--serif-he); font-weight: 400; font-size: clamp(27px, 4.2vw, 56px); line-height: 1.3; color: var(--on-dark); max-width: 20ch; margin-inline: auto; }
.pullband__q em { font-style: normal; }
.pullband__by { margin-top: 30px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-dim); }

/* stepper (process) */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); }
.step { background: var(--bone); padding: clamp(28px, 3vw, 48px); }
.step__n { font-family: var(--serif); font-style: italic; font-size: clamp(40px, 5vw, 74px); color: var(--taupe-soft); line-height: 1; }
.step__title { font-size: clamp(19px, 1.7vw, 25px); font-weight: 500; margin-top: 18px; color: var(--ink); }
.step__desc { color: var(--taupe); font-weight: 300; margin-top: 11px; font-size: 15px; line-height: 1.7; }
@media (max-width: 860px) { .stepper { grid-template-columns: 1fr; } }

/* concern tags */
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag { border: 1px solid var(--line); border-radius: 100px; padding: 0.62em 1.35em; font-size: 14px; color: var(--charcoal); font-weight: 400; transition: border-color .4s, background .4s; }
.tag:hover { border-color: var(--charcoal); background: var(--cream); }

/* ============================================================
   GIFT CARD — visual card
   ============================================================ */
.gcard-stage { display: grid; place-items: center; perspective: 1400px; }
.gcard {
  width: 100%; max-width: 460px; aspect-ratio: 1.586;
  background: linear-gradient(150deg, var(--charcoal-2) 0%, var(--ink) 70%);
  color: var(--on-dark); border-radius: 16px; padding: clamp(24px, 3.4vw, 40px);
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 50px 90px rgba(0,0,0,.32); position: relative; overflow: hidden;
  transform: rotate(-4deg); transition: transform .8s var(--ease);
}
.gcard:hover { transform: rotate(0deg) translateY(-6px); }
.gcard::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 80% 0%, rgba(244,242,236,0.14) 0%, transparent 46%);
  pointer-events: none;
}
.gcard::after {
  content: ''; position: absolute; inset-block-start: -40%; inset-inline-start: -20%; width: 70%; height: 180%;
  background: linear-gradient(90deg, transparent, rgba(244,242,236,0.06), transparent);
  transform: rotate(18deg); pointer-events: none;
}
.gcard__top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.gcard__label { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--on-dark-dim); }
.gcard__chip { width: 42px; height: 30px; border-radius: 6px; border: 1px solid rgba(244,242,236,0.28); background: linear-gradient(135deg, rgba(244,242,236,0.14), rgba(244,242,236,0.04)); }
.gcard__logo { font-family: var(--logo); font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); color: var(--on-dark); position: relative; z-index: 1; letter-spacing: -0.02em; }
.gcard__foot { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; }
.gcard__foot small { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-dim); display: block; }
.gcard__foot .serif { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--on-dark); }

.gift-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
@media (max-width: 860px) { .gift-split { grid-template-columns: 1fr; gap: 48px; } .gcard { transform: rotate(-3deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .header__inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .burger { display: flex; }
  .logo { justify-self: start; }
  .header__actions .pill span { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: rtl; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cform-row { grid-template-columns: 1fr; gap: 0; }

  /* mobile nav panel */
  .nav.is-open {
    display: flex; position: fixed; inset: 0; z-index: 99;
    background: var(--ink); flex-direction: column; justify-content: center; align-items: center;
    gap: 8px; padding: 40px;
  }
  .nav.is-open a { font-size: 28px; font-weight: 300; opacity: 1; padding-block: 10px; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .index__meta { display: none; }
  .index__row { grid-template-columns: auto 1fr auto; gap: 16px; }
  .index__bar { grid-template-columns: auto 1fr auto; gap: 16px; }
  .hero__scroll { display: none; }
}

/* ============================================================
   SIGNATURE SYSTEM — motion, depth, trust (2026 elevation)
   ============================================================ */

/* accessibility skip link */
.skip { position: absolute; inset-inline-start: -9999px; top: 0; z-index: 400; background: var(--ink); color: var(--on-dark); padding: 12px 20px; border-radius: 0 0 6px 0; font-size: 13px; font-weight: 600; }
.skip:focus { inset-inline-start: 0; }
:focus-visible { outline: 2px solid var(--charcoal); outline-offset: 3px; }
.header :focus-visible, .closer :focus-visible, .band :focus-visible, .pullband :focus-visible { outline-color: var(--on-dark); }

/* scroll progress bar */
.scrollbar { position: fixed; inset-block-start: 0; inset-inline: 0; height: 2px; z-index: 300; background: var(--charcoal); transform: scaleX(0); transform-origin: right; will-change: transform; }

/* grayscale-by-default imagery — color is the reward (revealed on hover) */
.hero__media img, .band__media img, .split__media img, .tsel__media img, .index__preview img {
  filter: grayscale(1) contrast(1.03);
  transition: filter 1.2s var(--ease), transform 1.2s var(--ease);
}
.band:hover .band__media img, .split:hover .split__media img, .tsel:hover .tsel__media img, .index__preview.show img { filter: grayscale(0) contrast(1); }
@media (prefers-reduced-motion: reduce) { .hero__media img, .band__media img, .split__media img, .tsel__media img { filter: grayscale(0.4); } }

/* staggered reveal for grouped children */
[data-stagger] > .reveal { transition-delay: calc(var(--d, 0) * 1s + 0.05s); }
[data-stagger] > .reveal:nth-child(1) { --d: 0; }
[data-stagger] > .reveal:nth-child(2) { --d: 0.07; }
[data-stagger] > .reveal:nth-child(3) { --d: 0.14; }
[data-stagger] > .reveal:nth-child(4) { --d: 0.21; }
[data-stagger] > .reveal:nth-child(5) { --d: 0.28; }
[data-stagger] > .reveal:nth-child(6) { --d: 0.35; }

/* vertical side label (editorial furniture) */
.sidelabel { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--taupe-soft); white-space: nowrap; }

/* trust micro-strip */
.trust { display: flex; flex-wrap: wrap; gap: clamp(12px, 1.6vw, 26px); align-items: center; }
.trust__item { font-size: 12.5px; letter-spacing: 0.04em; color: var(--taupe); display: inline-flex; align-items: center; gap: 9px; font-weight: 400; }
.trust__item b { font-weight: 600; color: var(--charcoal); }
.trust__sep { width: 4px; height: 4px; border-radius: 100px; background: var(--taupe-soft); display: inline-block; }

/* stats / counters band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--bone); padding: clamp(30px, 3.4vw, 56px) clamp(16px, 2vw, 28px); text-align: center; }
.stat__num { font-family: var(--head); font-weight: 400; font-size: clamp(40px, 5.2vw, 80px); line-height: 1; color: var(--ink); display: inline-flex; align-items: baseline; gap: 0.06em; }
.stat__num .u { font-family: var(--serif); font-style: italic; font-size: 0.46em; color: var(--taupe-soft); }
.stat__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 16px; }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr 1fr; } .stat { border-block-start: 1px solid var(--line); } }

/* named method — line-art diagram (no photo) */
.method { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: m; }
.method__step { padding: clamp(24px, 2.6vw, 40px) clamp(20px, 2.4vw, 38px); border-inline-start: 1px solid rgba(255,255,255,0.14); position: relative; }
.method__step:first-child { border-inline-start: none; }
.method__dot { width: 12px; height: 12px; border-radius: 100px; border: 1px solid var(--on-dark-dim); position: relative; }
.method__line { position: absolute; inset-block-start: 6px; inset-inline-end: 0; height: 1px; width: 100%; background: rgba(255,255,255,0.14); }
.method__k { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--on-dark-dim); margin-top: 22px; display: block; }
.method__t { font-size: clamp(18px, 1.7vw, 23px); font-weight: 500; color: var(--on-dark); margin-top: 8px; }
.method__d { color: var(--on-dark-dim); font-weight: 300; margin-top: 10px; font-size: 14px; line-height: 1.7; }
@media (max-width: 760px) { .method { grid-template-columns: 1fr; } .method__step { border-inline-start: none; border-block-start: 1px solid rgba(255,255,255,0.14); } .method__line { display: none; } }

/* ============================================================
   HOME HERO — wordmark + framed portrait (client's design, upgraded)
   ============================================================ */
/* Best-practice hero: oversized quiet wordmark backdrop + grounded cutout + side copy */
.dhero { position: relative; min-height: 100svh; overflow: hidden;
  background: linear-gradient(to bottom, var(--bone) 0%, var(--bone) 52%, var(--bone-deep) 100%); }
/* the floor she stands on (grounds the cutout) */
.dhero__floor { position: absolute; inset-inline: 0; inset-block-end: 0; height: 25%; background: var(--bone-deep); z-index: 0; }
.dhero__floor::before { content: ''; position: absolute; inset-block-start: 0; inset-inline: 0; height: 1px; background: var(--line); }
/* oversized wordmark — tone-on-tone backdrop (NOT loud) */
.dhero__logo { position: absolute; inset-block-start: 15%; inset-inline: 0; margin-inline: auto; width: min(94vw, 1140px); z-index: 1; pointer-events: none; user-select: none; }
/* soft contact shadow under her base */
.dhero__shadow { position: absolute; inset-block-end: calc(25% - 16px); inset-inline-start: 9%; width: min(30vw, 320px); height: 34px; transform: translateX(50%); background: radial-gradient(ellipse at center, rgba(20,19,16,0.22) 0%, transparent 68%); filter: blur(5px); z-index: 2; }
/* dafna — off-center (inline-start = right in RTL), grounded on the floor, overlapping the wordmark */
.dhero__cut { position: absolute; inset-block-end: 25%; inset-inline-start: 7%; height: min(72vh, 720px); z-index: 3; }
.dhero__cut img { height: 100%; width: auto; object-fit: contain; object-position: bottom center; }
/* minimal copy — opposite side (inline-end = left in RTL), vertically centered */
.dhero__copy { position: absolute; inset-block: 0; inset-inline-end: clamp(24px, 6vw, 110px); display: flex; flex-direction: column; justify-content: center; max-width: 30ch; z-index: 4; }
.dhero__eyebrow { display: block; margin-bottom: 20px; }
.dhero__tag { font-family: var(--head); font-weight: 400; font-size: clamp(26px, 3vw, 46px); line-height: 1.1; color: var(--ink); max-width: 14ch; }
.dhero__cta { margin-top: 30px; display: inline-flex; }
@media (max-width: 860px) {
  .dhero { background: linear-gradient(to bottom, var(--bone) 0%, var(--bone) 60%, var(--bone-deep) 100%); }
  .dhero__floor { height: 20%; }
  .dhero__logo { inset-block-start: 13%; width: 96vw; }
  .dhero__cut { inset-inline: 0; margin-inline: auto; inset-inline-start: 0; height: 52vh; }
  .dhero__shadow { inset-inline-start: 0; left: 50%; transform: translateX(-50%); }
  .dhero__copy { position: static; align-items: center; text-align: center; max-width: none; padding: clamp(120px,16vh,160px) 24px 0; }
  .dhero__tag { margin-inline: auto; }
}

/* ============================================================
   POSTER HERO — specimen-style (tiny labels + huge logo + centered image)
   ============================================================ */
/* fits within one viewport on desktop — elements scale by VIEWPORT HEIGHT */
.poster { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--bone); padding: clamp(82px, 9.5vh, 118px) clamp(20px, 5vw, 60px) clamp(24px, 4vh, 46px); }
.plabel { font-size: clamp(10px, 0.82vw, 12px); font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--taupe); display: block; }
.poster__top { margin-bottom: clamp(10px, 1.8vh, 22px); }
.poster__logo { height: clamp(64px, 13.5vh, 138px); width: auto; max-width: 90vw; display: block; }
.poster__sub { margin-top: clamp(10px, 1.8vh, 22px); }
.poster__panel { display: flex; flex-direction: column; width: max-content; max-width: 92vw; margin-top: clamp(18px, 2.8vh, 38px); }
.poster__img { height: clamp(250px, 47vh, 470px); aspect-ratio: 4/5; width: auto; background: var(--bone-deep); overflow: hidden; display: grid; place-items: end center; }
.poster__img img { height: 99%; width: auto; object-fit: contain; object-position: bottom center; }
.poster__feet { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
@media (max-width: 600px) { .poster__logo { height: auto; width: 84vw; } .poster__img { height: 52vh; } }

/* ABOUT hero — portrait + DAFNA SAIAS wordmark + strip + stats */
.about-hero { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 88px); align-items: center; }
.about-hero__media { position: relative; overflow: hidden; }
.about-hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-hero__name { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 7vw, 104px); letter-spacing: 0.03em; line-height: 0.98; color: var(--ink); }
.about-hero__name .skin { display: block; font-style: italic; font-weight: 300; font-size: 0.4em; letter-spacing: 0.14em; color: var(--taupe); margin-top: 0.18em; }
.stats--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } .about-hero__media { order: -1; max-width: 460px; } }
@media (max-width: 680px) { .stats--3 { grid-template-columns: 1fr; } }

/* floating whatsapp */
.wa { position: fixed; inset-block-end: 22px; inset-inline-start: 22px; z-index: 90; width: 54px; height: 54px; border-radius: 100px; background: var(--charcoal); color: var(--on-dark); display: grid; place-items: center; box-shadow: 0 14px 30px rgba(0,0,0,.22); transition: transform .4s var(--ease), background .4s; }
.wa:hover { transform: translateY(-3px); background: var(--ink); }
.wa svg { width: 26px; height: 26px; fill: currentColor; }

/* ===================== PRODUCT CAROUSEL =====================
   1 product per view on mobile, 2 on tablet, 4 on desktop.
   Auto-rotates page-by-page (not a marquee). Dots + swipe. */
.pcar { position: relative; }
.pcar__viewport { overflow: hidden; }
.pcar__track { display: flex; will-change: transform;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1); }
.pcar__slide { flex: 0 0 25%; min-width: 0; box-sizing: border-box;
  padding-inline: clamp(8px, 1.1vw, 18px); }
.pcar__dots { display: flex; justify-content: center; align-items: center;
  gap: 10px; margin-top: clamp(24px, 3vw, 36px); }
.pcar__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line); cursor: pointer; transition: background .25s, transform .25s; }
.pcar__dot:hover { background: var(--muted, #8c8578); }
.pcar__dot[aria-selected="true"] { background: var(--ink); transform: scale(1.35); }

@media (max-width: 1100px) { .pcar__slide { flex-basis: 50%; } }
@media (max-width: 760px)  { .pcar__slide { flex-basis: 100%; } }
@media (prefers-reduced-motion: reduce) { .pcar__track { transition: none; } }
