:root {
  --navy-950: #04111d;
  --navy-900: #071a2b;
  --navy-850: #0a2238;
  --navy-800: #0d2b47;
  --navy-700: #173e60;
  --gold-500: #b89a60;
  --gold-400: #d2b77d;
  --gold-200: #e8dac0;
  --ivory: #f3f0e9;
  --paper: #fbfaf7;
  --ink: #0c1b28;
  --muted: #5c6770;
  --line: rgba(9, 35, 57, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(2, 17, 29, 0.14);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Heebo", "Arial Hebrew", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 9999;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 128px);
}

.section-tight {
  padding-block: clamp(54px, 7vw, 88px);
}

.surface-ivory {
  background: var(--ivory);
}

.surface-navy {
  background: var(--navy-900);
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-500);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title,
.section-title,
.page-title,
.compass-title {
  margin: 0;
  font-family: "Noto Serif Hebrew", "Noto Serif", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.display-title {
  max-width: 780px;
  font-size: clamp(2.55rem, 5.5vw, 5.2rem);
}

.section-title {
  max-width: 800px;
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
}

.section-title.small {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  line-height: 1.8;
}

.surface-navy .section-intro,
.surface-navy .muted {
  color: rgba(255, 255, 255, 0.7);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--gold-400);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.button-secondary:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.button-outline {
  border-color: var(--navy-800);
  background: transparent;
  color: var(--navy-800);
}

.button-outline:hover {
  background: var(--navy-800);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-800);
  font-weight: 750;
}

.text-link::after {
  content: "←";
  transition: transform 0.2s ease;
}

[dir="ltr"] .text-link::after {
  content: "→";
}

.text-link:hover::after {
  transform: translateX(-4px);
}

[dir="ltr"] .text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  inset-block-start: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 17, 29, 0.94);
  color: white;
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(216, 189, 135, 0.75);
  border-radius: 50%;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 700;
}

.brand-specialty {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.89rem;
  font-weight: 650;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 3px;
  height: 1px;
  content: "";
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: white;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 17px !important;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  color: var(--gold-400) !important;
}

.nav-cta:hover {
  background: var(--gold-500);
  color: var(--navy-950) !important;
}

.language-link {
  color: var(--gold-400) !important;
  font-family: Arial, sans-serif;
  font-size: 0.76rem !important;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  inset-inline-start: 0;
  content: "";
}

.menu-toggle-lines::before { transform: translateY(-6px); }
.menu-toggle-lines::after { transform: translateY(6px); }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: rotate(-45deg); }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  background:
    radial-gradient(circle at 18% 25%, rgba(41, 88, 122, 0.35), transparent 33%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, #0a2942 100%);
  color: white;
}

.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-end: -250px;
  inset-block-start: -250px;
  border: 1px solid rgba(216, 189, 135, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 7vw, 94px);
  padding-block: 64px 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.85;
}

.hero-copy .lead strong {
  color: white;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.portrait-frame {
  position: absolute;
  overflow: hidden;
  inset: 12px 0 0 0;
  border: 1px solid rgba(216, 189, 135, 0.45);
  border-radius: 240px 240px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #d9dad8;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.34);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(4, 17, 29, 0.28));
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  inset-inline-end: -28px;
  inset-block-end: 50px;
  width: 220px;
  padding: 19px 22px;
  border-inline-start: 2px solid var(--gold-500);
  background: rgba(7, 26, 43, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.portrait-caption strong {
  display: block;
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.portrait-caption span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.55;
}

.trust-line {
  border-top: 1px solid var(--white-line);
  background: rgba(3, 14, 24, 0.46);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 110px;
  padding: 26px 28px;
  border-inline-start: 1px solid var(--white-line);
}

.trust-item:first-child {
  border-inline-start: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: white;
  font-size: 0.94rem;
}

.trust-item span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.79rem;
  line-height: 1.45;
}

/* Expertise */
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.expertise-card {
  position: relative;
  min-height: 285px;
  padding: 32px;
  background: var(--paper);
  transition: background 0.25s ease, color 0.25s ease;
}

.expertise-card::before {
  position: absolute;
  width: 34px;
  height: 1px;
  inset-inline-start: 32px;
  inset-block-start: 31px;
  content: "";
  background: var(--gold-500);
  transition: width 0.25s ease;
}

.expertise-card:hover {
  background: var(--navy-900);
  color: white;
}

.expertise-card:hover::before {
  width: 64px;
}

.expertise-number {
  display: block;
  margin-bottom: 56px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.82rem;
}

.expertise-card h3 {
  margin: 0;
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 650;
  line-height: 1.35;
}

.expertise-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.expertise-card:hover p {
  color: rgba(255, 255, 255, 0.67);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.about-portrait {
  position: relative;
  min-height: 640px;
  background: #d9dad8;
}

.about-portrait::before {
  position: absolute;
  z-index: 2;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  inset-inline-end: -22px;
  inset-block-end: -22px;
  border: 1px solid var(--gold-500);
  content: "";
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
}

.about-copy p {
  margin: 22px 0 0;
  color: var(--muted);
}

.credential-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.credential-list li {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.credential-list strong {
  color: var(--navy-800);
  font-size: 0.86rem;
}

.credential-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Nerve Israel */
.nerve-israel {
  position: relative;
  overflow: hidden;
}

.nerve-israel::after {
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-start: -180px;
  inset-block-end: -320px;
  border: 1px solid rgba(200, 167, 106, 0.23);
  border-radius: 50%;
  content: "";
}

.nerve-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
}

.nerve-wordmark {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.035);
}

.nerve-wordmark .line-one,
.nerve-wordmark .line-two {
  display: block;
  font-family: Arial, sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.nerve-wordmark .line-one {
  color: white;
}

.nerve-wordmark .line-two {
  margin-inline-start: 18%;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-400);
}

.nerve-wordmark .handle {
  display: block;
  margin-top: 34px;
  color: var(--gold-400);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.topic-chip {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
}

/* Compass preview */
.compass-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
}

.face-preview,
.compass-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #e6e7e5, #cfd1d0);
  box-shadow: var(--shadow);
}

.face-preview {
  min-height: 540px;
}

.face-preview img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 50% 12%;
}

.face-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, rgba(4, 17, 29, 0.62));
  pointer-events: none;
}

.face-preview.compass-avatar-preview {
  min-height: 0;
  aspect-ratio: 2.2 / 1;
  background: #eeece6;
}

.face-preview.compass-avatar-preview img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.face-preview.compass-avatar-preview::after {
  display: none;
}

.preview-spot,
.anatomy-spot {
  position: absolute;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 8px rgba(200, 167, 106, 0.2), 0 0 0 18px rgba(200, 167, 106, 0.08);
}

.preview-spot::after,
.anatomy-spot::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200, 167, 106, 0.7);
  border-radius: inherit;
  content: "";
  animation: pulse 2.1s infinite;
}

.preview-spot.one { inset-inline-start: 43%; inset-block-start: 25%; }
.preview-spot.two { inset-inline-start: 30%; inset-block-start: 33%; animation-delay: 0.25s; }
.preview-spot.three { inset-inline-start: 68%; inset-block-start: 31%; animation-delay: 0.5s; }
.preview-spot.avatar-frontal { left: 18%; inset-inline-start: auto; inset-block-start: 32%; }
.preview-spot.avatar-temporal { left: 47%; inset-inline-start: auto; inset-block-start: 31%; animation-delay: 0.25s; }
.preview-spot.avatar-occipital { left: 84%; inset-inline-start: auto; inset-block-start: 42%; animation-delay: 0.5s; }

@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.2); }
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.feature-list .index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--navy-800);
  font-family: Georgia, serif;
  font-size: 0.75rem;
}

/* Knowledge cards */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.knowledge-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.knowledge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(7, 26, 43, 0.11);
}

.knowledge-card .category {
  color: var(--gold-500);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 36px 0 0;
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: 1.52rem;
  line-height: 1.4;
}

.knowledge-card p {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 0.91rem;
}

/* Editorial, credentials and research */
.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.hero-kicker span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 650;
}

.section-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.expertise-card[href] {
  display: block;
}

.expertise-card[href]::after {
  position: absolute;
  inset-inline-end: 30px;
  inset-block-end: 27px;
  content: "←";
  color: var(--gold-500);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

[dir="ltr"] .expertise-card[href]::after {
  content: "→";
}

.expertise-card[href]:hover::after {
  transform: translateX(-5px);
}

[dir="ltr"] .expertise-card[href]:hover::after {
  transform: translateX(5px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(48px, 8vw, 108px);
}

.about-statement {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 36px);
}

.about-statement .section-title {
  max-width: 590px;
}

.about-statement p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.career-path {
  display: grid;
  border-top: 1px solid var(--line);
}

.career-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.career-step .step-number {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.career-step h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.career-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.institution-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.institution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 750;
}

.institution-link:hover {
  border-color: var(--gold-500);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.media-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 154, 96, 0.65);
  box-shadow: 0 24px 55px rgba(7, 26, 43, 0.09);
}

.media-card .source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.media-card .source::after {
  content: "↗";
  font-size: 1rem;
}

.media-card h3 {
  margin: 44px 0 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.4;
}

.media-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.media-card .card-action {
  margin-top: 28px;
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 750;
}

.publication-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.publication-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.publication-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 154, 96, 0.7);
}

.publication-year {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 1.08rem;
}

.publication-copy h2,
.publication-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.42;
}

.publication-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.6;
}

.publication-link {
  display: inline-flex;
  min-width: 94px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 800;
}

.publication-link:hover {
  border-color: var(--gold-500);
  background: var(--navy-900);
  color: white;
}

.expertise-sections {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.expertise-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(36px, 6vw, 72px);
  background: var(--paper);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.expertise-detail h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  line-height: 1.2;
}

.expertise-detail .detail-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.expertise-detail p {
  margin: 0;
  color: var(--muted);
}

.expertise-detail ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-inline-start: 21px;
  color: #43505a;
  font-size: 0.91rem;
}

/* Interactive clinical navigator */
.expertise-hero {
  padding-block-end: clamp(54px, 8vw, 92px);
}

.expertise-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.expertise-atlas {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: #ebe9e2;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.expertise-atlas img {
  display: block;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
}

.expertise-atlas figcaption {
  padding: 13px 18px;
  border-top: 1px solid rgba(7, 26, 43, 0.1);
  color: #59636a;
  font-size: 0.76rem;
}

.clinical-navigator {
  background:
    linear-gradient(180deg, rgba(200, 167, 106, 0.08), transparent 160px),
    var(--paper);
}

.topic-tabs {
  margin-top: 40px;
}

.topic-tablist {
  display: flex;
  overflow-x: auto;
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  scrollbar-width: thin;
}

.topic-tab {
  min-height: 50px;
  flex: 1 0 auto;
  padding: 10px 19px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy-800);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.topic-tab:hover {
  background: #f4f1ea;
}

.topic-tab.is-active,
.topic-tab[aria-selected="true"] {
  background: var(--navy-900);
  color: white;
  box-shadow: 0 8px 22px rgba(7, 26, 43, 0.16);
}

.topic-tab:focus-visible {
  outline: 3px solid rgba(200, 167, 106, 0.5);
  outline-offset: 2px;
}

.topic-panel {
  margin-top: 22px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 28px 76px rgba(7, 26, 43, 0.08);
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.topic-panel[hidden] {
  display: none;
}

.topic-panel.is-active {
  animation: panel-in 0.28s ease both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.topic-panel-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: end;
  gap: clamp(28px, 6vw, 84px);
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.topic-panel-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.2;
}

.topic-panel-head p {
  margin: 0;
  color: var(--muted);
}

.topic-panel .detail-number {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.condition-card {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.condition-card[open] {
  border-color: rgba(177, 142, 78, 0.7);
  background: white;
  box-shadow: 0 18px 42px rgba(7, 26, 43, 0.08);
}

.condition-card summary {
  position: relative;
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 4px;
  padding: 18px 58px 18px 22px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
}

[dir="ltr"] .condition-card summary {
  padding: 18px 22px 18px 58px;
}

.condition-card summary::-webkit-details-marker {
  display: none;
}

.condition-card summary::before,
.condition-card summary::after {
  position: absolute;
  inset-inline-end: 22px;
  inset-block-start: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--gold-500);
  transition: transform 0.2s ease;
}

[dir="ltr"] .condition-card summary::before,
[dir="ltr"] .condition-card summary::after {
  inset-inline-start: 22px;
  inset-inline-end: auto;
}

.condition-card summary::after {
  transform: rotate(90deg);
}

.condition-card[open] summary::after {
  transform: rotate(0);
}

.condition-card summary span {
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 650;
  line-height: 1.35;
}

.condition-card summary small {
  color: var(--gold-600);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.condition-body {
  padding: 0 22px 24px;
  border-top: 1px solid var(--line);
}

.condition-body p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
}

.condition-body h3 {
  margin: 22px 0 -7px;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.medical-alert {
  margin-top: 18px;
  padding: 16px 18px;
  border-inline-start: 3px solid #a64d3d;
  background: #fbf3f1;
  color: #5f322b;
  font-size: 0.86rem;
  line-height: 1.7;
}

.source-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--navy-800);
  font-size: 0.79rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(177, 142, 78, 0.55);
  text-underline-offset: 4px;
}

.source-link:hover {
  color: var(--gold-600);
}

.editorial-band {
  padding-block: 34px;
  border-block: 1px solid rgba(184, 154, 96, 0.34);
  background: #f8f5ee;
}

.editorial-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.editorial-band p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.editorial-band strong {
  color: var(--navy-900);
}

.feedback-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 82, 113, 0.34), transparent 30%),
    var(--navy-950);
  color: white;
}

.feedback-shell {
  width: min(calc(100% - 36px), 780px);
  margin-inline: auto;
  padding-block: clamp(58px, 10vw, 110px);
}

.feedback-panel {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.28);
}

.feedback-panel h1,
.feedback-panel h2 {
  margin: 0;
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
}

.feedback-panel > p {
  color: rgba(255, 255, 255, 0.66);
}

.feedback-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feedback-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.feedback-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-500);
}

.gate-message {
  padding: 22px;
  border-inline-start: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
}

.feedback-brand {
  display: inline-flex;
  margin-bottom: 34px;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* FAQ */
.faq-list {
  max-width: 940px;
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: 1.23rem;
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  width: 18px;
  height: 1px;
  inset-inline-start: 0;
  inset-block-start: 50%;
  content: "";
  background: var(--gold-500);
  transition: transform 0.2s ease;
}

.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0deg); }

.faq-answer {
  max-width: 760px;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: clamp(44px, 8vw, 108px);
}

.contact-methods {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  background: var(--white-line);
}

.contact-method {
  padding: 22px 0;
  background: var(--navy-900);
}

.contact-method span,
.contact-method strong {
  display: block;
}

.contact-method span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.contact-method strong {
  margin-top: 5px;
  color: white;
  font-size: 1.02rem;
  direction: ltr;
  text-align: right;
}

[dir="ltr"] .contact-method strong {
  text-align: left;
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.83rem;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
}

.field textarea {
  min-height: 122px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold-400);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field select option {
  color: var(--ink);
}

.form-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  line-height: 1.55;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 11vw, 154px);
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 82, 116, 0.4), transparent 34%),
    var(--navy-950);
  color: white;
}

.page-hero::after {
  position: absolute;
  width: 440px;
  height: 440px;
  inset-inline-end: -180px;
  inset-block-end: -280px;
  border: 1px solid rgba(200, 167, 106, 0.3);
  border-radius: 50%;
  content: "";
}

.page-title {
  max-width: 920px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.page-lead {
  max-width: 790px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.breadcrumb a:hover { color: var(--gold-400); }

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(44px, 7vw, 88px);
}

.article-toc {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 30px);
  padding: 24px;
  border-inline-start: 1px solid var(--gold-500);
  background: var(--ivory);
}

.article-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy-800);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding-block: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-toc a:hover { color: var(--navy-800); }

.prose h2,
.prose h3 {
  font-family: "Noto Serif Hebrew", Georgia, serif;
  line-height: 1.25;
}

.prose h2 {
  margin: 70px 0 22px;
  color: var(--navy-900);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin: 36px 0 14px;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: #43505a;
}

.prose ul {
  display: grid;
  gap: 8px;
  padding-inline-start: 23px;
}

.callout {
  margin-block: 38px;
  padding: 27px 30px;
  border-inline-start: 3px solid var(--gold-500);
  background: var(--ivory);
}

.callout strong {
  display: block;
  color: var(--navy-800);
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: 1.15rem;
}

.callout p { margin-bottom: 0; }

.clinical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-block: 28px;
}

.clinical-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
}

.clinical-card h3 {
  margin: 0;
  color: var(--navy-800);
  font-size: 1.18rem;
}

.clinical-card p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

/* Migraine Compass */
.compass-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(39, 86, 119, 0.36), transparent 31%),
    var(--navy-950);
  color: white;
}

.compass-intro {
  padding-block: clamp(56px, 8vw, 96px);
}

.compass-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 8vw, 105px);
}

.compass-title {
  max-width: 800px;
  font-size: clamp(2.7rem, 6vw, 5.25rem);
}

.compass-subtitle {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.compass-guide {
  display: flex;
  max-width: 560px;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
}

.compass-guide img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 167, 106, 0.55);
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.compass-guide strong {
  display: block;
  color: white;
  font-size: 0.82rem;
}

.compass-disclaimer {
  margin-top: 26px;
  padding: 18px 20px;
  border-inline-start: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.compass-shell {
  display: none;
  padding-block: 36px 84px;
}

.compass-page.compass-active .compass-intro { display: none; }
.compass-page.compass-active .compass-shell { display: block; }

.compass-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.progress-track {
  overflow: hidden;
  height: 4px;
  margin-bottom: 36px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-bar {
  width: 11.11%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-500);
  transition: width 0.32s ease;
}

.compass-card {
  display: block;
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.3);
}

.compass-card .compass-figure {
  min-height: 0;
  aspect-ratio: 2.2 / 1;
  border-radius: 0;
  background: #eeece6;
  box-shadow: none;
}

.compass-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.compass-figure.is-focus img {
  transform: scale(1.015);
  filter: saturate(0.88) contrast(1.03);
}

.anatomy-spot {
  width: var(--spot-size, 22px);
  height: var(--spot-size, 22px);
  left: var(--spot-x, 50%);
  inset-block-start: var(--spot-y, 30%);
  transform: translate(-50%, -50%);
  transition: inset 0.35s ease, width 0.35s ease, height 0.35s ease, border-radius 0.35s ease;
}

.anatomy-spot.is-wide {
  width: 72px;
  height: 25px;
  border-radius: 999px;
}

.anatomy-spot.is-tall {
  width: 28px;
  height: 76px;
  border-radius: 999px;
}

.compass-question-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.question-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.question-topline .question-kicker {
  margin-bottom: 0;
}

.voice-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
}

.voice-button:hover,
.voice-button.is-active,
.voice-toggle.is-active {
  border-color: var(--gold-400);
  background: rgba(200, 167, 106, 0.14);
  color: white;
}

.voice-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: var(--gold-400);
  font-size: 0.74rem;
}

.question-kicker {
  margin: 0 0 19px;
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.question-title {
  margin: 0;
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.35;
}

.question-help {
  min-height: 88px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.answer-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.answer-button {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 750;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  border-color: var(--gold-400);
  background: var(--gold-500);
  color: var(--navy-950);
}

.compass-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.ghost-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  font-size: 0.83rem;
}

.ghost-button:hover { color: white; }

.side-choice-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-block: 22px;
}

.side-choice-wrap[hidden] { display: none; }

.side-choice {
  min-height: 62px;
  border: 1px solid rgba(200, 167, 106, .55);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.side-choice:hover,
.side-choice.is-selected {
  border-color: #d2ae70;
  background: #d2ae70;
  color: #071a2b;
}

[data-finish]:disabled { opacity: .45; cursor: not-allowed; }

.result-panel {
  display: none;
}

.compass-card.show-results .question-view,
.compass-card.show-results .compass-figure {
  display: none;
}

.compass-card.show-results {
  display: block;
  min-height: 0;
}

.compass-card.show-results .result-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.result-portrait {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #d9dad8;
}

.result-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.result-guide span {
  position: absolute;
  inset-inline: 22px;
  inset-block-end: 22px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(4, 17, 29, 0.78);
  color: white;
  font-size: 0.78rem;
  text-align: center;
}

.result-copy {
  padding: clamp(38px, 6vw, 78px);
}

.result-copy h2 {
  margin: 0;
  font-family: "Noto Serif Hebrew", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.result-summary {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.result-zones {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.result-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--white-line);
}

.zone-meter {
  width: 120px;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.zone-meter span {
  display: block;
  width: var(--meter, 0%);
  height: 100%;
  background: var(--gold-500);
}

.result-warning {
  margin-top: 28px;
  padding: 17px 19px;
  border: 1px solid rgba(216, 189, 135, 0.34);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--white-line);
  background: var(--navy-950);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding-block: 58px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-400);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-block: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.footer-column a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --header-height: 76px; }

  .menu-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    background: var(--navy-950);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding: 18px 24px 30px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 15px 5px;
    border-bottom: 1px solid var(--white-line);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 15px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.68fr);
    gap: 42px;
  }

  .hero-visual { min-height: 540px; }
  .portrait-caption { inset-inline-end: -10px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--white-line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--white-line); }

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

  .about-grid,
  .nerve-grid,
  .compass-preview,
  .contact-grid,
  .compass-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-grid { grid-template-columns: 0.8fr 1.2fr; }
  .compass-card { grid-template-columns: 0.78fr 1.22fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand-specialty { display: none; }

  .hero-grid,
  .expertise-hero-grid,
  .about-grid,
  .about-story,
  .nerve-grid,
  .compass-preview,
  .contact-grid,
  .compass-intro-grid,
  .compass-card,
  .compass-card.show-results .result-panel {
    grid-template-columns: 1fr;
  }

  .topic-panel-head,
  .condition-grid {
    grid-template-columns: 1fr;
  }

  .expertise-atlas {
    max-width: 640px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 70px 0;
  }

  .hero-copy { padding-bottom: 30px; }
  .hero-visual { min-height: 520px; }
  .portrait-frame { inset-block-start: 0; border-radius: 200px 200px 0 0; }
  .portrait-caption { inset-inline-end: 14px; inset-block-end: 24px; }

  .section-heading-row {
    display: block;
  }

  .section-heading-row .text-link {
    margin-top: 24px;
  }

  .about-statement { position: static; }
  .expertise-detail { grid-template-columns: 1fr; }
  .editorial-band-inner { align-items: start; flex-direction: column; }

  .expertise-grid,
  .knowledge-grid,
  .media-grid { grid-template-columns: 1fr; }

  .about-statement { position: static; }
  .expertise-detail { grid-template-columns: 1fr; }
  .publication-card { grid-template-columns: 66px minmax(0, 1fr); }
  .publication-link { grid-column: 2; justify-self: start; }
  .editorial-band-inner { align-items: start; flex-direction: column; }

  .about-portrait,
  .about-portrait img { min-height: 540px; height: 540px; }
  .about-portrait::before { inset-inline-end: -10px; inset-block-end: -10px; }

  .nerve-wordmark { order: 2; }
  .face-preview { order: 2; min-height: 480px; }
  .face-preview img { height: 480px; }

  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }

  .compass-card { min-height: 0; }
  .compass-figure { min-height: 480px; }
  .compass-question-panel { min-height: 480px; }
  .result-portrait { min-height: 460px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 0.92rem; }
  .display-title { font-size: clamp(2.4rem, 12.5vw, 3.7rem); }

  .button-row .button { width: 100%; }
  .topic-panel { padding: 24px 18px; }
  .topic-tablist { border-radius: 18px; }
  .topic-tab { min-height: 46px; padding-inline: 15px; }
  .condition-card summary { min-height: 76px; }
  .hero-visual { min-height: 450px; }
  .portrait-caption { width: 195px; padding: 15px 17px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-inline-start: 0; border-top: 1px solid var(--white-line); }
  .trust-item:first-child { border-top: 0; }

  .expertise-card { min-height: 250px; }
  .credential-list li { grid-template-columns: 1fr; gap: 5px; }
  .career-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .publication-card { grid-template-columns: 1fr; gap: 12px; padding: 23px; }
  .publication-link { grid-column: auto; justify-self: start; margin-top: 6px; }
  .career-step { grid-template-columns: 52px 1fr; gap: 16px; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card { min-height: 250px; }
  .publication-card { grid-template-columns: 1fr; gap: 12px; }
  .publication-link { justify-self: start; }
  .nerve-wordmark .line-one,
  .nerve-wordmark .line-two { font-size: 3.5rem; }

  .clinical-grid { grid-template-columns: 1fr; }
  .article-toc { padding: 19px; }

  .compass-figure { min-height: 430px; }
  .compass-question-panel { min-height: 450px; padding: 30px 24px; }
  .answer-buttons { grid-template-columns: 1fr; }
  .result-portrait { min-height: 390px; }
  .zone-meter { width: 84px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .button-row,
  .contact-form,
  .site-footer,
  .article-toc { display: none !important; }
  body { color: black; background: white; }
  .page-hero { padding: 30px 0; color: black; background: white; }
  .page-lead { color: #333; }
  .article-layout { display: block; }
}

/* 2026 medical library, legal and reviews */
.article-hero .page-title {
  max-width: 980px;
  font-size: clamp(2.45rem, 5.2vw, 4.8rem);
}

.article-content {
  background: var(--paper);
}

.medical-prose {
  min-width: 0;
}

.medical-prose .article-section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.medical-prose .article-section + .article-section {
  padding-top: 2px;
  border-top: 1px solid transparent;
}

.medical-prose p {
  margin: 0 0 20px;
}

.medical-prose a:not(.text-link) {
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-color: rgba(184, 154, 96, 0.6);
  text-underline-offset: 3px;
}

.medical-prose ol,
.medical-prose ul {
  margin: 20px 0 28px;
}

.medical-prose li + li {
  margin-top: 8px;
}

.article-figure {
  overflow: hidden;
  margin: 30px 0 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 45px rgba(7, 26, 43, 0.08);
}

.article-figure img {
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  background: #fff;
}

.article-figure figcaption {
  padding: 17px 20px 19px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.article-figure figcaption strong {
  color: var(--navy-800);
}

.figure-source {
  display: block;
  margin-top: 7px;
  color: #6f777e;
  font-size: 0.72rem;
}

.article-figure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-block: 30px 40px;
}

.article-figure-grid .article-figure {
  margin: 0;
}

.article-figure-grid.tall .article-figure img {
  height: min(620px, 70vw);
  object-fit: contain;
}

.article-figure-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  margin: 26px 0 30px;
}

.concept-flow span {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(163, 126, 61, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #faf6ec);
}

.concept-flow strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.concept-flow small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.concept-flow i {
  display: grid;
  place-items: center;
  color: var(--gold-600);
  font-size: 1.4rem;
  font-style: normal;
}

.clinical-figure {
  border-color: rgba(134, 66, 48, 0.3);
}

.callout.clinical-warning {
  border-inline-start-color: #9a5f4d;
  background: #f7eee9;
}

.callout.important {
  border-inline-start-color: var(--navy-700);
  background: #edf2f5;
}

.responsive-table {
  overflow-x: auto;
  margin: 28px 0 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.responsive-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: start;
}

.responsive-table th,
.responsive-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  color: #43505a;
  vertical-align: top;
}

.responsive-table th {
  background: var(--navy-900);
  color: white;
  font-size: 0.82rem;
}

.responsive-table tr:last-child td {
  border-bottom: 0;
}

.reference-list {
  display: grid;
  gap: 13px;
  padding-inline-start: 24px;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.medical-prose .source-note {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  font-size: 0.8rem;
}

.medical-disclaimer {
  margin-top: 72px;
  padding: 24px 26px;
  border: 1px solid rgba(184, 154, 96, 0.45);
  border-radius: 14px;
  background: #fffdf8;
}

.medical-disclaimer strong {
  color: var(--navy-800);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
}

.medical-disclaimer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.rubric-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 13px 36px rgba(7, 26, 43, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rubric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 154, 96, 0.65);
  box-shadow: 0 22px 50px rgba(7, 26, 43, 0.1);
}

.rubric-card .category {
  color: var(--gold-500);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rubric-card h3 {
  margin: 28px 0 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.rubric-card p {
  margin: 13px 0 24px;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.7;
}

.rubric-card .card-action {
  margin-top: auto;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-section {
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.testimonial-card,
.testimonial-empty {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.75;
}

.testimonial-card footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-empty {
  grid-column: 1 / -1;
  background: var(--ivory);
  color: var(--muted);
}

.testimonial-policy {
  max-width: 850px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-admin-shell { width: min(920px, calc(100% - 32px)); }
.review-admin-list { display: grid; gap: 18px; margin-top: 24px; }
.review-admin-card { display: grid; gap: 12px; padding: 20px; border: 1px solid rgba(7,26,43,.14); border-radius: 16px; background: #fff; }
.review-admin-card input,
.review-admin-card textarea { width: 100%; padding: 12px; border: 1px solid #c7cbd0; border-radius: 10px; font: inherit; }
.review-admin-card textarea { min-height: 130px; resize: vertical; }
.review-admin-meta { margin: 0; color: #5b646b; font-weight: 700; }

.form-consent,
.feedback-publication-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-consent input,
.feedback-publication-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--gold-500);
}

.form-consent a,
.feedback-publication-consent a {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feedback-form .feedback-publication-consent {
  margin-top: 8px;
  color: #43505a;
}

.feedback-publication-options {
  padding: 18px;
  border: 1px solid rgba(163, 126, 61, 0.28);
  border-radius: 14px;
  background: #fbf8f1;
}

.feedback-publication-options .field {
  margin-top: 14px;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(216, 189, 135, 0.45);
  text-underline-offset: 4px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(44px, 7vw, 88px);
}

.legal-prose h2 {
  margin-top: 54px;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .rubric-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-figure-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .article-figure-grid,
  .article-figure-grid.three,
  .rubric-grid,
  .testimonial-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .article-figure-grid.tall .article-figure img {
    height: auto;
    max-height: 660px;
  }

  .concept-flow {
    grid-template-columns: 1fr;
  }

  .concept-flow i {
    min-height: 18px;
    transform: rotate(90deg);
  }

  [dir="rtl"] .concept-flow i {
    transform: rotate(-90deg);
  }

  .article-hero .page-title {
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }
}

/* 2026 refinement: clearer hierarchy, premium treatment navigator and medical media */
body {
  font-size: 18px;
  line-height: 1.78;
}

.main-nav a {
  font-size: 0.9rem;
}

.main-nav {
  gap: clamp(10px, 1.4vw, 22px);
}

.eyebrow,
.question-kicker,
.publication-year,
.footer-column strong {
  font-size: 0.84rem;
}

.section-intro,
.page-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.82;
}

.portrait-frame {
  inset: 0;
  border-radius: 38px;
}

.portrait-frame img {
  object-position: center top;
}

.portrait-caption {
  inset-inline-end: 22px;
  inset-block-end: 22px;
  width: min(270px, calc(100% - 44px));
  border: 1px solid rgba(216, 189, 135, 0.36);
  border-inline-start: 3px solid var(--gold-500);
  border-radius: 14px;
}

.trust-item span,
.portrait-caption span,
.footer-brand p,
.footer-column a,
.footer-bottom {
  font-size: 0.84rem;
}

.treatment-hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(43, 95, 132, 0.38), transparent 30%),
    linear-gradient(128deg, var(--navy-950), var(--navy-900) 62%, #10344f);
}

.treatment-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
}

.hero-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.22);
}

.hero-facts div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(4, 17, 29, 0.42);
}

.hero-facts div:last-child { border-bottom: 0; }
.hero-facts strong { color: var(--gold-400); font-family: Georgia, serif; font-size: 1rem; }
.hero-facts span { color: white; font-weight: 650; }

.compact-heading {
  margin-bottom: 30px;
}

.topic-tablist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.topic-tab {
  display: grid;
  min-height: 104px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--navy-900);
  font-size: 1rem;
  text-align: start;
  white-space: normal;
  box-shadow: 0 12px 30px rgba(7, 26, 43, 0.05);
}

.topic-tab:hover {
  border-color: rgba(184, 154, 96, 0.68);
  background: white;
  transform: translateY(-2px);
}

.topic-tab .tab-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 154, 96, 0.52);
  border-radius: 50%;
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.topic-tab.is-active,
.topic-tab[aria-selected="true"] {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
  box-shadow: 0 18px 42px rgba(7, 26, 43, 0.2);
}

.topic-tab.is-active .tab-number,
.topic-tab[aria-selected="true"] .tab-number {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.topic-panel {
  margin-top: 26px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 28px;
}

.condition-card summary span {
  font-size: 1.24rem;
}

.condition-card summary small {
  font-size: 0.78rem;
}

.condition-body p,
.clinical-card p {
  font-size: 1rem;
  line-height: 1.85;
}

.condition-body strong {
  color: var(--navy-900);
}

.medical-alert {
  font-size: 0.95rem;
}

.medical-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(9, 35, 57, 0.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(7, 26, 43, 0.1);
}

.medical-figure img {
  width: 100%;
  height: 360px;
  padding: 20px;
  object-fit: contain;
  background: linear-gradient(145deg, #f8f7f3, #ecebe6);
}

.medical-figure figcaption {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.medical-figure figcaption strong {
  color: var(--navy-900);
}

.medical-figure figcaption span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font: 700 0.7rem Georgia, serif;
}

.medical-figure-wide {
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(250px, 0.9fr);
  align-items: center;
  margin-bottom: 26px;
}

.medical-figure-wide img {
  height: 390px;
}

.medical-figure-wide figcaption {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  border-top: 0;
  border-inline-start: 1px solid var(--line);
  font-size: 1.05rem;
}

.medical-sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 30px;
}

.medical-sequence.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  align-items: start;
  gap: 24px;
}

.single-column {
  grid-template-columns: 1fr;
}

.medical-figure-sticky {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.source-note {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f3f0e9;
  color: #5b646b;
  font-size: 0.84rem;
  line-height: 1.65;
}

.premium-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 900px) {
  .treatment-hero-grid,
  .medical-figure-wide,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .topic-tablist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .medical-figure-wide figcaption {
    border-top: 1px solid var(--line);
    border-inline-start: 0;
  }

  .medical-figure-sticky {
    position: static;
  }
}

@media (max-width: 780px) {
  body { font-size: 17px; }
  .portrait-frame { border-radius: 28px; }
  .topic-panel-head { align-items: start; }
  .medical-sequence,
  .medical-sequence.two-up { grid-template-columns: 1fr; }
  .medical-figure img { height: auto; max-height: 460px; }
  .premium-cta { align-items: start; flex-direction: column; }
}

@media (max-width: 520px) {
  .topic-tablist { grid-template-columns: 1fr; }
  .topic-tab { min-height: 78px; }
  .medical-figure-wide img { height: auto; }
}

/* About, PubMed and revised Migraine Compass */
.fellowship-highlight {
  margin: 30px 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(184, 154, 96, 0.52);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(200, 167, 106, 0.1), transparent 60%),
    #fff;
  box-shadow: 0 24px 60px rgba(7, 26, 43, 0.08);
}

.fellowship-highlight h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.35;
}

.fellowship-highlight p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.fellowship-highlight ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-inline-start: 22px;
  color: var(--navy-800);
  font-weight: 650;
}

.career-label {
  margin: 0 0 6px !important;
  color: var(--gold-600) !important;
  font-size: 0.82rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fellowship-step {
  margin-inline: -18px;
  padding: 28px 18px;
  border: 1px solid rgba(184, 154, 96, 0.46);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f6f1e7);
}

.research-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.pubmed-hero-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.pubmed-hero-card img {
  width: min(100%, 300px);
  height: auto;
}

.pubmed-hero-card strong {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: 1.35rem;
}

.pubmed-hero-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.pubmed-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #1b5b84;
  font: 800 1.25rem/1 "Heebo", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.pubmed-mark.compact {
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(27, 91, 132, 0.28);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(27, 91, 132, 0.08);
}

.pubmed-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #1b5b84;
  color: white;
  font: 800 1rem Georgia, serif;
}

.publication-card {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(7, 26, 43, 0.06);
}

.publication-copy h2 {
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
  line-height: 1.48;
}

.publication-copy p,
.section-note {
  font-size: 0.94rem;
  line-height: 1.7;
}

.publication-link {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.compass-preview-views {
  min-height: 360px;
  border-radius: 30px;
  background: #efeee9;
}

.compass-preview-views img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
}

.compass-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 79, 111, 0.42), transparent 30%),
    radial-gradient(circle at 88% 26%, rgba(184, 154, 96, 0.08), transparent 26%),
    var(--navy-950);
}

.compass-intro {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-block: clamp(46px, 7vw, 86px);
}

.compass-intro-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(40px, 7vw, 96px);
}

.compass-title {
  margin: 0;
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

[dir="ltr"] .compass-title {
  font-family: "Noto Serif", Georgia, serif;
}

.compass-subtitle {
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  line-height: 1.8;
}

.compass-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.compass-intro-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.compass-intro-points strong {
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.compass-privacy {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.compass-privacy span {
  color: var(--gold-400);
  font-size: 0.7rem;
}

.compass-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 167, 106, 0.42);
  border-radius: 32px;
  background: #efeee9;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.34);
}

.compass-visual img {
  width: 100%;
  height: auto;
}

.compass-dot-one { inset-inline-start: 16.4%; inset-block-start: 33%; }
.compass-dot-two { inset-inline-start: 49%; inset-block-start: 35%; }
.compass-dot-three { inset-inline-start: 84%; inset-block-start: 49%; }

.compass-shell .container {
  width: min(calc(100% - 40px), 1280px);
}

.compass-card {
  border-radius: 26px;
}

.compass-card .compass-figure {
  aspect-ratio: 2.2 / 1;
}

.compass-figure img {
  object-fit: contain;
  background: #efeee9;
}

.compass-question-panel {
  min-height: 480px;
}

.question-help {
  min-height: 0;
  font-size: 1.03rem;
  line-height: 1.75;
}

.answer-button {
  min-height: 62px;
  font-size: 1rem;
}

.answer-yes {
  border-color: rgba(200, 167, 106, 0.72);
}

.anatomy-explanation {
  display: grid;
  align-content: center;
  min-height: 380px;
}

.anatomy-explanation[hidden] {
  display: none;
}

.anatomy-tag {
  justify-self: start;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(200, 167, 106, 0.48);
  border-radius: 999px;
  color: var(--gold-400);
  font-size: 0.86rem;
  font-weight: 750;
}

.anatomy-explanation h2 {
  margin: 0;
  font-family: "Noto Serif Hebrew", "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.25;
}

.anatomy-explanation > p:not(.question-kicker):not(.anatomy-caution) {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.82;
}

.anatomy-caution {
  margin: 22px 0 0;
  padding: 15px 17px;
  border-inline-start: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.result-panel {
  grid-template-columns: 1fr;
}

.compass-card.show-results .result-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.result-map {
  display: grid;
  align-items: center;
  min-height: 540px;
  padding: 26px;
  background: #efeee9;
}

.result-map img {
  width: 100%;
  height: auto;
}

.result-side {
  margin-top: 18px;
  color: var(--gold-400);
}

.result-warning {
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .research-hero-grid,
  .compass-intro-grid,
  .compass-card.show-results .result-panel {
    grid-template-columns: 1fr;
  }

  .compass-visual {
    max-width: 820px;
  }

  .result-map {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .fellowship-step { margin-inline: 0; }
  .compass-intro { min-height: 0; }
  .compass-card .compass-figure { min-height: 0; aspect-ratio: 2.2 / 1; }
  .compass-question-panel { min-height: 500px; }
}

@media (max-width: 520px) {
  .compass-title { font-size: clamp(3rem, 15vw, 4.3rem); }
  .compass-visual { border-radius: 22px; }
  .compass-card .compass-figure { aspect-ratio: 2.2 / 1; }
  .compass-figure img { object-fit: contain; }
  .compass-question-panel { min-height: 540px; }
  .anatomy-explanation { min-height: 460px; }
  .pubmed-hero-card { padding: 20px; }
}

.feedback-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 8px;
}

.feedback-trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(200, 167, 106, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.feedback-form .field label,
.feedback-consent {
  font-size: 0.96rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  font-size: 1rem;
}

.brand-specialty,
.knowledge-card .category,
.hero-kicker span,
.media-card .source,
.form-note,
.voice-status,
.compass-intro-points strong {
  font-size: 0.82rem;
}

.language-link {
  font-size: 0.84rem !important;
}

.editorial-band p,
.feedback-consent {
  font-size: 0.94rem;
}

/* Final readability and navigation correction */
html[dir="rtl"] body {
  word-spacing: 0.055em;
}

body {
  font-size: 19px;
}

.main-nav a {
  font-size: 0.98rem;
}

.page-title {
  max-width: 100%;
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  line-height: 1.12;
  overflow-wrap: normal;
}

.research-hero .page-title,
.treatment-hero .page-title {
  font-size: clamp(2.65rem, 4.65vw, 4.45rem);
}

.page-lead,
.section-intro,
.topic-panel-head p {
  font-size: clamp(1.1rem, 1.45vw, 1.27rem);
  line-height: 1.82;
}

.eyebrow,
.breadcrumb,
.question-kicker,
.publication-year,
.footer-column strong {
  font-size: 0.93rem;
}

/* The main portrait is an ellipse on every screen, not an arch or a window. */
.portrait-frame,
.portrait-frame img {
  border-radius: 50%;
}

.portrait-frame {
  inset: 0;
}

.portrait-caption {
  inset-inline-end: 32px;
  inset-block-end: 36px;
  border-radius: 22px;
}

/* Thirteen coordinated clinical tabs with an accessible active state. */
.topic-tab {
  --tab-accent: #0d4f6c;
  --tab-surface: #eaf3f7;
  min-height: 112px;
  gap: 16px;
  border: 2px solid var(--tab-accent);
  background: var(--tab-surface);
  color: #071a2b;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
}

.topic-tab:nth-child(1) { --tab-accent: #0d4f6c; --tab-surface: #eaf3f7; }
.topic-tab:nth-child(2) { --tab-accent: #8a650f; --tab-surface: #f7f1df; }
.topic-tab:nth-child(3) { --tab-accent: #2f6b57; --tab-surface: #eaf4ef; }
.topic-tab:nth-child(4) { --tab-accent: #7a4159; --tab-surface: #f6edf1; }
.topic-tab:nth-child(5) { --tab-accent: #4f5f87; --tab-surface: #eef0f7; }
.topic-tab:nth-child(6) { --tab-accent: #8a5033; --tab-surface: #f7eee8; }
.topic-tab:nth-child(7) { --tab-accent: #6b5a8e; --tab-surface: #f1eef7; }
.topic-tab:nth-child(8) { --tab-accent: #486a73; --tab-surface: #ebf2f3; }
.topic-tab:nth-child(9) { --tab-accent: #9a5b45; --tab-surface: #f8eee9; }
.topic-tab:nth-child(10) { --tab-accent: #315d8a; --tab-surface: #eaf1f8; }
.topic-tab:nth-child(11) { --tab-accent: #66713a; --tab-surface: #f1f4e8; }
.topic-tab:nth-child(12) { --tab-accent: #963e50; --tab-surface: #f8eaed; }
.topic-tab:nth-child(13) { --tab-accent: #4b657a; --tab-surface: #edf2f5; }

.topic-tab:hover {
  border-color: var(--tab-accent);
  background: var(--tab-surface);
  box-shadow: 0 16px 34px rgba(7, 26, 43, 0.13);
}

.topic-tab.is-active,
.topic-tab[aria-selected="true"] {
  border-color: var(--tab-accent);
  background: var(--tab-accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(7, 26, 43, 0.22);
}

.topic-tab .tab-number {
  width: 46px;
  height: 46px;
  border-color: var(--tab-accent);
  background: rgba(255, 255, 255, 0.7);
  color: var(--tab-accent);
  font-size: 0.9rem;
}

.topic-tab.is-active .tab-number,
.topic-tab[aria-selected="true"] .tab-number {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.topic-panel {
  --section-accent: #0d4f6c;
  border-top: 6px solid var(--section-accent);
}

#panel-brachial { --section-accent: #0d4f6c; }
#panel-upper { --section-accent: #8a650f; }
#panel-lower { --section-accent: #2f6b57; }
#panel-face { --section-accent: #7a4159; }
#panel-tos { --section-accent: #4f5f87; }
#panel-headache { --section-accent: #8a5033; }
#panel-breast { --section-accent: #6b5a8e; }
#panel-back { --section-accent: #486a73; }
#panel-complex { --section-accent: #9a5b45; }
#panel-leg-transfer { --section-accent: #315d8a; }
#panel-rls { --section-accent: #66713a; }
#panel-foot { --section-accent: #963e50; }
#panel-rehab { --section-accent: #4b657a; }

.rubric-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rubric-link-grid.single { grid-template-columns: minmax(0, 1fr); }

.rubric-link-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(7, 26, 43, 0.13);
  border-inline-start: 4px solid var(--section-accent);
  border-radius: 18px;
  background: #fff;
  color: #071a2b;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 26, 43, 0.07);
}

.rubric-link-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(7, 26, 43, 0.12); }
.rubric-link-card > span { color: var(--section-accent); font-weight: 800; letter-spacing: .08em; }
.rubric-link-card h3 { margin: 0; font-size: 1.4rem; }
.rubric-link-card p { margin: 0; color: #4f5960; line-height: 1.75; }
.rubric-link-card b { color: var(--section-accent); }
.panel-feature-link { margin-top: 24px; }

.rehab-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.rehab-gallery figure,
.article-medical-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 43, 0.13);
  border-radius: 18px;
  background: #fff;
}

.rehab-gallery img,
.article-medical-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: #f7f4ed;
}

.rehab-gallery figcaption,
.article-medical-figure figcaption {
  padding: 14px 16px;
  color: #4f5960;
  font-size: .95rem;
  line-height: 1.6;
}

.article-medical-figure { margin-block: 24px; }
.article-medical-figure img { max-height: 620px; object-fit: contain; }
.phase-figures { padding: 12px 15px; border-inline-start: 3px solid #b7904f; border-radius: 8px; background: #f7f2e7; color: #31404b; font-weight: 600; }

.article-figure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-block: 24px;
}
.article-figure-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-figure-grid figure { margin: 0; overflow: hidden; border: 1px solid rgba(7,26,43,.13); border-radius: 16px; background: #fff; }
.article-figure-grid img { display: block; width: 100%; height: 420px; object-fit: contain; background: #f7f4ed; }
.article-figure-grid figcaption { padding: 12px 14px; color: #4f5960; font-size: .9rem; line-height: 1.55; }

.topic-panel .detail-number {
  color: var(--section-accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.topic-panel .condition-card {
  border-inline-start: 4px solid var(--section-accent);
}

.condition-card summary {
  gap: 8px;
  padding-block: 21px;
}

.condition-card summary span {
  font-size: 1.34rem;
  line-height: 1.45;
}

.condition-card summary small {
  color: #4f5960;
  font-size: 0.93rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.condition-body p,
.clinical-card p {
  font-size: 1.08rem;
  line-height: 1.9;
}

.condition-body h3 {
  font-size: 1.08rem;
}

.medical-alert,
.medical-figure figcaption,
.medical-figure-wide figcaption {
  font-size: 1rem;
  line-height: 1.75;
}

.publication-copy h2 {
  font-size: clamp(1.3rem, 1.85vw, 1.55rem);
}

.publication-copy p,
.section-note,
.pubmed-hero-card span {
  font-size: 1.02rem;
  line-height: 1.78;
}

.publication-link {
  font-size: 1rem;
}

.hero-facts div {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
}

.hero-facts strong,
.hero-facts span {
  display: block;
  font-size: 1.05rem;
  line-height: 1.55;
}

.compass-intro-points {
  gap: 14px;
}

.compass-intro-points span {
  gap: 10px;
  font-size: 1rem;
}

.compass-intro-points strong {
  font-size: 0.9rem;
}

.compass-disclaimer,
.compass-privacy,
.anatomy-caution,
.result-warning,
.feedback-trust-row span,
.form-note {
  font-size: 0.98rem !important;
  line-height: 1.7;
}

.trust-item span,
.portrait-caption span,
.footer-brand p,
.footer-column a,
.footer-bottom {
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-title,
  .research-hero .page-title,
  .treatment-hero .page-title {
    font-size: clamp(2.45rem, 8vw, 3.85rem);
  }

  .topic-tab {
    min-height: 100px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 18px;
  }

  .portrait-frame,
  .portrait-frame img {
    border-radius: 50%;
  }

  .portrait-frame {
    inset: 0;
  }

  .portrait-caption {
    inset-inline-end: 24px;
    inset-block-end: 28px;
  }

  .condition-card summary span {
    font-size: 1.25rem;
  }

  .rubric-link-grid { grid-template-columns: 1fr; }
  .rehab-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-figure-grid,
  .article-figure-grid.two { grid-template-columns: 1fr; }
  .article-figure-grid img { height: auto; max-height: 520px; }

  .condition-card summary small,
  .condition-body p {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .topic-tab {
    min-height: 86px;
    font-size: 1.04rem;
  }

  .rehab-gallery { grid-template-columns: 1fr; }

  .page-title,
  .research-hero .page-title,
  .treatment-hero .page-title {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }
}

/* Migraine Compass — illustrated question and anatomy flow */
.compass-card:not(.show-results) {
  display: grid;
  grid-template-columns: 1fr;
  background: #071725;
}

.compass-card .compass-figure {
  min-height: 0;
  aspect-ratio: 1199 / 1312;
  border-block-end: 1px solid rgba(200, 167, 106, 0.24);
  background: #061522;
}

.compass-card .compass-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #061522;
}

.compass-card .compass-figure.is-anatomy img {
  filter: saturate(0.96) contrast(1.02);
}

.compass-card .compass-figure.is-summary {
  aspect-ratio: 2.2 / 1;
  background: #efeee9;
}

.compass-card .compass-figure.is-summary img {
  object-fit: contain;
  background: #efeee9;
}

.compass-question-panel {
  min-height: 0;
  padding: clamp(32px, 5vw, 70px);
}

.question-title {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.32;
}

.question-help {
  max-width: 680px;
  min-height: 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.answer-button {
  min-height: 64px;
  font-size: 1.08rem;
}

.anatomy-explanation {
  min-height: 0;
  align-content: center;
}

.anatomy-explanation h2 {
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.3;
}

.anatomy-explanation > p:not(.question-kicker):not(.anatomy-caution):not(.anatomy-note) {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.82;
}

.anatomy-note {
  max-width: 760px;
  margin: 20px 0 0;
  padding: 15px 17px;
  border: 1px solid rgba(210, 116, 92, 0.42);
  border-radius: 12px;
  background: rgba(210, 116, 92, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.anatomy-note[hidden] {
  display: none;
}

.anatomy-caution {
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (min-width: 981px) {
  .compass-card:not(.show-results) {
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
  }

  [dir="rtl"] .compass-card:not(.show-results) .compass-figure {
    order: 2;
  }

  [dir="rtl"] .compass-card:not(.show-results) .compass-question-panel {
    order: 1;
  }

  .compass-card .compass-figure {
    min-height: 660px;
    aspect-ratio: auto;
    border-block-end: 0;
    border-inline-end: 1px solid rgba(200, 167, 106, 0.24);
  }

  [dir="rtl"] .compass-card .compass-figure {
    border-inline-end: 0;
    border-inline-start: 1px solid rgba(200, 167, 106, 0.24);
  }

  .compass-card .compass-figure.is-summary {
    aspect-ratio: auto;
  }

  .compass-question-panel {
    min-height: 660px;
  }
}

@media (max-width: 780px) {
  .compass-card .compass-figure {
    min-height: 0;
    aspect-ratio: 1199 / 1312;
  }

  .compass-card .compass-figure.is-summary {
    aspect-ratio: 2.2 / 1;
  }

  .compass-question-panel {
    min-height: 0;
    padding: 34px 26px 38px;
  }

  .question-title,
  .anatomy-explanation h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.5rem);
  }

  .question-help,
  .anatomy-explanation > p:not(.question-kicker):not(.anatomy-caution):not(.anatomy-note) {
    font-size: 1.04rem;
  }
}

@media (max-width: 520px) {
  .answer-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .answer-button {
    min-height: 60px;
  }

  .anatomy-explanation {
    min-height: 0;
  }

  .anatomy-tag {
    border-radius: 12px;
    line-height: 1.5;
  }

  .compass-controls {
    gap: 14px;
  }
}
