/* =========================================================================
   Small Business Resource Center, Inc. (SBRC)
   Premium, dependency-free stylesheet. Fraunces (display) + Inter (body).
   Palette pulled from the logo: deep navy + warm gold on ivory.
   ========================================================================= */

:root {
  --navy-900: #08213a;
  --navy-800: #0b2a47;
  --navy-700: #123a5e;
  --navy-600: #1c4e78;
  --gold-700: #98742f;
  --gold-600: #b08a3e;
  --gold-500: #c6a15b;
  --gold-400: #d9be82;
  --gold-100: #f2e7cf;
  --ivory: #faf7f1;
  --paper: #ffffff;
  --ink: #17202b;
  --ink-soft: #566472;
  --line: #e9e2d4;
  --line-2: #efe9dd;
  --hair-light: rgba(255, 255, 255, 0.14);

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

  --container: 1200px;
  --sec: clamp(72px, 9vw, 130px);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11, 42, 71, 0.06), 0 10px 30px rgba(11, 42, 71, 0.07);
  --shadow-md: 0 18px 50px rgba(11, 42, 71, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-800);
  margin: 0;
  font-optical-sizing: auto;
}

p { margin: 0 0 1em; }
a { color: var(--navy-700); }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--gold-200, var(--gold-100)); color: var(--navy-900); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.narrow { max-width: 780px; }
.text-center { text-align: center; }

.skip-link {
  position: absolute; left: 14px; top: -60px; z-index: 300;
  background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 8px;
  text-decoration: none; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 3px; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-700);
  margin: 0 0 20px;
}
.eyebrow::before { content: ""; width: 30px; height: 1.5px; background: var(--gold-500); }
.eyebrow.centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-400); }

.section { padding: var(--sec) 0; }
.section-head { max-width: 980px; margin: 0 auto clamp(44px, 5vw, 68px); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); text-wrap: balance; }
.section-head .lead { margin-top: 18px; text-wrap: pretty; }
.lead { font-size: 1.16rem; color: var(--ink-soft); line-height: 1.6; }

.display-xl { font-size: clamp(2.6rem, 6vw, 4.4rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 10px 26px rgba(176, 138, 62, 0.32); }
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 14px 32px rgba(176, 138, 62, 0.4); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }
.btn-outline { background: transparent; color: var(--navy-800); border-color: rgba(11, 42, 71, 0.25); }
.btn-outline:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

/* ---------- Utility top bar ---------- */
.topbar { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); font-size: 0.8rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar-slogan { font-family: var(--font-display); font-style: italic; font-size: 0.92rem; color: var(--gold-400); letter-spacing: 0.01em; }
.topbar-meta { display: flex; align-items: center; gap: 22px; }
.topbar-meta a { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-weight: 500; letter-spacing: 0.02em; }
.topbar-meta a:hover { color: var(--gold-400); }
.topbar-meta .sep { color: rgba(255, 255, 255, 0.28); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 0 rgba(11, 42, 71, 0.06), 0 12px 30px rgba(11, 42, 71, 0.06); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 82px; }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.06em; color: var(--navy-800); }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; margin-top: 2px; }

.primary-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { position: relative; text-decoration: none; color: var(--navy-700); font-weight: 500; font-size: 0.96rem; padding: 10px 16px; border-radius: 8px; transition: color 0.2s; }
.primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 1.5px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.primary-nav a:not(.nav-cta):hover { color: var(--navy-900); }
.primary-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.primary-nav .nav-cta { margin-left: 10px; background: var(--navy-800); color: #fff; padding: 11px 22px; border-radius: 999px; font-weight: 600; transition: background 0.2s, transform 0.18s var(--ease); }
.primary-nav .nav-cta:hover { background: var(--navy-700); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; background: none; border: 0; cursor: pointer; padding: 11px; }
.nav-toggle-bar { display: block; height: 2px; width: 100%; background: var(--navy-800); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; background: radial-gradient(120% 120% at 78% 8%, var(--navy-600) 0%, var(--navy-800) 42%, var(--navy-900) 100%); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(closest-side at 84% 26%, rgba(198, 161, 91, 0.28), transparent 70%),
    radial-gradient(closest-side at 6% 92%, rgba(198, 161, 91, 0.1), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 190, 130, 0.5), transparent);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: clamp(64px, 8vw, 104px) 0 clamp(72px, 9vw, 116px); }
.hero h1 { color: #fff; font-weight: 400; margin: 0 0 22px; }
.hero h1 .script { display: block; font-style: italic; color: var(--gold-400); font-weight: 400; }
.hero-sub { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: rgba(255, 255, 255, 0.84); margin: 0 0 34px; max-width: 46ch; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: 0.86rem; color: rgba(255, 255, 255, 0.66); letter-spacing: 0.02em; }
.hero-trust::before { content: ""; width: 26px; height: 1px; background: rgba(217, 190, 130, 0.6); flex: none; }

/* Hero figure (Dream Big art) */
.hero-figure { position: relative; justify-self: center; width: 100%; max-width: 580px; margin: 0; padding: 10px; border: 1px solid rgba(217, 190, 130, 0.34); border-radius: 22px; background: rgba(255, 255, 255, 0.06); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34); }
.hero-art { width: 100%; height: auto; display: block; border-radius: 14px; background: #dfeaf6; }
.hero-figcaption { margin: 14px 4px 4px; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--gold-400); }
.hero-figcaption small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 5px; }

/* Crest card */
.crest {
  position: relative; justify-self: center; width: 100%; max-width: 400px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(217, 190, 130, 0.36); border-radius: 20px; padding: 44px 38px 38px;
  text-align: center; backdrop-filter: blur(6px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}
.crest::before {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(217, 190, 130, 0.18); border-radius: 13px; pointer-events: none;
}
.crest-seal { position: relative; width: 96px; height: 96px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid rgba(217, 190, 130, 0.55); }
.crest-seal img { width: 60px; height: 60px; }
.crest-script { font-family: var(--font-display); font-style: italic; font-size: 1.75rem; color: var(--gold-400); margin: 0 0 6px; }
.crest-sub { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.crest-divider { width: 46px; height: 1px; background: rgba(217, 190, 130, 0.4); margin: 22px auto; }
.crest-sign { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: #fff; margin: 0; }
.crest-role { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); margin-top: 6px; }

/* ---------- Proof band (tri-part motto) ---------- */
.proof { background: var(--paper); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { text-align: center; padding: clamp(36px, 5vw, 60px) 30px; position: relative; }
.proof-item + .proof-item::before { content: ""; position: absolute; left: 0; top: 26%; bottom: 26%; width: 1px; background: var(--line); }
.proof-item h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; margin: 0 0 6px; }
.proof-item p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.proof-item .mark { display: block; font-family: var(--font-display); font-style: italic; color: var(--gold-600); font-size: 0.95rem; margin-bottom: 12px; }

/* ---------- Services overview + pillar nav ---------- */
.services { background: var(--ivory); }
.pillar-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.pillar-nav a {
  text-decoration: none; font-weight: 500; font-size: 0.92rem; color: var(--navy-700);
  background: var(--paper); border: 1px solid var(--line); padding: 10px 20px; border-radius: 999px;
  transition: transform 0.16s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.pillar-nav a:hover, .pillar-nav a.active { border-color: var(--gold-500); background: var(--gold-100); color: var(--navy-900); transform: translateY(-2px); }

/* ---------- Pillar sections ---------- */
.pillar { padding: clamp(60px, 7vw, 96px) 0; background: var(--paper); border-top: 1px solid var(--line); scroll-margin-top: 92px; }
.pillar--alt { background: var(--ivory); }
.pillar-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.pillar-index { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.16em; color: var(--gold-600); font-weight: 500; }
.pillar-index b { font-weight: 500; color: var(--navy-800); }
.pillar-icon {
  width: 66px; height: 66px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: var(--gold-400);
  margin: 16px 0 22px; box-shadow: var(--shadow-sm);
}
.pillar-icon svg { width: 32px; height: 32px; }
.pillar h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 14px; }
.pillar-lead { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 26px; line-height: 1.65; }
.pillar-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; color: var(--navy-800); border-bottom: 1.5px solid var(--gold-500); padding-bottom: 3px; transition: gap 0.2s var(--ease), color 0.2s; }
.pillar-cta svg { width: 17px; height: 17px; transition: transform 0.2s var(--ease); }
.pillar-cta:hover { color: var(--gold-700); }
.pillar-cta:hover svg { transform: translateX(3px); }
.pillar-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 30px; }
.pillar-list li { position: relative; padding: 12px 0 12px 34px; color: var(--ink); font-size: 1rem; border-bottom: 1px solid var(--line-2); }
.pillar-list li::before {
  content: ""; position: absolute; left: 0; top: 15px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold-100);
}
.pillar-list li::after {
  content: ""; position: absolute; left: 6.5px; top: 20px; width: 7px; height: 3.5px;
  border-left: 2px solid var(--gold-700); border-bottom: 2px solid var(--gold-700); transform: rotate(-45deg);
}

/* ---------- About ---------- */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 5vw, 76px); align-items: center; }
.about-portrait {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  aspect-ratio: 4 / 5; display: grid; place-items: center; box-shadow: var(--shadow-md);
  color: var(--gold-400); text-align: center; padding: 30px;
}
.about-portrait::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(217, 190, 130, 0.35); border-radius: 10px; }
.about-portrait .initials { font-family: var(--font-display); font-size: 4.6rem; font-weight: 500; color: #fff; letter-spacing: 0.04em; }
.about-portrait .portrait-note { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 10px; }
.about h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 6px 0 22px; }
.about p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 18px; }
.about .signature { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--navy-800); margin: 10px 0 0; }
.about .signature small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-700); margin-top: 8px; }

/* ---------- Why (navy) ---------- */
.why { background: var(--navy-900); color: #fff; position: relative; }
.why::before { content: ""; position: absolute; inset: 0; background: radial-gradient(closest-side at 12% 0%, rgba(198, 161, 91, 0.14), transparent 60%); pointer-events: none; }
.why .container { position: relative; }
.why h2 { color: #fff; }
.why .section-head p { color: rgba(255, 255, 255, 0.74); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { padding: 34px 26px; border: 1px solid var(--hair-light); border-radius: var(--radius); background: rgba(255, 255, 255, 0.02); transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s; }
.value:hover { border-color: rgba(217, 190, 130, 0.5); transform: translateY(-4px); background: rgba(255, 255, 255, 0.04); }
.value-icon { width: 54px; height: 54px; margin-bottom: 20px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--gold-500); color: var(--gold-400); }
.value h3 { color: #fff; font-size: 1.24rem; font-weight: 500; margin: 0 0 10px; }
.value p { color: rgba(255, 255, 255, 0.72); margin: 0; font-size: 0.97rem; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--paper); }
.testimonial-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.testimonial .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--gold-400); display: block; margin-bottom: 20px; }
.testimonial blockquote { margin: 0; }
.testimonial q { quotes: none; }
.testimonial p.quote { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.4; color: var(--navy-800); margin: 0 0 28px; }
.testimonial figcaption { font-size: 0.9rem; color: var(--ink-soft); }
.testimonial .cite-name { display: block; font-weight: 600; color: var(--navy-800); letter-spacing: 0.02em; }
.testimonial .cite-role { font-size: 0.8rem; letter-spacing: 0.06em; }

/* ---------- CTA band ---------- */
.cta { background: radial-gradient(120% 140% at 80% 10%, var(--navy-600), var(--navy-800) 45%, var(--navy-900)); color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(closest-side at 82% 30%, rgba(198, 161, 91, 0.22), transparent 70%); pointer-events: none; }
.cta-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 16px; }
.cta p { color: rgba(255, 255, 255, 0.82); font-size: 1.14rem; margin: 0 0 32px; }

/* ---------- Contact ---------- */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 6px 0 20px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-list li:first-child { border-top: 0; }
.contact-list .ci-icon { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--navy-800); color: var(--gold-400); }
.contact-list .ci-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; margin-bottom: 2px; }
.contact-list a { color: var(--navy-800); text-decoration: none; font-weight: 600; font-size: 1.08rem; }
.contact-list a:hover { color: var(--gold-700); }
.contact-list .muted { color: var(--ink); font-weight: 500; }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.5rem; font-weight: 500; margin: 0 0 6px; }
.contact-form .form-note { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fdfcf9;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); padding: clamp(56px, 7vw, 84px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 38px; border-bottom: 1px solid var(--hair-light); }
.footer-brand .brand-name { color: #fff; }
.footer-blurb { margin: 20px 0 0; max-width: 40ch; font-family: var(--font-display); font-style: italic; font-size: 1.06rem; color: rgba(255, 255, 255, 0.82); line-height: 1.5; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 18px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.68); text-decoration: none; padding: 6px 0; font-size: 0.96rem; transition: color 0.2s, padding-left 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: 0.85rem; }
.footer-bottom p { margin: 0; }
.footer-bottom .disclaimer { max-width: 62ch; color: rgba(255, 255, 255, 0.46); font-size: 0.8rem; margin-top: 6px; }
.footer-tags { color: rgba(255, 255, 255, 0.6); letter-spacing: 0.02em; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .crest { max-width: 380px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 380px; aspect-ratio: 16 / 11; }
  .pillar-inner { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar-slogan { display: none; }
  .topbar-meta { margin: 0 auto; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 14px 28px 22px;
    clip-path: inset(0 0 100% 0); transition: clip-path 0.3s var(--ease); pointer-events: none;
  }
  .primary-nav.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { padding: 14px 12px; }
  .primary-nav li:last-child { margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
  .primary-nav .nav-cta { margin: 0; padding: 14px 22px; text-align: center; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item + .proof-item::before { display: none; }
  .proof-item + .proof-item { border-top: 1px solid var(--line); }
  .pillar-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
