/* ===================================================
   Fine Financial Group
   Institutional design system
   =================================================== */

/* --- Custom Properties --- */
:root {
  --ink: #14213d;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-muted: #eef0f3;
  --brass: #b8895e;
  --brass-light: #d4ad7a;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-200: #e2e4e9;
  --gray-300: #c5c8d0;
  --gray-400: #8b8f99;
  --gray-500: #5f636e;
  --ink-90: rgba(20, 33, 61, 0.9);
  --ink-70: rgba(20, 33, 61, 0.7);
  --ink-40: rgba(20, 33, 61, 0.4);
  --ink-15: rgba(20, 33, 61, 0.15);

  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', 'Inter', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 6.5rem;

  --max-width: 1200px;
  --nav-height: 64px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 32px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

em {
  font-style: italic;
}

/* --- Typography Scale --- */
.t-display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t-display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.t-display-md {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.t-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
}

.t-body-lg {
  font-size: 1.1rem;
  line-height: 1.65;
}

.t-body {
  font-size: 1rem;
  line-height: 1.6;
}

.t-body-sm {
  font-size: 0.875rem;
  line-height: 1.55;
}

.t-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-3xl) 0;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-height);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: var(--space-lg);
}

.nav-logo {
  width: 38px;
  height: 34px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-70);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.nav-active {
  font-weight: 700;
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #1e3054;
}


/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Hero --- */
.hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
}

.hero-content {
  max-width: 750px;
}

.hero .t-eyebrow {
  margin-bottom: var(--space-sm);
}

/* Hero phone */
.hero-phone {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.3rem;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero-phone a {
  color: var(--gray-500);
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.hero-phone a:hover {
  color: var(--ink);
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 580px;
  margin-bottom: var(--space-lg);
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
  background: #1e3054;
  border-color: #1e3054;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.credentials-strip {
  margin-top: var(--space-md);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* Hero reassurance line */
.hero-reassurance {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

/* --- Who We Serve --- */
.who-we-serve {
  padding: var(--space-3xl) 0;
  background: var(--bg-alt);
}

.who-we-serve-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.who-we-serve-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.who-we-serve-header h2 {
  margin-bottom: var(--space-sm);
}

.who-we-serve-header p {
  color: var(--ink-70);
  font-size: 1rem;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.who-card {
  padding: var(--space-lg);
  background: var(--white);
}

.who-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.who-card p {
  font-size: 0.88rem;
  color: var(--ink-70);
  line-height: 1.5;
}

/* --- Founder Letter --- */
.founder {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-3xl) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: start;
}

.founder-photo {
  aspect-ratio: 3 / 4;
  border: 2px dashed var(--gray-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.founder-photo.has-image {
  border: none;
  padding: 0;
  overflow: hidden;
}

.founder-photo.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-photo .photo-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: var(--space-sm);
}

.founder-photo .photo-hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 200px;
}

.founder-letter .t-eyebrow {
  color: var(--brass);
  margin-bottom: var(--space-md);
}

.founder-letter h2 {
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.founder-letter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.65;
}

.founder-letter .founder-accent {
  border-left: 2px solid var(--brass);
  padding-left: var(--space-sm);
}

.founder-signature {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.founder-signature .sig-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.founder-signature .sig-title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}

/* --- Approach --- */
.approach {
  padding: var(--space-3xl) 0;
}

.approach-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.approach-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.approach-header h2 {
  margin-bottom: var(--space-sm);
}

.approach-header p {
  color: var(--ink-70);
  font-size: 1rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.principle {
  padding-top: var(--space-sm);
  border-top: 2px solid var(--gray-200);
}

.principle-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink-40);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.principle h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.principle p {
  font-size: 0.88rem;
  color: var(--ink-70);
  line-height: 1.5;
}

/* --- Services --- */
.services {
  padding: var(--space-3xl) 0;
  background: var(--bg-alt);
}

.services-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.services-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.services-header h2 {
  margin-bottom: var(--space-sm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.service-card {
  padding: var(--space-lg);
  border: none;
  background: var(--white);
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--bg-alt);
}

.service-card.featured {
  background: var(--ink);
  color: var(--white);
}

.service-card.featured:hover {
  background: #1a2a4d;
}

.service-card .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.service-card.featured .t-eyebrow {
  color: var(--brass);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}

.service-card ul {
  margin-bottom: var(--space-md);
}

.service-card ul li {
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-card.featured ul li {
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card ul li::before {
  content: '\2013';
  color: var(--gray-300);
  flex-shrink: 0;
  font-size: 0.75rem;
}

.service-card.featured ul li::before {
  color: rgba(255, 255, 255, 0.25);
}

.service-card .service-detail {
  font-size: 0.85rem;
  color: var(--ink-70);
  line-height: 1.5;
  margin-top: var(--space-xs);
}

.service-card.featured .service-detail {
  color: rgba(255, 255, 255, 0.55);
}

/* --- Process --- */
.process {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.process-header {
  margin-bottom: var(--space-xl);
}

.process-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.process-header h2 {
  margin-bottom: var(--space-sm);
  max-width: 500px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.process-step {
  position: relative;
  background: var(--bg);
  padding: var(--space-lg);
}

.step-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--ink-70);
  line-height: 1.5;
}

/* --- Team --- */
.team {
  padding: var(--space-3xl) 0;
  background: var(--bg-alt);
}

.team-header {
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.team-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.team-header h2 {
  margin-bottom: var(--space-sm);
}

.team-header p {
  color: var(--ink-70);
  font-size: 1rem;
}

.team-group-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--gray-200);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.team-member-photo {
  aspect-ratio: 1;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: var(--space-sm);
  background: var(--bg-muted);
  padding: var(--space-sm);
}

.team-member-photo.has-image {
  border: none;
  padding: 0;
  overflow: hidden;
  background: #b8c4d4;
}

.team-member-photo.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member-photo span {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.team-member h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
}

.team-member .credentials {
  font-size: 0.72rem;
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

.team-member .role {
  font-size: 0.82rem;
  color: var(--ink-70);
  margin-top: 0.15rem;
}

/* --- Pull Quote --- */
.pull-quote {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.pull-quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}

.pull-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- FAQ --- */
.faq {
  background: var(--bg-alt);
  color: var(--ink);
  padding: var(--space-3xl) 0;
}

.faq-header {
  margin-bottom: var(--space-xl);
}

.faq-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.faq-list {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: var(--space-sm) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--ink-70);
}

.faq-icon {
  font-size: 1.15rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  color: var(--gray-400);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: var(--space-sm);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-70);
}



/* --- Final CTA --- */
.final-cta {
  padding: var(--space-3xl) 0;
  text-align: center;
  background: var(--bg-alt);
}

.final-cta h2 {
  margin-bottom: var(--space-sm);
}

.final-cta p {
  color: var(--ink-70);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

.final-cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand .footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer-brand .footer-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  line-height: 1.5;
}

.footer-affiliation {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  margin-bottom: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-prudential-logo {
  width: 140px;
  height: auto;
  opacity: 0.45;
  flex-shrink: 0;
}

.footer-affiliation p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-sm);
}

.footer-col ul li {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
}

.footer-legal p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: var(--space-sm);
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-legal-prominent {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 500;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Insights --- */
.insights-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

/* Featured insight */
.insight-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  margin-bottom: var(--space-xl);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.insight-featured:hover {
  border-color: var(--ink-40);
}

.insight-featured-media {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.insight-featured-media svg {
  width: 100%;
  height: 100%;
  display: block;
}

.insight-featured-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-featured-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.insight-featured-content p {
  font-size: 0.92rem;
  color: var(--ink-70);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
}

.insight-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: var(--space-xs);
}

.insight-meta {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Insight cards grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.insight-card:hover {
  background: var(--bg-alt);
}

.insight-card-thumb {
  background: var(--ink);
  overflow: hidden;
  height: 160px;
}

.insight-card-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}

.insight-card:hover .insight-card-thumb svg {
  opacity: 1;
}

.insight-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.insight-card-body p {
  font-size: 0.85rem;
  color: var(--ink-70);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.insight-card-body .insight-meta {
  margin-top: auto;
}

/* ===================================================
   INTERNAL PAGES
   =================================================== */

/* --- Page Hero (dark navy, matches homepage hero) --- */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--ink);
  color: var(--white);
}

.page-hero .t-eyebrow {
  margin-bottom: var(--space-xs);
  color: var(--brass);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 580px;
}

/* --- Dark Accent Section (navy background for internal pages) --- */
.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark .t-eyebrow {
  color: var(--brass);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .callout-box {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .callout-box h4 {
  color: var(--white);
}

.section-dark .callout-box ul li {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .content-block p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .content-section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .content-section-header h2 {
  color: var(--white);
}

.section-dark.pull-quote {
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark.pull-quote blockquote p {
  color: var(--white);
}

.section-dark.pull-quote cite {
  color: var(--brass);
}

.section-dark .step-detail-number {
  color: var(--brass);
}

.section-dark .step-detail-title {
  color: var(--white);
}

.section-dark .step-detail-content h3 {
  color: var(--white);
}

.section-dark .step-detail-content p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .step-detail-content h4 {
  color: var(--white);
}

.section-dark .step-detail-content ul li {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .step-detail-content ul li::before {
  color: var(--brass);
}

.step-detail.section-dark:nth-child(even) {
  background: var(--ink);
}

/* --- Content Section (long-form blocks) --- */
.content-section {
  padding: var(--space-3xl) 0;
}

.content-section:nth-child(even) {
  background: var(--bg-alt);
}

.content-section-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.content-section-header .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.content-section-header h2 {
  margin-bottom: var(--space-sm);
}

.content-section-header p {
  color: var(--ink-70);
  font-size: 1rem;
  line-height: 1.6;
}

.content-block {
  max-width: 680px;
}

.content-block p {
  color: var(--ink-70);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* --- Audience Cards (approach page) --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.audience-card {
  border: 1px solid var(--gray-200);
  padding: var(--space-lg);
  background: var(--white);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.audience-card ul {
  list-style: none;
}

.audience-card ul li {
  font-size: 0.92rem;
  color: var(--ink-70);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.5;
}

.audience-card ul li:last-child {
  border-bottom: none;
}

.audience-card ul li::before {
  content: '\2013';
  color: var(--gray-300);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* --- Pillar Block (services page, expanded) --- */
.pillar-block {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--gray-200);
}

.pillar-block:last-of-type {
  border-bottom: none;
}

.pillar-block .t-eyebrow {
  margin-bottom: var(--space-xs);
}

.pillar-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.pillar-list ul {
  list-style: none;
}

.pillar-list ul li {
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pillar-list ul li::before {
  content: '\2013';
  color: var(--gray-300);
  flex-shrink: 0;
  font-size: 0.75rem;
}

.pillar-prose p {
  color: var(--ink-70);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.pillar-prose p:last-child {
  margin-bottom: 0;
}

/* Featured pillar (dark bg) */
.pillar-block.featured {
  background: var(--ink);
  color: var(--white);
  border-bottom: none;
}

.pillar-block.featured .t-eyebrow {
  color: var(--brass);
}

.pillar-block.featured .pillar-list ul li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.pillar-block.featured .pillar-list ul li::before {
  color: rgba(255, 255, 255, 0.25);
}

.pillar-block.featured .pillar-prose p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Connecting section (services page) --- */
.connecting-section {
  background: var(--bg-alt);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.connecting-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.connecting-section p {
  color: var(--ink-70);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto var(--space-md);
}

/* --- Bio Card (team page, expanded) --- */
.bio-section {
  padding: var(--space-xl) 0;
}

.bio-section:nth-child(even) {
  background: var(--bg-alt);
}

.bio-section .team-group-label {
  margin-bottom: var(--space-lg);
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.bio-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-lg);
  align-items: start;
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--brass);
  padding: var(--space-lg);
  background: var(--white);
}

.bio-card-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #b8c4d4;
}

.bio-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-card-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
}

.bio-card-info .credentials {
  font-size: 0.72rem;
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.bio-card-info .credentials-role {
  font-size: 0.78rem;
  color: var(--ink-70);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.bio-card-info .credentials-role .credentials {
  color: var(--brass);
  font-weight: 600;
}

.bio-card-info .credentials-detail {
  font-size: 0.7rem;
  color: var(--ink-70);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.bio-card-info .license-number {
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

.bio-card-info .role {
  font-size: 0.82rem;
  color: var(--ink-70);
  margin-top: 0.15rem;
  margin-bottom: var(--space-sm);
}

.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brass);
  padding: 0;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.bio-toggle:hover {
  color: var(--brass-light);
}

.bio-caret {
  display: inline-block;
  font-size: 0.65em;
  transition: transform 0.3s ease;
}

.bio-card.active .bio-caret {
  transform: rotate(180deg);
}

.bio-card-info .bio-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--ink-70);
  line-height: 1.6;
}

.bio-card.active .bio-text {
  max-height: 600px;
  padding-top: var(--space-sm);
  border-left: 2px solid var(--brass);
  padding-left: var(--space-sm);
  margin-top: 0.4rem;
}

.bio-card-info .bio-text p {
  margin-bottom: 0.75rem;
}

.bio-card-info .bio-text p:last-child {
  margin-bottom: 0;
}

/* --- Step Detail (process page, expanded) --- */
.step-detail {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--gray-200);
}

.step-detail:nth-child(even) {
  background: var(--bg-alt);
}

.step-detail:last-of-type {
  border-bottom: none;
}

.step-detail-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.step-detail-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 4rem;
  color: var(--gray-200);
  line-height: 1;
}

.step-detail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

.step-detail-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.step-detail-content p {
  color: var(--ink-70);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 620px;
}

.step-detail-content p:last-child {
  margin-bottom: 0;
}

.step-detail-content ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

.step-detail-content ul li {
  font-size: 0.92rem;
  color: var(--ink-70);
  padding: 0.4rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.5;
}

.step-detail-content ul li::before {
  content: '\2013';
  color: var(--gray-300);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* --- Callout Box (process page) --- */
.callout-box {
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  padding: var(--space-lg);
  max-width: 480px;
}

.callout-box h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.callout-box ul {
  list-style: none;
}

.callout-box ul li {
  font-size: 0.9rem;
  color: var(--ink-70);
  padding: 0.3rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.5;
}

.callout-box ul li::before {
  content: '\2713';
  color: var(--brass);
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Principles expanded (approach page) --- */
.principle-expanded {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 2px solid var(--gray-200);
}

.principle-expanded .principle-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gray-200);
  line-height: 1;
}

.principle-expanded h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.principle-expanded p {
  font-size: 0.95rem;
  color: var(--ink-70);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

/* --- Contact / Form --- */
.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-70);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.65rem 0.75rem;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b8f99' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-submit {
  align-self: flex-start;
  margin-top: var(--space-xs);
}

.form-success {
  padding: var(--space-xl) 0;
}

.form-success .t-display-md {
  margin-bottom: var(--space-sm);
}

.form-success p {
  font-size: 1rem;
  color: var(--ink-70);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

.form-success p a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 2px;
}

.form-success-sig {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--ink) !important;
  margin-top: var(--space-md) !important;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-xs);
}

.contact-detail h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.3rem;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}

.contact-detail a {
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.contact-detail a:hover {
  text-decoration-color: var(--ink);
}

.contact-expect {
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  padding: var(--space-md);
}

.contact-expect h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.contact-expect ul {
  list-style: none;
}

.contact-expect ul li {
  font-size: 0.88rem;
  color: var(--ink-70);
  padding: 0.3rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.5;
}

.contact-expect ul li::before {
  content: '\2713';
  color: var(--brass);
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===================================================
   RESPONSIVE - INTERNAL PAGES
   =================================================== */

@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .bio-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .contact-sidebar > * {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-lg);
  }

  .bio-card {
    grid-template-columns: 140px 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .step-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .step-detail-grid .step-detail-number {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .principle-expanded {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .principle-expanded .principle-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bio-card {
    grid-template-columns: 1fr;
  }

  .bio-card-photo {
    max-width: 200px;
  }
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    background: none;
    border: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  /* Mobile nav - remove backdrop-filter so position:fixed works on children */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    z-index: 1050;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--ink);
  }

  .nav-links .nav-cta {
    margin-top: var(--space-xs);
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }


  /* Founder */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .founder-photo {
    max-width: 280px;
    aspect-ratio: 3 / 3.5;
  }

  /* Principles */
  .principles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: var(--space-md);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Who We Serve cards */
  .who-cards {
    grid-template-columns: 1fr;
  }

  /* Insights */
  .insight-featured {
    grid-template-columns: 1fr;
  }

  .insight-featured-media {
    min-height: 200px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 3rem;
    --space-2xl: 2.25rem;
  }

  .hero-ctas,
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    flex-direction: column;
  }
}

/* ===================================================
   Article / Insight Detail Pages
   =================================================== */

.article-header {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.article-header .container {
  max-width: 720px;
}

.article-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}

.article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.article-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.article-meta strong {
  color: var(--ink);
  font-weight: 500;
}

.article-body {
  padding: 0 0 var(--space-2xl);
}

.article-body .container {
  max-width: 720px;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-70);
  margin-bottom: var(--space-md);
}

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}

.article-body ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-70);
  margin-bottom: 0.5rem;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}

.article-body blockquote {
  border-left: 2px solid var(--brass);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
}

.article-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: var(--space-xl) 0;
}

.article-video-placeholder {
  background: var(--ink);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.article-video-placeholder svg {
  opacity: 0.3;
}

.article-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brass);
  margin-bottom: var(--space-md);
  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--ink);
}
