/* ============================================
   Team Clinic 360° - Doctor Page Stylesheet
   משלים את העיצוב של index.html
   ============================================ */

:root {
  --white: #ffffff;
  --off-white: #faf9f6;
  --paper: #f5f3ee;
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6e6e6e;
  --muted-light: #a0a0a0;
  --line: #e8e6e0;
  --line-soft: #f0eee8;
  --mint: #a8d4bf;
  --mint-light: #c8e2d3;
  --mint-pale: #e8f2ec;
  --mint-deep: #7fb8a0;
}

* { 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: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .serif {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mint-deep);
}

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

/* TOP BAR */
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  height: 44px;
  width: auto;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
  direction: ltr;
}
.brand-name span { color: var(--mint-deep); font-style: italic; }

nav.main-nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
}
nav.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
nav.main-nav a:hover { color: var(--mint-deep); }
nav.main-nav a.active { color: var(--mint-deep); }

.top-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-phone {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 22px;
  background: var(--mint);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.25s;
  direction: ltr;
}
.top-phone:hover {
  background: var(--black);
  color: var(--white);
}

/* BREADCRUMB */
.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-deep); }
.breadcrumb .sep {
  margin: 0 10px;
  color: var(--muted-light);
}
.breadcrumb .current {
  color: var(--ink);
}

/* DOCTOR HERO */
.doc-hero {
  padding: 60px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.doc-hero-blob {
  position: absolute;
  top: -150px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: var(--mint-pale);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.45;
}
.doc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.doc-hero-text .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint-deep);
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.doc-hero-text .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--mint-deep);
}
.doc-name {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 18px;
}
.doc-name-en {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--mint-deep);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  direction: ltr;
  display: inline-block;
}
.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-role-line {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.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;
}

/* CTA Row in Hero */
.doc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.btn {
  display: inline-block;
  padding: 16px 34px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 6px;
  font-family: 'Heebo', sans-serif;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--mint);
  color: var(--black);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

/* INTRO BLOCK */
.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-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint-deep);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.intro-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--mint-deep);
}
.intro-block h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 36px;
  line-height: 1.2;
  color: var(--black);
}
.intro-block p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.8;
  font-weight: 300;
}
.intro-block p strong {
  color: var(--black);
  font-weight: 500;
}
.intro-block p em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mint-deep);
}
.intro-callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 3px solid var(--mint-deep);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 4px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.5;
}

/* APPROACH SECTION */
.doc-approach {
  padding: 120px 0;
  background: var(--white);
}
.doc-approach .container-narrow h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 36px;
  text-align: right;
  color: var(--black);
}
.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;
}
.doc-approach h3:first-of-type { margin-top: 32px; }

/* SPECIALTIES GRID */
.specialties {
  padding: 120px 0;
  background: var(--paper);
}
.specialties .section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.specialties .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint-deep);
  font-weight: 600;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.specialties .eyebrow::before,
.specialties .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--mint-deep);
}
.specialties h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--black);
  line-height: 1.15;
}
.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: 'Fraunces', 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;
}

/* FOR WHOM SECTION */
.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;
  color: var(--black);
}
.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-deep);
}

/* PULL QUOTE */
.pull-quote {
  padding: 110px 0;
  background: var(--mint-pale);
  text-align: center;
}
.pull-quote .container-narrow {
  max-width: 760px;
}
.pull-quote .mark {
  font-family: 'Fraunces', serif;
  font-size: 100px;
  color: var(--mint-deep);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.5;
  font-style: italic;
}
.pull-quote .quote-text {
  font-family: 'Fraunces', 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-deep);
  font-weight: 600;
}

/* CTA SECTION */
.doc-cta {
  padding: 130px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.doc-cta .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.doc-cta .eyebrow::before,
.doc-cta .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--mint);
}
.doc-cta h2 {
  font-size: clamp(32px, 4.4vw, 50px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}
.doc-cta h2 em {
  color: var(--mint);
}
.doc-cta .lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.doc-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}
.btn-mint {
  background: var(--mint);
  color: var(--black);
  border: none;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'Heebo', sans-serif;
}
.btn-mint:hover { background: var(--white); }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'Heebo', sans-serif;
}
.btn-outline-light:hover {
  border-color: var(--mint);
  color: var(--mint);
}
.doc-cta .address-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* OTHER DOCTORS */
.other-docs {
  padding: 110px 0;
  background: var(--off-white);
}
.other-docs .section-head {
  text-align: center;
  margin-bottom: 60px;
}
.other-docs h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--black);
}
.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: 'Fraunces', 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-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* FOOTER */
footer {
  padding: 56px 0 40px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
footer .brand-name {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
  display: inline-block;
}
footer .brand-name span { color: var(--mint); }
footer .moto {
  font-size: 12px;
  color: var(--mint);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  direction: ltr;
}
footer .foot-line {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* RESPONSIVE */
@media (max-width: 940px) {
  nav.main-nav { display: none; }
  .doc-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .doc-photo { height: 460px; }
  .doc-photo-frame { display: none; }
  .spec-grid { grid-template-columns: 1fr; }
  .other-docs-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-block, .doc-approach, .specialties, .for-whom, .pull-quote, .doc-cta, .other-docs {
    padding: 80px 0;
  }
  .doc-hero { padding: 40px 0 60px; }
  .intro-callout { padding: 24px 24px; font-size: 18px; }
}

@media (max-width: 600px) {
  .other-docs-grid { grid-template-columns: 1fr; }
  .doc-cta-buttons { flex-direction: column; align-items: stretch; }
  .container, .container-narrow { padding: 0 20px; }
}
