/* ============================================================
   Dr. Leo Galland — Premium Medical Website
   Brand Colors: Navy #1B2D3E | Steel Blue #4A7FA5 | Gold #B09050
   Fonts: Playfair Display (serif headings) + Inter (sans body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2D3E;
  --navy-light: #2C4560;
  --blue:       #4A7FA5;
  --blue-light: #7AABCC;
  --gold:       #B09050;
  --gold-light: #D4B46A;
  --off-white:  #F8FAFB;
  --light-bg:   #EBF4F7;
  --border:     #D8E8EF;
  --text:       #1B2D3E;
  --text-muted: #556677;
  --white:      #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(60px, 8vw, 100px) 0;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(27,45,62,.10);
  --shadow-lg: 0 12px 48px rgba(27,45,62,.16);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; color: var(--text-muted); font-size: 1.0625rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.section { padding: var(--section-pad); }
.section--light { background: var(--off-white); }
.section--blue { background: var(--light-bg); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.80); }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header p { font-size: 1.1rem; margin-top: 12px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(176,144,80,.35); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.10); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.12); }

.nav-cta { margin-left: 8px; flex-shrink: 0; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.875rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.9); border-radius: 2px; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4a6e 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.15; margin-bottom: 24px; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.80); margin-bottom: 36px; max-width: 480px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-credentials {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-cred-item { }
.hero-cred-item .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-cred-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 2px solid rgba(176,144,80,.4);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

.hero-image-frame img {
  width: 100%;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  max-width: 220px;
}
.hero-badge .badge-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.hero-badge .badge-text { font-family: var(--font-serif); font-size: 0.95rem; color: var(--navy); font-weight: 600; margin-top: 4px; line-height: 1.3; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.80);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold-light); flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

/* ── ABOUT SECTION ── */
.about-content { max-width: 680px; }
.about-content p { font-size: 1.0625rem; line-height: 1.8; }
.about-content p + p { margin-top: 1.2em; }

.credential-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.cred-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cred-icon svg { width: 12px; height: 12px; color: white; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue-light); }

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.9375rem; }

/* ── SERVICES ── */
.service-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:first-child { padding-top: 0; }
.service-item:last-child { border-bottom: none; padding-bottom: 0; }
.service-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--border);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.service-content h3 { margin-bottom: 8px; }

/* ── BOOKS ── */
.book-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.book-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.book-cover {
  background: var(--light-bg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.book-cover img { max-height: 220px; width: auto; box-shadow: 0 8px 32px rgba(27,45,62,.20); }

.book-info { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.book-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.book-info p { font-size: 0.9rem; flex: 1; }
.book-info .btn { margin-top: 20px; align-self: flex-start; font-size: 0.85rem; padding: 10px 20px; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.3;
}
.testimonial-text { font-size: 1rem; line-height: 1.8; color: var(--text); font-style: italic; padding-top: 20px; }
.testimonial-author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testimonial-author .name { font-weight: 600; color: var(--navy); font-size: 0.9375rem; }
.testimonial-author .role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* ── MEDIA LOGOS ── */
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.media-logo-item {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition);
  letter-spacing: -0.02em;
}
.media-logo-item:hover { opacity: 1; }

/* ── LONG COVID ── */
.protocol-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.protocol-tier h3 { color: var(--blue); font-size: 1.15rem; margin-bottom: 8px; }

.protocol-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.protocol-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ── CONTACT ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,127,165,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── INFO BOX ── */
.info-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.info-box h3 { margin-bottom: 16px; font-size: 1.1rem; }
.info-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.info-box ul li { display: flex; gap: 10px; font-size: 0.9375rem; color: var(--text-muted); }
.info-box ul li strong { color: var(--navy); }

/* ── BLOG ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { background: var(--light-bg); height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.80);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,.60); line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.40);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.40); }
.footer-bottom a:hover { color: rgba(255,255,255,.70); }

.disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 900px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

/* Intersection Observer animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ── GLOBAL LINK POLISH ── */
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

/* ── CARD HOVER ENHANCEMENT ── */
.card, .book-card, .testimonial, .blog-card {
  will-change: transform;
}

/* ── PAGE HERO REFINEMENT ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4a6e 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }

/* ── TRUST BAR POLISH ── */
.trust-bar { padding: 18px 0; }

/* ── BUTTON POLISH ── */
.btn { line-height: 1.4; }
.btn-primary { letter-spacing: 0.02em; }

/* ── SECTION HEADER REFINEMENT ── */
.section-header { margin-bottom: 52px; }

/* ── SERVICE ITEMS ── */
.service-num { font-size: 2.2rem; }

/* ── MEDIA LOGO ITEMS ── */
.media-logo-item { cursor: default; }

/* ── CONTACT FORM POLISH ── */
.contact-form { border-radius: 6px; }

/* ── FORM SELECT ARROW ── */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23556677' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── FOCUS VISIBLE (accessibility) ── */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-links a { padding: 8px 9px; font-size: 0.8125rem; }
  .nav-cta .btn { padding: 9px 16px; font-size: 0.8125rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 8px 16px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    gap: 2px;
  }
  .nav-links.open a {
    padding: 11px 16px;
    border-radius: 4px;
    font-size: 0.9375rem;
  }
  .nav-cta.open {
    display: flex;
    background: var(--navy);
    padding: 0 16px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-cta.open .btn { width: 100%; justify-content: center; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-image { order: -1; }
  .hero-image-frame { max-width: 320px; margin: 0 auto; }
  .hero-credentials { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-eyebrow { justify-content: center; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .media-logos { gap: 24px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-credentials { flex-wrap: wrap; gap: 20px; }
  .hero-badge { display: none; }
}

/* ── ABOUT HERO (portrait split hero) ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero-content {
  color: var(--white);
}

.about-hero-content .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.about-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 16px 0 20px;
}

.about-hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.about-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.about-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.90);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.about-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Photo frame in about-hero */
.about-hero-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 2px solid rgba(176,144,80,.45);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

.about-photo-frame img {
  width: 100%;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.40);
  display: block;
}

.about-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  max-width: 200px;
}
.about-photo-badge .badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.about-photo-badge .badge-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 3px;
  line-height: 1.3;
}

/* Responsive: about-hero */
@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .about-hero-photo {
    order: -1;
  }
  .about-photo-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  .about-hero-badges {
    justify-content: center;
  }
  .about-hero-actions {
    justify-content: center;
  }
  .about-hero-content .breadcrumb {
    justify-content: center;
  }
  .about-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .about-photo-badge {
    display: none;
  }
}

/* ── UTIL ── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.gold-text { color: var(--gold); }
.blue-text { color: var(--blue); }
.navy-text { color: var(--navy); }
