/* ═══════════════════════════════════════════════
   RITAB — Professional Beauty Clinic Theme
   Design: Editorial Luxury · RTL Hebrew
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Palette */
  --ivory: #FAF7F2;
  --cream: #F2EAE0;
  --beige: #E6D9CA;
  --mink: #C9A882;
  --mink-dk: #A8825A;
  --ink: #1A1410;
  --ink-2: #2C231A;
  --smoke: #6B5C4E;
  --dust: #9C8C7C;
  --white: #FFFFFF;
  --rose: #C9706A;
  --rose-pale: #FBF1F0;

  /* Typography */
  --serif: 'Frank Ruhl Libre', 'David Libre', Georgia, serif;
  --sans: 'Heebo', 'Arial Hebrew', sans-serif;

  /* Space scale */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --s8: 128px;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(26, 20, 16, .08);
  --sh-md: 0 4px 24px rgba(26, 20, 16, .10);
  --sh-lg: 0 16px 64px rgba(26, 20, 16, .14);
  --sh-xl: 0 32px 96px rgba(26, 20, 16, .18);

  --ease: .35s cubic-bezier(.4, 0, .2, 1);
  --ease-spring: .4s cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  direction: rtl;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--sans);
}

/* ── CONTAINER ── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--s4);
}

.wrap--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--s4);
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mink);
}

.eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: var(--mink);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.15;
}

.display {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.headline {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.01em;
}

.title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--smoke);
}

.body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--smoke);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-mink {
  background: var(--mink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 168, 130, .35);
}

.btn-mink:hover {
  background: var(--mink-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 130, .45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--beige);
}

.btn-outline:hover {
  border-color: var(--ink);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .5);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 13px;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 998;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

/* Scrolled: add shadow lift */
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
}

/* ─── Layout ─────────────────────────── */
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}

/* ─── Logo ───────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.01em;
  transition: color .3s;
}

.logo-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--dust);
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .3s;
}


/* ─── Nav ────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 0;
}

/* wp_nav_menu outputs <li> — strip list appearance */
.site-nav li {
  list-style: none;
  display: flex;
  align-items: center;
}

.site-nav a,
.site-nav li>a {
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--smoke);
  white-space: nowrap;
  transition: color .2s, background .2s;
}

.site-nav a:hover,
.site-nav li>a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, .04);
}

/* ─── Hamburger toggle ─────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  order: -1;
  transition: background .2s;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, .05);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}

.site-header.nav-open .nav-toggle .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile-only actions (inside hamburger panel) ─── */
.nav-mobile-actions {
  display: none;
}

/* ─── Right actions ─────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Language pill */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 1px;
  background: rgba(0, 0, 0, .05);
  border-radius: 100px;
  padding: 2px;
}

.lang-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--smoke);
  line-height: 1.2;
  transition: color .2s, background .2s;
}

.lang-btn--active {
  background: var(--mink);
  color: #fff !important;
  box-shadow: 0 1px 8px rgba(201, 168, 130, .5);
}

.lang-btn:not(.lang-btn--active):hover {
  background: rgba(0, 0, 0, .05);
  color: var(--ink);
}

/* Phone */
.hdr-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--smoke);
  white-space: nowrap;
  transition: color .2s;
}

.hdr-phone:hover {
  color: var(--mink);
}

/* WhatsApp */
.hdr-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.hdr-wa:hover {
  background: #1DAA56;
  color: #fff;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #2C1E28;
  /* fallback while image loads */
}

/* Full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  /* keep Rita's face visible */
  filter: brightness(.92) saturate(1.05);
  z-index: 0;
}

/* Multi-layer overlay for readability + drama */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* dark bottom band where text lives */
    linear-gradient(to top,
      rgba(20, 12, 16, .96) 0%,
      rgba(20, 12, 16, .80) 22%,
      rgba(20, 12, 16, .45) 45%,
      rgba(20, 12, 16, .10) 68%,
      transparent 100%),
    /* right-side (RTL start) dark zone for text column */
    linear-gradient(to left,
      rgba(20, 12, 16, .75) 0%,
      rgba(20, 12, 16, .40) 35%,
      transparent 60%);
}

/* Content: sits above overlays */
.hero-body {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: var(--s7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--s6);
  width: 100%;
}

/* Pill eyebrow tag */
.hero-pill {
  grid-column: 2;
  /* RTL: column 2 is visual right = RTL start */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 128, 152, .18);
  border: 1px solid rgba(200, 128, 152, .4);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
  width: fit-content;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200, 128, 152, .3);
  animation: heroPulse 2.2s ease-in-out infinite;
}

@keyframes heroPulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(200, 128, 152, .3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(200, 128, 152, .1);
  }
}

/* Title */
.hero-title {
  grid-column: 2;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}

.hero-title em {
  font-style: normal;
  display: block;
  color: #ffffff;
  /* pulled from clinic walls */
}

/* Description */
.hero-desc {
  grid-column: 2;
  font-size: 16px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
  max-width: 460px;
}

/* CTA row */
.hero-actions {
  grid-column: 2;
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}

.btn-clinic {
  background: #C88098;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(200, 128, 152, .45);
}

.btn-clinic:hover {
  background: #B06A80;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 128, 152, .55);
}

/* Stats */
.hero-stats {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: var(--s4);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat {
  text-align: center;
  padding: 0 var(--s4);
}

.hero-stat:first-child {
  padding-right: 0;
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-num sup {
  font-size: .5em;
  vertical-align: super;
  color: #C88098;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .07em;
  margin-top: 5px;
}

/* Google rating badge — floats bottom-left over the clinic image */
.hero-rating-badge {
  position: absolute;
  bottom: var(--s5);
  left: var(--s5);
  z-index: 3;
  background: rgba(250, 247, 242, .9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--sh-xl);
  animation: badgeFloat .9s var(--ease-spring) 1.2s both;
}

@keyframes badgeFloat {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rating-stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.rating-sub {
  font-size: 12px;
  color: var(--dust);
  margin-top: 3px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  animation: scrollHint 2s ease-in-out 2s infinite;
}

@keyframes scrollHint {

  0%,
  100% {
    opacity: .35;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: .7;
    transform: translateX(-50%) translateY(5px);
  }
}

/* ── TICKER ── */
.ticker {
  background: var(--mink);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--mink-dk);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  opacity: .95;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services-section {
  padding: var(--s8) 0;
  background: var(--ivory);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s6);
  gap: var(--s4);
}

.section-head .headline {
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--beige);
  border: 2px solid var(--beige);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.svc-card {
  background: var(--ivory);
  padding: var(--s5) var(--s4);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
  cursor: pointer;
}

.svc-card:hover {
  background: var(--white);
}

.svc-card:hover .svc-num {
  opacity: .06;
}

.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: translate(-4px, -4px);
}

.svc-card:hover .svc-img-thumb {
  transform: scale(1.05);
}

.svc-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--ink);
  opacity: .04;
  line-height: 1;
  position: absolute;
  top: var(--s3);
  right: var(--s4);
  transition: var(--ease);
  pointer-events: none;
  user-select: none;
}

.svc-img-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: var(--s3);
  transition: transform .55s ease;
  flex-shrink: 0;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mink);
  padding: 4px 12px;
  margin-bottom: var(--s2);
  width: fit-content;
}

.svc-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--s2);
  flex: 1;
}

.svc-desc {
  font-size: 13px;
  color: var(--dust);
  line-height: 1.65;
  margin-bottom: var(--s3);
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mink);
  opacity: 0;
  transition: var(--ease);
}

/* ── STRETCHED LINK — whole card clickable ── */

/* 1. Card is the containing block for the ::after overlay */
.service-card,
.svc-card {
  position: relative;
  cursor: pointer;
}

/* 2. The link itself must NOT be position:relative — otherwise
      inset:0 would size the ::after to the link, not the card */
.svc-link--stretched {
  position: static;
}

/* 3. The ::after is transparent and covers the full card */
.svc-link--stretched::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 4. All visible card content sits above the overlay so it renders
      on top, but since the overlay is transparent it looks normal.
      Clicks land on ::after (z-index 1) because it's the topmost
      layer — unless the element itself has a higher z-index. */
.svc-card .svc-tag,
.svc-card .svc-name,
.svc-card .svc-desc,
.svc-card .svc-img-thumb,
.svc-card .svc-num,
.service-card .svc-label,
.service-card .svc-img,
.service-card .svc-name,
.service-card .svc-desc {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Arrow stays above overlay and clickable area is the ::after */
.svc-card .svc-arrow {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Wide card variants (spans 2 cols) */
.svc-card--wide {
  grid-column: span 2;
  flex-direction: row;
  gap: var(--s4);
  align-items: center;
}

.svc-card--wide .svc-img-thumb {
  width: 48%;
  aspect-ratio: 4/3;
  margin-bottom: 0;
  flex-shrink: 0;
}

.svc-card--wide .svc-body {
  flex: 1;
}

/* ── NUMBERS BAND ── */
.numbers-band {
  background: var(--ink);
  padding: var(--s6) 0;
}

.numbers-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}

.num-item {
  background: var(--ink);
  padding: var(--s5) var(--s4);
  text-align: center;
}

.num-value {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}

.num-value span {
  color: var(--mink);
}

.num-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── SPLIT ABOUT ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.about-img-panel {
  position: relative;
  overflow: hidden;
}

.about-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, .7) 0%, transparent 60%);
}

.about-img-caption {
  position: absolute;
  bottom: var(--s4);
  right: var(--s4);
  left: var(--s4);
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 20px 24px;
}

.about-img-caption strong {
  font-family: var(--serif);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.about-img-caption span {
  font-size: 13px;
  color: var(--smoke);
}

.about-text-panel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s7) var(--s6);
}

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--s4) 0 var(--s5);
}

.cred {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--sh-sm);
}

.cred::before {
  content: '✓';
  color: var(--mink);
  font-weight: 900;
  font-size: 12px;
}

.about-body {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.82;
  margin-bottom: var(--s4);
}

/* ── PROCESS ── */
.process-section {
  padding: var(--s8) 0;
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: var(--s5) var(--s4) var(--s4);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--r-lg);
  transition: var(--ease);
}

.process-card:not(:last-child)::after {
  content: '←';
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--beige);
  z-index: 2;
}

.process-card:hover {
  border-color: var(--mink);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.process-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--mink);
  letter-spacing: .06em;
  margin-bottom: var(--s3);
}

.process-num::before {
  counter-increment: step;
  content: "0" counter(step);
}

.process-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(201, 168, 130, .10) 0%, rgba(201, 168, 130, .22) 100%);
  border: 1px solid rgba(201, 168, 130, .28);
  border-radius: 14px;
  margin-bottom: var(--s3);
  color: var(--mink-dk);
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}

.process-card:hover .process-icon {
  background: linear-gradient(140deg, rgba(201, 168, 130, .20) 0%, rgba(201, 168, 130, .36) 100%);
  border-color: rgba(201, 168, 130, .52);
  transform: scale(1.06);
}

.process-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--s2);
}

.process-desc {
  font-size: 13px;
  color: var(--dust);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.reviews-section {
  padding: var(--s8) 0;
  background: var(--ink-2);
}

.reviews-eyebrow {
  color: var(--mink) !important;
}

.reviews-eyebrow::before {
  background: var(--mink) !important;
}

.reviews-headline {
  color: var(--white);
}

.reviews-plugin-wrap {
  margin-top: var(--s6);
  /* Reset any dark-section overrides so plugin widgets render on their own background */
  color: var(--ink);
}

.reviews-plugin-wrap * {
  direction: inherit;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s6);
}

.review-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: var(--s5);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(201, 168, 130, .25);
  transform: translateY(-4px);
}

.review-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: var(--s3);
}

.review-quote {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: var(--s4);
  padding-right: 20px;
  position: relative;
}

.review-quote::before {
  content: '\201C';
  position: absolute;
  right: 0;
  top: -12px;
  font-size: 56px;
  color: var(--mink);
  opacity: .35;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--mink), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.review-via {
  font-size: 12px;
  color: rgba(255, 255, 255, .32);
  margin-top: 3px;
}

/* ── CONTACT SPLIT ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-map {
  position: relative;
  min-height: 520px;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(.2) contrast(1.05);
}

.contact-form-panel {
  background: var(--cream);
  padding: var(--s7) var(--s6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin: var(--s5) 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  transition: var(--ease);
}

.contact-row:hover {
  border-color: var(--mink);
  box-shadow: var(--sh-sm);
}

.contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-row-label {
  font-size: 12px;
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-row-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}

.free-cta {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--s5);
  color: var(--white);
  margin-top: var(--s4);
  position: relative;
  overflow: hidden;
}

.free-cta::before {
  content: '₪300';
  position: absolute;
  left: -12px;
  top: -20px;
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 700;
  color: var(--white);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
}

.free-cta h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}

.free-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  margin-bottom: var(--s4);
}

/* ── CONTACT PAGE ── */
.contact-eyebrow {
  margin-bottom: 12px;
}

.contact-banner-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  margin-top: 10px;
  font-weight: 400;
}

/* Info bar */
.contact-info-bar {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: var(--s3) 0;
}

.contact-info-bar__inner {
  display: flex;
  gap: var(--s1);
  justify-content: center;
  flex-wrap: wrap;
}

.cib-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--ease);
  min-width: 180px;
}

a.cib-item:hover {
  background: var(--cream);
}

.cib-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mink-dk);
}

.cib-label {
  font-size: 12px;
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}

.cib-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* Main body */
.contact-page-body {
  padding: var(--s7) 0 var(--s8);
  background: var(--ivory);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s5);
  align-items: start;
}

/* Form card */
.cp-form-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--r-xl);
  padding: var(--s6);
}

.cp-form-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--s2);
}

.cp-form-sub {
  font-size: 14px;
  color: var(--dust);
  margin-bottom: var(--s5);
  line-height: 1.6;
}

.cp-form-wrap {
  margin-bottom: var(--s4);
  text-align: right;
}

/* CF7 form styling */
.cp-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-form-wrap .wpcf7-form-control-wrap {
  display: block;
}

.cp-form-wrap input[type="text"],
.cp-form-wrap input[type="email"],
.cp-form-wrap input[type="tel"],
.cp-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--r-md);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}

.cp-form-wrap input[type="text"]:focus,
.cp-form-wrap input[type="email"]:focus,
.cp-form-wrap input[type="tel"]:focus,
.cp-form-wrap textarea:focus {
  border-color: var(--mink);
  box-shadow: 0 0 0 3px rgba(201, 168, 130, .15);
  background: var(--white);
}

.cp-form-wrap textarea {
  min-height: 130px;
  resize: vertical;
}

.cp-form-wrap input[type="submit"],
.cp-form-wrap .wpcf7-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--mink);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  letter-spacing: .02em;
}

.cp-form-wrap input[type="submit"]:hover,
.cp-form-wrap .wpcf7-submit:hover {
  background: var(--mink-dk);
  transform: translateY(-1px);
}

.cp-form-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
  color: var(--rose);
  margin-top: 4px;
  display: block;
}

.cp-form-wrap .wpcf7-response-output {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  border: none;
  margin: 0;
}

.cp-form-wrap .wpcf7-mail-sent-ok {
  background: rgba(201, 168, 130, .12);
  color: var(--mink-dk);
}

.cp-form-wrap .wpcf7-validation-errors,
.cp-form-wrap .wpcf7-mail-sent-ng {
  background: var(--rose-pale);
  color: var(--rose);
}

.cp-free-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mink-dk);
  font-weight: 600;
  padding: 12px 16px;
  background: rgba(201, 168, 130, .10);
  border: 1px solid rgba(201, 168, 130, .25);
  border-radius: var(--r-md);
}

/* Sidebar */
.cp-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.cp-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--beige);
  aspect-ratio: 4/3;
  position: relative;
}

.cp-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(.15) contrast(1.05);
}

.cp-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.cp-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--ease), transform var(--ease);
}

.cp-social-btn:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.cp-social-btn--wa {
  background: #25D366;
  color: #fff;
}

.cp-social-btn--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.cp-cta-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--s5);
  color: var(--white);
}

.cp-cta-card__icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.cp-cta-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cp-cta-card__body {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .cp-sidebar {
    order: -1;
  }

  .cp-map-wrap {
    aspect-ratio: 16/7;
  }

  .contact-info-bar__inner {
    gap: 0;
  }

  .cib-item {
    min-width: 140px;
    padding: 10px 14px;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .4);
  padding: var(--s6) 0 var(--s5);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--s3);
}

.footer-brand .logo-name {
  font-size: 17px;
}

.footer-brand .logo-tagline {
  margin-top: 3px;
}

.footer-nav {
  display: flex;
  gap: var(--s3);
}

.footer-nav a {
  font-size: 13px;
  transition: var(--ease);
}

.footer-nav a:hover {
  color: var(--mink);
}

.footer-copy {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: var(--s2);
  margin-top: var(--s2);
}

.footer-credit {
  color: rgba(255, 255, 255, .35);
  white-space: nowrap;
}

.footer-credit__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: opacity var(--ease);
}

.footer-credit__link:hover {
  opacity: .75;
}

.footer-credit__logo {
  max-width: 48px;
  height: auto;
  display: inline;
  vertical-align: middle;
  opacity: .7;
  transition: opacity var(--ease);
}

.footer-credit__link:hover .footer-credit__logo {
  opacity: 1;
}

/* ══════════════════════════════════════
   BLOG ARCHIVE
══════════════════════════════════════ */

/* Hero banner */
.blog-hero {
  padding: 120px 0 var(--s6);
  background: var(--ink-2);
}

.blog-hero .eyebrow {
  margin-bottom: var(--s3);
}

.blog-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--s2);
}

.blog-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  max-width: 520px;
}

/* Body */
.blog-body {
  background: var(--ivory);
  padding: var(--s7) 0;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

/* Card */
.post-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}

.post-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

/* Thumbnail */
.post-card__thumb-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  text-decoration: none;
}

.post-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.post-card:hover .post-card__thumb {
  transform: scale(1.04);
}

.post-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
}

.post-card:hover .post-card__thumb-overlay {
  opacity: 1;
}

.post-card__thumb-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dust);
}

.post-card__thumb-icon {
  opacity: .3;
}

/* Body */
.post-card__body {
  padding: var(--s3) var(--s3) var(--s4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s2);
}

/* Meta row */
.post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
}

.post-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mink-dk);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 100px;
}

.post-card__date,
.post-card__read {
  font-size: 12px;
  color: var(--dust);
}

.post-card__date::before {
  content: '·';
  margin-left: var(--s1);
}

/* Title */
.post-card__title {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

.post-card__title a:hover {
  color: var(--mink-dk);
}

/* Excerpt */
.post-card__excerpt {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
  flex: 1;
}

/* CTA link */
.post-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mink);
  text-decoration: none;
  letter-spacing: .04em;
  margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}

.post-card__cta:hover {
  color: var(--mink-dk);
  gap: 10px;
}

/* Pagination */
.blog-pagination {
  margin-top: var(--s6);
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: flex;
  list-style: none;
  gap: var(--s1);
  align-items: center;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
  background: var(--white);
  box-shadow: var(--sh-sm);
}

.blog-pagination .page-numbers li a:hover {
  background: var(--mink);
  color: var(--white);
}

.blog-pagination .page-numbers li span.current {
  background: var(--ink);
  color: var(--white);
}

/* Empty state */
.blog-empty {
  text-align: center;
  padding: var(--s7) 0;
}

.blog-empty__icon {
  font-size: 48px;
  margin-bottom: var(--s3);
}

.blog-empty h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: var(--s2);
}

.blog-empty p {
  color: var(--smoke);
  margin-bottom: var(--s4);
}

/* ── Shared post meta utilities ── */
.post-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mink-dk);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 100px;
}

.post-meta-dot {
  color: var(--dust);
  font-size: 13px;
}

.post-meta-text {
  font-size: 13px;
  color: var(--dust);
}

/* ── Featured post ── */
.post-featured {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-bottom: var(--s6);
  background: var(--ink);
}

.post-featured__inner {
  position: relative;
  display: block;
  aspect-ratio: 21/9;
  overflow: hidden;
  text-decoration: none;
}

.post-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.post-featured:hover .post-featured__img {
  transform: scale(1.04);
}

.post-featured__no-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--mink-dk) 100%);
}

.post-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,.9) 0%, rgba(20,14,10,.5) 45%, rgba(20,14,10,.15) 75%, transparent 100%);
}

.post-featured__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s5) var(--s5) var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.post-featured__meta {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
}

.post-featured__body .post-meta-text,
.post-featured__body .post-meta-dot {
  color: rgba(255,255,255,.6);
}

.post-featured__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin: 0;
}

.post-featured__excerpt {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 640px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-featured__cta {
  align-self: flex-start;
  margin-top: var(--s1);
}

/* ── Blog grid label ── */
.blog-grid-label {
  margin-bottom: var(--s4);
}

/* ── Post card — additional classes used in archive.php ── */
.post-card__thumb-link {
  display: block;
  text-decoration: none;
}

.post-card__no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dust);
  opacity: .4;
}

.post-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
}

.post-card:hover .post-card__img-overlay {
  opacity: 1;
}

.post-card__cat-badge {
  position: absolute;
  bottom: var(--s2);
  right: var(--s2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26,20,16,.65);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 100px;
}

.post-card__footer {
  margin-top: auto;
  padding-top: var(--s2);
  border-top: 1px solid var(--cream);
}

/* ── Pagination (array type) ── */
.blog-pagination__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  flex-wrap: wrap;
}

.blog-pagination__item {
  display: contents;
}

.blog-pagination__item a,
.blog-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
  gap: 6px;
}

.blog-pagination__item a:hover {
  background: var(--mink);
  color: var(--white);
  box-shadow: var(--sh-md);
}

.blog-pagination__item span.current {
  background: var(--ink);
  color: var(--white);
}

.blog-pagination__item .dots {
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  color: var(--dust);
}

/* ── Empty state (updated) ── */
.blog-empty__ring {
  margin-bottom: var(--s4);
  color: var(--dust);
}

.blog-empty__title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: var(--s2);
}

.blog-empty__text {
  color: var(--smoke);
  margin-bottom: var(--s4);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-featured__inner {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding: 100px 0 var(--s5);
  }
  .post-featured__inner {
    aspect-ratio: 4/3;
  }
  .post-featured__body {
    padding: var(--s3) var(--s3) var(--s4);
  }
  .post-featured__title {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: var(--s4);
  left: var(--s4);
  z-index: 9997;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1FAF5E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(31, 175, 94, .45);
  transition: var(--ease);
  animation: waFloat 3.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 10px 36px rgba(31, 175, 94, .6);
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── SINGLE POST ── */
.post-page__banner {
  padding: 128px 0 var(--s6);
  background: var(--ink-2);
}

.post-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
  transition: color .2s;
}

.post-page__back:hover {
  color: rgba(255, 255, 255, .9);
}

.post-page__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white) !important;
  line-height: 1.2;
  max-width: 760px;
}

.post-page__body {
  padding: var(--s7) var(--s4);
}

.post-page__thumb-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  max-height: 480px;
  margin-bottom: var(--s6);
}

.post-page__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-page__footer-cta {
  display: flex;
  gap: var(--s2);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--beige);
}

/* ── Entry content (Hebrew + Russian posts) ── */
.entry-content {
  font-size: 17px;
  line-height: 1.85;
  color: #3D2E25;
}

.entry-content>*+* {
  margin-top: 1.4em;
}

.entry-content h2,
.entry-content h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.5em;
  line-height: 1.3;
}

.entry-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2em;
}

.entry-content ul,
.entry-content ol {
  padding-inline-start: 24px;
}

.entry-content li {
  margin-top: .6em;
}

.entry-content li::marker {
  color: var(--mink);
}

.entry-content a {
  color: var(--mink);
  border-bottom: 1px solid rgba(201, 168, 130, .35);
  transition: border-color .2s;
}

.entry-content a:hover {
  border-color: var(--mink);
}

.entry-content img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  max-width: 100%;
}

.entry-content iframe {
  max-width: 100%;
  display: block;
}

/* Responsive 16:9 / portrait YouTube embeds */
.entry-content .wp-block-embed__wrapper,
.entry-content .wp-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.entry-content .wp-block-embed__wrapper iframe,
.entry-content .wp-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.entry-content blockquote {
  border-inline-start: 3px solid var(--mink);
  padding-inline-start: 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--smoke);
  margin: 2em 0;
}

.entry-content strong {
  color: var(--ink);
}

.entry-content em {
  color: var(--smoke);
}

/* ── 404 ── */
.not-found {
  min-height: 100svh;
  padding-top: 76px;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found .big {
  font-family: var(--serif);
  font-size: min(220px, 30vw);
  font-weight: 700;
  line-height: .9;
  color: rgba(255, 255, 255, .06);
}

.not-found h1 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--white);
  margin-bottom: var(--s2);
}

.not-found p {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: var(--s5);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .hero-pill,
  .hero-title,
  .hero-desc,
  .hero-actions,
  .hero-stats {
    grid-column: 1;
  }

  .hero-overlay {
    background: linear-gradient(to top,
        rgba(20, 12, 16, .95) 0%,
        rgba(20, 12, 16, .75) 35%,
        rgba(20, 12, 16, .3) 70%,
        transparent 100%);
  }

  .hero-rating-badge {
    display: none;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-img-panel {
    height: 480px;
    position: relative;
  }

  .about-img-panel img {
    position: absolute;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 360px;
    position: relative;
  }

  .contact-map iframe {
    position: absolute;
  }

  .numbers-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card::after {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--white, #fff);
    border-top: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
    padding: 12px 0 20px;
    gap: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s, visibility 0s .25s;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .25s, transform .25s, visibility 0s 0s;
  }

  .site-nav a,
  .site-nav li>a {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 15px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
  }

  .site-nav li {
    flex-direction: column;
  }

  .header-right {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px 4px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: 8px;
  }

  .nav-mobile-actions .hdr-phone {
    font-size: 14px;
    gap: 6px;
  }

  .hero-panel-img {
    display: none;
  }
}

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

  .svc-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .svc-card--wide .svc-img-thumb {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .numbers-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: var(--s4);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-text-panel {
    padding: var(--s6) var(--s4);
  }

  .contact-form-panel {
    padding: var(--s6) var(--s4);
  }
}

/* ══════════════════════════════════════════
   GALLERY PAGE (page-gallery.php)
   ══════════════════════════════════════════ */

/* ── Hero ── */
.gal-hero {
  position: relative;
  padding: 160px 0 var(--s6);
  text-align: center;
  overflow: hidden;
}

.gal-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, #3a2a1a 100%);
  z-index: 0;
}

.gal-hero > .wrap { position: relative; z-index: 1; }

.gal-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: var(--s2) 0;
}

.gal-hero__sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Body ── */
.gal-intro {
  padding: var(--s5) 1rem var(--s4);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 1rem;
  color: #444;
  text-align: right;
}
.gal-intro p { margin-bottom: 0.75em; }

.gal-body {
  background: var(--ivory);
  padding: var(--s6) 0 var(--s8);
}

/* ── Grid ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

/* ── Card ── */
.gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  background: var(--white);
  transition: box-shadow var(--ease), transform var(--ease);
}

.gal-item:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.gal-item__img-wrap {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  line-height: 0;
}

.gal-item__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.gal-item:hover .gal-item__img {
  transform: scale(1.03);
}

/* ── Caption ── */
.gal-item__caption {
  font-size: 13px;
  color: var(--smoke);
  text-align: center;
  padding: var(--s2) var(--s2) var(--s2);
  line-height: 1.5;
}

/* ── Empty ── */
.gal-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--smoke);
  font-size: 16px;
  padding: var(--s7) 0;
}

/* ── Lightbox ── */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.gal-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.gal-lightbox__img-wrap {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  display: flex;
  align-items: center;
}

.gal-lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-xl);
}

.gal-lightbox__close,
.gal-lightbox__prev,
.gal-lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease);
  backdrop-filter: blur(8px);
}

.gal-lightbox__close:hover,
.gal-lightbox__prev:hover,
.gal-lightbox__next:hover {
  background: rgba(255,255,255,.25);
}

.gal-lightbox__close { top: var(--s3); left: var(--s3); }
.gal-lightbox__prev  { right: var(--s3); top: 50%; transform: translateY(-50%); }
.gal-lightbox__next  { left: var(--s3); top: 50%; transform: translateY(-50%); }

.gal-lightbox__counter {
  position: absolute;
  bottom: var(--s3);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-family: var(--sans);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gal-grid {
    grid-template-columns: 1fr;
    gap: var(--s2);
  }
  .gal-hero {
    padding: 120px 0 var(--s5);
  }
  .gal-lightbox__prev { right: var(--s2); }
  .gal-lightbox__next { left: var(--s2); }
}
