/* =========================================================
   LOREDO HAND CARE INSTITUTE | Master Stylesheet
   Design System: Deep Navy, Sterile White, Surgical Steel, Medical Blue
   ========================================================= */

:root {
  --navy: #0A2342;
  --navy-80: #1B3555;
  --white: #F8FAFC;
  --steel: #6B7280;
  --steel-light: #E5E7EB;
  --medical-blue: #1E6FDB;
  --medical-blue-dark: #1557B0;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --text: #111827;
  --text-muted: #4B5563;
  --bg-soft: #F3F6FB;
  --shadow-sm: 0 1px 2px rgba(10, 35, 66, 0.06);
  --shadow-md: 0 6px 18px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 35, 66, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* --------- Reset --------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--medical-blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--medical-blue-dark); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.22;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

/* --------- Layout --------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 56px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 96px 0; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .container { padding: 0 40px; }
}

/* --------- Top Utility Bar --------- */
.topbar {
  background: var(--navy);
  color: #CBD5E1;
  font-size: 0.9rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .topbar-left span { margin-right: 16px; }
.topbar .topbar-right a { margin-left: 14px; }

/* --------- Header --------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--steel-light);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}
.brand .brand-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  flex: 0 0 auto;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .brand-logo { height: 48px; }
}
.footer-brand .brand-logo {
  height: 56px;
  margin-bottom: 12px;
  border-radius: 8px;
  filter: brightness(0) invert(1); /* placeholder: temporary white-out until true white-variant logo is selected in Canva phase */
}
.brand .brand-text { line-height: 1.15; }
.brand .brand-text small { display: block; color: var(--steel); font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

.nav-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--steel-light);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--navy);
}
.primary-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--steel-light);
  box-shadow: var(--shadow-md);
}
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; margin: 0; padding: 12px 24px; }
.primary-nav li { margin: 0; }
.primary-nav a {
  display: block;
  padding: 12px 8px;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--steel-light);
}
.primary-nav a:hover { color: var(--medical-blue); text-decoration: none; }
.header-cta { display: none; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    flex: 1;
    margin: 0 24px;
  }
  .primary-nav ul { display: flex; gap: 6px; padding: 0; }
  .primary-nav a { border: none; padding: 10px 14px; border-radius: 8px; }
  .primary-nav a:hover { background: var(--bg-soft); }
  .header-cta { display: inline-flex; }
}

/* --------- Buttons --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--medical-blue); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--medical-blue-dark); color: #fff; box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-80); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; }

/* --------- Hero --------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A2342 0%, #1B3555 60%, #1E6FDB 140%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(255,255,255,0.08) 0, transparent 40%),
                    radial-gradient(circle at 20% 80%, rgba(30,111,219,0.3) 0, transparent 45%);
}
.hero .container { position: relative; padding-top: 90px; padding-bottom: 90px; }
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.12rem; }
.hero-eyebrow {
  display: inline-block;
  color: #A9D4FF;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
}
.hero-stats .stat span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* --------- Cards --------- */
.card {
  background: #fff;
  border: 1px solid var(--steel-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #C7D3E3; }
.card h3 { margin-top: 0; color: var(--navy); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--medical-blue);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin-top: 10px;
}
.card a.card-link::after { content: "→"; transition: transform 0.15s ease; }
.card a.card-link:hover::after { transform: translateX(3px); }

/* --------- Section Headers --------- */
.section-head { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow {
  color: var(--medical-blue);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}

/* --------- Feature Strip --------- */
.feature-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--steel-light);
  border-bottom: 1px solid var(--steel-light);
  padding: 28px 0;
}
.feature-strip .grid-4 { gap: 20px; }
.feature-strip .feature {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; color: var(--navy);
}
.feature .feature-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--medical-blue); flex: 0 0 auto; }

/* --------- Surgeon Spotlight --------- */
.surgeon-spotlight { background: #fff; }
.surgeon-spotlight .surgeon-media {
  background: linear-gradient(135deg, var(--navy) 0%, var(--medical-blue) 100%);
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: grid; place-items: center;
  color: #fff;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.surgeon-spotlight .surgeon-media .credential-stack {
  border-left: 3px solid rgba(255,255,255,0.4);
  padding-left: 22px;
}
.surgeon-spotlight h2 { margin-bottom: 20px; }
.credential-list { list-style: none; padding: 0; margin: 20px 0; }
.credential-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text);
}
.credential-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--medical-blue);
  border-radius: 50%;
}
.credential-list li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

/* --------- Conditions Grid --------- */
.conditions-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .conditions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .conditions-grid { grid-template-columns: repeat(3, 1fr); } }
.condition-tile {
  background: #fff;
  border: 1px solid var(--steel-light);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 170px;
  transition: all 0.2s ease;
}
.condition-tile:hover { border-color: var(--medical-blue); box-shadow: var(--shadow-md); text-decoration: none; }
.condition-tile h4 { font-family: var(--font-display); color: var(--navy); margin: 0 0 8px; font-size: 1.15rem; }
.condition-tile p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
.condition-tile .tile-link { color: var(--medical-blue); font-weight: 700; margin-top: 12px; font-size: 0.9rem; }

/* --------- CTA Banner --------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--medical-blue));
  color: #fff;
  padding: 72px 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 48px auto;
  max-width: calc(var(--container) - 48px);
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 28px; }

/* --------- Testimonials / Reviews --------- */
.review {
  background: var(--bg-soft);
  border-left: 4px solid var(--medical-blue);
  border-radius: var(--radius-md);
  padding: 26px;
}
.review blockquote {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
}
.review .reviewer { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.review .stars { color: var(--warning); letter-spacing: 2px; margin-bottom: 10px; font-size: 1.05rem; }

/* --------- Forms --------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--steel-light);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--steel-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--medical-blue);
  box-shadow: 0 0 0 3px rgba(30, 111, 219, 0.18);
}
textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.85rem;
  color: var(--steel);
  background: var(--bg-soft);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--medical-blue);
}

/* --------- Tables --------- */
.info-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.info-table th, .info-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--steel-light);
}
.info-table th { background: var(--bg-soft); font-weight: 700; color: var(--navy); }

/* --------- Breadcrumb --------- */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--steel);
  padding: 20px 0 0;
}
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--medical-blue); }
.breadcrumb .sep { margin: 0 8px; color: var(--steel-light); }

/* --------- Page Hero (non-homepage) --------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-80) 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 760px; }

/* --------- Content Article --------- */
.article-body { max-width: 820px; }
.article-body h2 { margin-top: 40px; }
.article-body h3 { margin-top: 28px; }
.article-body ul { padding-left: 22px; }
.article-body ul li { margin-bottom: 8px; color: var(--text-muted); }
.article-body .callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--medical-blue);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 28px 0;
}
.article-body .callout strong { color: var(--navy); display: block; margin-bottom: 6px; }

/* --------- Footer --------- */
.site-footer {
  background: var(--navy);
  color: #CBD5E1;
  padding: 64px 0 28px;
  margin-top: 80px;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: #A9D4FF; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand h4 { color: #fff; margin-bottom: 10px; }
.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--medical-blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.85rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #94A3B8;
}

/* --------- Utility --------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lang-switch { font-size: 0.9rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --------- Accessibility --------- */
:focus-visible { outline: 3px solid var(--medical-blue); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* --------- About page: credential grid, timeline, specialty grid, reels, advocacy --------- */
.portrait-hero {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 640px;
  object-position: center top;
}
.portrait-caption {
  text-align: center;
  color: var(--steel);
  font-size: 0.88rem;
  margin-top: 10px;
  font-style: italic;
}

.creds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 28px 0 0;
}
@media (min-width: 768px) { .creds-grid { grid-template-columns: repeat(3, 1fr); } }
.creds-grid .card strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.creds-grid .card small {
  color: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.creds-grid .card p { margin: 0; font-size: 0.95rem; }

.cred-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}
.cred-badge {
  background: var(--bg-soft);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--steel-light);
}

.academic-timeline { list-style: none; padding: 0; margin: 24px 0; }
.academic-timeline li {
  padding: 14px 0;
  border-bottom: 1px solid var(--steel-light);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
}
.academic-timeline time {
  color: var(--medical-blue);
  font-weight: 700;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.academic-timeline .sub {
  display: block;
  color: var(--steel);
  font-size: 0.9rem;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .academic-timeline li { grid-template-columns: 1fr; gap: 4px; }
}

.specialty-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .specialty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .specialty-grid { grid-template-columns: repeat(3, 1fr); } }
.specialty-card {
  background: #fff;
  border: 1px solid var(--steel-light);
  border-radius: var(--radius-md);
  padding: 22px;
}
.specialty-card strong {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-family: var(--font-display);
}
.specialty-card p { margin: 0; font-size: 0.95rem; }

.reel-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 24px; }
@media (min-width: 768px) { .reel-grid { grid-template-columns: 1fr 1fr; } }
.reel-grid-three { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 24px; }
@media (min-width: 640px) { .reel-grid-three { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .reel-grid-three { grid-template-columns: repeat(3, 1fr); } }

.social-follow { text-align: center; margin-top: 40px; }
.social-follow p {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.social-follow-links {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-follow-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.15s ease;
}
.social-follow-links a:hover { background: var(--medical-blue); color: #fff; text-decoration: none; }

.reel-group-head {
  margin-top: 40px;
  margin-bottom: 18px;
}
.reel-group-head h2 { margin-bottom: 4px; }
.reel-group-head p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.reel-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
  max-width: 420px;
  margin: 0 auto;
}
.reel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-caption {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
}

.advocacy-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.veterans-placeholder {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  border-left: 4px solid var(--medical-blue);
}
.veterans-placeholder strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.veterans-placeholder p { color: rgba(255,255,255,0.85); margin: 0; }

/* --------- Blog posts --------- */
.blog-post-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--steel-light);
}
.blog-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.blog-byline .byline-credential {
  background: var(--bg-soft);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--steel-light);
}

.reel-inline {
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--steel-light);
  border-bottom: 1px solid var(--steel-light);
}
.reel-inline-caption {
  margin: 12px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--steel);
  font-style: italic;
  max-width: 520px;
}
.youtube-short-embed {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.youtube-short-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.instagram-embed-wrapper {
  max-width: 540px;
  margin: 0 auto;
}
.fb-reel-embed {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.fb-reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-list { margin: 24px 0 0; }
.faq-list .faq-item {
  border: 1px solid var(--steel-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
  background: #fff;
}
.faq-list .faq-item[open] { background: var(--bg-soft); border-color: var(--medical-blue); }
.faq-list summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  padding-right: 24px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 1.4rem;
  color: var(--medical-blue);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list .faq-item[open] summary::after { content: "\2212"; }
.faq-list .faq-answer { margin: 12px 0 0; color: var(--text); }

.related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}
@media (min-width: 640px) { .related-posts-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card-disabled {
  background: var(--bg-soft);
  border: 1px dashed var(--steel-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: none;
  opacity: 0.85;
  cursor: default;
}
.blog-card-disabled h3 { color: var(--steel); margin-top: 0; }
.blog-card-disabled p { color: var(--steel); }
.blog-card-disabled .coming-soon-badge {
  display: inline-block;
  background: var(--steel-light);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* --------- Legal page table of contents --------- */
.toc {
  background: var(--bg-soft);
  border-left: 4px solid var(--medical-blue);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0;
}
.toc h2 {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.toc ol { margin: 0; padding-left: 22px; color: var(--text); }
.toc ol li { margin-bottom: 6px; font-size: 0.95rem; }
.toc ol li a { color: var(--medical-blue); text-decoration: none; }
.toc ol li a:hover { color: var(--medical-blue-dark); text-decoration: underline; }

.legal-body h2 {
  scroll-margin-top: 80px;
  margin-top: 44px;
  border-top: 1px solid var(--steel-light);
  padding-top: 28px;
}
.legal-body h2:first-of-type {
  margin-top: 32px;
  border-top: 0;
  padding-top: 0;
}
.legal-body h3 { margin-top: 24px; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body .address-block {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
  line-height: 1.7;
}

/* --------- Veterans tribute (about.html + veterans.html) --------- */
.tribute-portrait {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto;
}
.tribute-portrait-large {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}
.tribute-caption {
  text-align: center;
  color: var(--steel);
  font-size: 0.9rem;
  font-style: italic;
  margin: 12px auto 0;
  max-width: 680px;
  line-height: 1.5;
}
.tribute-quote {
  border-left: 4px solid var(--medical-blue);
  padding: 18px 24px;
  margin: 24px 0;
  background: #fff;
  border-radius: var(--radius-md);
}
.tribute-quote p {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
}
.tribute-quote cite {
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.units-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin: 24px 0;
}
@media (min-width: 768px) { .units-grid { grid-template-columns: 1fr 1.2fr; } }
.patches-graphic {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}
.green-beret-icon {
  width: 40px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 4px;
}
.units-list { list-style: none; padding: 0; margin: 0; }
.units-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--steel-light);
}
.units-list li:last-child { border-bottom: 0; }
.units-list li strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.units-list li p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

.archival-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  filter: grayscale(100%) contrast(0.95);
  box-shadow: var(--shadow-md);
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.veteran-expectations {
  list-style: none;
  padding: 0;
  margin: 0;
}
.veteran-expectations li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid var(--steel-light);
}
.veteran-expectations li:last-child { border-bottom: 0; }
.veteran-expectations li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--medical-blue);
  border-radius: 50%;
}
.veteran-expectations li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

/* --------- Trust strip (site-wide LLMO foundation) --------- */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--steel-light);
  border-bottom: 1px solid var(--steel-light);
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--navy);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-strip .sep { color: var(--steel); margin: 0 8px; }
@media (max-width: 480px) {
  .trust-strip { font-size: 0.76rem; padding: 6px 0; }
}

/* --------- Map embeds --------- */
.office-map {
  border: 0;
  border-radius: var(--radius-md);
  width: 100%;
  height: 320px;
  margin-top: 18px;
  box-shadow: var(--shadow-sm);
}

/* --------- Direct-answer NAP paragraph (LLM extraction target) --------- */
.direct-answer {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-soft);
  border-left: 4px solid var(--medical-blue);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0 28px;
}
.verified-date {
  display: block;
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 6px;
  margin-bottom: 18px;
}

/* --------- Surgeon Spotlight portrait (homepage) --------- */
.surgeon-portrait {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* --------- Review platform link cards (homepage) --------- */
.review-link-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-link-card:hover { text-decoration: none; }
.review-link-card h3 { color: var(--navy); margin-top: 0; }
.review-link-card .card-link { margin-top: auto; }
.review-link-card:hover .card-link { color: var(--medical-blue-dark); }

/* --------- Call Us page --------- */
.btn-call {
  width: 100%;
  justify-content: center;
  font-size: 1.4rem;
  padding: 22px 28px;
  letter-spacing: 0.01em;
  gap: 14px;
}
.btn-call .call-icon { font-size: 1.2em; line-height: 1; }
@media (min-width: 768px) {
  .btn-call { font-size: 1.5rem; }
}
.spanish-chip {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 18px;
  border: 1px solid var(--steel-light);
}
.call-portrait {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

/* --------- Print --------- */
@media print {
  .site-header, .site-footer, .topbar, .cta-banner, .hero-cta { display: none; }
  body { color: #000; background: #fff; }
}
