@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2f45;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f4ef;
  --cream-dark: #ede9e1;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #767676;
  --white: #ffffff;
  --border: #d8d2c8;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 1px;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--navy); transition: all 0.3s; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 2.5rem; border-bottom: 1px solid var(--border); color: var(--navy); }
  .nav-cta { margin: 1rem 2.5rem; display: inline-block; border-radius: 1px; }
}

/* ── HERO: FULL BLEED with overlay text ── */
.hero-fullbleed {
  height: 100vh;
  min-height: 680px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=85&fit=crop');
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.72) 45%,
    rgba(13,27,42,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 2.5rem 4rem;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 0.95rem 2.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.95rem 2.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 1px;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  border-radius: 1px;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 0.95rem 2.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--navy-light); }

/* ── SPLIT PANELS (MGAC style) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
  background: var(--white);
}
.split-text.dark { background: var(--navy); }
.split-text.cream { background: var(--cream); }

.split-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.split-text.dark h2 { color: var(--white); }
.split-text h2 em { color: var(--gold); font-style: normal; }

.split-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 440px;
}
.split-text.dark p { color: rgba(255,255,255,0.6); }
.split-text p:last-of-type { margin-bottom: 2rem; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; direction: ltr !important; }
  .split-img { min-height: 300px; }
  .split-text { padding: 3.5rem 2rem; }
  .split-text p { max-width: 100%; }
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 2rem; }

/* ── STATEMENT BAND ── */
.statement-band {
  background: var(--navy);
  padding: 5rem 2.5rem;
  text-align: center;
}
.statement-band blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}
.statement-band blockquote em { color: var(--gold); font-style: normal; }
.statement-attr {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* ── SERVICES GRID ── */
.services-section {
  background: var(--cream);
  padding: 6rem 2.5rem;
}
.services-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.services-section > .container > p {
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2.25rem;
  transition: background 0.2s;
  cursor: default;
}
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.75; }

/* ── PRINCIPLES DARK BAND ── */
.principles-section {
  background: var(--navy);
  padding: 6rem 2.5rem;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.principle {
  padding: 2.25rem;
  background: rgba(13,27,42,0.85);
}
.principle-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.principle h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.principle p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin: 0; line-height: 1.75; }

/* ── SECTORS ROW ── */
.sectors-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sectors-row::-webkit-scrollbar { display: none; }
.sector-pill {
  flex: 0 0 auto;
  padding: 1.5rem 2rem;
  background: var(--white);
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.sector-pill:hover { background: var(--navy); color: var(--gold); }

/* ── INSIGHTS / BLOG ── */
.insights-section { padding: 6rem 2.5rem; background: var(--white); }
.insights-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.blog-card {
  background: var(--white);
  padding: 2.25rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.blog-card:hover { background: var(--cream); }
.blog-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.85rem;
  display: block;
}
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}
.blog-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.75; }
.blog-card-read { font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; }
.blog-card-meta { font-size: 0.75rem; color: var(--text-light); display: block; margin-top: 0.5rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 5rem 2.5rem; text-align: center; }
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 500;
}
.cta-band p { color: var(--navy-light); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 5rem 2.5rem 3rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: block;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-item { margin-bottom: 0.6rem; }
.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; display: block; }
.footer-bottom {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; }

/* ── INNER PAGES ── */
.page-hero {
  background: var(--navy);
  padding: 8rem 2.5rem 5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  max-width: 820px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.page-hero p { color: rgba(255,255,255,0.55); max-width: 580px; font-size: 1.05rem; }

/* ── ABOUT ── */
.about-body { background: var(--white); padding: 6rem 2.5rem; }
.about-inner { max-width: 820px; margin: 0 auto; }
.about-inner p { font-size: 1.05rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.25rem; }
.about-inner h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--navy);
  margin: 3rem 0 1rem;
}
.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  color: var(--text-mid);
  font-size: 1.02rem;
}
.values-list li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.75rem;
}

/* ── SERVICES PAGE ── */
.services-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
.service-block { background: var(--white); padding: 2.75rem; transition: background 0.2s; }
.service-block:hover { background: var(--cream); }
.service-header { display: flex; align-items: baseline; gap: 1.25rem; margin-bottom: 1rem; }
.service-block-num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); opacity: 0.4; flex-shrink: 0; }
.service-block h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin: 0; }
.service-block > p { font-size: 1rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.85; }
.service-includes { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); font-weight: 500; margin-bottom: 0.75rem; display: block; }
.service-items { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.4rem 2rem; }
.service-items li { font-size: 0.9rem; color: var(--text-mid); padding-left: 1.1rem; position: relative; }
.service-items li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }

/* ── PROCESS ── */
.process-section { background: var(--cream); padding: 6rem 2.5rem; }
.process-section h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 500; color: var(--navy); margin-bottom: 3rem; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.process-step { border-top: 2px solid var(--border); padding-top: 1.5rem; }
.process-step.active { border-top-color: var(--gold); }
.step-num { font-family: var(--font-serif); font-size: 3rem; color: var(--navy); opacity: 0.1; line-height: 1; margin-bottom: 0.5rem; }
.process-step h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.75; }

/* ── FAQ ── */
.faq-section { background: var(--white); padding: 6rem 2.5rem; }
.faq-list { max-width: 780px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.4rem; flex-shrink: 0; font-family: var(--font-sans); font-weight: 300; line-height: 1; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; display: none; padding-top: 1rem; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-section { background: var(--white); padding: 6rem 2.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; max-width: 1280px; margin: 0 auto; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.contact-detail { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 0.25rem; font-weight: 500; }
.contact-detail a { color: var(--navy); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail span { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; display: block; }
.contact-form-wrap { background: var(--cream); border: 1px solid var(--border); padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1px solid var(--border); background: var(--white);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 300; color: var(--text);
  border-radius: 1px; outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; }

/* ── BLOG ── */
.blog-post-hero { background: var(--navy); padding: 8rem 2.5rem 4rem; }
.blog-post-hero-inner { max-width: 820px; margin: 0 auto; }
.blog-post-body { background: var(--white); padding: 5rem 2.5rem; }
.blog-post-content { max-width: 740px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9; color: var(--text-mid); }
.blog-post-content h2 { font-family: var(--font-serif); font-size: 1.7rem; color: var(--navy); margin: 3rem 0 1rem; font-weight: 500; }
.blog-post-content p { margin-bottom: 1.4rem; }
.blog-post-content ul { margin: 1rem 0 1.4rem 1.5rem; }
.blog-post-content ul li { margin-bottom: 0.6rem; color: var(--text-mid); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.22s; }
.fade-up:nth-child(4) { animation-delay: 0.32s; }
