/* ============================================================
   המרכז לייפוי כוח מתמשך וצוואות — Design System
   Palette sampled from approved design references.
   ============================================================ */
:root {
  /* Palette adopted from goldfarb.com — deep plum + magenta accent + champagne accent + light lavender. */
  --green: #330028;            /* dark surface (header/footer/hero/stats/cta) + headings */
  --green-800: #6b0555;        /* magenta — dark-surface hover / gradient partner */
  --gold: #6b0555;             /* brand accent (readable on light surfaces) */
  --gold-soft: #7d1466;        /* accent hover */
  --champagne: #e3c08a;        /* warm accent for text on the dark plum surfaces */
  --cream: #f4ebef;            /* light lavender section background */
  --cream-2: #faf6f9;          /* lightest background */
  --card: #fffdfe;             /* card background */
  --white: #FFFFFF;
  --ink: #330028;              /* body text (Goldfarb text colour) */
  --muted: #6b5560;            /* muted plum-grey text */
  --line: rgba(51, 0, 40, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --serif: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --sans: 'Heebo', 'Assistant', system-ui, sans-serif;
  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream-2);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--green); line-height: 1.15; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- shared helpers ---------- */
.eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--cream { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section-head { max-width: 760px; margin-inline-start: auto; text-align: start; }
.section-head .title { font-size: clamp(1.9rem, 4.5vw, 3.1rem); margin-top: 0.7rem; }
.gold-rule { width: 54px; height: 3px; background: var(--gold); border: 0; margin: 1.3rem 0; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 60ch; }
.text-center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 0.9rem 2rem; border-radius: 2px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn--gold { background: var(--gold); color: var(--green); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(107, 5, 85, 0.55); }
.btn--dark { background: var(--green); color: var(--white); border-color: var(--green); width: 100%; }
.btn--dark:hover { background: var(--green-800); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--green); }
.btn--outline:hover { background: var(--gold); }
.link-gold { color: var(--gold); font-weight: 600; font-family: var(--serif); }
.link-gold:hover { color: var(--green); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header .wrap { max-width: 1340px; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green);
  border-bottom: 1px solid var(--line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 80px; }
/* flex-shrink would squeeze the wordmark once the bar fills up. */
.nav__logo { flex: 0 0 auto; }
.nav__logo img { height: 46px; width: auto; border-radius: 3px; }
.nav__links { display: flex; align-items: center; gap: clamp(0.45rem, 0.9vw, 1rem); }
.nav__links a { white-space: nowrap; }
.nav__links a {
  color: rgba(255, 255, 255, 0.85); font-size: 0.94rem; font-weight: 500;
  padding: 0.4rem 0; position: relative; transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links a.is-active::after {
  content: ''; position: absolute; inset-inline: 0; bottom: -4px; height: 2px; background: var(--gold);
}
.nav__actions { display: flex; align-items: center; gap: 0.6rem; }
.nav__cta { display: inline-flex; white-space: nowrap; }
.nav__phone, .nav__wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-radius: 999px; padding: 0.45rem 0.8rem;
  font-size: 0.87rem; font-weight: 600; white-space: nowrap;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.nav__phone svg, .nav__wa svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }
.nav__phone { color: #fff; border: 1px solid var(--line-dark); }
.nav__phone:hover { background: rgba(255,255,255,0.1); }
.nav__wa { background: #25D366; color: #fff; }
.nav__wa:hover { opacity: 0.88; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }

/* Between a laptop and a wide screen the bar has room for the pages OR for the
   contact labels, not both — the pages win, and the phone and WhatsApp keep
   their icons. */
@media (max-width: 1240px) {
  .nav__phone span, .nav__wa span { display: none; }
  .nav__phone, .nav__wa { padding: 0.5rem; }
  .nav__phone svg, .nav__wa svg { width: 19px; height: 19px; }
}

/* Desktop keeps the full row. Below it the links collapse behind the toggle,
   while the phone and WhatsApp stay in the bar as icons — those are the two
   things a visitor on a phone actually needs within reach. */
@media (max-width: 1040px) {
  .nav { gap: 0.6rem; min-height: 0; padding-block: 0.85rem; }
  .nav__logo img { height: 44px; }
  .nav__toggle { display: flex; }
  .nav__actions { gap: 0.45rem; }
  .nav__phone span, .nav__wa span { display: none; }
  .nav__phone, .nav__wa { padding: 0.5rem; }
  .nav__phone svg, .nav__wa svg { width: 19px; height: 19px; }
  .nav__cta { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

  .nav__links { display: none; }
  .site-header.open .nav__links {
    display: flex; position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--green); border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark); padding: 0.5rem 0 1rem; z-index: 60;
  }
  .site-header.open .nav__links a { padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem); font-size: 1rem; }
  .site-header.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* On a phone the bar carries logo, phone, WhatsApp and the toggle — the
   "להשארת פרטים" button would overflow the row, and צור קשר is in the menu. */
@media (max-width: 620px) {
  .nav__cta { display: none; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { background: var(--green); color: #fff; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__content { max-width: 900px; }
.hero__eyebrow { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.7rem); margin-top: 1rem; }
.hero h1 .accent { color: var(--gold); display: block; margin-top: 0.4rem; }
.hero__sub { color: rgba(255,255,255,0.82); margin-top: 1.6rem; font-size: 1.06rem; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.2rem; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: 6px; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); object-fit: cover; }
.hero__frame { position: relative; }
.hero__frame::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold); border-radius: 6px; z-index: -1;
}

/* ---------- stats ---------- */
.stats { background: var(--cream); }
.stats__box {
  background: var(--green); color: #fff; border-radius: 6px; padding: clamp(1.8rem, 4vw, 3rem);
  max-width: 720px; margin-inline: auto;
}
.stats__label { color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 0.85rem; }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 1.6rem; }
.stat { padding: 1.6rem 0.5rem; border-top: 1px solid var(--line-dark); }
.stat:nth-child(odd) { padding-inline-start: 1.6rem; border-inline-start: 1px solid var(--line-dark); }
.stat__num { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1; }
.stat__txt { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-top: 0.6rem; }
.stats__note { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 1.4rem; text-align: start; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--green); color: #fff; padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta-band__grid { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2rem; }
.cta-band__text { text-align: start; }
.cta-band__eyebrow { color: var(--gold); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-top: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 0.9rem; }

/* ============================================================
   ABOUT — principles (numbered columns)
   ============================================================ */
/* The four principles read as one centred unit — heading included. */
.principles-head { max-width: 760px; margin-inline: auto; text-align: center; }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; }
.principle { padding: 0 clamp(1rem, 2vw, 1.8rem); text-align: center; border-inline-start: 1px solid var(--line); }
.principle:first-child { border-inline-start: 0; }
.principle__num { font-family: var(--serif); color: var(--gold); font-size: 1rem; }
.principle h3 { font-size: clamp(1.65rem, 2.4vw, 1.85rem); margin: 1rem 0 0.75rem; }
.principle p { color: var(--muted); font-size: 0.95rem; }

/* generic prose section */
.prose-block { max-width: 820px; margin-inline-start: 0; }
.prose-block h3 { color: var(--green); font-size: 1.5rem; margin: 2.2rem 0 0.6rem; }
.prose-block p { color: var(--ink); margin-bottom: 1.1rem; }
.about__media img { width: 100%; border-radius: 6px; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* ============================================================
   PRACTICE (services)
   ============================================================ */
.practice-item { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
/* Title column leads on the right, where a Hebrew reader starts. */
.practice-item__grid { display: grid; grid-template-columns: 0.55fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.practice-item__side { order: -1; }
.practice-item__side { text-align: start; }
.practice-item__num { font-family: var(--serif); color: var(--gold); font-size: 1.05rem; }
.practice-item__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 0.6rem; }
.practice-item__body p { color: var(--ink); }
.practice-item__body p + p { color: var(--muted); margin-top: 0.9rem; font-size: 0.97rem; }
.practice-item__list { margin-top: 1.8rem; }
.practice-item__list li {
  display: flex; align-items: center; gap: 0.8rem; justify-content: flex-start;
  padding: 0.9rem 0; border-top: 1px solid var(--line); color: var(--green); font-weight: 500;
}
.practice-item__list li::before { content: '◆'; color: var(--gold); font-size: 0.6rem; }

/* ============================================================
   TEAM
   ============================================================ */
.attorney { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.attorney__media img { width: 100%; border-radius: 6px; box-shadow: 0 24px 50px -30px rgba(0,0,0,0.4); }
.attorney__name { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.attorney__role { color: var(--gold); font-family: var(--serif); font-weight: 700; margin-top: 0.4rem; margin-bottom: 1.4rem; }
.attorney__body p { color: var(--ink); margin-bottom: 1rem; }
.team-banner { background: var(--cream); border-block: 1px solid var(--line); }
.team-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: 2rem; }
.team-banner__tags { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.team-banner__tags span { color: var(--gold); font-family: var(--serif); font-weight: 700; }

/* ============================================================
   ARTICLES
   ============================================================ */
.article-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.article-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(51,0,40,0.35); }
.article-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.article-card__read { color: var(--gold); font-size: 0.8rem; font-weight: 600; }
.article-card__title { font-size: 1.25rem; margin: 0.6rem 0 1rem; line-height: 1.35; }
.article-card__more { margin-top: auto; color: var(--green); font-weight: 600; }
.article-card:hover .article-card__more { color: var(--gold); }

/* article page */
.article-hero { background: var(--green); color: #fff; padding-block: clamp(2.8rem, 5vw, 4.5rem); }
.article-hero .eyebrow { color: var(--gold); }
.article-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 0.8rem; max-width: 22ch; }
.article-hero__read { color: rgba(255,255,255,0.8); margin-top: 1rem; }
.article-figure { margin: 0 auto; max-width: 900px; }
.article-figure img { width: 100%; border-radius: 6px; margin-top: -3.5rem; box-shadow: 0 24px 50px -30px rgba(0,0,0,0.4); }
.article-body { max-width: 760px; margin-inline: auto; }
.article-body h2 { color: var(--green); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.4rem 0 0.8rem; }
.article-body p { color: var(--ink); margin-bottom: 1.15rem; }
.article-body strong { color: var(--green); font-weight: 700; }
.article-body ul { margin: 0 0 1.3rem; }
.article-body li {
  position: relative; padding-inline-start: 1.5rem; margin-bottom: 0.6rem; color: var(--ink);
}
.article-body li::before { content: '◆'; position: absolute; inset-inline-start: 0; top: 0.55rem; color: var(--gold); font-size: 0.6rem; }
.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.98rem; }
.compare-table caption { text-align: start; font-family: var(--serif); font-weight: 700; color: var(--green); margin-bottom: 0.8rem; font-size: 1.2rem; }
.compare-table th { background: var(--green); color: #fff; font-family: var(--serif); padding: 0.9rem 1rem; text-align: start; }
.compare-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink); vertical-align: top; }
.compare-table tr:nth-child(even) td { background: var(--cream); }
.article-consult {
  background: var(--cream); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.8rem, 4vw, 2.6rem); margin-top: 3rem;
}
.article-consult h2 { margin-bottom: 0.8rem; }
.article-consult p { color: var(--ink); margin-bottom: 1rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: start;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--serif); font-weight: 700; color: var(--green); font-size: 1.15rem;
}
.faq__q .icon { color: var(--gold); font-size: 1.5rem; transition: transform 0.3s; flex: none; }
.faq__q[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq__a p { color: var(--muted); padding-bottom: 1.4rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.8rem, 4vw, 2.6rem); }
.contact-card h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-top: 0.5rem; }
.field { margin-top: 1.2rem; }
.field label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 3px; padding: 0.8rem 0.9rem; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(107,5,85,0.18); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field.invalid input, .field.invalid select { border-color: #b3453a; }
.field__err { color: #b3453a; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.field.invalid .field__err { display: block; }
.form-note { color: var(--muted); font-size: 0.82rem; margin-top: 0.9rem; }
.contact-info__item { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.contact-info__item:first-of-type { border-top: 0; }
.contact-info__label { color: var(--muted); font-size: 0.85rem; }
.contact-info__value { color: var(--green); font-family: var(--serif); font-weight: 700; font-size: 1.2rem; margin-top: 0.2rem; }
.after-box { background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: 1.6rem; margin-top: 1.8rem; }
.after-box h3 { font-size: 1.2rem; margin-bottom: 0.9rem; }
.after-step { display: flex; gap: 0.9rem; padding: 0.5rem 0; align-items: baseline; }
.after-step span { font-family: var(--serif); color: var(--gold); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green); color: rgba(255,255,255,0.8); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer__logo img { height: 66px; width: auto; border-radius: 3px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; }
.footer__nav a { color: rgba(255,255,255,0.8); }
.footer__nav a:hover { color: var(--gold); }
.footer__phone { color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.footer__rule { height: 1px; background: var(--line-dark); margin-block: 2rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer__legal a { color: rgba(255,255,255,0.55); }
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .about__grid, .contact__grid, .attorney { grid-template-columns: 1fr; }
  /* One column: the number + title must lead, otherwise each heading reads as
     if it belongs to the block below it and the last one ("הסכמי ממון") looks
     like an empty section. */
  .practice-item__grid { grid-template-columns: 1fr; }
  .practice-item__title { margin-bottom: 1.4rem; }
  .principles { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .article-cards { grid-template-columns: 1fr 1fr; }
  .cta-band__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .article-cards { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .principle { border-inline-start: 0; border-top: 1px solid var(--line); padding-top: 1.5rem; }
  .principle:first-child { border-top: 0; }
  .field-row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat:nth-child(odd) { border-inline-start: 0; padding-inline-start: 0.5rem; }
}

/* ============================================================
   Goldfarb palette — accent by context (colours only, no layout).
   The magenta brand accent reads on the light content sections;
   the champagne accent is used where accents sit on the dark
   plum surfaces (hero / stats / CTA / footer / nav).
   ============================================================ */
.btn--gold { color: var(--white); }
.hero__eyebrow,
.hero h1 .accent,
.stats__label,
.stat__num,
.cta-band__eyebrow,
.article-hero .eyebrow,
.footer__phone { color: var(--champagne); }
.hero .link-gold { color: var(--champagne); }
.hero .link-gold:hover { color: var(--white); }
.nav__links a:hover,
.nav__links a.is-active { color: var(--champagne); }
.nav__links a.is-active::after { background: var(--champagne); }
.footer__nav a:hover,
.footer__legal a:hover { color: var(--champagne); }

/* Real branded graphics are in place for every article except הסכם ממון, whose
   old off-palette placeholder stays masked behind a plum panel + champagne
   document mark until its graphic arrives. Scoped with .is-placeholder. */
.article-card__img.is-placeholder,
.article-figure.is-placeholder {
  position: relative;
  background: linear-gradient(150deg, var(--green), var(--green-800) 135%);
  overflow: hidden;
}
.article-card__img.is-placeholder img,
.article-figure.is-placeholder img { opacity: 0; }
.article-card__img.is-placeholder::after,
.article-figure.is-placeholder::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-repeat: no-repeat; background-position: center; background-size: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3c08a' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2.5h7l5 5v14H6z'/%3E%3Cpath d='M13 2.5V8h5'/%3E%3Cpath d='M9 13h6M9 16.5h6'/%3E%3C/svg%3E");
}
.article-figure.is-placeholder::after { background-size: 96px; }

/* ============================================================
   TESTIMONIALS (home) — real Google reviews
   ============================================================ */
.testimonials { background: var(--green); color: #fff; }
.testimonials__head { max-width: 760px; margin-inline: auto; text-align: center; }
.testimonials__head .title { color: #fff; }
/* --gold is plum and disappears on this dark surface; champagne is the dark-surface accent. */
.testimonials__head .eyebrow { color: var(--champagne); }
.tst__badge {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.4rem;
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 0.55rem 1.2rem;
  font-size: 0.95rem; font-weight: 600;
}
.tst__stars { color: var(--champagne); letter-spacing: 0.08em; }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.tst {
  display: flex; flex-direction: column; gap: 1.1rem; height: 100%;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-dark);
  border-radius: 6px; padding: clamp(1.3rem, 2.5vw, 1.8rem);
}
.tst__quote { color: rgba(255, 255, 255, 0.88); font-size: 0.98rem; line-height: 1.8; margin: 0; }
.tst__by { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.tst__name { font-family: var(--serif); font-weight: 700; color: var(--champagne); }
.tst__g { width: 20px; height: 20px; margin-inline-start: auto; background: #fff; border-radius: 50%; padding: 3px; }
.tst__badge .tst__g { margin-inline-start: 0; }

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}
