/* ==========================================================================
   LendHaven Capital — Design System
   Navy / Teal / Gold, warm cream ground. Serif display + clean sans body.
   ========================================================================== */

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

:root {
  /* Brand colors — sampled from the LendHaven mark */
  --navy-950: #071b33;
  --navy-900: #0a2647;
  --navy-800: #123464;
  --navy-700: #1c4380;

  --teal-700: #00806f;
  --teal-600: #00a896;
  --teal-500: #1cbaa8;
  --teal-100: #d9f2ee;
  --teal-50:  #eff9f7;

  --gold-600: #ab8842;
  --gold-500: #c6a15b;
  --gold-300: #dfc48b;
  --gold-100: #f4e9d3;

  --cream-100: #f6f3ec;
  --cream-50:  #fbfaf6;
  --white: #ffffff;

  --ink-900: #1a2130;
  --ink-700: #333d4d;
  --slate-600: #5b6672;
  --slate-400: #8c94a1;
  --border: #e4e0d4;
  --border-dark: rgba(255, 255, 255, 0.14);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10, 38, 71, 0.06), 0 1px 1px rgba(10, 38, 71, 0.04);
  --shadow: 0 8px 24px rgba(10, 38, 71, 0.08);
  --shadow-lg: 0 24px 64px rgba(7, 27, 51, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.4rem, 1.9rem + 2.2vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 1.6rem + 1.4vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-300); }

.lede {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

.bg-navy { background: var(--navy-900); color: rgba(255,255,255,0.88); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-cream { background: var(--cream-100); }
.bg-teal-tint { background: var(--teal-50); }

.divider-gold {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: 18px 0;
}
.center .divider-gold { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--teal-600); color: var(--white); box-shadow: 0 10px 24px rgba(0, 168, 150, 0.28); }
.btn-primary:hover { background: var(--teal-700); box-shadow: 0 14px 30px rgba(0, 168, 150, 0.36); }

.btn-gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 10px 24px rgba(198, 161, 91, 0.32); }
.btn-gold:hover { background: var(--gold-600); color: var(--white); }

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

.btn-outline-navy { border-color: var(--navy-800); color: var(--navy-900); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }

.btn-ghost { color: var(--navy-900); padding: 15px 10px; }
.btn-ghost:hover { color: var(--teal-700); transform: none; }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(10, 38, 71, 0.08);
  transition: background 0.3s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { height: 58px; width: auto; }

.nav-primary { display: flex; align-items: center; gap: 2px; }
.nav-primary > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.is-active { color: var(--teal-700); background: var(--teal-50); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.has-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 620px;
  max-width: 80vw;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
}
.dropdown a:hover { background: var(--teal-50); color: var(--teal-700); }
.dropdown a .icon-chip {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
}
.dropdown a:hover .icon-chip { background: var(--teal-600); color: var(--white); }
.dropdown a .icon-chip svg { width: 16px; height: 16px; }
.dropdown-foot {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.dropdown-foot span { font-size: 0.8rem; color: var(--slate-600); }
.dropdown-foot a { font-size: 0.82rem; font-weight: 700; color: var(--teal-700); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; color: var(--navy-900);
  padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--border);
}
.header-phone svg { width: 15px; height: 15px; color: var(--teal-600); }
.header-phone:hover { border-color: var(--teal-600); }

.nav-toggle {
  display: none;
  flex: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 1080px) {
  .header-phone span { display: none; }
}
@media (max-width: 980px) {
  .nav-primary, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header .container { height: 74px; }
  .brand img { height: 54px; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--navy-950);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border-dark); }
.mobile-nav-top img { height: 44px; }
.mobile-nav-close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border-dark); background: transparent; color: var(--white); display: flex; align-items: center; justify-content: center; }
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-body { padding: 18px 24px 40px; }
.mobile-nav-body > a, .mobile-acc-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 4px; font-family: var(--font-display); font-size: 1.3rem; color: var(--white);
  border-bottom: 1px solid var(--border-dark); width: 100%; background: none; border-left: none; border-right: none; border-top: none; text-align: left;
}
.mobile-acc-trigger svg { width: 18px; height: 18px; transition: transform 0.25s; color: var(--gold-300); }
.mobile-acc-trigger.is-open svg { transform: rotate(180deg); }
.mobile-acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.mobile-acc-panel a { display: block; padding: 12px 6px 12px 14px; color: rgba(255,255,255,0.72); font-size: 0.95rem; font-weight: 500; border-left: 2px solid rgba(255,255,255,0.14); }
.mobile-acc-panel a:hover { color: var(--teal-500); }
.mobile-nav-cta { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-contact { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.mobile-nav-contact a { color: var(--white); font-weight: 600; }

/* ---------- Hero (video) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,27,51,0.55) 0%, rgba(7,27,51,0.62) 42%, rgba(7,27,51,0.92) 100%),
    linear-gradient(90deg, rgba(7,27,51,0.88) 0%, rgba(7,27,51,0.35) 55%, rgba(7,27,51,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 190px 0 120px; }
.hero-content .eyebrow { color: var(--gold-300); margin-bottom: 20px; }
.hero-content h1 { color: var(--white); max-width: 760px; }
.hero-content .lede { color: rgba(255,255,255,0.82); max-width: 560px; margin: 22px 0 34px; font-size: 1.18rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 56px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--white); }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.68); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-cue .dot { width: 1px; height: 30px; background: linear-gradient(180deg, var(--gold-300), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(-4px);} 50% { opacity: 1; } 100% { opacity:0; transform: translateY(10px);} }

@media (max-width: 720px) {
  .hero { min-height: 100vh; }
  .hero-content { padding: 150px 0 90px; }
  .hero-stats { gap: 24px 30px; }
}

/* Sub-page (non-video) header banner */
.page-banner {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 170px 0 84px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(198,161,91,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.6;
}
.page-banner .container { position: relative; }
.page-banner h1 { color: var(--white); margin-top: 14px; }
.page-banner .lede { color: rgba(255,255,255,0.78); margin-top: 16px; max-width: 640px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--gold-300); font-weight: 600; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-100); }

.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-tile svg { width: 26px; height: 26px; }

.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.program-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.program-card p { color: var(--slate-600); font-size: 0.94rem; flex: 1; }
.program-card .card-link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.88rem; color: var(--teal-700);
}
.program-card .card-link svg { width: 15px; height: 15px; transition: transform 0.2s; }
.program-card:hover .card-link svg { transform: translateX(4px); }

.feature-card h4 { margin-bottom: 10px; }
.feature-card p { color: var(--slate-600); font-size: 0.95rem; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 24px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy-900);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--slate-600); font-size: 0.92rem; }
.step-connector { display: none; }

/* Team */
.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  align-items: start;
}
@media (max-width: 760px) { .team-card { grid-template-columns: 1fr; } }
.team-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info .role { color: var(--teal-700); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 6px 0 16px; }
.team-info p + p { margin-top: 14px; }
.team-info p { color: var(--slate-600); }
.team-links { display: flex; gap: 10px; margin-top: 20px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
}
.icon-btn:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.icon-btn svg { width: 18px; height: 18px; }

/* Small team preview (home page) */
.team-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 640px) { .team-mini { grid-template-columns: 1fr; } }
.team-mini-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.team-mini-photo { aspect-ratio: 4/3; overflow: hidden; }
.team-mini-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-mini-body { padding: 22px 24px 26px; }
.team-mini-body .role { color: var(--teal-700); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin: 4px 0 10px; }
.team-mini-body p { color: var(--slate-600); font-size: 0.93rem; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 20px; }
.stat b { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--navy-900); }
.stat span { color: var(--slate-600); font-size: 0.9rem; }

/* ---------- Program detail page ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-item { background: var(--white); padding: 22px 26px; }
.spec-item .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-700); margin-bottom: 6px; }
.spec-item .value { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-900); }

.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-700); }
.checklist svg { flex: none; width: 20px; height: 20px; color: var(--teal-600); margin-top: 2px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; color: var(--navy-900);
}
.related-card:hover { border-color: var(--teal-600); color: var(--teal-700); }
.related-card svg { width: 18px; height: 18px; flex: none; color: var(--gold-500); }

/* Program hub category tabs */
.category-block + .category-block { margin-top: 64px; }
.category-block h3 { display:flex; align-items:center; gap: 14px; }
.category-block h3 .cat-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy-900); color: var(--white); display:flex; align-items:center; justify-content:center; }
.category-block h3 .cat-icon svg { width: 20px; height: 20px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,161,91,0.25), transparent 70%);
}
.cta-banner h2 { color: var(--white); max-width: 480px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 10px; }
@media (max-width: 860px) { .cta-banner { flex-direction: column; align-items: flex-start; padding: 42px 30px; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--navy-900); }
.field .req { color: var(--teal-600); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-900);
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 4px var(--teal-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--slate-600); }
.form-status { display: none; padding: 14px 18px; border-radius: 10px; font-size: 0.92rem; font-weight: 600; margin-top: 18px; }
.form-status.show { display: block; }
.form-status.success { background: var(--teal-50); color: var(--teal-700); }
.form-status.error { background: #fdecec; color: #b3261e; }

/* Contact info cards */
.contact-info-grid { display: grid; gap: 18px; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-info-card .icon-tile { margin-bottom: 0; flex: none; }
.contact-info-card h4 { margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--slate-600); font-size: 0.94rem; }
.contact-info-card a:hover { color: var(--teal-700); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 260px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Schedule / Calendly ---------- */
.schedule-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .schedule-grid { grid-template-columns: 1fr; } }
.calendly-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow);
  min-height: 300px;
}

/* ---------- FAQ / accordion (generic use) ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; width: 100%; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 1.08rem; color: var(--navy-900); }
.faq-q svg { flex: none; width: 18px; height: 18px; color: var(--teal-600); transition: transform 0.25s; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--slate-600); max-width: 700px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.68); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--border-dark); }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 620px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; font-size: 0.92rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--teal-600); border-color: var(--teal-600); color: var(--white); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h5 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--teal-500); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--gold-300); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-size: 0.82rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Misc ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--teal-50); color: var(--teal-700); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy-900); color: var(--white);
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
