/* Quantum Key Institute Journal — editorial site styles */

:root {
  /* Editorial warmer palette — distinct from the .org institutional site */
  --black: #1a1812;
  --ink: #2a2620;
  --forest: #1f3d2b;
  --green: #2D6A3F;
  --green-bright: #5ECE72;
  --green-soft: #e8f1ea;
  --cream: #f8f4ec;
  --cream-warm: #f1ead9;
  --cream-deep: #e8dfc9;
  --white: #ffffff;
  --paper: #fdfbf5;
  --grey-100: #ede9df;
  --grey-200: #d9d5cb;
  --grey-300: #b8b4ab;
  --grey-500: #757269;
  --grey-700: #3a3833;
  --gold: #b8915d;
  --maxw: 1240px;
  --maxw-narrow: 720px;
  --maxw-wide: 1380px;
  --radius: 2px;
  --shadow-sm: 0 2px 8px rgba(26,24,18,0.06);
  --shadow-md: 0 14px 40px rgba(26,24,18,0.09);
  --shadow-lg: 0 28px 70px rgba(26,24,18,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY — serif headings (Fraunces) for editorial feel
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  font-weight: 500;
  margin: 0 0 22px;
  letter-spacing: -0.015em;
  color: var(--black);
  line-height: 1.15;
}

h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; }
h4 { font-size: 22px; font-weight: 600; }
h5 { font-size: 17px; font-weight: 600; }

p { margin: 0 0 22px; }
a { color: var(--forest); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s var(--ease); }
a:hover { color: var(--green-bright); }

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

/* Layout containers */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 32px; }

.section { padding: 100px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-xl { padding: 140px 0; }
.section-cream { background: var(--cream); }
.section-cream-warm { background: var(--cream-warm); }
.section-paper { background: var(--paper); }
.section-forest { background: var(--forest); color: var(--cream); }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 { color: var(--cream); }
.section-forest a { color: var(--green-bright); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--cream); }

/* Eyebrow (small all-caps label) */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Source Sans 3', sans-serif;
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-line:before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   HEADER / NAV — editorial style with serif logo
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,251,245,0.95);
  border-bottom: 1px solid var(--cream-deep);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 0;
  color: var(--black);
}
.nav-brand img { height: 36px; width: auto; }
.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.nav-brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--grey-500);
  margin-top: 2px;
  font-weight: 700;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.nav-cta):hover:after { width: 100%; }
.nav-links a:hover { color: var(--black); }
.nav-links .nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}
.nav-links .nav-cta:hover {
  background: var(--black);
  color: var(--white);
}
.nav-links .nav-cta:after { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--forest);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.section-forest .btn, .section-ink .btn {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}
.section-forest .btn:hover, .section-ink .btn:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
}
.section-forest .btn-outline, .section-ink .btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

/* ============================================
   HERO — editorial magazine style
   ============================================ */
.hero {
  padding: 88px 0 64px;
  background: var(--paper);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 1100px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
}
.hero-lede {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 720px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding-top: 28px;
  border-top: 1px solid var(--cream-deep);
}

/* ============================================
   FEATURED IMAGE (full-bleed editorial)
   ============================================ */
.feature-image {
  width: 100%;
  margin: 32px 0 48px;
  overflow: hidden;
  border-radius: var(--radius);
}
.feature-image img { width: 100%; height: auto; display: block; }
.feature-image figcaption {
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 12px;
  font-style: italic;
  padding: 0 4px;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.full-bleed img { width: 100%; height: auto; display: block; }
.full-bleed.tall { aspect-ratio: 21/9; }
.full-bleed.tall img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   ARTICLE BODY (essays + case studies)
   ============================================ */
.article {
  padding: 80px 0;
  background: var(--paper);
}
.article-body {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body p {
  margin: 0 0 26px;
}
/* Drop cap on first paragraph of article body */
.article-body > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 86px;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  color: var(--forest);
}
.article-body h2 {
  margin-top: 56px;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: -0.02em;
}
.article-body h3 {
  margin-top: 40px;
  font-size: clamp(22px, 2.4vw, 26px);
}
.article-body a {
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
}
.article-body a:hover {
  color: var(--gold);
  border-color: var(--forest);
}
.article-body img {
  margin: 32px 0;
  border-radius: var(--radius);
}
.article-body ul, .article-body ol {
  margin: 0 0 26px;
  padding-left: 28px;
}
.article-body li {
  margin-bottom: 10px;
  line-height: 1.65;
}

/* Pull quote — large editorial */
.pullquote {
  margin: 56px -20px;
  padding: 32px 40px;
  border-left: 3px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--forest);
}
.pullquote .who {
  display: block;
  margin-top: 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* Block quote / testimonial — for embedded graduate quotes */
.quote-block {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--forest);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block .who {
  display: block;
  margin-top: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* Article meta (byline + date + read time) */
.byline {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.byline .author {
  color: var(--forest);
  font-weight: 700;
}
.byline-sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* Footnote / divider */
.divider-orn {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--gold);
  margin: 48px 0;
  letter-spacing: 0.5em;
}
.divider-orn:before { content: "❦"; }

/* ============================================
   CARDS / GRID
   ============================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* Article preview card */
.article-card {
  background: var(--paper);
  border: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.article-card:hover { color: var(--ink); }
.article-card .card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--cream);
}
.article-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.article-card:hover .card-image img { transform: scale(1.04); }
.article-card .card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.article-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--black);
}
.article-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-700);
  margin-bottom: 14px;
}
.article-card .card-author {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 700;
  margin-top: auto;
}
.article-card .card-author .author-name { color: var(--forest); }

/* Featured article — large hero card */
.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.featured-article .featured-image {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.featured-article .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured-article:hover .featured-image img { transform: scale(1.03); }
.featured-article h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}
.featured-article p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey-700);
  margin-bottom: 24px;
}

/* Case study card */
.case-card {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  color: var(--ink);
}
.case-card .case-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream);
}
.case-card .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.case-card .case-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card .case-headline {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 10px;
}
.case-card .case-name {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.case-card .case-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey-700);
  margin-bottom: 18px;
  flex: 1;
}
.case-card .case-read {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ============================================
   METHOD COMPONENTS
   ============================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-deep);
  border-left: 1px solid var(--cream-deep);
}
.method-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  background: var(--paper);
}
.method-cell .pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: block;
}
.method-cell h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--black);
}
.method-cell p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey-700);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.site-footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--cream);
  font-size: 11px;
  margin-bottom: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.site-footer a {
  color: #c3bcab;
  display: block;
  padding: 7px 0;
  font-size: 15px;
  border: 0;
  text-decoration: none;
}
.site-footer a:hover { color: var(--green-bright); }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248,244,236,0.08);
}
.footer-grid p { color: #c3bcab; font-size: 15px; line-height: 1.6; }
.footer-brand .footer-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.footer-brand .footer-logo-text small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 700;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #807a6e;
}
.footer-bottom a { display: inline; color: #c3bcab; padding: 0; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(248,244,236,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  padding: 0;
  transition: all 0.2s var(--ease);
}
.socials a:hover { background: var(--green); color: var(--cream); transform: translateY(-1px); }
.socials a svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================
   TRUST BAR + OPT-IN
   ============================================ */
.trust-bar {
  padding: 36px 0;
  background: var(--paper);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bar img { height: 52px; width: auto; opacity: 0.85; }
.trust-bar .trust-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 700;
}

.optin-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.optin-strip:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(94,206,114,0.18) 0%, transparent 60%);
}
.optin-strip > .wrap { position: relative; z-index: 1; }
.optin-strip h2 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
}
.optin-strip p {
  font-size: 18px;
  color: #d5cfbe;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* ============================================
   PAGE HEAD (interior pages)
   ============================================ */
.page-head {
  padding: 84px 0 56px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}
.page-head .breadcrumb {
  font-size: 11px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  font-weight: 700;
}
.page-head .breadcrumb a { color: var(--grey-500); border: 0; text-decoration: none; }
.page-head .breadcrumb a:hover { color: var(--forest); }
.page-head h1 { margin-bottom: 18px; }
.page-head .lead {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--grey-700);
  max-width: 720px;
  line-height: 1.55;
}

/* ============================================
   UTILITIES
   ============================================ */
.center { text-align: center; }
.italic { font-style: italic; }
.serif { font-family: 'Fraunces', serif; }
.muted { color: var(--grey-500); }
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }

/* GHL form embed wrap */
.form-embed {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 24px;
}
.form-embed-slot {
  min-height: 560px;
  background: var(--cream);
  border: 1px dashed var(--cream-deep);
  padding: 24px;
  font-family: monospace;
  font-size: 13px;
  color: var(--grey-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .section { padding: 64px 0; }
  .section-xl { padding: 88px 0; }
  .hero { padding: 56px 0 40px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .featured-article { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-deep);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 32px; width: 100%; }
  .nav-links a:after { display: none; }
  .nav-links .nav-cta { margin: 12px 32px 4px; text-align: center; justify-content: center; }
  .nav-toggle { display: block; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .article-body { font-size: 18px; }
  .article-body > p:first-of-type::first-letter { font-size: 66px; }
  .pullquote { margin: 40px 0; padding: 24px 28px; }
  .hero-meta { flex-direction: column; gap: 12px; }
  .trust-bar-inner { gap: 24px; }
  .trust-bar img { height: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
}
