:root {
  /* Colors come from design-tokens.css (--src-*), extracted from the source
     site's computed styles. These are semantic aliases onto that palette. */
  --text: var(--src-navy);
  --text-muted: #565b6b;
  --bg: #ffffff;
  --radius: 14px;
  --radius-soft: 28px;
  --radius-pill-card: 42px;
  --blob-radius: 63% 37% 54% 46% / 43% 51% 49% 57%;
  --blob-radius-2: 37% 63% 46% 54% / 57% 43% 57% 43%;
  --max-width: 1120px;
  --font-display: "Frank Ruhl Libre", Georgia, serif;
  --font-body: "Heebo", -apple-system, "Segoe UI", Arial, sans-serif;
  --motion-duration: 0.5s;
  font-size: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

a { color: var(--src-navy); }

h1, h2, h3 { line-height: 1.25; margin-block: 0 0.6em; font-family: var(--font-display); font-weight: 500; font-style: italic; }
h1 { color: var(--src-navy); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--src-navy); }
h3 { font-size: 1.3rem; color: var(--src-navy); }
p { margin-block: 0 1em; max-width: 62ch; }

section { padding-block: 80px; }
section.alt { background: var(--src-bg-light); }
section.dark { background: var(--src-bg-dark); color: #fff; }
section.dark h2, section.dark h3 { color: #fff; }
section.dark p, section.dark li { color: var(--src-cream); }
section.dark a:not(.btn) { color: var(--src-blue); }
section.dark-slate { background: var(--src-bg-slate); color: #fff; }
section.dark-slate h2, section.dark-slate h3 { color: #fff; }
section.dark-slate p, section.dark-slate li { color: var(--src-cream); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--src-navy);
  outline-offset: 2px;
}

/* Buttons, soft full pills like the source */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--src-yellow); color: var(--src-navy); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(28,31,48,0.22); }
.btn-outline { background: transparent; color: var(--src-navy); border-color: var(--src-navy); }
.btn-outline:hover { background: var(--src-bg-dark); color: #fff; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Phone pill, like the yellow contact pill beside the nav in the source */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--src-yellow);
  color: var(--src-navy);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.phone-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(28,31,48,0.18); }
@media (max-width: 900px) {
  .phone-pill { display: none; }
}

/* Header / Nav, soft pill top bar like the source */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  gap: 16px;
}
.brand { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--src-navy); text-decoration: none; font-style: italic; margin-inline-end: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 10px 28px;
  background: var(--src-blue);
  border-radius: 999px;
}
.nav-links a { text-decoration: none; color: var(--src-navy); font-weight: 600; }
.nav-links a:hover { color: var(--src-bg-dark); }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    inset-inline: 24px;
    top: 100%;
    background: var(--src-blue);
    flex-direction: column;
    padding: 18px 24px;
    gap: 18px;
    border-radius: var(--radius);
    display: none;
    margin-top: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--src-navy);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 1.4rem;
  }
}

/* Hero, organic blob photo with layered decorative shapes, like the source */
.hero {
  background: var(--src-bg-light);
  padding-block: 56px 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
}
.hero h1 { font-size: clamp(1.9rem, 2.9vw, 2.5rem); font-style: italic; }
.hero .subtitle { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4em; }
.hero .experience { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1.4em; }
.hero-image {
  position: relative;
  padding: 30px;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0 10% 15% 0;
  background: var(--src-teal);
  border-radius: var(--blob-radius);
  z-index: 0;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset-inline-start: -6%;
  inset-block-end: -4%;
  width: 34%;
  height: 30%;
  background: var(--src-yellow);
  border-radius: var(--blob-radius-2);
  z-index: 0;
}
.hero-image img {
  position: relative;
  z-index: 1;
  border-radius: var(--blob-radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Flowing content blocks (services, business assets etc), no card borders, like the source */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 32px;
}
.flow-block h3 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.5rem; }
.flow-block ul { padding-inline-start: 20px; margin: 0; }
.flow-block li { margin-bottom: 0.6em; }

/* Cards grid, used only where individual items truly need separation */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 28px;
}
.card ul { padding-inline-start: 20px; margin: 0; }
.card li { margin-bottom: 0.5em; }
.card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; }

/* Pill cards, short single-idea cards like the "why Orna" set in the source */
.cards-grid.pill-cards {
  gap: 20px;
}
.pill-cards .card {
  border-radius: var(--radius-pill-card);
  text-align: center;
  padding: 36px 28px;
  background: var(--src-teal);
}
.pill-cards .card:nth-child(6n+2) { background: var(--src-lavender); }
.pill-cards .card:nth-child(6n+3) { background: var(--src-bg-slate); }
.pill-cards .card:nth-child(6n+4) { background: var(--src-blue); }
.pill-cards .card:nth-child(6n+5) { background: var(--src-indigo); }
.pill-cards .card:nth-child(6n+6) { background: var(--src-yellow); }
.pill-cards .card h3 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.25rem; color: var(--src-navy); }
/* Cards on darker backgrounds (slate, indigo) need light text for contrast */
.pill-cards .card:nth-child(6n+3) h3,
.pill-cards .card:nth-child(6n+3) p,
.pill-cards .card:nth-child(6n+5) h3,
.pill-cards .card:nth-child(6n+5) p {
  color: #fff;
}

/* Lectures, full-text panels with a huge flat number, like the source
   (the source shows each lecture as a full panel, not a short preview card) */
.lecture-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  padding-block: 40px;
  border-top: 1px solid rgba(28,31,48,0.12);
}
.lecture-panel:first-of-type { border-top: none; }
.lecture-number {
  display: block;
  font-family: var(--font-body);
  font-size: 6rem;
  font-weight: 800;
  color: var(--src-teal);
  line-height: 1;
}
.lecture-title {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.lecture-body p { max-width: 68ch; }
.lecture-meta {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 640px) {
  .lecture-panel { grid-template-columns: 1fr; gap: 12px; }
  .lecture-number { font-size: 4rem; }
}

/* Details card: company, specialties, experience, contact, languages, location */
.details-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 40px;
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 32px;
}
.details-card > div { display: flex; flex-direction: column; gap: 4px; }
.details-label { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--src-teal); font-size: 0.95rem; }
.details-value { font-weight: 600; color: var(--src-navy); }

/* Clinical expertise, numbered horizontal rows with a divider like the source */
.expertise-rows { margin-top: 32px; }
.expertise-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding-block: 28px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.expertise-row:first-child { border-top: none; }
.expertise-row p { margin: 0; max-width: 60ch; }
.expertise-row .expertise-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}
.expertise-row .expertise-num { font-family: var(--font-body); font-weight: 800; font-size: 1.6rem; color: #fff; }
.expertise-row .expertise-name { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.3rem; color: #fff; }
@media (max-width: 760px) {
  .expertise-row { grid-template-columns: 1fr; }
  .expertise-row .expertise-heading { order: -1; }
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.step { padding: 8px 4px; }
.step-num { font-family: var(--font-body); font-size: 2.2rem; font-weight: 800; color: var(--src-olive); }
#how-it-works h2, #how-it-works h3 { color: var(--src-olive); }

/* Testimonials, soft blob background like the source */
.testimonial {
  background: var(--src-blue);
  border-radius: var(--blob-radius);
  padding: 32px 40px;
  margin-bottom: 24px;
}
.testimonial p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; max-width: none; color: var(--src-navy); }
.testimonial cite { display: block; margin-top: 14px; font-style: normal; font-weight: 700; color: var(--src-navy); }

/* Contact form */
.contact-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin-inline: auto;
}
.contact-form label { font-weight: 600; display: block; margin-bottom: 6px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--src-teal);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--src-navy); outline: none; }
.checkbox-row { display: flex; align-items: center; gap: 10px; }
.checkbox-row input { width: 22px; height: 22px; }
.form-status { font-weight: 700; min-height: 1.4em; }
.form-status.success { color: var(--src-olive); }
.form-status.error { color: #b3261e; }
.contact-form .btn-primary { background: var(--src-indigo); color: #fff; }
.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Logo gallery */
.logo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
.logo-gallery img {
  max-height: 70px;
  width: auto;
  margin-inline: auto;
  filter: grayscale(20%);
}

/* Footer */
footer.site-footer {
  background: var(--src-bg-slate);
  color: #fff;
  padding-block: 44px;
  border-start-start-radius: 48px;
  border-start-end-radius: 48px;
}
footer.site-footer a { color: #fff; text-decoration: underline; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 60;
}
.whatsapp-float svg { width: 30px; height: 30px; }

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

.skip-link {
  position: absolute;
  right: 10px;
  top: -50px;
  background: var(--src-bg-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus { top: 10px; }

/* Scroll-reveal animation: subtle fade + slight rise, once per element.
   Fully disabled under prefers-reduced-motion (rule handled in JS too, this is the CSS half). */
@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--motion-duration) ease-out, transform var(--motion-duration) ease-out;
  }
  [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .card, .flow-block, .step, .testimonial {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .card:hover, .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(28,31,48,0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; }
  * { scroll-behavior: auto !important; }
}
