/* === NAV RULES REMOVED === v5 uses nav.css as single source of truth === */

/* ============================================================
   CATEGORIES.CSS - shared styles for all 6 category pages
   Efrat Keidar site - RTL Hebrew
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --cream: #F0EBE8;
  --cream-deep: #E6DED8;
  --pink: #C9A6A0;
  --pink-soft: #E8D4CE;
  --pink-whisper: #F5E9E5;
  --terracotta: #D4735E;
  --terracotta-deep: #BC5C48;
  --teal: #2C5F5D;
  --teal-deep: #1F4846;
  --ink: #2C5F5D;
  --ink-soft: #4A6B6A;
  --ink-mute: #8A9A99;
  --white: #FFFFFF;

  --font-sans: 'Heebo', system-ui, sans-serif;
  --font-display: 'Rubik', 'Heebo', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 42px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; color: var(--teal); }
p { margin: 0; }

/* ===== Shared elements ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
  color: var(--terracotta);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.8; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 500; font-size: 15px;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(-4px); }
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 14px -4px rgba(212, 115, 94, 0.5);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  box-shadow: 0 8px 20px -4px rgba(212, 115, 94, 0.6);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--teal);
  border: 1px solid rgba(44, 95, 93, 0.25);
}
.btn-ghost:hover { background: rgba(44, 95, 93, 0.06); border-color: var(--teal); }

/* ===== PAGE HERO ===== */
.cat-hero {
  position: relative;
  min-height: 620px;
  padding: 44px 56px 80px;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.cat-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.9);
}
.cat-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(15,30,30,0.88) 0%, rgba(31,72,70,0.78) 48%, rgba(31,72,70,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}
.cat-hero-overlay::after {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(212,115,94,0.22), transparent 50%);
  mix-blend-mode: screen;
}
.cat-hero-inner { max-width: 1260px; margin: 0 auto; position: relative; }
.cat-hero-crumbs {
  font-size: 13px; color: rgba(255,255,255,0.7);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-bottom: 90px;
}
.cat-hero-crumbs a { color: rgba(255,255,255,0.78); transition: color .2s; }
.cat-hero-crumbs a:hover { color: var(--terracotta); }
.cat-hero-crumbs .sep { color: rgba(255,255,255,0.4); }
.cat-hero-crumbs .current { color: white; font-weight: 500; }

.cat-hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; }
.cat-hero-text .eyebrow { margin-bottom: 22px; color: var(--pink-soft); }
.cat-hero-text .eyebrow-dot { background: var(--terracotta); opacity: 1; }

.cat-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.6vw, 84px);
  line-height: 1.1;
  font-weight: 700;
  color: white;
  letter-spacing: -0.035em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.cat-title em {
  display: block; font-style: normal; font-weight: 300;
  color: var(--pink-soft);
  letter-spacing: -0.03em;
  margin-top: 0.1em;
}
.cat-lead {
  margin-top: 28px;
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
}
.cat-lead strong { color: white; font-weight: 600; }

/* ===== sticky pill page-nav =====
   top = main-header height (~121px) + 30px breathing room so the pill
   doesn't sit flush against the bottom of the header on scroll. */
.cat-pagenav {
  position: sticky; top: 151px; z-index: 40;
  padding: 0 24px; margin-top: 25px; pointer-events: none;
}
.cat-pagenav-inner {
  pointer-events: auto;
  width: 80%; max-width: 1040px;
  margin: 0 auto;
  padding: 6px 28px;
  background: rgba(31,72,70,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  box-shadow: 0 14px 40px -14px rgba(31,72,70,0.45), 0 2px 10px -6px rgba(0,0,0,0.25);
  display: flex; justify-content: center;
  gap: 8px 34px; flex-wrap: wrap; align-items: center;
}
.cat-pagenav a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 14px 6px;
  position: relative;
  transition: color .2s ease;
  letter-spacing: 0.01em;
}
.cat-pagenav a::after {
  content:''; position: absolute; bottom: 8px; right: 6px; left: 6px;
  height: 2px; background: var(--terracotta); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.cat-pagenav a:hover,
.cat-pagenav a.is-active { color: white; }
.cat-pagenav a:hover::after,
.cat-pagenav a.is-active::after { transform: scaleX(1); }

/* ===== ARTICLE / content blocks ===== */
.cat-article {
  padding: 90px 56px;
  background: var(--white);
}
.cat-article-inner {
  max-width: 980px;
  margin: 0 auto;
}
.cat-article.split .cat-article-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: stretch;
  max-width: 1180px;
}
.cat-article.split .cat-article-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-article.split .cat-article-image {
  flex: 1;
  aspect-ratio: auto;
  min-height: 360px;
}
.cat-article.reversed .cat-article-inner {
  direction: ltr; /* keeps grid order for RTL reverse layouts */
}
.cat-article.reversed .cat-article-col {
  direction: rtl;
}
.cat-article h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  margin-top: 0;
}
.cat-article h2 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.cat-article h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 26px);
  letter-spacing: -0.015em;
  margin-top: 34px; margin-bottom: 12px;
  color: var(--teal);
}
.cat-article p {
  margin-bottom: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.cat-article p strong { color: var(--teal); font-weight: 700; }
.cat-article a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.cat-article a:hover { color: var(--terracotta-deep); }

.cat-article-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px -20px rgba(44,95,93,0.3);
}
.cat-article-image.placeholder {
  background: linear-gradient(135deg, var(--pink-whisper) 0%, var(--cream-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(44,95,93,0.4);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
}
.cat-article-image.placeholder::after { content: 'תמונה'; }

/* tinted variant for alternating sections */
.cat-article.cream { background: var(--cream); }
.cat-article.cream h2 em { color: var(--terracotta); }

/* Blockquote inside cream must stand out (don't blend into the section) */
.cat-article.cream .cat-blockquote,
.cat-split-media.cream .cat-blockquote {
  background: #fff;
  border-right-color: var(--terracotta);
  box-shadow: 0 12px 30px -18px rgba(44,95,93,0.25);
}

/* Callout-card inside white article must stand out - switch to cream */
.cat-article:not(.cream) .cat-callout-card {
  background: var(--cream);
  box-shadow: 0 14px 32px -18px rgba(44,95,93,0.28);
}

/* .cat-callout (pink-whisper) inside cream band blends - swap to white */
.cat-stories .cat-callout,
.cat-article.cream .cat-callout,
.cat-signs .cat-callout {
  background: #fff;
  border-right: 4px solid var(--terracotta);
  padding-right: 26px;
  box-shadow: 0 12px 28px -16px rgba(44,95,93,0.22);
}

/* Inline callout cards (inline-styled cream boxes) inside cream sections →
   force white so text is readable. Use .cat-callout-card for new markup. */
.cat-callout-card {
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--r-md);
  border-right: 4px solid var(--terracotta);
  box-shadow: 0 12px 28px -16px rgba(44,95,93,0.22);
  margin: 28px 0;
}
.cat-callout-card h3 { margin-top: 0; color: var(--teal); }
.cat-callout-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.cat-callout-card p strong { color: var(--terracotta-deep); }

/* ===== Checklist (nicer than plain bullet list) ===== */
.cat-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  margin: 28px 0 8px;
  padding: 0;
  list-style: none;
  align-items: stretch;
}
.cat-checklist li {
  display: block;
  position: relative;
  padding: 18px 56px 18px 22px;
  background: #fff;
  border: 1px solid rgba(201,166,160,0.22);
  border-radius: var(--r-md);
  box-shadow: 0 4px 14px -10px rgba(44,95,93,0.18);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.cat-checklist li::before {
  content: '';
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background-color: var(--terracotta);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.cat-checklist li strong {
  color: var(--teal);
  font-weight: 700;
}
.cat-checklist li a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cat-checklist li:hover {
  border-color: var(--pink);
  transform: translateX(-3px);
  box-shadow: 0 10px 24px -14px rgba(44,95,93,0.25);
}
@media (max-width: 720px) {
  .cat-checklist { grid-template-columns: 1fr; gap: 10px; }
}

/* ===== Split-media section: centered head + 2-col (text | media) ===== */
.cat-split-media {
  padding: 100px 56px;
  background: var(--white);
}
.cat-split-media.cream { background: var(--cream); }
.cat-split-media-inner { max-width: 1180px; margin: 0 auto; }
.cat-split-media-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.cat-split-media-head .eyebrow { justify-content: center; }
.cat-split-media-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
}
.cat-split-media-head h2 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.cat-split-media-head p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}
.cat-split-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cat-split-media-text p {
  margin-bottom: 16px;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.cat-split-media-text p strong { color: var(--teal); font-weight: 700; }
.cat-split-media-text a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.cat-split-media-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(44,95,93,0.35);
  background: #000;
}
.cat-split-media-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.cat-split-media-caption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .cat-split-media { padding: 60px 24px !important; }
  .cat-split-media-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cat-split-media-head { margin-bottom: 36px; }
}

/* ===== Hero subtitle (for category pages with short h1) ===== */
.cat-subtitle {
  margin: -8px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* Bullet lists inside articles */
.cat-list {
  margin: 12px 0 22px;
  padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cat-list li {
  position: relative;
  padding-right: 26px;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.cat-list li::before {
  content:''; position: absolute;
  right: 4px; top: 11px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
}
.cat-list li strong { color: var(--teal); font-weight: 700; }

/* Blockquote (testimonials / parent stories) */
.cat-blockquote {
  position: relative;
  padding: 34px 40px 34px 40px;
  margin: 28px 0;
  background: var(--cream);
  border-right: 4px solid var(--terracotta);
  border-radius: var(--r-md);
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.8;
  font-style: italic;
}
.cat-blockquote::before {
  content: '"';
  position: absolute;
  right: 18px; top: 9px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--terracotta);
  opacity: 0.35;
  font-style: normal;
  line-height: 1;
}
.cat-blockquote cite {
  display: block;
  margin-top: 18px;
  padding-top: 0;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== Force RTL on form inputs sitewide.
   tel/email/number inputs default to LTR in browsers, which leaves their
   placeholders aligned to the LEFT in our RTL layout. Force right alignment
   so the form looks consistent across every CTA/contact form on the site. */
input, textarea, select { direction: rtl; text-align: right; }
input::placeholder, textarea::placeholder { text-align: right; direction: rtl; }
input[type="email"], input[type="tel"] { /* keep numerics readable */ }


/* callout / key box */
.cat-callout {
  margin: 30px 0;
  padding: 26px 30px;
  background: var(--pink-whisper);
  border-radius: var(--r-md);
  font-size: 16px;
  line-height: 1.75;
  color: var(--teal);
  font-weight: 500;
}
.cat-callout strong { color: var(--terracotta-deep); }

/* ===== FAQ accordion (for long Q/A sections) ===== */
.cat-faq-list {
  margin: 40px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-faq-item {
  background: #fff;
  border: 1px solid rgba(201,166,160,0.28);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cat-faq-item:hover {
  border-color: var(--pink);
  transform: translateY(-1px);
}
.cat-faq-item[open] {
  border-color: var(--pink);
  box-shadow: 0 14px 34px -20px rgba(44,95,93,0.22);
}
.cat-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.01em;
  transition: color .25s ease;
}
.cat-faq-item summary::-webkit-details-marker,
.cat-faq-item summary::marker { display: none; content: ''; }
.cat-faq-item summary:hover { color: var(--terracotta); }
.cat-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pink-whisper);
  color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400; line-height: 1;
  transition: transform .3s cubic-bezier(.22,.8,.25,1), background .25s ease, color .25s ease;
}
.cat-faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: #fff;
}
.cat-faq-answer {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
  border-top: 1px solid rgba(201,166,160,0.18);
  padding-top: 18px;
  margin-top: -2px;
}
.cat-faq-answer p { margin: 0 0 12px; }
.cat-faq-answer p:last-child { margin-bottom: 0; }
.cat-faq-answer strong { color: var(--teal); font-weight: 700; }

/* Animate open/close */
.cat-faq-item[open] .cat-faq-answer {
  animation: ek-faq-open .35s cubic-bezier(.22,.8,.25,1);
}
@keyframes ek-faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ===== STORIES (case examples) ===== */
.cat-stories { padding: 110px 56px; background: var(--cream); }
.cat-stories-inner { max-width: 1180px; margin: 0 auto; }
.cat-stories-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.cat-stories-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.cat-stories-head p { margin-top: 18px; color: var(--ink-soft); font-size: 17px; }
.cat-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.cat-story {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 38px 38px 34px;
  border: 1px solid rgba(201,166,160,0.18);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.cat-story:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(44,95,93,0.18);
}
.cat-story-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  background: var(--pink-whisper);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
  align-self: flex-start;
}
.cat-story-quote {
  position: relative;
  padding-right: 26px;
  border-right: 2px solid var(--pink);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: italic;
}
.cat-story-quote::before {
  content: '"';
  position: absolute;
  right: -8px; top: -22px;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--pink);
  opacity: 0.45;
  font-style: normal;
  line-height: 1;
}
.cat-story h4 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.cat-story-steps { display: flex; flex-direction: column; gap: 10px; }
.cat-story-step {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
}
.cat-story-step-num {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
  font-family: var(--font-display);
}

/* ===== PROCESS / steps ===== */
.cat-process {
  padding: 120px 56px;
  background: var(--teal-deep);
  color: var(--pink-soft);
  position: relative;
  overflow: hidden;
}
.cat-process::before {
  content:''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,115,94,0.12), transparent 70%);
}
.cat-process-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.cat-process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 70px;
}
.cat-process-head > div { align-self: end; }
.cat-process-head p { align-self: end; }
.cat-process-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-top: 14px;
}
.cat-process-head h2 em { font-style: normal; color: var(--pink-soft); font-weight: 700; opacity: 0.7; }
.cat-process-head .eyebrow { color: var(--pink); }
.cat-process-head p {
  font-size: 16px;
  color: rgba(232,212,206,0.8);
  line-height: 1.7;
  max-width: 440px;
}
.cat-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.cat-step-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cat-step-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cat-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,212,206,0.12);
  padding: 32px 28px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; height: 100%;
  transition: background .3s ease, border-color .3s ease;
}
.cat-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,212,206,0.25);
}
.cat-step-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 18px; display: block;
}
.cat-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cat-step p {
  font-size: 14.5px;
  color: rgba(232,212,206,0.78);
  line-height: 1.65;
}

/* ===== SIGNS / symptom list ===== */
.cat-signs { padding: 110px 56px; background: var(--cream); }
.cat-signs-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: stretch;
}
.cat-signs-side {
  display: flex;
  flex-direction: column;
}
.cat-signs-side .cat-signs-img-ph {
  margin-top: auto;
  min-height: 320px;
}
.cat-signs-list {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  width: 100%;
  height: 100%;
}
.cat-signs-side h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.cat-signs-side h2 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.cat-signs-side p {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.cat-signs-img-ph {
  margin-top: 36px;
  min-height: 320px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--pink-whisper) 0%, var(--cream-deep) 100%);
  background-size: cover; background-position: center;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(44,95,93,0.3);
}
.cat-signs-img-ph.placeholder::after {
  content: 'תמונה';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(44,95,93,0.35);
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.2em;
}
.cat-sign {
  display: flex; gap: 18px; align-items: center;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--r-md);
  border: 1px solid rgba(201,166,160,0.18);
  transition: border-color .25s ease, transform .25s ease;
  min-height: 80px;
}
.cat-sign:hover {
  border-color: var(--pink);
  transform: translateX(-4px);
}
.cat-sign-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--pink-whisper);
  color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
}
.cat-sign-text { font-size: 15.5px; color: var(--ink); line-height: 1.55; }

/* ===== HOURS / data table ===== */
.cat-hours { padding: 110px 56px; background: var(--white); }
.cat-hours-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.cat-hours-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.cat-hours-inner > p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.cat-hours-table {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201,166,160,0.25);
}
.cat-hours-cell {
  padding: 28px 20px;
  text-align: center;
  border-left: 1px solid rgba(201,166,160,0.18);
  background: var(--cream);
}
.cat-hours-cell:last-child { border-left: 0; }
.cat-hours-cell.head {
  background: var(--teal);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  padding: 18px 20px;
}
.cat-hours-age {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.cat-hours-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}
.cat-hours-num span { font-size: 14px; color: var(--ink-mute); font-weight: 400; margin-right: 4px; }
/* Mobile: stack as paired rows (age head → its hours) so the grid stays
   readable instead of "all heads, then all values". */
@media (max-width: 720px) {
  .cat-hours-table { grid-template-columns: 1fr; }
  .cat-hours-cell { border-left: 0 !important; border-bottom: 1px solid rgba(201,166,160,0.18); }
  .cat-hours-cell:nth-child(1) { order: 1; }
  .cat-hours-cell:nth-child(5) { order: 2; }
  .cat-hours-cell:nth-child(2) { order: 3; }
  .cat-hours-cell:nth-child(6) { order: 4; }
  .cat-hours-cell:nth-child(3) { order: 5; }
  .cat-hours-cell:nth-child(7) { order: 6; }
  .cat-hours-cell:nth-child(4) { order: 7; }
  .cat-hours-cell:nth-child(8) { order: 8; }
  .cat-hours-cell.head { padding: 12px 18px; font-size: 13px; }
  .cat-hours-cell:not(.head) { padding: 18px 18px 22px; }
  .cat-hours-num { font-size: 26px; }
}

/* ===== FEATURED PAGES (SEO children) ===== */
.cat-featured { padding: 110px 56px; background: var(--white); }
.cat-featured-inner { max-width: 1240px; margin: 0 auto; }
.cat-featured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.cat-featured-head .cat-featured-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: -0.025em;
  margin-top: 10px;
  line-height: 1.1;
}
.cat-featured-head .cat-featured-heading h2 em {
  font-style: normal; color: var(--terracotta); font-weight: 800;
}
.cat-featured-head p {
  max-width: 420px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.cat-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-featured-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cat-featured-card {
  display: block;
  padding: 34px 30px;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid rgba(201,166,160,0.18);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

/* Image-card variant: thumbnail at top, content below */
.cat-featured-card.has-img {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.cat-featured-card.has-img .cat-featured-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pink-whisper);
  position: relative;
}
.cat-featured-card.has-img .cat-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cat-featured-card.has-img .cat-featured-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-featured-card.has-img .cat-featured-num {
  margin-bottom: 10px;
}
.cat-featured-card.has-img .cat-featured-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.cat-featured-card.has-img .cat-featured-sub {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cat-featured-card.has-img .cat-featured-arrow {
  margin-top: auto;
  padding-top: 6px;
}
.cat-featured-card.has-img:hover {
  background: #fff;
}
.cat-featured-card::before {
  content:''; position: absolute;
  top: 0; right: 0;
  width: 100%; height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s ease;
}
.cat-featured-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--pink);
  box-shadow: 0 24px 40px -24px rgba(44,95,93,0.25);
}
.cat-featured-card:hover::before { transform: scaleX(1); }
.cat-featured-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.cat-featured-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cat-featured-sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cat-featured-arrow {
  margin-top: 24px;
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 8px;
}
.cat-featured-arrow svg { transition: transform .25s ease; }
.cat-featured-card:hover .cat-featured-arrow svg { transform: translateX(-4px); }

/* ===== RELATED (cream band) ===== */
.cat-related { padding: 110px 56px; background: var(--cream); }
.cat-related.white { background: var(--white); }
.cat-related-inner { max-width: 1180px; margin: 0 auto; }
.cat-related-head { text-align: center; margin-bottom: 56px; }
.cat-related-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.cat-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.cat-related-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border: 1px solid rgba(201,166,160,0.2);
  min-height: 100px;
}
.cat-related.white .cat-related-card { background: var(--cream); }
.cat-related-card:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(44,95,93,0.4);
}
.cat-related-card:hover .cat-related-title,
.cat-related-card:hover .cat-related-sub { color: var(--cream); }
.cat-related-card:hover .cat-related-arrow { color: var(--cream); transform: translateX(-4px); }
.cat-related-text { display: flex; flex-direction: column; gap: 4px; }
.cat-related-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--teal);
  transition: color .3s ease;
  letter-spacing: -0.01em;
}
.cat-related-sub {
  font-size: 13px;
  color: var(--ink-mute);
  transition: color .3s ease;
}
.cat-related-arrow { color: var(--terracotta); transition: all .3s ease; flex-shrink: 0; }

/* ===== VIDEO EMBED ===== */
.cat-video {
  padding: 100px 56px;
  background: var(--white);
}
.cat-video.dark { background: var(--cream); }
.cat-video-inner { max-width: 1080px; margin: 0 auto; }
.cat-video-head { text-align: center; margin-bottom: 42px; }
.cat-video-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.02em;
  margin-top: 10px;
  line-height: 1.2;
}
.cat-video-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.cat-video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--teal-deep);
  box-shadow: 0 30px 60px -30px rgba(44,95,93,0.45);
}
.cat-video-frame iframe,
.cat-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.cat-video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--cream);
  text-align: center;
  padding: 30px;
}
.cat-video-placeholder .play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(212,115,94,0.5);
  transition: transform .25s;
}
.cat-video-placeholder .play-btn:hover { transform: scale(1.06); }
.cat-video-caption {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== LECTURES (for Early Childhood page) ===== */
.cat-lectures { padding: 110px 56px; background: var(--cream); }
.cat-lectures-inner { max-width: 1180px; margin: 0 auto; }
.cat-lectures-head { text-align: center; margin-bottom: 56px; }
.cat-lectures-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  margin-top: 10px;
  line-height: 1.1;
}
.cat-lectures-head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.cat-lectures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-lecture {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid rgba(201,166,160,0.18);
  transition: transform .3s, box-shadow .3s;
}
.cat-lecture:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(44,95,93,0.2);
}
.cat-lecture-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
}
.cat-lecture-age {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--terracotta);
  background: var(--pink-whisper);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.cat-lecture h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.cat-lecture p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ===== CTA (terracotta banner) ===== */
/* Decorative lead-in image above CTA - mirrors bottom "arrow image" slot from original site */
.cat-cta-lead {
  padding: 70px 56px 0;
  background: var(--cream);
}
.cat-cta-lead-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.cat-cta-lead-img {
  height: 260px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--pink-whisper) 0%, var(--cream-deep) 100%);
  background-size: cover; background-position: center;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(44,95,93,0.25);
}
.cat-cta-lead-img.placeholder::after {
  content: 'תמונה';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(44,95,93,0.35);
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.2em;
}
.cat-cta-lead-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cat-cta-lead-text h2 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.cat-cta-lead-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.cat-cta { padding: 80px 56px 110px; background: var(--cream); }
.cat-cta-inner {
  max-width: 1100px; margin: 0 auto;
  background: var(--terracotta);
  border-radius: var(--r-xl);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  color: white;
}
.cat-cta-text { display: flex; flex-direction: column; justify-content: center; }
.cat-cta-side { justify-content: center; }
.cat-cta-inner::before {
  content:''; position: absolute;
  top: -50px; left: -50px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cat-cta-inner::after {
  content:''; position: absolute;
  bottom: -80px; right: 30%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cat-cta-text { position: relative; }
.cat-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  color: white;
  letter-spacing: -0.025em;
}
.cat-cta-text p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 460px;
}
.cat-cta-side {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  align-items: stretch;
}
.cat-cta-phone {
  background: white;
  color: var(--terracotta);
  padding: 22px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  transition: transform .25s ease;
}
.cat-cta-phone:hover { transform: translateY(-2px); }
.cat-cta-phone svg { color: var(--terracotta); }
.cat-cta-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* Contact form inline (simpler variant) */
.cat-cta-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  backdrop-filter: blur(4px);
}
.cat-cta-form input {
  background: rgba(255,255,255,0.95);
  border: 0;
  padding: 14px 18px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  text-align: right;
  direction: rtl;
}
.cat-cta-form input::placeholder { color: var(--ink-mute); }
.cat-cta-form button {
  background: var(--teal);
  color: white;
  border: 0;
  padding: 14px 20px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
}
.cat-cta-form button:hover { background: var(--teal-deep); }

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-deep);
  color: var(--pink-soft);
  padding: 70px 56px 30px;
}
.footer-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1) opacity(0.95); }
.footer-about { font-size: 14px; line-height: 1.7; color: rgba(232,212,206,0.78); }
.footer-tagline { margin-top: 16px; font-size: 13px; color: var(--pink); }
.footer-h {
  font-family: var(--font-display);
  font-size: 14px;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(232,212,206,0.75);
  display: flex; align-items: center; gap: 10px;
}
.footer-col ul li a { transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--terracotta); }
.footer-social {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(232,212,206,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,212,206,0.75);
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}
.footer-bottom {
  max-width: 1340px;
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(232,212,206,0.12);
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(232,212,206,0.55);
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--terracotta); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cat-article.split .cat-article-inner,
  .cat-intro-inner,
  .cat-process-head,
  .cat-signs-inner,
  .cat-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cat-step-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-related-grid,
  .cat-featured-grid,
  .cat-featured-grid.cols-4,
  .cat-lectures-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-story-grid { grid-template-columns: 1fr; }
  .cat-hours-table { grid-template-columns: repeat(2, 1fr); }
  .cat-hours-cell { border-bottom: 1px solid rgba(201,166,160,0.18); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .nav-inner,
  .cat-hero, .cat-article, .cat-stories, .cat-process, .cat-signs,
  .cat-hours, .cat-featured, .cat-related, .cat-video, .cat-lectures,
  .cat-cta, .footer { padding-left: 24px; padding-right: 24px; }
  .cat-cta-inner { padding: 50px 32px; }
  .cat-step-grid,
  .cat-related-grid,
  .cat-featured-grid,
  .cat-featured-grid.cols-4,
  .cat-lectures-grid,
  .cat-hours-table { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cat-hero { padding-top: 32px; padding-bottom: 56px; min-height: auto; }
  .cat-hero-crumbs { margin-bottom: 36px; font-size: 12px; }
  .cat-title { letter-spacing: -0.025em; }
  .cat-lead { font-size: 16px; margin-top: 22px; }
}


/* ===== footer contact icons (v5 round3) ===== */
.footer-contact ul { list-style:none; padding:0; margin:0; }
.footer-contact li {
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 0;
  color:rgba(232,212,206,0.78);
}
.footer-contact li a { color:inherit; text-decoration:none; }
.footer-contact li a:hover { color:var(--terracotta,#D4735E); }
.footer-contact .footer-ico {
  flex:0 0 14px;
  color:var(--pink,#C9A6A0);
  opacity:.9;
}
.footer-hours-list {
  list-style:none;
  padding:0;
  margin-top:14px !important;
  padding-top:12px;
  border-top:1px solid rgba(232,212,206,0.15);
  font-size:13px;
  color:rgba(232,212,206,0.7);
}
.footer-hours-list li { padding:3px 0; display:flex; align-items:center; gap:10px; }
.footer-hours-list li:not(:first-child) .footer-ico { visibility:hidden; }
/* ===== end v5 round3 ===== */

/* ===== CTA restructure (v5 round6) ===== */
.cat-cta-lead-inner {
  grid-template-columns: 1fr !important;
  text-align: center;
  gap: 18px;
  max-width: 780px !important;
}
.cat-cta-lead-img { display: none !important; }
.bot-cta-lead {
  display: block;
  width: 230px;
  max-width: 60vw;
  height: auto;
  margin: 0 auto 6px;
  opacity: 0.8;
}
.cat-cta-lead-text p { max-width: 620px; margin: 0 auto; }

/* 2-column card: RIGHT = portrait + text, LEFT = form + hours + phone */
.cat-cta-inner {
  grid-template-columns: 1.15fr 1fr !important;
  gap: 44px !important;
  align-items: stretch !important;
  padding: 60px 56px !important;
}
.cat-cta-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.cat-cta-text-col .eyebrow { color: rgba(255,255,255,0.9); }
.cat-cta-text-col h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: #fff;
  text-align: center;
}
.cat-cta-text-col p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  max-width: 460px;
  text-align: center;
  margin: 0 auto;
}
.cat-cta-portrait {
  margin: 0 auto 4px;
}
.cat-cta-portrait img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255,255,255,0.25);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35);
  background: #fff;
  display: block;
}

.cat-cta-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.cat-cta-form {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(4px);
}
.cat-cta-form input,
.cat-cta-form textarea {
  background: rgba(255,255,255,0.96);
  border: 0;
  padding: 13px 16px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  text-align: right;
  direction: rtl;
  resize: vertical;
}
.cat-cta-form input::placeholder,
.cat-cta-form textarea::placeholder { color: var(--ink-mute); }
.cat-cta-form button {
  background: var(--teal);
  color: #fff;
  border: 0;
  padding: 14px 20px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
  margin-top: 4px;
}
.cat-cta-form button:hover { background: var(--teal-deep); }

.cat-cta-hours-line {
  margin: 0;
  padding: 6px 0;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}
.cat-cta-hours-line .cat-cta-sep { opacity: 0.55; }

.cat-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--terracotta);
  padding: 16px 24px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.3);
  transition: transform .2s ease;
}
.cat-cta-phone:hover { transform: translateY(-2px); }
.cat-cta-phone svg { color: var(--terracotta); }

/* Stack on tablet / mobile */
@media (max-width: 900px) {
  .cat-cta-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 44px 32px !important;
  }
  .cat-cta-portrait img { max-width: 280px; margin: 0 auto; display: block; }
}
@media (max-width: 700px) {
  .bot-cta-lead { width: 170px; }
  .cat-cta-inner { padding: 40px 22px !important; }
  .cat-cta-phone { font-size: 18px; padding: 14px 20px; }
}
/* ===== end v5 round6 ===== */
