/* =========================================================
   Dr. Lori Sidman — stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,650&family=Fraunces:ital,opsz,wght@1,9..144,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #14140f;
  --ink-soft: #33332f;
  --cream: #f7f5f1;
  --lavender: #eae8ec;
  --white: #ffffff;
  --blue: #9cb4d9;
  --blue-deep: #7c98c4;
  --blue-pale: #c7d5ea;
  --blue-ink: #2c3c58;
  --line: rgba(20, 20, 15, 0.14);
  --line-on-dark: rgba(255, 255, 255, 0.25);

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Fraunces', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 84px;
  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--ink);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 24px -8px rgba(124,152,196,0.6); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: #000; box-shadow: 0 10px 24px -8px rgba(0,0,0,0.45); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

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

.btn-sm { padding: 11px 22px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  width: 100%;
}
.nav-logo { justify-self: start; }
.nav-links { justify-self: center; }
.nav-right { justify-self: end; }
.nav.on-dark { color: var(--white); }
.nav.on-light { color: var(--ink); }

.nav.scrolled {
  height: 72px;
  background: rgba(247, 245, 241, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.35);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 1.2rem;
  padding: 4px 0;
  opacity: 0.92;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { opacity: 1; }

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

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--cream);
  z-index: 190;
  display: flex;
  flex-direction: column;
  padding: 30px clamp(20px,5vw,64px) 40px;
  gap: 26px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-panel.open {
  opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible;
}
.mobile-panel a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.mobile-panel .btn { align-self: flex-start; margin-top: 6px; }

/* ---------- Hero (video) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,8,0.42) 0%, rgba(10,10,8,0.08) 32%, rgba(10,10,8,0.15) 60%, rgba(10,10,8,0.72) 100%);
}
/* Hero variant: same dark gradient background as the About/Location page hero */
.hero-gradient {
  background: linear-gradient(150deg, #0d0d0b, #1a1a16 60%, #10151f);
}
.hero-gradient::after {
  content: '';
  position: absolute;
  right: -10%; top: -30%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(156,180,217,0.22), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 clamp(20px, 5vw, 64px) clamp(64px, 9vw, 110px);
  max-width: 760px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-bottom: 22px;
}
.hero-content p {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 34px;
  opacity: 0.96;
}
/* ---------- Dark page hero (About) ---------- */
.hero-dark {
  background: linear-gradient(150deg, #0d0d0b, #1a1a16 60%, #10151f);
  color: var(--white);
  padding-top: calc(var(--nav-h) + 90px);
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.hero-dark::after {
  content: '';
  position: absolute;
  right: -10%; top: -30%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(156,180,217,0.22), transparent 70%);
}
.hero-dark h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--blue-pale);
  position: relative;
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-tight { padding: clamp(50px, 7vw, 90px) 0; }
.bg-cream { background: var(--cream); }
.bg-lavender { background: var(--lavender); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-blue {
  background: linear-gradient(120deg, var(--blue-pale), var(--blue) 55%, var(--blue-deep));
  color: var(--blue-ink);
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 40px;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.split-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 60px -30px rgba(20,20,15,0.35);
}
.split-media .split-portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
}
.split-portrait-caption { text-align: center; margin-top: 20px; }
.split-portrait-caption .name { font-family: var(--font-display); font-size: 1.3rem; }
.split-portrait-caption .role { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); margin-top: 4px; }
.split-body p { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.split-body h2, .split-body h3 { margin-bottom: 20px; }

.lede {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  margin-bottom: 26px;
}

/* Accordion */
.accordion { border-top: 1px solid var(--line); margin-top: 44px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  padding: 26px 4px;
  cursor: pointer;
  color: var(--ink);
}
.accordion-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.accordion-icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.accordion-icon::after { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.accordion-item.open .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.accordion-panel-inner { overflow: hidden; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-body { padding: 0 4px 30px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.accordion-body .edu-row { margin-bottom: 16px; }
.accordion-body .edu-row:last-child { margin-bottom: 0; }
.accordion-body .edu-role {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: block;
  margin-bottom: 4px;
}

/* Location band */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}
.location-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--blue-ink);
  padding-top: 22px;
  margin-bottom: 30px;
  opacity: 0.4;
  border-color: rgba(44,60,88,0.35);
}
.location-text h2 { opacity: 1; }
.location-side {
  border-top: 1px solid rgba(44,60,88,0.35);
  padding-top: 22px;
}
.location-side p { font-size: 1.02rem; line-height: 1.65; margin-bottom: 26px; }
.map-frame {
  width: 100%; height: 340px;
  border: 0; border-radius: 4px;
  filter: saturate(0.9);
}
.map-frame-wrap { border-radius: 4px; overflow: hidden; box-shadow: 0 24px 50px -28px rgba(20,20,15,0.4); }

/* Balanced two-column variant (homepage location band) */
.location-grid-balanced { align-items: stretch; }
.location-grid-balanced .location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(44,60,88,0.35);
  padding-top: 22px;
}
.location-grid-balanced .location-text h2 {
  border: none;
  padding-top: 0;
  margin-bottom: 10px;
}
.location-grid-balanced .location-address-sub {
  font-size: 1.05rem;
  opacity: 0.75;
  margin-bottom: 30px;
}
.location-grid-balanced .location-cta-copy {
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}
.location-grid-balanced .map-frame-wrap { height: 100%; min-height: 420px; }
.location-grid-balanced .map-frame { height: 100%; min-height: 420px; }

/* Office hours band */
.hours-band {
  position: relative;
  background: linear-gradient(135deg, #1c2438, #2c3c58 55%, #46618c);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hours-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 45%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06), transparent 40%);
}
.hours-band .inner { position: relative; z-index: 1; }
.hours-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue-pale); margin-bottom: 30px; }
.hours-list { list-style: none; margin: 0; padding: 0; display: inline-flex; flex-direction: column; gap: 10px; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hours-list li { display: flex; justify-content: space-between; gap: 40px; }
.hours-list .day { font-family: var(--font-ui); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; color: var(--blue-pale); align-self: center; }

/* Credentials */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}
.cred-card {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(44,60,88,0.18);
  border-radius: 14px;
  padding: 40px 24px;
  backdrop-filter: blur(6px);
}
.cred-icon {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blue-ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 28px; height: 28px; }
.cred-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cred-card p { font-size: 0.94rem; color: var(--blue-ink); opacity: 0.85; line-height: 1.5; }

/* Quote */
.quote-block {
  border-left: 2px solid var(--blue);
  padding-left: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.quote-block cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--font-ui); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-pale);
  margin-bottom: 18px;
}
.footer-logo { font-size: 1.6rem; margin-bottom: 14px; }
.footer p, .footer a { font-size: 0.96rem; line-height: 1.8; opacity: 0.88; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  opacity: 0.6;
}


/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,15,12,0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 46px);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  transition: background 0.25s ease, transform 0.25s ease;
}
.modal-close:hover { background: var(--ink); color: var(--cream); transform: rotate(90deg); }
.modal h2 { font-size: 1.7rem; margin-bottom: 8px; }
.modal .modal-sub { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 28px; line-height: 1.5; }

.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(124,152,196,0.28);
}
textarea { resize: vertical; min-height: 100px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-status {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 8px;
  display: none;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.success { background: #e4efe4; color: #2c5233; }
.form-status.error { background: #f6e6e2; color: #7a3420; }
.form-status a { text-decoration: underline; }

/* Login modal */
.login-modal .login-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.login-modal .login-icon svg { width: 24px; height: 24px; color: var(--blue-ink); }
.login-contact {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.login-contact a { font-family: var(--font-ui); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  z-index: 300;
  transition: width 0.1s linear;
}

/* ---------- Philosophy statement ---------- */
.philosophy {
  text-align: center;
  padding: clamp(70px, 11vw, 140px) 0;
}
.philosophy .statement {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.28;
  max-width: 880px;
  margin: 0 auto;
}
.philosophy .statement em {
  font-style: italic;
  color: var(--blue-deep);
}

/* ---------- Compact profile / portrait ---------- */
.profile-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.portrait-sm {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 14px 30px -14px rgba(20,20,15,0.35);
  border: 3px solid var(--white);
}
.portrait-sm img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.profile-inline .name { font-family: var(--font-display); font-size: 1.3rem; }
.profile-inline .role { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); margin-top: 4px; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--blue);
  padding-left: 24px;
  margin: 30px 0;
}

/* ---------- Focus grid ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.focus-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.35s ease, transform 0.35s ease;
}
.focus-card:hover { background: var(--cream); transform: translateY(-2px); }
.focus-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blue-deep);
  display: block;
  margin-bottom: 18px;
}
.focus-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.focus-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Sticky profile card (About page) ---------- */
.profile-card {
  background: var(--lavender);
  border-radius: 18px;
  padding: 36px 30px;
  position: sticky;
  top: 110px;
}
.profile-card .portrait-sm { width: 130px; height: 130px; margin-bottom: 18px; }
.profile-card h3 { font-size: 1.3rem; margin-bottom: 2px; }
.profile-card .role { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 22px; display: block; }
.profile-facts { list-style: none; margin: 0 0 26px; padding: 0; border-top: 1px solid var(--line); }
.profile-facts li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.profile-facts li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--blue-deep); }

/* ---------- Credentials strip (real badges) ---------- */
.cred-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(30px, 6vw, 70px);
}
.cred-strip .cred-item { text-align: center; max-width: 190px; }
.cred-strip .badge {
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 30px -18px rgba(20,20,15,0.35);
  overflow: hidden;
}
.cred-strip .badge img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.cred-strip .badge svg { width: 34px; height: 34px; color: var(--blue-ink); }
.cred-strip h4 { font-size: 1rem; margin-bottom: 4px; }
.cred-strip p { font-size: 0.86rem; color: var(--blue-ink); opacity: 0.85; line-height: 1.45; }

.cred-strip .cred-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cred-strip.in-view .cred-item { opacity: 1; transform: none; }
.cred-strip.in-view .cred-item:nth-child(1) { transition-delay: 0s; }
.cred-strip.in-view .cred-item:nth-child(2) { transition-delay: 0.25s; }
.cred-strip.in-view .cred-item:nth-child(3) { transition-delay: 0.5s; }
.cred-strip.in-view .cred-item:nth-child(4) { transition-delay: 0.75s; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.max-w-620 { max-width: 620px; }
.center-col { margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cred-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr !important; }
  .profile-card { position: static; }
}

@media (max-width: 620px) {
  .focus-grid { grid-template-columns: 1fr; }
  .profile-inline { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero-content { padding-bottom: 90px; }
  .hours-list li { gap: 26px; }
}
