/*
Theme Name: Yaara Pilates
Theme URI: https://yaarapilates.com
Author: Yaara Kantz
Description: Premium Pilates studio theme. Calm wellness aesthetic with beige and sage green. Hebrew RTL. Ramat HaSharon.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: yaara-pilates
Tags: rtl-language, custom-colors, custom-logo, full-width-template
*/

/* ══════════════════════════════
   Design Tokens
   ══════════════════════════════ */
:root {
  --c-beige:       #c4a882;
  --c-beige-lt:    #d9c4a8;
  --c-cream:       #faf6f0;
  --c-cream-2:     #f3ebe0;
  --c-cream-3:     #ece2d4;
  --c-sage:        #7a9e7e;
  --c-sage-dark:   #4a6b4d;
  --c-sage-lite:   #dceedd;
  --c-forest:      #1a2b1b;
  --c-forest-2:    #0f1a10;
  --c-text:        #1e1e1e;
  --c-text-muted:  #7a7a7a;
  --c-text-faint:  #a8a29a;
  --c-border:      #e4d8c8;
  --c-border-lt:   #ede4d7;
  --c-white:       #ffffff;
  --c-wa:          #25d366;

  --f-head: 'Frank Ruhl Libre', 'David Libre', Georgia, serif;
  --f-body: 'Assistant', 'Heebo', system-ui, sans-serif;

  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   1.1875rem;
  --t-lg:   1.375rem;
  --t-xl:   1.75rem;
  --t-2xl:  2.25rem;
  --t-3xl:  3rem;
  --t-4xl:  3.75rem;
  --t-hero: 4.5rem;

  --fw-light: 300;
  --fw-reg:   400;
  --fw-med:   500;
  --fw-semi:  600;
  --fw-bold:  700;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --max-w:     1160px;
  --gutter:    1.5rem;
  --section-y: 7rem;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --sh-xs: 0 1px 4px rgba(30,30,30,.06);
  --sh-sm: 0 2px 12px rgba(30,30,30,.07);
  --sh-md: 0 6px 24px rgba(30,30,30,.09);
  --sh-lg: 0 16px 48px rgba(30,30,30,.11);
  --sh-xl: 0 28px 72px rgba(30,30,30,.13);

  --ease:      0.26s cubic-bezier(.4,0,.2,1);
  --ease-slow: 0.5s cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════
   Reset & Base
   ══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ══════════════════════════════
   Layout
   ══════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section          { padding-block: var(--section-y); }
.section--soft    { background: var(--c-cream-2); }
.section--deep    { background: var(--c-cream-3); }
.section--dark    { background: var(--c-forest); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }

.section__header         { margin-bottom: var(--sp-16); }
.section__header--center { text-align: center; }
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: var(--sp-4);
}
.section__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-sage);
}
.section--dark .section__label { color: #a8c8aa; }
.section--dark .section__label::before { background: #a8c8aa; }
.section__title {
  font-family: var(--f-head);
  font-size: var(--t-2xl);
  font-weight: var(--fw-light);
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}
.section--dark .section__title { color: #fff; }
.section__sub {
  font-size: var(--t-md);
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 540px;
}
.section--dark .section__sub { color: rgba(255,255,255,.55); }
.section__header--center .section__sub { margin-inline: auto; }

/* ══════════════════════════════
   Buttons
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: var(--fw-semi);
  padding: .9rem 2rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: .02em;
  line-height: 1;
  cursor: pointer;
}
.btn--primary {
  background: var(--c-sage);
  color: #fff;
  border-color: var(--c-sage);
  box-shadow: 0 4px 16px rgba(74,107,77,.22);
}
.btn--primary:hover {
  background: var(--c-sage-dark);
  border-color: var(--c-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,107,77,.3);
}
.btn--outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--outline:hover { background: var(--c-cream-2); border-color: var(--c-beige); }
.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn--dark {
  background: var(--c-forest);
  color: #fff;
  border-color: var(--c-forest);
}
.btn--dark:hover { background: #0f1a10; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.btn--wa {
  background: var(--c-wa);
  color: #fff;
  border-color: var(--c-wa);
  box-shadow: 0 4px 16px rgba(37,211,102,.22);
}
.btn--wa:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); }
.btn--lg  { font-size: var(--t-md);  padding: 1.05rem 2.4rem; }
.btn--sm  { font-size: var(--t-sm);  padding: .65rem 1.4rem;  }
.btn--full { width: 100%; }

/* ══════════════════════════════
   Header & Navigation
   ══════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border-lt);
  transition: box-shadow var(--ease), background var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(30,30,30,.08);
  background: rgba(250,246,240,.99);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: 76px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img,
.custom-logo-link img,
.custom-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.site-logo__name {
  font-family: var(--f-head);
  font-size: var(--t-lg);
  font-weight: var(--fw-reg);
  color: var(--c-text);
  line-height: 1.1;
}
.site-logo__sub {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  letter-spacing: .04em;
  margin-top: 1px;
}
.site-nav {
  display: flex;
  align-items: center;
  margin-inline-end: auto;
  gap: var(--sp-1);
}
.site-nav li { list-style: none; }
.site-nav a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  font-size: var(--t-sm);
  font-weight: var(--fw-med);
  color: var(--c-text-muted);
  border-radius: var(--r-full);
  transition: color var(--ease), background var(--ease);
}
.site-nav a:hover,
.site-nav a.active { color: var(--c-text); background: var(--c-cream-2); }
.site-nav a.active { color: var(--c-sage-dark); font-weight: var(--fw-semi); }
.nav-cta { flex-shrink: 0; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-inline-start: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--gutter) var(--sp-6);
  background: var(--c-white);
  border-top: 1px solid var(--c-border-lt);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--t-md);
  color: var(--c-text);
  border-radius: var(--r-md);
  transition: background var(--ease);
}
.nav-mobile a:hover { background: var(--c-cream-2); }
.nav-mobile .btn { margin-top: var(--sp-2); }

/* ══════════════════════════════
   Hero
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2b1b 0%, #2d3e1e 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15,20,15,.88) 0%, rgba(15,20,15,.72) 45%, rgba(15,20,15,.32) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(250,246,240,.18), transparent);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-block: var(--sp-16);
}
.hero__logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: var(--sp-6);
  box-shadow: none;
  border: none;
  background: transparent;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-beige-lt);
  margin-bottom: var(--sp-6);
}
.hero__tag svg { width: 14px; height: 14px; color: var(--c-sage); }
.hero__title {
  font-family: var(--f-head);
  font-size: var(--t-hero);
  font-weight: var(--fw-light);
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  letter-spacing: -.02em;
}
.hero__title em { font-style: normal; color: var(--c-beige-lt); }
.hero__sub {
  font-size: var(--t-md);
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-10);
  line-height: 1.7;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
}
.hero__trust-item::before {
  content: '✓';
  font-size: .65rem;
  color: var(--c-sage);
  font-weight: var(--fw-bold);
}

/* ══════════════════════════════
   Stats Strip
   ══════════════════════════════ */
.stats-strip {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-lt);
  padding-block: var(--sp-10);
}
.stats-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding-inline: var(--sp-12);
  position: relative;
  flex-shrink: 0;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 2.5rem;
  background: var(--c-border);
}
.stat-item__num {
  display: block;
  font-family: var(--f-head);
  font-size: var(--t-3xl);
  font-weight: var(--fw-light);
  color: var(--c-sage);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-item__lbl {
  font-size: var(--t-xs);
  color: var(--c-text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: var(--fw-semi);
}

/* ══════════════════════════════
   Split Layout
   ══════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.split__img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.split__img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform var(--ease-slow);
}
.split__img:hover img { transform: scale(1.03); }
.split__img::before {
  content: '';
  position: absolute;
  inset: -10px -10px auto auto;
  width: 80px; height: 80px;
  border-top: 2px solid var(--c-beige);
  border-right: 2px solid var(--c-beige);
  border-radius: 0 var(--r-md) 0 0;
  opacity: .5; z-index: 1; pointer-events: none;
}
.split__img::after {
  content: '';
  position: absolute;
  inset: auto auto -10px -10px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--c-beige);
  border-left: 2px solid var(--c-beige);
  border-radius: 0 0 0 var(--r-md);
  opacity: .5; z-index: 1; pointer-events: none;
}
.split__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: var(--sp-4);
}
.split__tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--c-sage);
}
.split__title {
  font-family: var(--f-head);
  font-size: var(--t-2xl);
  font-weight: var(--fw-light);
  color: var(--c-text);
  margin-bottom: var(--sp-5);
  line-height: 1.2;
}
.split__text {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
  font-size: var(--t-md);
  line-height: 1.8;
}
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-sage-lite);
  color: var(--c-sage-dark);
  font-size: var(--t-xs);
  font-weight: var(--fw-semi);
  padding: 5px var(--sp-4);
  border-radius: var(--r-full);
  border: 1px solid rgba(122,158,126,.25);
}

/* ══════════════════════════════
   Service Cards
   ══════════════════════════════ */
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-beige));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 54px; height: 54px;
  background: var(--c-sage-lite);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: background var(--ease);
}
.service-card:hover .service-card__icon { background: var(--c-sage); }
.service-card__icon svg { width: 24px; height: 24px; color: var(--c-sage-dark); transition: color var(--ease); }
.service-card:hover .service-card__icon svg { color: #fff; }
.service-card__title {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: var(--fw-light);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}
.service-card__text {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  font-size: var(--t-sm);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  font-weight: var(--fw-semi);
  color: var(--c-sage);
  transition: gap var(--ease), color var(--ease);
}
.service-card__link:hover { color: var(--c-sage-dark); gap: var(--sp-3); }

/* ══════════════════════════════
   Advantage Items
   ══════════════════════════════ */
.advantage-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease), border-color var(--ease);
}
.advantage-item:hover { background: rgba(255,255,255,.05); border-color: rgba(122,158,126,.2); }
.advantage-item__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: rgba(122,158,126,.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.advantage-item:hover .advantage-item__icon { background: rgba(122,158,126,.25); }
.advantage-item__icon svg { width: 22px; height: 22px; color: #a8d4aa; }
.advantage-item__title {
  font-family: var(--f-head);
  font-size: var(--t-lg);
  font-weight: var(--fw-light);
  color: #fff;
  margin-bottom: var(--sp-2);
}
.advantage-item__text { color: rgba(255,255,255,.55); line-height: 1.7; font-size: var(--t-sm); }

/* ══════════════════════════════
   Pilates Type Cards
   ══════════════════════════════ */
.pilates-type-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pilates-type-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.pilates-type-card__img { height: 230px; overflow: hidden; }
.pilates-type-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.pilates-type-card:hover .pilates-type-card__img img { transform: scale(1.06); }

/* ── Image placeholders (shown when real photos not yet uploaded) ── */
.img-placeholder {
  background: linear-gradient(145deg, #7a9e7e 0%, #4a6b4d 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split__img .img-placeholder {
  height: 560px;
  background: linear-gradient(145deg, #5bc0c5 0%, #2d6a6f 60%, #1a3d3f 100%);
}
.pilates-type-card__img .img-placeholder {
  height: 230px;
  background: linear-gradient(145deg, #7a9e7e 0%, #4a6b4d 100%);
}
.pilates-type-card__body { padding: var(--sp-8); }
.pilates-type-card__tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: var(--fw-semi);
  color: var(--c-sage);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--sp-3);
}
.pilates-type-card__title {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: var(--fw-light);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}
.pilates-type-card__text { color: var(--c-text-muted); line-height: 1.8; margin-bottom: var(--sp-5); font-size: var(--t-sm); }
.pilates-type-card__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.pilates-type-card__list li {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  font-size: var(--t-sm); color: var(--c-text-muted);
}
.pilates-type-card__list li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--c-sage); border-radius: 50%;
  margin-top: .56rem;
}

/* ══════════════════════════════
   Quote Section
   ══════════════════════════════ */
.quote-section {
  background: var(--c-cream-3);
  padding-block: var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  font-family: var(--f-head);
  font-size: 18rem;
  color: var(--c-beige);
  opacity: .12;
  position: absolute;
  top: -4rem; right: 50%;
  transform: translateX(50%);
  line-height: 1;
  pointer-events: none;
}
.quote-section .container { position: relative; z-index: 1; }
.quote-section blockquote {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: var(--fw-light);
  color: var(--c-text);
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.quote-section cite {
  display: block;
  font-style: normal;
  font-size: var(--t-sm);
  color: var(--c-text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: var(--fw-semi);
}
.quote-section cite::before { content: '— '; color: var(--c-beige); }

/* ══════════════════════════════
   CTA Banner
   ══════════════════════════════ */
.cta-banner {
  background: var(--c-forest);
  padding-block: var(--sp-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(122,158,126,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--f-head);
  font-size: var(--t-3xl);
  font-weight: var(--fw-light);
  color: #fff;
  margin-bottom: var(--sp-5);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.cta-banner__sub {
  font-size: var(--t-md);
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-10);
  max-width: 460px;
  margin-inline: auto;
  line-height: 1.7;
}
.cta-banner__actions { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ══════════════════════════════
   Page Banner
   ══════════════════════════════ */
.page-banner {
  background: var(--c-forest);
  padding-block: var(--sp-20);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(122,158,126,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner__breadcrumb {
  display: flex; justify-content: center;
  gap: var(--sp-3);
  font-size: var(--t-xs);
  color: rgba(255,255,255,.35);
  margin-bottom: var(--sp-6);
}
.page-banner__breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--ease); }
.page-banner__breadcrumb a:hover { color: rgba(255,255,255,.9); }
.page-banner__label {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--t-xs); font-weight: var(--fw-semi);
  letter-spacing: .18em; text-transform: uppercase;
  color: #a8c8aa; margin-bottom: var(--sp-5);
}
.page-banner__label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: #a8c8aa; }
.page-banner__title {
  font-family: var(--f-head);
  font-size: var(--t-3xl);
  font-weight: var(--fw-light);
  margin-bottom: var(--sp-5);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.page-banner__sub {
  font-size: var(--t-md);
  color: rgba(255,255,255,.6);
  max-width: 520px; margin-inline: auto;
  line-height: 1.7;
}

/* ══════════════════════════════
   Contact
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-12);
  align-items: start;
}
.contact-info-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.contact-info-card__head {
  background: var(--c-forest);
  padding: var(--sp-8) var(--sp-8) var(--sp-7);
}
.contact-info-card__head h2,
.contact-info-card__head h3 {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: var(--fw-light);
  color: #fff;
  margin-bottom: var(--sp-2);
}
.contact-info-card__head p { font-size: var(--t-sm); color: rgba(255,255,255,.5); }
.contact-info-card__body { padding: var(--sp-4) var(--sp-6); }
.contact-row {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--c-border-lt);
}
.contact-row:last-child { border-bottom: none; }
.contact-row__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--c-sage-lite);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.contact-row__icon svg { width: 18px; height: 18px; color: var(--c-sage-dark); }
.contact-row__label {
  font-size: var(--t-xs); font-weight: var(--fw-semi);
  color: var(--c-text-muted);
  text-transform: uppercase; letter-spacing: .09em;
  margin-bottom: var(--sp-2);
}
.contact-row__value { font-size: var(--t-sm); font-weight: var(--fw-med); color: var(--c-text); line-height: 1.55; }
.contact-row__value a { color: var(--c-text); transition: color var(--ease); }
.contact-row__value a:hover { color: var(--c-sage); }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--c-border-lt); }
.map-wrap iframe { width: 100%; height: 460px; border: 0; display: block; }

/* ══════════════════════════════
   Footer
   ══════════════════════════════ */
.site-footer {
  background: var(--c-forest-2);
  color: rgba(255,255,255,.45);
  padding-block: var(--sp-20) var(--sp-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand__logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.footer-brand__logo img { width: 40px; height: 40px; border-radius: var(--r-md); object-fit: cover; }
.footer-brand__name { font-family: var(--f-head); font-size: var(--t-lg); font-weight: var(--fw-light); color: rgba(255,255,255,.85); line-height: 1.1; }
.footer-brand__sub { font-size: var(--t-xs); color: rgba(255,255,255,.3); letter-spacing: .04em; margin-top: 2px; }
.footer-brand__desc { font-size: var(--t-sm); line-height: 1.8; margin-bottom: var(--sp-6); max-width: 300px; }
.footer-col h4 { font-size: var(--t-xs); font-weight: var(--fw-semi); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: var(--sp-5); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: var(--t-sm); color: rgba(255,255,255,.4); transition: color var(--ease); }
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: var(--t-xs); flex-wrap: wrap; gap: var(--sp-4); }
.footer-bottom a { color: rgba(122,158,126,.65); transition: color var(--ease); }
.footer-bottom a:hover { color: #a8d4aa; }
.access-statement { padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,.04); margin-top: var(--sp-6); }
.access-statement p { font-size: var(--t-xs); line-height: 1.75; max-width: 760px; color: rgba(255,255,255,.22); }
.access-statement a { color: rgba(122,158,126,.45); }

/* ══════════════════════════════
   Floating WhatsApp
   ══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-6);
  z-index: 8000;
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--c-wa);
  color: #fff;
  font-size: var(--t-sm); font-weight: var(--fw-semi);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.wa-float:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float__label { display: block; }
.wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-full);
  background: var(--c-wa);
  opacity: 0;
  animation: waFloatPulse 2.5s ease infinite;
}
@keyframes waFloatPulse {
  0%   { transform: scale(1);    opacity: .4; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ══════════════════════════════
   Accessibility Widget
   ══════════════════════════════ */
.a11y-btn {
  position: fixed;
  bottom: var(--sp-6); left: var(--sp-6);
  z-index: 9000;
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: var(--c-forest);
  color: #fff;
  box-shadow: var(--sh-lg), 0 0 0 3px rgba(122,158,126,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.a11y-btn:hover { background: var(--c-sage-dark); transform: scale(1.06); }
.a11y-btn svg { width: 24px; height: 24px; }
.a11y-panel {
  position: fixed;
  bottom: calc(var(--sp-6) + 62px); left: var(--sp-6);
  z-index: 9001;
  width: 288px;
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  display: none;
  direction: rtl;
  border: 1px solid var(--c-border-lt);
}
.a11y-panel.open { display: block; animation: panelPop .2s ease; }
@keyframes panelPop {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.a11y-panel__head {
  background: var(--c-forest); color: #fff;
  padding: var(--sp-4) var(--sp-5);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: var(--fw-semi); font-size: var(--t-sm);
}
.a11y-panel__close {
  width: 28px; height: 28px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 1rem;
  transition: all var(--ease); cursor: pointer;
}
.a11y-panel__close:hover { background: rgba(255,255,255,.12); color: #fff; }
.a11y-options { padding: var(--sp-4); display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.a11y-opt {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  padding: var(--sp-4); border-radius: var(--r-lg);
  background: var(--c-cream-2); border: 1.5px solid transparent;
  font-size: var(--t-xs); font-weight: var(--fw-med); color: var(--c-text);
  text-align: center; transition: all var(--ease); cursor: pointer;
}
.a11y-opt svg { width: 20px; height: 20px; color: var(--c-sage-dark); }
.a11y-opt:hover { border-color: var(--c-sage); background: var(--c-sage-lite); }
.a11y-opt.active { border-color: var(--c-sage-dark); background: var(--c-sage-lite); color: var(--c-sage-dark); }
.a11y-size {
  display: flex; gap: var(--sp-3); align-items: center; justify-content: space-between;
  padding: var(--sp-3) var(--sp-5); border-top: 1px solid var(--c-border-lt);
  font-size: var(--t-sm); color: var(--c-text); font-weight: var(--fw-med);
}
.a11y-size-btns { display: flex; gap: var(--sp-2); }
.a11y-size-btn {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--c-cream-2); border: 1px solid var(--c-border);
  font-size: 1.1rem; font-weight: var(--fw-bold); color: var(--c-text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); cursor: pointer;
}
.a11y-size-btn:hover { background: var(--c-sage); color: #fff; border-color: var(--c-sage); }
.a11y-reset {
  display: block; width: calc(100% - 2.5rem);
  margin: 0 var(--sp-5) var(--sp-4);
  padding: var(--sp-3); background: var(--c-cream-2);
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  font-size: var(--t-sm); color: var(--c-text-muted);
  text-align: center; transition: all var(--ease); cursor: pointer;
}
.a11y-reset:hover { background: #fff0f0; border-color: #f9a8a8; color: #c00; }
body.a11y--hc { filter: contrast(1.5); }
body.a11y--gs { filter: grayscale(1); }
body.a11y--ul a { text-decoration: underline !important; }
body.a11y--na *, body.a11y--na *::before, body.a11y--na *::after { animation-duration: .001s !important; transition-duration: .001s !important; }

/* ══════════════════════════════
   Scroll Animations
   ══════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in--d1 { transition-delay: .1s; }
.fade-in--d2 { transition-delay: .2s; }
.fade-in--d3 { transition-delay: .3s; }

/* ══════════════════════════════
   Responsive
   ══════════════════════════════ */
@media (max-width: 1024px) {
  :root { --t-hero: 3.5rem; --t-3xl: 2.5rem; --t-2xl: 2rem; --section-y: 5.5rem; --sp-24: 5rem; --sp-20: 4rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { gap: var(--sp-12); }
  .split__img img { height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --t-hero: 2.75rem; --t-3xl: 2rem; --t-2xl: 1.75rem; --section-y: 4rem; --sp-20: 3rem; --sp-16: 2.5rem; --sp-12: 2rem; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split__img { order: -1; }
  .split__img img { height: 320px; }
  .split__img::before, .split__img::after { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .stat-item { flex: 0 0 50%; padding-inline: var(--sp-4); padding-block: var(--sp-5); }
  .stat-item + .stat-item::before { display: none; }
}
@media (max-width: 640px) {
  :root { --t-hero: 2.25rem; --t-2xl: 1.5rem; --section-y: 3.5rem; --sp-24: 3.5rem; }
  .site-nav, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .wa-float__label { display: none; }
  .wa-float { padding: var(--sp-4); }
  .page-banner__title { font-size: var(--t-2xl); }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { transition: none; opacity: 1; transform: none; }
  .wa-float::before { animation: none; }
}
