/* ============================================================
   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=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', 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-weight: 300;
  font-size: clamp(38px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.h-section {
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.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);
  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__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   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(--bone-deep); overflow: hidden; }
.prod--mini .prod__media img { object-fit: cover; width: 100%; height: 100%; transition: transform .9s var(--ease); }
.prod--mini:hover .prod__media img { transform: scale(1.05); }
.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);
}

/* ============================================================
   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__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding-block: clamp(22px, 2.6vw, 38px);
  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(22px, 2.4vw, 34px); color: var(--taupe-soft); font-style: italic; transition: color .5s; }
.index__row:hover .index__num { color: var(--charcoal); }
.index__name {
  font-size: clamp(22px, 2.8vw, 40px); font-weight: 400; color: var(--ink);
  transition: transform .55s var(--ease);
}
.index__row:hover .index__name { transform: translateX(-10px); }
.index__meta { font-size: 12px; letter-spacing: 0.22em; 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); font-style: italic; font-size: clamp(18px, 1.5vw, 23px); font-weight: 400; color: var(--charcoal); margin-top: 18px; line-height: 1.45; }
.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); }

/* ============================================================
   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; }
  .hero__scroll { display: none; }
}
