/* ============================================================
   Law Offices of Rose C. Crunkleton, LLC — Design System
   ============================================================ */

:root {
  /* Brand palette — warm navy + brass/gold */
  --navy-950: #0a1626;
  --navy-900: #0f1f36;
  --navy-800: #16304f;
  --navy-700: #1f3f66;
  --navy-600: #2c5680;
  --gold-600: #a3792f;
  --gold-500: #b98f3f;
  --gold-400: #c9a24f;
  --gold-300: #ddbd7a;
  --gold-100: #f2e6c9;
  --cream-100: #faf7f0;
  --cream-200: #f4efe2;
  --cream-300: #ece3d0;
  --ink-900: #1c2029;
  --ink-700: #3b4150;
  --ink-500: #656c7b;
  --ink-300: #99a0ac;
  --white: #ffffff;
  --line: rgba(28, 32, 41, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(15, 31, 54, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 31, 54, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 31, 54, 0.18);
  --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-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-300); }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  color: var(--navy-950);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--navy-950);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--navy-950);
}
p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--ink-700);
}
p { line-height: 1.7; color: var(--ink-700); }
.on-dark, .on-dark p, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-navy {
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-950); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(15,31,54,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand svg { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--navy-950);
}
.brand-text .tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: var(--navy-950); background: var(--cream-300); }
.main-nav a.active { color: var(--navy-950); font-weight: 600; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-actions .btn-gold { flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-900);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone svg { width: 18px; height: 18px; color: var(--gold-600); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: rotate(45deg); }
.nav-toggle.is-open::after { transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--navy-950);
  z-index: 600;
  padding: 100px 28px 40px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-panel a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-panel .mp-close {
  position: absolute;
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
}
.mobile-panel .mp-cta {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-bottom: none;
  padding: 16px 30px;
}
.mobile-panel .mp-phone {
  margin-top: 20px;
  color: var(--gold-300);
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}
@media (max-width: 560px) {
  .header-actions .btn-gold { display: none; }
  .brand-text .tag { white-space: nowrap; }
}

/* Sticky mobile call bar */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--navy-950);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}
.mobile-callbar .call { background: rgba(255,255,255,0.12); color: var(--white); }
.mobile-callbar .consult { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); }
@media (max-width: 700px) {
  .mobile-callbar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 82% -10%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  overflow: hidden;
  padding: 96px 0 100px;
}
.hero-compass {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: 0.14;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: var(--white); margin: 18px 0 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-300);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-badge { display: flex; align-items: center; gap: 12px; }
.hero-badge .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-300); font-weight: 600; }
.hero-badge .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.3; max-width: 120px; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 10px;
  backdrop-filter: blur(6px);
}
.hero-card img { border-radius: 16px; width: 100%; height: 430px; object-fit: cover; }
.hero-award {
  position: absolute;
  left: -30px;
  bottom: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-award img { width: 46px; height: auto; border-radius: 4px; }
.hero-award .t { font-size: 0.72rem; font-weight: 700; color: var(--navy-900); line-height: 1.3; }
.hero-card-wrap { position: relative; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .hero-award { left: 14px; }
  .hero-compass { opacity: 0.1; }
}
@media (max-width: 480px) {
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 2.05rem; margin: 14px 0 16px; }
  .hero-badges { margin-top: 32px; padding-top: 24px; gap: 20px; }
}

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-cream { background: var(--cream-100); }
.section-tint { background: var(--cream-200); }
.section-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }
@media (max-width: 700px) {
  section { padding: 68px 0; }
  .section-head { margin-bottom: 36px; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- Why cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--gold-300); }
.feature-card h3 { margin-bottom: 12px; }

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

.pa-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pa-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.pa-card > * { position: relative; z-index: 1; }
.pa-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pa-card:hover::before { opacity: 1; }
.pa-card:hover h3, .pa-card:hover p { color: var(--white); }
.pa-card:hover p { color: rgba(255,255,255,0.78); }
.pa-card:hover .feature-icon { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); }
.pa-card:hover .feature-icon svg { color: var(--navy-950); }
.pa-card:hover .pa-link { color: var(--gold-300); }
.pa-card h3 { margin-bottom: 12px; transition: color 0.4s; }
.pa-card p { transition: color 0.4s; margin-bottom: 20px; }
.pa-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.88rem; color: var(--navy-900);
  transition: color 0.4s, gap 0.3s;
}
.pa-card:hover .pa-link { gap: 12px; }

/* Full detail blocks on practice-areas page */
.pa-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.pa-detail:last-child { border-bottom: none; }
.pa-detail.reverse .pa-detail-media { order: 2; }
.pa-detail-media { position: relative; }
.pa-detail-media .pa-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.pa-detail-media .feature-icon {
  position: absolute;
  bottom: -18px; left: -18px;
  width: 60px; height: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
}
.pa-detail-media .feature-icon svg { width: 28px; height: 28px; }
.pa-detail h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 14px; }
.pa-detail ul { margin-top: 16px; display: grid; gap: 10px; }
.pa-detail ul li { display: flex; gap: 10px; color: var(--ink-700); font-size: 0.96rem; }
.pa-detail ul li svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 780px) {
  .pa-detail, .pa-detail.reverse { grid-template-columns: 1fr; padding: 40px 0; }
  .pa-detail.reverse .pa-detail-media { order: 0; }
  .pa-detail-media { margin-bottom: 12px; }
}

/* Full-bleed photo band with overlay text */
.photo-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,38,0.92) 0%, rgba(10,22,38,0.55) 55%, rgba(10,22,38,0.15) 100%);
}
.photo-band .content {
  position: relative;
  z-index: 1;
  padding: 44px;
  max-width: 620px;
}
.photo-band .content .eyebrow { color: var(--gold-300); }
.photo-band .content h2 { color: var(--white); margin-top: 14px; }
.photo-band .content p { color: rgba(255,255,255,0.8); margin-top: 12px; }
@media (max-width: 640px) {
  .photo-band { min-height: 320px; }
  .photo-band .content { padding: 30px 24px; }
}

/* Photo grid (masonry-lite) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.photo-grid .tall { height: 460px; grid-row: span 2; }
@media (max-width: 780px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .tall { grid-row: span 1; height: 220px; }
}
@media (max-width: 520px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* ---------- About / story split ---------- */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow-md); }
.split-media .quote-chip {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  max-width: 240px;
  box-shadow: var(--shadow-lg);
}
.split-media .quote-chip p { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-style: italic; }
@media (max-width: 640px) { .split-media .quote-chip { display: none; } }

.stat-row { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat-row .stat .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy-950); font-weight: 600; }
.stat-row .stat .l { font-size: 0.85rem; color: var(--ink-500); max-width: 140px; }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .testi-track { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-stars { display: flex; gap: 4px; color: var(--gold-500); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p.quote { font-style: italic; color: var(--ink-700); flex-grow: 1; }
.testi-name { font-weight: 700; color: var(--navy-950); font-size: 0.9rem; letter-spacing: 0.02em; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  border: 1px solid rgba(201,162,79,0.35);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); max-width: 480px; position: relative; z-index: 1; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand svg { width: 42px; height: 42px; }
.footer-brand .name { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; font-weight: 600; }
.footer-col h4 {
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.72); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-300); }
.footer-hours { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 4px 0; color: rgba(255,255,255,0.65); }
.footer-hours span:last-child { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-disclaimer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-top: 4px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  padding: 76px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-compass { width: 460px; opacity: 0.12; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-300); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); max-width: 720px; }
.page-hero p.lead { color: rgba(255,255,255,0.75); max-width: 620px; margin-top: 16px; }

/* ---------- FAQ / Accordion ---------- */
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item:first-child { border-top: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy-950);
}
.accordion-trigger .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-900);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.accordion-trigger .plus::before { width: 12px; height: 1.6px; }
.accordion-trigger .plus::after { width: 1.6px; height: 12px; }
.accordion-item.is-open .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion-item.is-open .plus { background: var(--gold-500); border-color: var(--gold-500); }
.accordion-item.is-open .plus::before, .accordion-item.is-open .plus::after { background: var(--navy-950); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel .inner { padding: 0 4px 28px; max-width: 760px; }
.accordion-item.is-open .accordion-panel { max-height: 600px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card .photo-crop { height: 260px; overflow: hidden; }
.team-card .photo-crop img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center 20%); }
.team-card .info { padding: 22px 22px 26px; }
.team-card .info .role { color: var(--gold-600); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.team-card .info h3 { font-size: 1.15rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream-100);
  color: var(--ink-900);
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-note { font-size: 0.78rem; color: var(--ink-300); margin-top: 6px; }
.form-success {
  display: none;
  background: var(--cream-200);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--navy-900);
}
.form-success.is-visible { display: block; }

/* Contact info list */
.info-list { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item .ic svg { width: 20px; height: 20px; color: var(--gold-600); }
.info-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--navy-950); font-weight: 700; }
.info-item p { font-size: 0.92rem; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Blog / Resources ---------- */
.res-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 780px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.res-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.res-card .tag {
  display: inline-block;
  background: var(--cream-200);
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.res-card h3 { margin-bottom: 12px; }
.res-toggle {
  margin-top: 18px;
  background: none; border: none; padding: 0;
  font-weight: 700; font-size: 0.86rem; color: var(--navy-900);
  display: inline-flex; align-items: center; gap: 8px;
}
.res-toggle svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.res-card.is-open .res-toggle svg { transform: rotate(180deg); }
.res-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.res-card.is-open .res-body { max-height: 900px; }
.res-body .inner { padding-top: 18px; }
.res-body p + p { margin-top: 12px; }

/* Awards strip */
.awards-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.award-item { display: flex; align-items: center; gap: 14px; }
.award-item img { width: 60px; height: auto; border-radius: 6px; }
.award-item .txt { font-size: 0.85rem; color: var(--ink-500); max-width: 200px; line-height: 1.4; }
.award-item .txt strong { display: block; color: var(--navy-950); font-size: 0.95rem; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.two-col-text { columns: 2; gap: 40px; }
@media (max-width: 700px) { .two-col-text { columns: 1; } }
