/* ============================================================
   ANAT WARM — A1 Warm-editorial
   Tokens · Base · Components · Sections · Responsive · Motion
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --accent: #C45A3D;
  --accent-hover: #A84828;
  --accent-soft: #F5E4DC;
  --accent-deep: #8B3E28;
  --secondary: #5E6B4E;
  --secondary-soft: #E8ECE3;
  --cream: #FFFBF5;
  --cream-warm: #F9F2E8;
  --ink: #2D2A26;
  --muted: #6B635A;
  --border: #E5DDD5;
  --border-soft: #EFE9E2;
  --white: #FFFFFF;
  --gold: #D4A574;

  --font-body: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Secular One', 'Heebo', sans-serif;
  --font-serif: 'Frank Ruhl Libre', Georgia, serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 14px 40px -18px rgba(45, 42, 38, 0.2);
  --shadow-soft: 0 6px 20px -10px rgba(45, 42, 38, 0.12);
}

* { box-sizing: border-box; }
html { direction: rtl; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent-hover); }

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
em, .serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 700; color: var(--accent-deep); }
h1 em, h2 em { font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  padding-inline-start: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
}

.section-head { max-width: 640px; margin-inline: auto; margin-bottom: 56px; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head__sub { color: var(--muted); font-size: 1.1rem; line-height: 1.65; margin: 0; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-hdr {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255, 251, 245, 0.92);
}
.site-hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 20px;
}
.site-hdr__brand { display: flex; flex-direction: column; color: var(--ink); text-decoration: none; }
.site-hdr__brand-name { font-family: var(--font-head); font-size: 1.35rem; color: var(--ink); line-height: 1; }
.site-hdr__brand-sub { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; align-items: center; }
.site-nav__list a { color: var(--ink); font-weight: 500; font-size: 0.95rem; transition: color 180ms ease; }
.site-nav__list a:hover { color: var(--accent); }
.site-nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
}
.site-nav__cta:hover { background: var(--accent-hover); color: var(--white) !important; }
.site-hdr__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}
.site-hdr__burger span { display: block; width: 26px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mob-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(85vw, 380px);
  background: var(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 300ms ease-out;
  box-shadow: var(--shadow);
  overflow-y: auto;
}
.mob-nav { transform: translateX(100%); }  /* closed: off-screen to the right */
.mob-nav.is-open { transform: translateX(0) !important; }
.mob-nav__inner { display: flex; flex-direction: column; padding: 80px 32px 40px; gap: 18px; }
.mob-nav__inner a { color: var(--ink); font-size: 1.15rem; font-weight: 500; }
.mob-nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 999px;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 500; font-size: 1rem; border: 1px solid transparent; transition: all 200ms ease; cursor: pointer; text-decoration: none; font-family: inherit; }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 10px 25px -10px rgba(196, 90, 61, 0.5); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--soft { background: var(--accent-soft); color: var(--accent-deep); }
.btn--soft:hover { background: var(--accent); color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── SECTIONS (containers) ──────────────────────────────────── */
.section { padding-block: clamp(64px, 10vw, 120px); }
.section--cream { background: var(--cream); }
.section--warm { background: var(--cream-warm); }
.section--accent-soft { background: var(--accent-soft); }
.section--secondary-soft { background: var(--secondary-soft); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark em { color: var(--gold); }

/* ── HERO (A1 H2 — split editorial) ─────────────────────────── */
.hero {
  padding-block: clamp(48px, 7vw, 100px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
}
.hero__text { padding-inline-start: clamp(0px, 2vw, 32px); }
.hero__title { margin-bottom: 24px; }
.hero__title em { display: inline; }
.hero__sub { font-size: 1.15rem; color: var(--muted); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.95rem; padding-top: 28px; border-top: 1px solid var(--border-soft); }
.hero__trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--cream-warm) 100%);
  box-shadow: var(--shadow);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-deco {
  position: absolute;
  inset-inline-start: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--secondary-soft);
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.hero__badge {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ── PULL QUOTE (serif italic) ───────────────────────────────── */
.pullquote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) var(--gutter);
  position: relative;
}
.pullquote__mark {
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(50%);
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
}
.pullquote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 20px;
}
.pullquote__attr { color: var(--muted); font-size: 0.95rem; }
.pullquote__attr::before { content: "— "; }

/* ── REASON CARDS (R.grid3-photo) ────────────────────────────── */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.reason-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reason-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.reason-card__title { margin-bottom: 12px; font-size: 1.25rem; }
.reason-card__text { color: var(--muted); line-height: 1.7; margin: 0; }

/* ── SERVICE CARDS (S.grid2-editorial) ───────────────────────── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--ink);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset-inline-end: 24px;
  top: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  transition: transform 400ms ease;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); color: var(--ink); }
.service-card:hover::after { transform: scale(1.4); }
.service-card__eyebrow { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 500; }
.service-card__title { margin-bottom: 10px; font-size: 1.4rem; position: relative; z-index: 1; }
.service-card__text { color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.service-card__link { color: var(--accent); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }

/* ── STATS BAND (St.flagship) ────────────────────────────────── */
.stats-band {
  background: var(--secondary-soft);
  padding: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.stats-band__lead h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.35rem; line-height: 1.4; color: var(--secondary); margin: 0; }
.stat-item { text-align: center; padding-inline-start: 24px; border-inline-start: 1px solid var(--border); }
.stat-item__num { font-family: var(--font-head); font-size: 2.2rem; color: var(--accent-deep); line-height: 1.1; }
.stat-item__label { font-size: 0.88rem; color: var(--muted); margin-top: 6px; }

/* ── TESTIMONIAL SINGLE-FULLQUOTE ────────────────────────────── */
.testimonials { display: grid; gap: 32px; }
.testimonials--single { grid-template-columns: 1fr; }
.testimonials--three { grid-template-columns: repeat(3, 1fr); }
.testimonial {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  padding-inline-start: 16px;
  border-inline-start: 3px solid var(--accent);
}
.testimonial__author { display: flex; gap: 14px; align-items: center; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); font-family: var(--font-head); font-size: 1.1rem; display: grid; place-items: center; }
.testimonial__name { font-weight: 500; font-size: 0.98rem; }
.testimonial__meta { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

/* ── SUCCESS STORY (before/after editorial) ──────────────────── */
.story-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-soft);
  display: grid;
  gap: 20px;
}
.story-card__head { display: flex; flex-direction: column; gap: 4px; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.story-card__who { font-family: var(--font-head); font-size: 1.35rem; color: var(--ink); }
.story-card__sub { font-size: 0.92rem; color: var(--muted); }
.story-card__chapter { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: start; }
.story-card__label { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--accent); padding-top: 2px; }
.story-card__text { margin: 0; color: var(--ink); line-height: 1.7; }
.stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); padding-block: 4px; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding-block: 22px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ink);
  position: relative;
  padding-inline-end: 40px;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 200ms ease;
  line-height: 1;
}
.faq__a { padding-bottom: 24px; color: var(--muted); line-height: 1.8; }

/* ── METHOD PRINCIPLES / STEPS ──────────────────────────────── */
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.principle {
  padding: 32px;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  border-inline-start: 3px solid var(--accent);
}
.principle__num { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; display: block; }
.principle__title { font-size: 1.25rem; margin-bottom: 12px; }
.principle__text { color: var(--muted); margin: 0; line-height: 1.7; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step__title { font-size: 1.15rem; margin-bottom: 10px; }
.step__text { color: var(--muted); font-size: 0.95rem; margin: 0; line-height: 1.65; }

/* ── SPLIT (text + image) ────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse { direction: ltr; }
.split--reverse > * { direction: rtl; }
.split__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-soft);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__tag { display: inline-block; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 14px; }
.split__title { margin-bottom: 20px; }
.split__body p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }
.split__body p.lead { color: var(--ink); font-size: 1.15rem; }

/* ── CTA FLOATING CARD ────────────────────────────────────────── */
.cta-floating {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 72px);
  text-align: center;
  margin-block: 40px;
  box-shadow: var(--shadow);
}
.cta-floating h2 { color: var(--cream); margin-bottom: 16px; }
.cta-floating h2 em { color: var(--gold); }
.cta-floating__sub { color: rgba(255, 251, 245, 0.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 580px; margin-inline: auto; line-height: 1.7; }
.cta-floating .btn--primary { background: var(--cream); color: var(--ink); }
.cta-floating .btn--primary:hover { background: var(--gold); }

/* ── INNER HERO (sub-pages) ──────────────────────────────────── */
.inner-hero { padding-block: clamp(72px, 10vw, 120px) clamp(40px, 6vw, 72px); text-align: center; background: var(--cream-warm); position: relative; }
.inner-hero::after {
  content: "";
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin: 40px auto 0;
}
.inner-hero__crumbs { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.inner-hero__crumbs a { color: var(--muted); }
.inner-hero__title { max-width: 760px; margin: 0 auto 20px; }
.inner-hero__sub { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-ftr { background: var(--ink); color: rgba(255, 251, 245, 0.75); padding: 72px 0 32px; }
.site-ftr__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.site-ftr h4 { color: var(--cream); font-size: 1rem; margin-bottom: 18px; }
.site-ftr a { display: block; color: rgba(255, 251, 245, 0.75); font-size: 0.95rem; margin-bottom: 10px; transition: color 180ms ease; }
.site-ftr a:hover { color: var(--gold); }
.site-ftr__brand-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--cream); margin-bottom: 10px; }
.site-ftr__tagline { color: rgba(255, 251, 245, 0.6); font-size: 0.88rem; margin-bottom: 16px; }
.site-ftr__line { font-size: 0.9rem; margin-bottom: 4px; }
.site-ftr__legal { padding-top: 32px; border-top: 1px solid rgba(255, 251, 245, 0.12); text-align: center; font-size: 0.82rem; color: rgba(255, 251, 245, 0.4); }

/* ── FLOATERS (bottom-RIGHT per RTL rule) ───────────────────── */
.wa-floater, .phone-floater {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white) !important;
  display: grid;
  place-items: center;
  z-index: 90;
  transition: transform 200ms ease, opacity 300ms ease;
}
.wa-floater {
  right: 24px;
  background: #25D366;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.6);
}
.wa-floater:hover { transform: scale(1.08); color: var(--white) !important; }
.phone-floater {
  right: 92px;
  background: var(--accent);
  box-shadow: 0 10px 30px -10px rgba(196, 90, 61, 0.6);
  position: fixed;
}
.phone-floater:hover { transform: scale(1.08); color: var(--white) !important; }
.phone-floater.is-closed { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(0.5); }
.phone-floater__dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid var(--white);
}
.phone-floater.is-closed .phone-floater__dot { background: #9CA3AF; }

/* ── PRE-FOOTER CONTACT SECTION ──────────────────────────────── */
.pfc {
  background: linear-gradient(135deg, var(--ink) 0%, #1C1508 100%);
  padding-block: clamp(64px, 10vw, 120px);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pfc::before {
  content: "";
  position: absolute;
  inset-inline-start: -120px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 90, 61, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.pfc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.pfc__heading {
  color: var(--cream);
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.pfc__heading em { color: var(--gold); font-weight: 700; }
.pfc__lead {
  color: rgba(255, 251, 245, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 28px;
}
.pfc__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}
.pfc__bullets li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--cream);
  font-size: 1rem;
}
.pfc__bullet-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196, 90, 61, 0.22);
  color: var(--accent);
  flex-shrink: 0;
}
.pfc__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pfc__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.1);
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(255, 251, 245, 0.16);
  font-weight: 500;
  transition: all 200ms ease;
}
.pfc__btn:hover { background: rgba(255, 251, 245, 0.18); color: var(--cream); transform: translateY(-1px); }
.pfc__btn--wa { color: var(--cream); }
.pfc__btn--wa:hover { background: #25D366; border-color: #25D366; }
.pfc__btn--tel:hover { background: var(--accent); border-color: var(--accent); }
.pfc__hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 251, 245, 0.6);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 251, 245, 0.1);
}
.pfc__form {
  background: rgba(255, 251, 245, 0.04);
  border: 1px solid rgba(255, 251, 245, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.pfc__form-title { color: var(--cream); font-size: 1.6rem; margin: 0 0 6px; }
.pfc__form-sub { color: rgba(255, 251, 245, 0.6); font-size: 0.95rem; margin: 0 0 24px; }
.pfc__field {
  display: block;
  margin-bottom: 14px;
}
.pfc__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 251, 245, 0.6);
  margin-bottom: 6px;
}
.pfc__form input,
.pfc__form select,
.pfc__form textarea {
  width: 100%;
  background: rgba(255, 251, 245, 0.06);
  border: 1px solid rgba(255, 251, 245, 0.14);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.pfc__form input::placeholder,
.pfc__form textarea::placeholder { color: rgba(255, 251, 245, 0.4); }
.pfc__form input:focus,
.pfc__form select:focus,
.pfc__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 251, 245, 0.1);
}
.pfc__form option { background: var(--ink); color: var(--cream); }
.pfc__submit {
  width: 100%;
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: all 200ms ease;
}
.pfc__submit:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 10px 25px -10px rgba(196, 90, 61, 0.6); }

/* ── FOOTER LEGAL ROW ──────────────────────────────────────── */
.site-ftr__legal {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 251, 245, 0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 251, 245, 0.45);
}
.site-ftr__legal-links { display: flex; gap: 12px; }
.site-ftr__legal-links a { color: rgba(255, 251, 245, 0.7); display: inline; margin: 0; }
.site-ftr__legal-links a:hover { color: var(--gold); }
.site-ftr__sep { color: rgba(255, 251, 245, 0.3); }
.site-ftr__legal-copy { text-align: center; }
.site-ftr__legal-credit { text-align: left; }
.site-ftr__legal-credit a {
  color: var(--gold);
  display: inline;
  margin: 0;
  font-weight: 500;
}
.site-ftr__legal-credit a:hover { color: var(--cream); }

/* ── LOGIN PAGE - MINIMAL CHROME ─────────────────────────────── */
body.anat-minimal-chrome .site-hdr,
body.anat-minimal-chrome .mob-nav,
body.anat-minimal-chrome .site-ftr,
body.anat-minimal-chrome .phone-floater,
body.anat-minimal-chrome .wa-floater,
body.anat-minimal-chrome .pfc { display: none !important; }
body.anat-minimal-chrome { background: var(--cream-warm); min-height: 100vh; }
body.anat-minimal-chrome .site-main { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
body.anat-minimal-chrome .inner-hero { padding-block: 40px 20px; background: transparent; }
body.anat-minimal-chrome .inner-hero::after { display: none; }

/* ── MOTION / REVEALS (opacity: 0.01 floor — SEO safe) ───────── */
.reveal { opacity: 1; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-band { grid-template-columns: 1fr 1fr; text-align: center; }
  .stats-band__lead { grid-column: 1 / -1; text-align: center; }
  .stat-item { border-inline-start: none; padding-inline-start: 0; border-top: 1px solid var(--border); padding-top: 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-hdr__inner { gap: 16px; flex-direction: row-reverse; }  /* mobile: burger-right, logo-left (RTL Hebrew) */
  .site-nav { display: none; }
  .site-hdr__burger { display: flex; }
  .site-hdr__brand-sub { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__text { padding-inline-start: 0; }
  .hero__visual { aspect-ratio: 5/4; max-width: 520px; margin: 0 auto; }
  .reasons { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials--three { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .site-ftr__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story-card__chapter { grid-template-columns: 1fr; gap: 8px; }
  .story-card__label { border-inline-start: 3px solid var(--accent); padding-inline-start: 12px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .site-ftr__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }
  .reason-card, .service-card, .principle, .testimonial { padding: 28px 22px; }
  .story-card { padding: 28px 22px; }
}

@media (max-width: 860px) {
  .pfc__grid { grid-template-columns: 1fr; gap: 48px; }
  .pfc__form { padding: 28px 22px; }
  .site-ftr__legal { grid-template-columns: 1fr; text-align: center; }
  .site-ftr__legal-links { justify-content: center; }
  .site-ftr__legal-credit { text-align: center; }
  .phone-floater { right: 88px; width: 48px; height: 48px; }
  .wa-floater { width: 48px; height: 48px; }
}

/* ── IMAGE DENSITY / SECTION-PHOTO BAND (rule IMG-1) ───────────── */
.photo-band {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: clamp(72px, 10vw, 140px);
  color: var(--cream);
  overflow: hidden;
}
.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,42,38,0.72) 0%, rgba(45,42,38,0.55) 100%);
  z-index: 1;
}
.photo-band .container { position: relative; z-index: 2; }
.photo-band__eyebrow { font-size: 0.9rem; letter-spacing: 0.06em; color: rgba(255,251,245,0.75); margin-bottom: 12px; }
.photo-band__title { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25; margin-bottom: 14px; color: var(--cream); max-width: 780px; }
.photo-band__body { font-size: 1.08rem; line-height: 1.75; color: rgba(255,251,245,0.88); max-width: 720px; }
@media (max-width: 768px) {
  .photo-band { min-height: 260px; padding-block: 64px; }
}

/* ── INNER-HERO AS PHOTO-BACKGROUND (rule IMG-1: bg image per hero) ─ */
.inner-hero--photo {
  position: relative;
  min-height: clamp(360px, 42vh, 520px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: clamp(72px, 10vw, 140px);
  color: var(--cream);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.inner-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,42,38,0.78) 0%, rgba(45,42,38,0.55) 60%, rgba(45,42,38,0.72) 100%);
  z-index: 1;
}
.inner-hero--photo { text-align: center; justify-content: center; }
.inner-hero--photo > .container { position: relative; z-index: 2; max-width: 860px; width: 100%; margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.inner-hero--photo .inner-hero__crumbs { color: rgba(255,251,245,0.75); margin-bottom: 18px; justify-content: center; display: flex; gap: 6px; }
.inner-hero--photo .inner-hero__crumbs a { color: rgba(255,251,245,0.88); }
.inner-hero--photo .inner-hero__title { color: var(--cream); font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.18; margin-bottom: 18px; text-align: center; }
.inner-hero--photo .inner-hero__sub { color: rgba(255,251,245,0.92); font-size: 1.12rem; line-height: 1.7; max-width: 640px; margin-inline: auto; text-align: center; }
@media (max-width: 768px) {
  .inner-hero--photo { min-height: 300px; padding-block: 60px; }
}



/* Force-center inner-hero--photo (specificity fix) */
section.inner-hero--photo { text-align: center !important; }
section.inner-hero--photo .container,
section.inner-hero--photo > .container {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
section.inner-hero--photo .inner-hero__title,
section.inner-hero--photo .inner-hero__sub,
section.inner-hero--photo .inner-hero__crumbs {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
section.inner-hero--photo .inner-hero__crumbs { display: block !important; }

/* ── MOB-NAV SOCIAL BUTTONS (below CTA, only if panel links exist) ── */
.mob-nav__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.mob-nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--ink);
  transition: background 200ms ease, transform 200ms ease, color 200ms ease;
}
.mob-nav__social:hover {
  background: var(--accent);
  color: var(--cream);
  transform: translateY(-2px);
}
