/* ========================================
   brightspotcenter.com — shared styles
   ======================================== */

:root {
  --brand:      #f5b833;   /* sunshine */
  --brand-dark: #e09a12;
  --brand-mid:  #ffcf5c;
  --accent:     #2a7fa8;   /* sky blue */
  --accent-dark:#1d6286;
  --brand-soft: #fff4d9;
  --brand-pale: #fffaf0;
  --ink:       #16233a;
  --ink-2:     #1e2f4d;
  --text:      #34425a;
  --muted:     #5f6b80;
  --muted-lt:  #93a0b5;
  --line:      #e8e2d4;
  --line-dark: #d6ceb9;
  --bg:        #ffffff;
  --bg-2:      #fdf9f1;
  --bg-dark:   #16233a;
  --bg-dark2:  #1c2c48;

  --disp: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Layout */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ----------------------------------------
   NAV
   ---------------------------------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 35, 58, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,184,51,.6);
  flex-shrink: 0;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-initials {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav-logo-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--brand-mid); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #b7c3d8;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.active { color: #fff; }
.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff !important;
  background: var(--brand);
  padding: 9px 18px !important;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #b7c3d8;
  border-radius: 2px;
}
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ----------------------------------------
   HERO — HOMEPAGE
   ---------------------------------------- */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 70% 50%, rgba(245,184,51,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,184,51,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 64px; }
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.06;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--brand-mid); }
.hero-bio {
  margin-top: 22px;
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  color: #c3cde0;
  max-width: 52ch;
  line-height: 1.72;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cred-strip {
  margin-top: 56px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.hero-cred-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #a9b8d1;
  font-weight: 500;
}
.hero-cred-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-mid);
  flex-shrink: 0;
}
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 20px 20px 0 0;
  filter: grayscale(12%);
}
.hero-panel {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(160deg, var(--brand-mid) 0%, var(--brand) 48%, var(--accent-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(245,184,51,.28);
}
.hero-panel-monogram {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.hero-panel-name { color: #fff; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.hero-panel-creds { color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.hero-photo-badge {
  position: absolute;
  bottom: 0;
  right: 12%;
  background: var(--brand);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 -4px 24px rgba(245,184,51,.3);
}
.hero-photo-badge strong { display: block; font-size: 16px; margin-bottom: 2px; }

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 7px;
  letter-spacing: .01em;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 14px rgba(245,184,51,.3);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 20px rgba(245,184,51,.4); }
.btn-ghost-dark {
  color: #dbe3f0;
  border: 1.5px solid rgba(200,224,224,.25);
}
.btn-ghost-dark:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost {
  color: var(--accent-dark);
  border: 1.5px solid var(--line-dark);
}
.btn-ghost:hover { background: var(--brand-soft); border-color: var(--brand); }

/* ----------------------------------------
   SHARED SECTION STYLES
   ---------------------------------------- */
section { padding: 88px 0; }
.sec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--ink);
}
.sec-lede {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.72;
}
.sec-head { margin-bottom: 52px; }
.sec-dark { background: var(--bg-dark); color: #fff; }
.sec-dark h2 { color: #fff; }
.sec-dark .sec-label { color: var(--brand-mid); }
.sec-dark .sec-lede { color: #a9b8d1; }
.sec-tinted { background: var(--bg-2); }
.sec-tinted + .sec-tinted { border-top: 1px solid var(--line); }

/* ----------------------------------------
   EXPERTISE PILLARS (home)
   ---------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 740px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: 12px;
  padding: 38px 32px;
  background: #fff;
  transition: box-shadow .25s, transform .25s;
}
.pillar:hover { box-shadow: 0 8px 28px rgba(245,184,51,.1); transform: translateY(-2px); }
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon svg { width: 26px; height: 26px; stroke: var(--accent-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--text); line-height: 1.7; }

/* ----------------------------------------
   CREDENTIALS GRID
   ---------------------------------------- */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .creds-grid { grid-template-columns: 1fr; } }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
}
.cred-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-mid);
  flex-shrink: 0;
  margin-top: 5px;
}
.cred-item p {
  font-size: 14.5px;
  color: #dbe3f0;
  line-height: 1.55;
}
.cred-item p strong { color: #fff; font-weight: 600; }

/* ----------------------------------------
   SPEAKING HIGHLIGHTS (home)
   ---------------------------------------- */
.speaking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 760px) { .speaking-split { grid-template-columns: 1fr; gap: 40px; } }
.speaking-solo { max-width: 760px; }
.content-solo { max-width: 760px; }
.speaking-photo {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.speaking-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.speaking-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
}
.speaking-list li::before { content: ''; }

/* ----------------------------------------
   RESEARCH CARDS
   ---------------------------------------- */
.research-cards { display: flex; flex-direction: column; gap: 18px; }
.research-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 32px;
  background: #fff;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .25s, border-color .25s;
}
.research-card:hover { border-color: var(--brand); box-shadow: 0 6px 24px rgba(245,184,51,.08); }
.research-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-pub { background: var(--brand-soft); color: var(--accent-dark); }
.badge-progress { background: #fef3c7; color: #92400e; }
.research-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 6px;
}
.research-card-body p { font-size: 14px; color: var(--muted); }

/* ----------------------------------------
   COURSE CARD
   ---------------------------------------- */
.course-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: #fff;
  box-shadow: 0 4px 24px rgba(245,184,51,.07);
}
@media (max-width: 700px) { .course-card { grid-template-columns: 1fr; } }
.course-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.course-card-body { padding: 44px 42px; }
.course-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 14px;
}
.course-card-body p { font-size: 15px; color: var(--text); line-height: 1.72; margin-bottom: 20px; }
.course-bonus {
  background: var(--brand-soft);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.course-bonus p { font-size: 13.5px; color: var(--accent-dark); line-height: 1.6; margin: 0; }
.course-bonus strong { font-weight: 700; }

/* ----------------------------------------
   NEUROT SECTION
   ---------------------------------------- */
.neurot-card {
  background: var(--bg-dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 52px;
}
@media (max-width: 700px) { .neurot-card { grid-template-columns: 1fr; padding: 36px 32px; } }
.neurot-card h3 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.neurot-card p { font-size: 15.5px; color: #a9b8d1; line-height: 1.72; max-width: 58ch; }

/* ----------------------------------------
   ABOUT PAGE
   ---------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 44px; } }
.about-photo {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  position: sticky;
  top: 90px;
}
.about-body h2 { font-size: clamp(26px, 3.4vw, 38px); }
.about-body p { font-size: 16px; color: var(--text); line-height: 1.8; margin-top: 20px; }
.edu-items { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.edu-item {
  padding: 20px 22px;
  border-left: 3px solid var(--brand);
  background: var(--bg-2);
  border-radius: 0 8px 8px 0;
}
.edu-item .degree { font-size: 15px; font-weight: 600; color: var(--ink); }
.edu-item .school { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* ----------------------------------------
   SPEAKING PAGE
   ---------------------------------------- */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .engagement-grid { grid-template-columns: 1fr; } }
.engagement-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.engagement-item:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(245,184,51,.08); }
.engagement-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 9px;
  border-radius: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.engagement-item p { font-size: 14.5px; color: var(--text); line-height: 1.55; font-weight: 500; }
.engagement-item small { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 400; }

/* Speaking topics */
.topic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 740px) { .topic-cards { grid-template-columns: 1fr; } }
.topic-card {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.topic-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.topic-card p { font-size: 14px; color: #a9b8d1; line-height: 1.65; }

/* ----------------------------------------
   CONTACT PAGE
   ---------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.contact-info h2 { font-size: clamp(26px, 3.4vw, 40px); }
.contact-info p { font-size: 16px; color: var(--text); margin-top: 18px; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.contact-detail svg { width: 20px; height: 20px; stroke: var(--brand); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--body);
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(245,184,51,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 52px 0 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-brand .title { font-size: 13px; color: #a9b8d1; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-links a { font-size: 13.5px; color: #b7c3d8; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12.5px;
  color: #6d7c98;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ========================================
   BrightSpot overrides & additions
   ======================================== */
.btn-primary, .nav-cta { color: var(--ink) !important; }
.btn-primary:hover, .nav-cta:hover { background: var(--brand-dark) !important; color: var(--ink) !important; }
.btn-ghost { color: var(--ink); }
.sec-label { color: var(--accent); }
.sec-dark .sec-label, .sec-dark .sec-label { color: var(--brand-mid); }
.hero-photo-badge { color: var(--ink); }
.hero-kicker { color: var(--brand); }
.pillar-icon svg { stroke: var(--accent-dark); }
.pillar { border-top-color: var(--brand); }
.nav-logo-mark { background: transparent; border: none; border-radius: 0; overflow: visible; width: 38px; height: 38px; }
.nav-logo-mark svg { width: 38px; height: 38px; }
.nav-logo-text span { color: var(--brand-mid); }
a.text-link { color: var(--accent-dark); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid rgba(42,127,168,.3); }
a.text-link:hover { border-color: var(--accent-dark); }

/* Soon banner */
.soon-bar { background: var(--brand); color: var(--ink); font-size: 13.5px; font-weight: 600; text-align: center; padding: 9px 16px; }
.soon-bar a { color: var(--ink); }

/* Mobile nav */
.nav-mobile-toggle span { background: #dbe3f0; }
@media (max-width: 820px) {
  .nav-mobile-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--bg-dark); flex-direction: column; align-items: stretch; padding: 12px 16px 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .nav-links a:not(.nav-cta) { display: block; }
  .nav-links a { font-size: 15px; padding: 12px 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
}
@media (max-width: 480px) { .wrap { padding: 0 16px; } section { padding: 64px 0; } }


/* Age bands */
.ages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 740px) { .ages-grid { grid-template-columns: 1fr; } }
.age-card { border-radius: 14px; padding: 30px 28px; background: #fff; border: 1px solid var(--line); }
.age-card .age-range { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--brand-soft); color: #8a5a00; padding: 5px 11px; border-radius: 20px; margin-bottom: 14px; }
.age-card h3 { font-size: 18px; margin-bottom: 8px; }
.age-card p { font-size: 14.5px; color: var(--text); }

/* Service blocks */
.svc-list { display: flex; flex-direction: column; gap: 22px; }
.svc { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 32px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
@media (max-width: 560px) { .svc { grid-template-columns: 1fr; padding: 26px 22px; } }
.svc h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -.01em; }
.svc p { font-size: 15px; color: var(--text); line-height: 1.72; }
.svc ul { margin: 12px 0 0 18px; font-size: 14.5px; color: var(--text); }
.svc ul li { margin: 4px 0; }
.svc .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 6px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 28px 24px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: var(--ink); font-weight: 800; margin-bottom: 16px; }
.step h3 { font-size: 16.5px; color: #fff; margin-bottom: 8px; }
.step p { font-size: 14px; color: #a9b8d1; line-height: 1.65; }
.sec-tinted .step, section:not(.sec-dark) .step { background: #fff; border-color: var(--line); }
section:not(.sec-dark) .step h3 { color: var(--ink); }
section:not(.sec-dark) .step p { color: var(--text); }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 0 22px; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { font-size: 15px; color: var(--text); padding-bottom: 20px; line-height: 1.72; }

/* Page hero (inner pages) */
.page-hero { background: var(--bg-dark); color: #fff; padding: 76px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 340px; height: 340px; right: -90px; top: -110px; border-radius: 50%; border: 1.5px solid rgba(245,184,51,.3); outline: 1.5px dashed rgba(245,184,51,.16); outline-offset: 44px; }
.page-hero::after { content: ''; position: absolute; width: 120px; height: 120px; right: 20px; top: 0; border-radius: 50%; background: radial-gradient(circle at 38% 36%, #ffe08a, var(--brand) 60%, var(--brand-dark)); box-shadow: 0 0 60px rgba(245,184,51,.35); }
@media (max-width: 640px) { .page-hero::before { width: 220px; height: 220px; right: -110px; top: -120px; } .page-hero::after { width: 70px; height: 70px; right: -12px; top: -14px; } }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; position: relative; }
.page-hero h1 em { font-style: normal; color: var(--brand); }
.page-hero p { margin-top: 18px; font-size: 17px; color: #c3cde0; max-width: 60ch; position: relative; }

/* CTA band */
.cta-band { background: var(--brand); padding: 64px 0; }
.cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: var(--ink); font-size: clamp(24px, 3.2vw, 34px); }
.cta-band p { color: var(--ink-2); margin-top: 8px; font-size: 16px; max-width: 56ch; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }

/* Notice / form bits */
.notice { background: var(--brand-soft); border: 1px solid #f1dca6; border-radius: 10px; padding: 16px 18px; font-size: 13.5px; color: #5c4300; line-height: 1.6; }
.form-group .hint { font-size: 12.5px; color: var(--muted); }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text); }
.check-row input { margin-top: 4px; }
.form-status { font-size: 14px; font-weight: 600; color: var(--accent-dark); min-height: 1em; }
.map-embed { width: 100%; height: 260px; border: 0; border-radius: 12px; margin-top: 28px; filter: saturate(.85); }
.about-photo { aspect-ratio: 3/4; }
.insurance-card { border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 12px; padding: 28px 30px; background: #fff; }
.insurance-card h3 { font-size: 19px; margin-bottom: 8px; }
.insurance-card p { font-size: 15px; color: var(--text); line-height: 1.72; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- Polish pass ---------- */
.hero::before { background: radial-gradient(ellipse 50% 60% at 78% 45%, rgba(245,184,51,.10) 0%, transparent 70%); }
.hero-art { position: relative; width: 100%; max-width: 400px; aspect-ratio: 1/1; margin: 0 auto 48px; display: flex; align-items: center; justify-content: center; }
.hero-art .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(245,184,51,.22); }
.hero-art .r1 { inset: 17%; border-color: rgba(245,184,51,.35); }
.hero-art .r2 { inset: 6%; border-style: dashed; animation: spin 90s linear infinite; }
.hero-art .r3 { inset: -4%; border-color: rgba(245,184,51,.1); }
.hero-art .sun { position: relative; width: 52%; aspect-ratio: 1/1; border-radius: 50%; background: radial-gradient(circle at 36% 32%, #ffe6a0 0%, var(--brand) 55%, var(--brand-dark) 100%); box-shadow: 0 0 0 14px rgba(245,184,51,.12), 0 20px 80px rgba(245,184,51,.35); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--ink); padding: 10px; }
.hero-art .sun strong { font-size: clamp(18px, 2.2vw, 24px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.hero-art .sun span { margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.hero-art .dot { position: absolute; border-radius: 50%; background: var(--brand-mid); }
.hero-art .d1 { width: 12px; height: 12px; top: 9%; left: 30%; }
.hero-art .d2 { width: 8px; height: 8px; bottom: 14%; right: 12%; background: #7cc4e6; }
.hero-art .d3 { width: 10px; height: 10px; top: 46%; left: 3%; background: #fff; opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-art .r2 { animation: none; } }
@media (max-width: 860px) { .hero-art { max-width: 280px; margin-bottom: 36px; } }

/* Contrast + type tweaks */
.sec-label { color: var(--accent-dark); }
.hero-bio, .page-hero p { color: #cfd8e8; }
h2 { text-wrap: balance; }
.hero h1, .page-hero h1 { text-wrap: balance; }
p { text-wrap: pretty; }

/* Services: two-column grid on desktop */
@media (min-width: 900px) {
  .svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .svc { grid-template-columns: 1fr; gap: 14px; }
}
.svc { align-content: start; transition: box-shadow .25s, transform .25s, border-color .25s; }
.svc:hover { border-color: var(--line-dark); box-shadow: 0 10px 30px rgba(22,35,58,.07); transform: translateY(-2px); }
.svc .pillar-icon { margin-bottom: 0; }
.svc-cta { background: var(--brand-soft); border-color: #f1dca6; }
.svc-cta .btn { display: inline-block; }

/* Cards hover */
.age-card { transition: box-shadow .25s, transform .25s; }
.age-card:hover { box-shadow: 0 10px 30px rgba(22,35,58,.07); transform: translateY(-2px); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--brand); color: var(--ink); padding: 10px 16px; border-radius: 6px; font-weight: 700; z-index: 200; }
.skip-link:focus { left: 8px; }

/* Nav: sticky offset for banner, active link */
.nav-links a.active { color: #fff; box-shadow: inset 0 -2px 0 var(--brand); border-radius: 0; }
@media (max-width: 820px) { .nav-links a.active { box-shadow: none; background: rgba(255,255,255,.06); border-radius: 6px; } }

/* About photo in dark section */
.sec-dark .about-photo { box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.about-photo { object-position: 50% 30%; }

/* Buttons */
.btn { cursor: pointer; }
.btn-primary:active, .btn-dark:active { transform: translateY(1px); }
button.btn { font-family: var(--body); }

/* Form */
.form-group input::placeholder, .form-group textarea::placeholder { color: #9aa5b8; }
.map-embed { background: var(--bg-2); }

/* Footer */
.footer-links a { padding: 4px 0; }
@media (max-width: 640px) { .footer-inner { flex-direction: column; } .footer-bottom { flex-direction: column; } }

@media (max-width: 600px) { .hero-photo-wrap { display: none; } .hero { padding-bottom: 8px; } .hero-kicker { letter-spacing: .14em; } }
@media (max-width: 820px) { .nav-links.open { box-shadow: 0 18px 40px rgba(0,0,0,.35); } }
