/* ==========================================================================
   Arcium Financial — Black & Grey design system (sharp / glossy revision)
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-2: #101012;
  --bg-card: #131315;
  --bg-card-2: #17171a;
  --bg-card-hover: #1c1c1f;
  --border: rgba(232, 234, 237, 0.10);
  --border-strong: rgba(232, 234, 237, 0.24);
  --border-bright: rgba(232, 234, 237, 0.42);

  --sv-lt: #eceef1;
  --sv: #a3aeb9;
  --sv-dk: #545f6c;
  --glow: #ffffff;

  --text: var(--sv-lt);
  --text-muted: var(--sv);
  --text-faint: var(--sv-dk);

  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sharpened radius scale */
  --radius-sm: 3px;
  --radius: 5px;
  --radius-lg: 7px;

  --container: 1220px;
  --shadow-card: 0 24px 48px -22px rgba(0, 0, 0, 0.85);
  --shadow-lift: 0 40px 70px -28px rgba(0, 0, 0, 0.9);

  --gloss-top: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.0) 45%);
  --gloss-card: linear-gradient(155deg, #17171a 0%, #121214 55%, #0d0d0f 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--sv-lt); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 8vw, 116px) 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--border-bright);
}
.section-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-faint);
  margin-right: 2px;
}

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-head p { color: var(--text-muted); font-size: 16.5px; max-width: 62ch; }

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--sv-lt);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Shimmer (buttons + links) ---------- */
.btn, .shimmer-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before, .shimmer-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.0) 42%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.0) 58%,
    transparent 70%
  );
  transform: translateX(-140%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before, .btn:focus-visible::before,
.shimmer-link:hover::before, .shimmer-link:focus-visible::before {
  transform: translateX(140%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn > * { position: relative; z-index: 2; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #e8eaed 100%);
  color: #0a0a0a;
  border-color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 12px 24px -12px rgba(0, 0, 0, 0.6);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 16px 30px -12px rgba(0, 0, 0, 0.7); }

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.0));
  color: var(--sv-lt);
}
.btn-secondary:hover { border-color: var(--border-bright); background: rgba(255, 255, 255, 0.08); }

.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.shimmer-link {
  display: inline-block;
  padding: 2px 1px;
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.shimmer-link:hover { border-color: var(--sv-lt); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
  object-fit: contain;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
  overflow: hidden;
}
.brand-word strong {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--sv-lt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-word span {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.hero-brand img {
  width: 96px;
  height: 96px;
  flex: none;
  object-fit: contain;
}
.hero-brand-word {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.01em;
  color: var(--sv-lt);
  line-height: 1.1;
}

.nav-links { display: flex; align-items: center; gap: 30px; flex: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px;
  background: var(--sv-lt);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--sv-lt); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--sv-lt);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }

/* ---------- Hero (split, with NYSE photo panel) ---------- */
.hero { padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 7vw, 96px); position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero p.lede {
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero p.lede a { color: var(--sv); border-bottom: 1px solid var(--border-strong); }
.hero p.lede a:hover { color: var(--sv-lt); border-color: var(--sv-lt); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 40px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-strip div { background: var(--bg-card); padding: 18px 10px; text-align: center; min-width: 0; }
.stat-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.7vw, 21px);
  color: var(--sv-lt);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow-wrap: break-word;
}
.stat-strip div:nth-child(3) strong { font-size: clamp(12px, 1.35vw, 17px); }
.stat-strip span { font-size: 11.5px; color: var(--text-muted); }

.hero-photo {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.15) 55%, rgba(10,10,10,0.92) 100%),
              linear-gradient(0deg, rgba(10,10,10,0.35), transparent 30%);
}
.hero-photo .hero-photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  z-index: 2;
}
.hero-photo .hero-photo-cap p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--sv-lt);
  line-height: 1.4;
}
.hero-photo .hero-photo-cap span {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Cards (generic, glossy + sharp) ---------- */
.card {
  position: relative;
  background: var(--gloss-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--gloss-top);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* ---------- Mission ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mission-copy p { color: var(--text-muted); font-size: 16.5px; margin-bottom: 18px; }
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.pillar {
  border: 1px solid var(--border);
  border-top: 2px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  background: var(--bg-card);
}
.pillar h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--sv-lt); margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--text-muted); margin: 0; }

.mission-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lift);
}
.mission-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mission-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.75) 100%);
}
.photo-credit {
  position: absolute; right: 12px; bottom: 10px;
  font-size: 10px; color: rgba(236,238,241,0.65);
  z-index: 2;
  letter-spacing: 0.02em;
}
.photo-credit a { color: inherit; border-bottom: 1px solid rgba(236,238,241,0.35); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-card { display: flex; flex-direction: column; }
.service-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.service-card .service-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--sv-lt);
  font-family: var(--font-serif);
  font-size: 17px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p.desc { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; flex: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-lt);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-tiers { display: flex; flex-direction: column; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pricing-tiers .tier {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.pricing-tiers .tier .tier-name { color: var(--text-muted); }
.pricing-tiers .tier .tier-price { color: var(--sv-lt); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 34px;
}
.service-card.featured .featured-copy h3 { font-size: 23px; }
.service-card.featured .featured-copy p.desc { font-size: 14.5px; }

.info-block {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.info-block h4 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.info-block p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 12px; }
.info-block cite {
  display: block; font-style: normal; font-size: 12px; color: var(--text-faint);
}
.info-block cite a { color: var(--sv); border-bottom: 1px solid var(--border-strong); }
.info-block cite a:hover { color: var(--sv-lt); border-color: var(--sv-lt); }

.eligibility-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---------- Credentials & Background ---------- */
.cb-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }

.founder-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px;
  margin-bottom: 28px;
  background: var(--gloss-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.founder-card img {
  width: 132px; height: 176px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: top center;
  flex: none;
  border: 1px solid var(--border-strong);
}
.founder-card strong { font-family: var(--font-serif); font-size: 20px; color: var(--sv-lt); display: block; margin-bottom: 4px; }
.founder-card span { font-size: 13px; color: var(--text-muted); }

@media (max-width: 480px) {
  .founder-card img { width: 96px; height: 128px; }
}
.cb-subhead {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin: 0 0 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.about-bio p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 16px; }
.about-bio p:last-child { margin-bottom: 0; }

.skill-groups { display: grid; gap: 18px; margin: 24px 0 28px; }
.skill-group h4 {
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 10px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-size: 12px; color: var(--text-muted); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 6px 11px; }

.edu-list { display: grid; gap: 12px; }
.edu-list li { font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; }
.edu-list li strong { color: var(--sv-lt); font-weight: 600; display: block; margin-bottom: 2px; }

.timeline { display: flex; flex-direction: column; border-left: 1px solid var(--border-strong); padding-left: 22px; margin-bottom: 36px; }
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -27px; top: 4px;
  width: 8px; height: 8px; border-radius: 1px; transform: rotate(45deg);
  background: var(--sv-lt); box-shadow: 0 0 0 3px var(--bg);
}
.timeline-item .role { font-family: var(--font-serif); font-size: 16.5px; color: var(--sv-lt); }
.timeline-item .org { font-size: 13px; color: var(--text-muted); margin: 3px 0 8px; }
.timeline-item .org span { color: var(--text-faint); }
.timeline-item p { font-size: 13px; color: var(--text-muted); }

.credentials-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-bottom: 36px; }
.credential-card h3 { font-size: 16px; margin-bottom: 8px; }
.credential-card p { font-size: 13px; color: var(--text-muted); }

.quotes-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.quote-card blockquote {
  font-family: var(--font-serif); font-size: 16.5px; line-height: 1.55; color: var(--sv-lt); margin-bottom: 18px;
}
.quote-card blockquote::before { content: "\201C"; }
.quote-card blockquote::after { content: "\201D"; }
.quote-card figcaption { font-size: 12.5px; color: var(--text-muted); }
.quote-card figcaption strong { color: var(--sv-lt); display: block; font-size: 13.5px; margin-bottom: 2px; }
.quote-card .fine-print { margin-top: 10px; font-size: 11.5px; color: var(--text-faint); }

/* ---------- Contact / Schedule ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: start; }
.contact-card { padding: 32px; }
.contact-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.contact-method { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--border); font-size: 13.5px; }
.contact-method:last-child { border-bottom: 1px solid var(--border); }
.contact-method .label { color: var(--text-faint); }
.contact-method .value { color: var(--sv-lt); }

.schedule-card { position: relative; padding: 0; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.calendly-mock { width: 100%; padding: 32px; filter: grayscale(0.5); opacity: 0.5; pointer-events: none; user-select: none; }
.calendly-mock .mock-head { display: flex; justify-content: space-between; margin-bottom: 18px; }
.calendly-mock .mock-head span { height: 9px; border-radius: 2px; background: var(--border-strong); }
.calendly-mock .mock-head span:first-child { width: 40%; }
.calendly-mock .mock-head span:last-child { width: 18%; }
.calendly-grid { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 7px; }
.calendly-grid div { aspect-ratio: 1; border-radius: 2px; background: var(--border); }
.calendly-grid div.on { background: var(--border-strong); }

.calendly-inline-widget { min-height: 640px; width: 100%; }

.schedule-lock {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(10,10,10,0.4), rgba(10,10,10,0.9));
}
.lock-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-bright);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(20,20,20,0.9));
  display: flex; align-items: center; justify-content: center;
}
.schedule-lock h4 { font-size: 18px; color: var(--sv-lt); }
.schedule-lock p { font-size: 13px; color: var(--text-muted); max-width: 32ch; }

/* ---------- Ecosystem strip (compact, bottom of page) ---------- */
.eco-strip { padding: 40px 0; border-top: 1px solid var(--border); background: var(--bg-2); }
.eco-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.eco-strip-label { font-size: 13px; color: var(--text-faint); max-width: 34ch; margin: 0; }
.eco-panels { display: flex; flex-wrap: wrap; gap: 14px; }
.eco-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  min-width: 220px;
  background: var(--gloss-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, transform 0.2s ease;
}
.eco-panel:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.eco-panel-tag { font-size: 11px; color: var(--text-muted); letter-spacing: 0.02em; }
.eco-panel strong { font-family: var(--font-serif); font-size: 16px; color: var(--sv-lt); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 52px 0 30px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, minmax(0,1fr)); gap: 30px; margin-bottom: 36px; }
.footer-brand strong { font-family: var(--font-serif); font-size: 19px; color: var(--sv-lt); display: block; margin-bottom: 6px; }
.footer-brand span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.footer-brand p { margin-top: 16px; font-size: 13px; color: var(--text-muted); max-width: 32ch; }
.footer-col h5 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--sv-lt); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 11.5px; color: var(--text-faint); }
.footer-bottom .disclaimer { max-width: 70ch; }

.powered-by { display: flex; align-items: center; justify-content: center; margin-top: 28px; }
.powered-by-badge {
  display: inline-flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.powered-by-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.powered-by-badge img { height: 40px; width: auto; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; aspect-ratio: 16/9; }
  .mission-grid, .cb-grid, .contact-grid { grid-template-columns: 1fr; }
  .mission-photo { order: -1; aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-secondary, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .brand-word span { display: none; }
  .site-header.is-open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
  }
  .site-header.is-open .nav-links a { padding: 10px 0; width: 100%; }
  .site-header.is-open .nav-links a::after { display: none; }

  .stat-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mission-pillars { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .credentials-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-card, .service-card.featured, .card { padding: 22px; }
}
