/*
Theme Name: Team Clinic 360°
Theme URI: https://teamclinic360.co.il
Author: Team Clinic 360°
Author URI: https://teamclinic360.co.il
Description: ערכת נושא יוקרתית למרפאת Team Clinic 360°. מותאמת אישית עם עיצוב Smeg מינימליסטי, פונטים Fraunces ו-Heebo, ותמיכה מלאה בעברית RTL.
Version: 1.6.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: teamclinic360
Tags: rtl-language-support, custom-logo, custom-menu, featured-images, block-editor-styles, threaded-comments
*/

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6e6e6e;
  --muted-light: #a8a8a8;
  --line: #ececec;
  --line-soft: #f3f3f3;
  --mint: #a8d4bf;
  --mint-light: #c8e2d3;
  --mint-pale: #ecf5f0;
  --mint-dark: #6fa68a;
  --mint-deeper: #3d6b56;
  --shadow-sm: 0 2px 12px rgba(10,10,10,0.04);
  --shadow-md: 0 12px 32px rgba(10,10,10,0.06);
  --shadow-lg: 0 28px 56px rgba(10,10,10,0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

em {
  font-family: 'Heebo', sans-serif;
  font-style: normal;
  color: var(--mint-deeper);
  font-weight: 300;
}

::selection { background: var(--mint); color: var(--black); }

*:focus-visible {
  outline: 2px solid var(--mint-deeper);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  z-index: 9999;
  text-decoration: none;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 40px; }

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

/* WordPress core classes */
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; margin-left: 20px; }
.alignleft { float: left; margin-right: 20px; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.topbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 26px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), border-color 0.35s var(--ease);
}
.topbar.shrunk {
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  height: 44px;
  width: auto;
  transition: height 0.35s var(--ease);
}
.topbar.shrunk .brand-logo { height: 34px; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
  direction: ltr;
  transition: font-size 0.35s var(--ease);
}
.topbar.shrunk .brand-name { font-size: 19px; }
.brand-name span { color: var(--mint-deeper); font-style: italic; }

nav.main-nav { display: flex; gap: 40px; font-size: 15px; }
nav.main-nav ul { list-style: none; display: flex; gap: 40px; }
nav.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--mint-deeper);
  transition: width 0.3s var(--ease);
}
nav.main-nav a:hover { color: var(--mint-deeper); }
nav.main-nav a:hover::after { width: 100%; }
nav.main-nav .current-menu-item > a { color: var(--mint-deeper); }

.top-cta { display: flex; align-items: center; gap: 10px; }
.top-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
.top-phone-icon svg { width: 20px; height: 20px; }
.top-phone-icon:hover {
  background: var(--black);
  color: var(--mint);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--black);
}
.menu-toggle svg { width: 24px; height: 24px; }

#site-content { padding-top: 96px; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 100px 0 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: -180px; left: -240px;
  width: 800px; height: 800px;
  background: radial-gradient(circle at center, var(--mint-pale) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: floatBlob 22s ease-in-out infinite;
  opacity: 0.6;
}
.hero-blob-2 {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(168,212,191,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: floatBlob 28s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
.hero-inner { position: relative; z-index: 3; }

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--mint-deeper);
  font-weight: 600;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--mint-deeper);
}

h1.hero-title {
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 1000px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  color: var(--mint-deeper);
  max-width: 760px;
  margin-bottom: 34px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.hero-subtitle em { font-style: italic; }
.hero-title-seo {
  display: block;
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--mint-deeper);
  letter-spacing: -0.01em;
  margin-top: 16px;
  line-height: 1.25;
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 22px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-sub:last-of-type { margin-bottom: 52px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-block;
  padding: 17px 36px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover {
  background: var(--mint-deeper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.reassure {
  font-size: 15px;
  color: var(--muted);
  margin-top: 32px;
  max-width: 520px;
  font-weight: 300;
}
.hero-tagline {
  margin-top: 44px;
  max-width: 560px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--off-white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-icon { width: 32px; height: 32px; color: var(--mint-deeper); }
.trust-text {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */

.section-head {
  max-width: 760px;
  margin: 0 auto 88px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--mint-deeper);
}
h2.section-title {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 28px;
  line-height: 1.65;
  font-weight: 300;
}

/* ==========================================================================
   PILLARS / DIFFERENCE
   ========================================================================== */

.difference { padding: 140px 0; background: var(--white); }
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.pillar {
  padding: 64px 52px;
  background: var(--white);
  transition: background 0.4s var(--ease);
}
.pillar:hover { background: var(--mint-pale); }
.pillar-icon {
  width: 44px; height: 44px;
  color: var(--mint-deeper);
  margin-bottom: 28px;
}
.pillar h3 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.pillar p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}
.pillar-wide { grid-column: 1 / -1; }

/* ==========================================================================
   APPROACH
   ========================================================================== */

.approach {
  padding: 140px 0;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.approach-text h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.approach-text p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.75;
  font-weight: 300;
}
.approach-img-wrap { position: relative; }
.approach-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mint-pale);
  display: block;
}
.approach-img-placeholder {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, var(--mint-pale) 0%, var(--mint-light) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--mint-deeper);
}
.approach-img-placeholder svg { width: 56px; height: 56px; opacity: 0.5; }
.approach-img-placeholder span {
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: 17px;
  opacity: 0.7;
}
.approach-img-frame {
  position: absolute;
  inset: 20px 20px -20px -20px;
  border: 1px solid var(--mint);
  border-radius: 6px;
  z-index: -1;
}

/* ==========================================================================
   TEAM
   ========================================================================== */

.team { padding: 140px 0; background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
}
.doctor-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line-soft);
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.doctor-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  background: var(--mint-pale);
  display: block;
  transition: transform 0.8s var(--ease);
}
.doctor-card:hover .doctor-photo { transform: scale(1.03); }
.doctor-photo-placeholder-card {
  background: linear-gradient(135deg, var(--mint-pale) 0%, var(--mint-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-deeper);
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: 17px;
  height: 420px;
}
.doctor-info { padding: 40px 40px 44px; }
.doctor-name-en {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  direction: ltr;
  text-align: right;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.doctor-name {
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  text-align: right;
  margin-bottom: 14px;
  direction: rtl;
}
.doctor-role {
  font-size: 12px;
  color: var(--mint-deeper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 24px;
}
.doctor-bio {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
}
.doctor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--mint-deeper);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  transition: gap 0.3s var(--ease);
}
.doctor-link::after { content: '←'; font-size: 16px; }
.doctor-card:hover .doctor-link { gap: 14px; }
.doctor-card-centered {
  grid-column: 1 / -1;
  max-width: 510px;
  margin: 0 auto;
  width: 100%;
}
.team-extras {
  margin-top: 60px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.team-extras strong { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   TREATMENTS
   ========================================================================== */

.treat { padding: 140px 0; background: var(--white); }
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.treat-item {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.3s var(--ease);
}
.treat-item:hover { background: var(--mint-pale); }
/* If 13 items - the 13th is alone in last row, center it */
.treat-grid > .treat-item:last-child:nth-child(3n+1) {
  grid-column: 2 / 3;
}
.treat-item h4 {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.3;
}
.treat-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.treat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}
.treat-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--mint-deeper);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.treat-links a:hover {
  background: var(--mint-pale);
  border-color: var(--mint-deeper);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
  padding: 140px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,212,191,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-head h2 { color: var(--white); }
.testimonials .eyebrow { color: var(--mint); }
.testimonials .eyebrow::before,
.testimonials .eyebrow::after { background: var(--mint); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 36px;
  border-radius: 8px;
  transition: all 0.4s var(--ease);
}
.testimonial:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--mint);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 24px;
  color: var(--mint);
}
.testimonial-stars svg { width: 17px; height: 17px; }
.testimonial-text {
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  font-weight: 400;
}
.testimonial-author {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.testimonial-author strong {
  color: var(--mint);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */

.philosophy {
  padding: 140px 0;
  background: var(--mint-pale);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '"';
  position: absolute;
  top: 40px; left: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 400px;
  color: var(--mint-light);
  line-height: 1;
  opacity: 0.3;
  z-index: 0;
}
.philosophy-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.philosophy .eyebrow { justify-content: center; }
.philosophy .eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--mint-deeper);
}
.philosophy h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-bottom: 40px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.philosophy p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 26px;
  font-weight: 300;
}
.philosophy .closing {
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: 26px;
  color: var(--black);
  margin-top: 52px;
  font-weight: 400;
}
.mazori-img {
  width: 110px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { padding: 140px 0; background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 32px 0;
  text-align: right;
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
  font-weight: 400;
}
.faq-question:hover { color: var(--mint-deeper); }
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; }
.faq-item.open .faq-icon {
  background: var(--mint);
  border-color: var(--mint);
}
.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 32px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 700px;
}
.faq-item.open .faq-answer { max-height: 800px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact { padding: 140px 0; background: var(--black); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact .eyebrow { color: var(--mint); }
.contact .eyebrow::before { background: var(--mint); }
.contact h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  color: var(--white);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.contact h2 em { color: var(--mint); }
.contact-lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 60px;
  max-width: 480px;
  font-weight: 300;
}
.contact-detail {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-detail:last-child { border-bottom: none; }
.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint);
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-value {
  font-family: 'Heebo', sans-serif;
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  direction: ltr;
  display: inline-block;
  transition: color 0.2s;
}
.contact-value-text {
  font-size: 17px;
  color: var(--white);
  line-height: 1.6;
}
a.contact-value:hover { color: var(--mint); }

.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px;
  border-radius: 10px;
}
.form-card h3 {
  font-size: 26px;
  margin-bottom: 32px;
  color: var(--white);
  font-weight: 400;
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  transition: all 0.25s var(--ease);
  border-radius: 6px;
  direction: rtl;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(255,255,255,0.05);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn-submit {
  width: 100%;
  background: var(--mint);
  color: var(--black);
  border: none;
  padding: 17px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  margin-top: 10px;
  transition: all 0.25s var(--ease);
}
.form-card .btn-submit:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.form-message {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 15px;
}
.form-message.success {
  background: rgba(168,212,191,0.15);
  border: 1px solid var(--mint);
  color: var(--mint);
}
.form-message.error {
  background: rgba(255,100,100,0.1);
  border: 1px solid #ff6464;
  color: #ff9999;
}

/* ==========================================================================
   CLOSING
   ========================================================================== */

.closing-block {
  padding: 120px 0;
  text-align: center;
  background: var(--mint-pale);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
}
.closing-text {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}
.closing-block .line {
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.35;
  font-weight: 400;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer.site-footer {
  padding: 64px 0 44px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 14px;
}
footer .brand-name {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 18px;
  display: inline-block;
}
footer .brand-name span { color: var(--mint); }
footer .moto {
  font-size: 12px;
  color: var(--mint);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  direction: ltr;
  text-transform: uppercase;
}
footer .foot-leadership {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  letter-spacing: 0.01em;
}
footer .foot-line {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--mint); }

/* ==========================================================================
   FAB / WHATSAPP
   ========================================================================== */

.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
}
.fab svg { width: 26px; height: 26px; }
.fab-whatsapp {
  background: var(--black);
  color: var(--white);
}
.fab-whatsapp:hover {
  background: var(--mint-deeper);
  transform: scale(1.08);
}
.fab-call {
  background: var(--mint-deeper);
  color: var(--white);
}
.fab-call:hover {
  background: var(--black);
  transform: scale(1.08);
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-weight: 500;
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--black);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.fab:hover .fab-tooltip { opacity: 1; }
.fab-pulse {
  display: none; /* calm, static WhatsApp button - no attention-grabbing pulse */
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 540px;
  width: 100%;
  padding: 56px 52px 48px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 20px; left: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.modal-close svg { width: 16px; height: 16px; }
.modal h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--black);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.modal .lede {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 300;
}
.modal .field input,
.modal .field textarea {
  background: var(--off-white);
  border-color: var(--line);
  color: var(--ink);
}
.modal .field label { color: var(--ink-soft); }
.modal .field input:focus,
.modal .field textarea:focus {
  border-color: var(--mint-deeper);
  background: var(--white);
}
.modal .btn-submit {
  background: var(--black);
  color: var(--white);
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
  transition: background 0.25s var(--ease);
}
.modal .btn-submit:hover { background: var(--mint-deeper); }
body.modal-open { overflow: hidden; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   SINGLE DOCTOR PAGE
   ========================================================================== */

.breadcrumb {
  padding: 28px 0 0;
  background: var(--white);
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--mint-deeper); }
.breadcrumb .sep { margin: 0 10px; color: var(--muted-light); }
.breadcrumb .current { color: var(--ink); }

.doc-hero {
  padding: 60px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.doc-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.doc-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 6px;
  direction: ltr;
  text-align: right;
  letter-spacing: -0.02em;
}
.doc-name-he {
  font-family: 'Heebo', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 18px;
  direction: rtl;
}
.doc-name-en {
  display: none;
}
.doc-role-en {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  direction: ltr;
}
.doc-title {
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.doc-title strong { color: var(--black); font-weight: 500; }
.doc-photo-wrap { position: relative; }
.doc-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  background: var(--mint-pale);
  display: block;
}
.doc-photo-frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--mint);
  border-radius: 6px;
  z-index: -1;
}

.intro-block {
  padding: 110px 0 100px;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-block .container-narrow { text-align: right; }
.intro-block h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 36px;
  line-height: 1.2;
}
.intro-block p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.8;
  font-weight: 300;
}
.intro-callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 3px solid var(--mint-deeper);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 4px;
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.5;
}

.doc-approach {
  padding: 120px 0;
  background: var(--white);
}
.doc-approach h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 36px;
  text-align: right;
}
.doc-approach p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.8;
  font-weight: 300;
}
.doc-approach h3 {
  font-size: 26px;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--black);
  font-weight: 400;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.spec-item {
  background: var(--white);
  padding: 36px 30px;
  transition: background 0.3s;
}
.spec-item:hover { background: var(--mint-pale); }
.spec-item h4 {
  font-family: 'Heebo', sans-serif;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.3;
}
.spec-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.pull-quote {
  padding: 110px 0;
  background: var(--mint-pale);
  text-align: center;
}
.pull-quote .container-narrow { max-width: 760px; }
.pull-quote .mark {
  font-family: 'Heebo', sans-serif;
  font-size: 100px;
  color: var(--mint-deeper);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.5;
  font-style: italic;
}
.pull-quote .quote-text {
  font-family: 'Heebo', sans-serif;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--ink);
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 24px;
}
.pull-quote .quote-attr {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint-deeper);
  font-weight: 600;
}

.for-whom { padding: 120px 0; background: var(--white); }
.for-whom .container-narrow { text-align: right; }
.for-whom h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 36px;
}
.for-whom .lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 44px;
  line-height: 1.7;
  font-weight: 300;
}
.for-whom-list { list-style: none; padding: 0; }
.for-whom-list li {
  position: relative;
  padding: 18px 36px 18px 0;
  font-size: 17px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.6;
}
.for-whom-list li:last-child { border-bottom: none; }
.for-whom-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 28px;
  width: 18px;
  height: 1px;
  background: var(--mint-deeper);
}

.other-docs { padding: 110px 0; background: var(--off-white); }
.other-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.other-doc {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  display: block;
  border: 1px solid var(--line);
}
.other-doc:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(10, 10, 10, 0.06);
  border-color: var(--mint);
}
.other-doc img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  background: var(--mint-pale);
  display: block;
}
.other-doc-info { padding: 22px 22px 26px; }
.other-doc-name {
  font-family: 'Heebo', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  direction: ltr;
  text-align: right;
}
.other-doc-role {
  font-size: 11px;
  color: var(--mint-deeper);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* ==========================================================================
   HOMEPAGE - PACE POINTS / DUAL SPECIALIST / WHO-FOR CATEGORIES
   ========================================================================== */

/* 3 scannable check points in the pace section */
.pace-points {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.pace-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 18px;
}
.pace-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--mint-pale);
  position: relative;
}
.pace-check::after {
  content: "";
  position: absolute;
  top: 8px;
  inset-inline-start: 8px;
  width: 9px;
  height: 5px;
  border-inline-start: 2px solid var(--mint-deeper);
  border-bottom: 2px solid var(--mint-deeper);
  transform: rotate(-45deg);
}

/* Standalone two-specialists highlight box */
.dual-specialist { padding: 40px 0; }
.dual-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--mint-pale);
  border: 1px solid #d8e8e0;
  border-radius: 20px;
  padding: 52px 56px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(61, 107, 86, 0.07);
}
.dual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--mint-deeper);
  margin-bottom: 24px;
}
.dual-badge svg { width: 28px; height: 28px; }
.dual-card h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.dual-card h2 em { font-style: italic; color: var(--mint-deeper); }
.dual-card p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 14px;
}
.dual-card p:last-child { margin-bottom: 0; }

/* Who-it's-for, 3 categories */
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.who-for-cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px;
}
.who-for-cat h3 {
  font-size: 21px;
  font-weight: 400;
  color: var(--mint-deeper);
  margin-bottom: 14px;
}
.who-for-cat p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================================
   SERVICE PAGES (SEO landing pages)
   ========================================================================== */

.service-page { padding: 60px 0 120px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 48px;
}
.breadcrumbs a { color: var(--mint-deeper); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .bc-sep { color: var(--line); }
.breadcrumbs .bc-current { color: var(--ink-soft); }

.service-h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.service-lead p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}
.service-lead { margin-bottom: 24px; }

.service-section { margin-top: 56px; }
.service-section h2,
.service-faq h2,
.service-related h2,
.service-cta h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.service-section p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.service-list li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
}
.service-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 4px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-deeper);
}

.service-faq { margin-top: 64px; }

.service-related { margin-top: 64px; }
.service-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-related-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--mint-deeper);
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.service-related-links a:hover {
  background: var(--mint-pale);
  border-color: var(--mint-deeper);
}

.service-cta {
  margin-top: 64px;
  padding: 44px;
  background: var(--mint-pale);
  border-radius: 16px;
}
.service-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.service-cta .cta-row { margin-bottom: 24px; }
.service-disclaimer {
  font-size: 14px !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 940px) {
  .container, .container-narrow { padding: 0 24px; }
  
  /* HIDE menu by default on mobile (override any inline) */
  nav.main-nav {
    display: none !important;
  }
  
  /* When opened - drop DOWN below topbar, full width, vertical */
  nav.main-nav.is-open {
    display: flex !important;
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 24px 28px;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    z-index: 99;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  nav.main-nav.is-open ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    list-style: none;
    width: 100%;
  }
  nav.main-nav.is-open ul li {
    border-bottom: 1px solid var(--line-soft);
  }
  nav.main-nav.is-open ul li:last-child {
    border-bottom: none;
  }
  nav.main-nav.is-open a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
    color: var(--ink);
    font-weight: 400;
  }
  nav.main-nav.is-open a::after { display: none; }
  
  .menu-toggle { display: block; }
  .menu-toggle.is-active svg path {
    /* X shape when opened */
    transform: rotate(90deg);
    transform-origin: center;
  }
  .pillars { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 56px; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .treat-grid { grid-template-columns: 1fr; }
  .who-for-grid { grid-template-columns: 1fr; }
  .dual-card { padding: 36px 26px; }
  .pace-points li { font-size: 16px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .doc-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .spec-grid { grid-template-columns: 1fr; }
  .other-docs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0 70px; }
  .service-cta { padding: 28px; }
  .difference, .approach, .team, .treat, .testimonials, .philosophy, .faq, .contact, .closing-block, .doc-approach, .intro-block, .for-whom, .pull-quote, .other-docs { padding: 80px 0; }
  .pillar { padding: 44px 32px; }
  .form-card { padding: 32px 24px; }
  .approach-img, .approach-img-placeholder { height: 440px; }
  .doctor-photo, .doctor-photo-placeholder-card { height: 340px; }
  .doc-photo { height: 460px; }
  .doc-photo-frame { display: none; }
  #site-content { padding-top: 76px; }
  .modal { padding: 44px 28px 36px; }
  h1.hero-title { font-size: 32px; line-height: 1.2; }
  .topbar { padding: 16px 0; }
  .topbar.shrunk { padding: 12px 0; }
  .brand-logo { height: 36px; }
  .topbar.shrunk .brand-logo { height: 30px; }
  .brand-name { font-size: 18px; white-space: nowrap; }
  .topbar.shrunk .brand-name { font-size: 16px; }
  .topbar-inner { gap: 12px; }
}

@media (max-width: 480px) {
  .fab-stack { bottom: 16px; right: 16px; gap: 10px; }
  .fab { width: 52px; height: 52px; }
  .fab-tooltip { display: none; }
  .other-docs-grid { grid-template-columns: 1fr; }
  h1.hero-title { font-size: 28px; line-height: 1.2; }
  .hero { padding: 50px 0 60px; }
  .hero-sub { font-size: 17px; }
  .brand-name { font-size: 16px; }
  .topbar.shrunk .brand-name { font-size: 15px; }
  .brand-logo { height: 32px; }
  .topbar.shrunk .brand-logo { height: 28px; }
  .top-phone-icon { width: 38px; height: 38px; }
  .top-phone-icon svg { width: 17px; height: 17px; }
  .topbar { padding: 12px 0; }
  .topbar.shrunk { padding: 10px 0; }
  #site-content { padding-top: 68px; }
  /* Extra bottom padding so floating WhatsApp doesn't cover content */
  .closing-block { padding-bottom: 110px; }
  .contact { padding-bottom: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ENGLISH PAGES - LTR LAYOUT
   Used by: page-en-home.php and all /en/ pages
   ============================================================ */

.en-page {
  direction: ltr;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.en-page * { box-sizing: border-box; }

.en-page h1, .en-page h2, .en-page h3, .en-page h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
}
.en-page em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mint-deeper);
  font-weight: 400;
}

.en-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.en-container-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

/* Topbar */
.en-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.en-topbar.shrunk {
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.en-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.en-brand {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.en-brand span { color: var(--mint-deeper); font-style: italic; }

.en-nav {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.en-nav a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}
.en-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mint-deeper);
  transition: width 0.3s var(--ease);
}
.en-nav a:hover { color: var(--mint-deeper); }
.en-nav a:hover::after { width: 100%; }

.en-topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.en-lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.en-lang-he {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
}
.en-lang-he:hover { color: var(--mint-deeper); }
.en-lang-divider { color: var(--line); }
.en-lang-current {
  color: var(--black);
  font-weight: 600;
}

.en-topbar-cta {
  background: var(--black);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.en-topbar-cta:hover {
  background: var(--mint-deeper);
  transform: translateY(-1px);
}
.en-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}
.en-menu-toggle svg { width: 24px; height: 24px; }

.en-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0; right: 0;
  background: var(--white);
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  z-index: 99;
}
.en-mobile-menu.is-open { display: flex; flex-direction: column; }
.en-mobile-menu a {
  padding: 16px 0;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.en-mobile-menu a:last-child { border-bottom: none; }
.en-mobile-menu .en-mobile-lang {
  color: var(--mint-deeper);
  font-family: 'Heebo', sans-serif;
  margin-top: 8px;
  font-weight: 500;
  direction: rtl;
  text-align: right;
}

.en-main { padding-top: 84px; }

/* Hero */
.en-hero {
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.en-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/clinic-interior.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  filter: grayscale(20%);
}
.en-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.78) 40%,
    rgba(244,251,248,0.85) 100%);
  z-index: 1;
}
.en-hero::before {
  content: '';
  position: absolute;
  top: -180px; left: -240px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--mint-pale) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.5;
}
.en-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 920px;
}
.en-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint-deeper);
  font-weight: 600;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.en-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--mint-deeper);
}
.en-hero h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.en-hero .en-lede {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 700px;
}
.en-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.en-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
.en-btn-primary {
  background: var(--black);
  color: var(--white);
}
.en-btn-primary:hover {
  background: var(--mint-deeper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.en-btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.en-btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.en-reassure {
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
  font-weight: 300;
}

/* Intro */
.en-intro {
  padding: 110px 0;
  background: var(--off-white);
}
.en-intro-text {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-weight: 300;
}
.en-intro-text strong {
  color: var(--black);
  font-weight: 500;
}
.en-intro-text:last-child { margin-bottom: 0; }

/* Differentiator banner */
.en-banner {
  padding: 90px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.en-banner-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.en-banner-text em {
  color: var(--mint);
  font-style: italic;
  font-weight: 400;
}

/* Section head */
.en-section-head {
  max-width: 820px;
  margin: 0 0 72px;
}
.en-section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.en-section-head .en-lede,
.en-section-head .en-lede-large {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

/* Services */
.en-services { padding: 130px 0; background: var(--white); }
.en-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.en-service-card {
  background: var(--white);
  padding: 50px 40px;
  transition: background 0.4s var(--ease);
}
.en-service-card:hover { background: var(--mint-pale); }
.en-service-card-wide { grid-column: span 3; text-align: center; }
.en-service-card-wide .en-service-icon { margin: 0 auto 24px; }
.en-service-card-wide p { max-width: 720px; margin: 0 auto; }
.en-service-icon {
  width: 44px; height: 44px;
  color: var(--mint-deeper);
  margin-bottom: 22px;
}
.en-service-icon svg { width: 100%; height: 100%; }
.en-service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.en-service-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

/* Who We Help */
.en-who {
  padding: 130px 0;
  background: var(--off-white);
}
.en-who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
}
.en-who-list li {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
}
.en-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 1px;
  background: var(--mint-deeper);
}

/* Team */
.en-team { padding: 130px 0; background: var(--white); }
.en-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.en-team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.en-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.en-team-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--mint-pale);
}
.en-team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint-pale), var(--mint-light));
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mint-deeper);
  font-size: 17px;
  text-align: center;
  padding: 20px;
}
.en-team-info { padding: 28px 30px 32px; }
.en-team-info h3 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 1.2;
}
.en-team-role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-deeper);
  font-weight: 600;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* CTA Strip */
.en-cta-strip {
  padding: 120px 0;
  background: var(--mint-pale);
  text-align: center;
}
.en-cta-strip h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.en-cta-strip p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */
.en-contact {
  padding: 130px 0;
  background: var(--black);
  color: var(--white);
}
.en-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.en-contact .en-eyebrow { color: var(--mint); }
.en-contact .en-eyebrow::before { background: var(--mint); }
.en-contact h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.en-contact h2 em { color: var(--mint); }
.en-contact-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 50px;
  max-width: 460px;
  font-weight: 300;
}
.en-contact-detail {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.en-contact-detail:last-child { border-bottom: none; }
.en-contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mint);
  margin-bottom: 10px;
  font-weight: 600;
}
.en-contact-value {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.en-contact-value:hover { color: var(--mint); }
.en-contact-value-text {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.en-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 44px;
  border-radius: 10px;
}
.en-form-card h3 {
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 400;
}
.en-field { margin-bottom: 22px; }
.en-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.en-field input,
.en-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all 0.25s var(--ease);
  border-radius: 6px;
  direction: ltr;
}
.en-field input:focus,
.en-field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(255,255,255,0.05);
}
.en-field textarea { resize: vertical; min-height: 100px; }
.en-form-card .en-btn-submit {
  width: 100%;
  background: var(--mint);
  color: var(--black);
  border: none;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
  transition: all 0.25s var(--ease);
}
.en-form-card .en-btn-submit:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.en-form-msg {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 15px;
  display: none;
}
.en-form-msg.success {
  background: rgba(168,212,191,0.15);
  border: 1px solid var(--mint);
  color: var(--mint);
  display: block;
}
.en-form-msg.error {
  background: rgba(255,100,100,0.1);
  border: 1px solid #ff6464;
  color: #ff9999;
  display: block;
}

/* Footer */
.en-footer {
  padding: 80px 0 40px;
  background: var(--black);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.en-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.en-footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}
.en-footer-logo span { color: var(--mint); font-style: italic; }
.en-footer-moto {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.en-footer-desc {
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.en-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.en-footer-col p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.en-footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.en-footer-col a:hover { color: var(--mint); }
.en-footer-leadership {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.en-footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* FAB */
.en-fab-stack {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}
.en-fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
}
.en-fab svg { width: 26px; height: 26px; }
.en-fab:hover {
  background: var(--mint-deeper);
  transform: scale(1.08);
}

/* English page responsive */
@media (max-width: 940px) {
  .en-container, .en-container-narrow { padding: 0 24px; }
  .en-nav { display: none; }
  .en-menu-toggle { display: block; }
  .en-topbar-cta { padding: 9px 16px; font-size: 12px; }
  .en-services-grid { grid-template-columns: 1fr; }
  .en-service-card-wide { grid-column: 1; }
  .en-who-list { grid-template-columns: 1fr; gap: 22px; }
  .en-team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .en-contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .en-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .en-hero { padding: 60px 0 70px; }
  .en-intro, .en-services, .en-who, .en-team, .en-cta-strip, .en-contact, .en-banner { padding: 80px 0; }
  .en-service-card { padding: 36px 30px; }
  .en-form-card { padding: 30px 22px; }
  .en-main { padding-top: 72px; }
  .en-topbar { padding: 14px 0; }
  .en-mobile-menu { top: 64px; }
  .en-team-photo { height: 280px; }
}

@media (max-width: 600px) {
  .en-team-grid { grid-template-columns: 1fr; }
  .en-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .en-brand { font-size: 18px; }
  .en-lang-switch { font-size: 12px; }
  .en-topbar-right { gap: 14px; }
  .en-hero h1 { font-size: 32px; }
  .en-hero .en-lede { font-size: 17px; }
  .en-fab-stack { bottom: 16px; left: 16px; }
  .en-fab { width: 52px; height: 52px; }
  .en-intro-text { font-size: 17px; }
  .en-banner-text { font-size: 22px; }
}

/* EN switcher button in Hebrew topbar */
.top-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.25s var(--ease);
  font-style: italic;
}
.top-lang-switch:hover {
  background: var(--mint-deeper);
  color: var(--white);
  border-color: var(--mint-deeper);
}
.top-lang-switch span { line-height: 1; }
@media (max-width: 480px) {
  .top-lang-switch {
    padding: 0 10px;
    height: 32px;
    font-size: 12px;
  }
}

/* ============================================================
   URGENT CARE / CONVERSION SECTION
   ============================================================ */
.urgent {
  padding: 140px 0;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}
.urgent-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.urgent-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mint-deeper);
  font-weight: 600;
  margin-bottom: 28px;
}
.urgent-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 32px;
}
.urgent-title em {
  font-family: 'Heebo', sans-serif;
  font-style: normal;
  color: var(--mint-deeper);
  font-weight: 300;
}
.urgent-lede {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 28px;
}
.urgent-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.urgent-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.urgent-cta-q {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.urgent-cta-sub {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}
@media (max-width: 600px) {
  .urgent { padding: 90px 0; }
  .urgent-lede { font-size: 19px; }
  .urgent-text { font-size: 16px; }
}

/* ============================================================
   THE CLINIC SECTION - Showcasing physical space
   ============================================================ */
.clinic-section {
  padding: 130px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.clinic-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--mint-pale) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}
.clinic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.clinic-image-wrap {
  position: relative;
}
.clinic-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}
.clinic-image-frame {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--mint);
  border-radius: 8px;
  z-index: 1;
}
.clinic-text h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 24px 0 32px;
  color: var(--black);
}
.clinic-text p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 22px;
}
.clinic-text p:last-of-type { margin-bottom: 36px; }
.clinic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.clinic-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--mint);
  color: var(--mint-deeper);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 940px) {
  .clinic-section { padding: 80px 0; }
  .clinic-grid { grid-template-columns: 1fr; gap: 50px; }
  .clinic-image { height: 380px; }
  .clinic-image-frame { inset: 16px -16px -16px 16px; }
}
@media (max-width: 480px) {
  .clinic-image { height: 280px; }
  .clinic-image-frame { display: none; }
  .clinic-text h2 { font-size: 32px; }
  .clinic-text p { font-size: 16px; }
  .clinic-tag { font-size: 12px; padding: 7px 14px; }
}

/* ============================================================
   ADVANCED PROCEDURES SECTION
   ============================================================ */
.procedures {
  padding: 130px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.procedures-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.procedures-text h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 24px 0 32px;
  color: var(--black);
}
.procedures-text p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 22px;
}
.procedures-closing {
  font-family: 'Heebo', sans-serif;
  font-style: normal;
  color: var(--mint-deeper) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  margin-top: 10px !important;
}
.procedures-tags {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.procedures-tag-group h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mint-deeper);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Heebo', sans-serif;
}
.procedures-tag-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.procedures-tag-group li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px;
  color: var(--ink);
  font-weight: 300;
  position: relative;
  padding-right: 24px;
}
.procedures-tag-group li:last-child { border-bottom: none; }
.procedures-tag-group li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: var(--mint-deeper);
}

/* ============================================================
   WHO IT'S FOR SECTION
   ============================================================ */
.who-for {
  padding: 130px 0;
  background: var(--white);
  position: relative;
}
.who-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 56px;
  max-width: 1080px;
}
.who-for-list li {
  position: relative;
  padding-right: 40px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
}
.who-for-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 14px;
  width: 24px;
  height: 1px;
  background: var(--mint-deeper);
}

/* Responsive */
@media (max-width: 940px) {
  .procedures { padding: 80px 0; }
  .procedures-inner { grid-template-columns: 1fr; gap: 40px; }
  .procedures-tags { padding: 32px 28px; }
  .who-for { padding: 80px 0; }
  .who-for-list { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .procedures-text h2 { font-size: 30px; }
  .procedures-text p { font-size: 16px; }
  .who-for-list li { font-size: 16px; padding-right: 32px; }
}


/* PJ-FAB-MOBILE :: keep floating action buttons clear of content on small screens */
@media (max-width: 600px){
  .fab-stack{ right: 14px; bottom: 14px; gap: 10px; }
  .fab{ width: 48px; height: 48px; }
  .fab svg{ width: 22px; height: 22px; }
}
