/* ==========================================================================
   fatinamalik.com — Direction 2 (Editorial Corporate)
   Source Serif 4 + Inter · Navy + Brass + Warm Gray + White
   ========================================================================== */

/* -------------------- Design tokens -------------------- */
:root {
  --navy: #1B3A5C;
  --navy-deep: #122B47;
  --brass: #B8924E;
  --brass-deep: #9C7A3F;
  --warm-gray: #B5B0A8;
  --ink: #1F2937;
  --slate: #6B7280;
  --border: #D6DAE0;
  --subtle-bg: #F9FAFB;
  --white: #FFFFFF;

  --serif: "Newsreader", "Georgia", "Times New Roman", serif;
  --sans: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 56px);

  --transition: 0.18s ease;
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

/* -------------------- Typography -------------------- */
.display-1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.display-1 em { font-style: italic; font-weight: 400; color: var(--brass); }

.display-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--navy);
}
.display-2 em { font-style: italic; font-weight: 400; color: var(--brass); }

.display-3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--navy);
}

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink);
  max-width: 640px;
}

.body { font-size: 17px; line-height: 1.65; color: var(--ink); }
.body-muted { color: var(--slate); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  margin-bottom: 24px;
}
.eyebrow.muted { color: var(--slate); }

/* -------------------- Layout primitives -------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 760px; }

section { padding: clamp(64px, 9vw, 112px) 0; }
section + section { border-top: 1px solid var(--border); }
section.subtle { background: var(--subtle-bg); }
section.dark { background: var(--navy-deep); color: var(--white); }
section.dark .display-1,
section.dark .display-2,
section.dark .display-3 { color: var(--white); }
section.dark .lede,
section.dark .body { color: rgba(255, 255, 255, 0.85); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border-radius: 0;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--brass); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--brass); border-color: var(--brass); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* -------------------- Site header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.wordmark-tag {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}
.wordmark-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 260px;
}
.footer-logo {
  height: 56px;
  max-width: 320px;
  filter: brightness(0) invert(1);
}
@media (min-width: 720px) {
  .wordmark-logo { height: 48px; }
}
.site-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--brass); }
.site-nav a.active { color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 4px; }
.mobile-trigger {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (min-width: 880px) {
  .site-nav { display: flex; }
  .mobile-trigger { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  padding: 40px var(--gutter);
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.015em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--navy);
  padding: 8px;
}

/* -------------------- Hero (Home / generic) -------------------- */
.hero { padding: clamp(72px, 11vw, 144px) 0 clamp(56px, 8vw, 112px); }
.hero-headline { margin-bottom: 36px; max-width: 920px; }
.hero-lede { margin-bottom: 48px; max-width: 620px; }

.hero-meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.04em;
  max-width: 780px;
}
@media (min-width: 720px) { .hero-meta { grid-template-columns: repeat(3, 1fr); } }
.hero-meta strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  text-transform: none;
}

/* -------------------- Hero (Merchandise / two-column with photo) -------------------- */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 72px; } }
.hero-photo {
  aspect-ratio: 4/5;
  background-position: center 15%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #E8E1D3;
  border: 1px solid var(--border);
}

/* -------------------- Trust strip -------------------- */
.trust-section { padding: clamp(56px, 6vw, 80px) 0; }
.trust-headline {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
@media (min-width: 720px) { .logo-strip { grid-template-columns: repeat(3, 1fr); } }
.logo-strip img {
  max-height: 40px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
}
.logo-strip img:hover { opacity: 1; filter: grayscale(0); }

/* -------------------- Home: Three service modes -------------------- */
.modes-header { margin-bottom: 56px; }
.home-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .home-modes { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.home-mode {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
  position: relative;
}
.home-mode.external { background: var(--subtle-bg); }
.home-mode:hover { border-color: var(--navy); }
.home-mode-title { margin-bottom: 20px; }
.home-mode-body {
  color: var(--ink);
  margin-bottom: 32px;
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
}
.home-mode-link {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.home-mode:hover .home-mode-link { color: var(--brass); border-color: var(--brass); }
.home-mode.external .home-mode-link::after { content: " ↗"; font-weight: 400; }

/* -------------------- Merchandise: Four execution modes (2x2 grid) -------------------- */
.exec-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 720px) { .exec-modes { grid-template-columns: repeat(2, 1fr); } }
.exec-mode {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.exec-mode-number {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.exec-mode-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin-bottom: 16px;
}
.exec-mode-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

/* -------------------- Strategic Advisory -------------------- */
.advisory-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 880px) { .advisory-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.advisory-headline { margin-bottom: 32px; }
.advisory-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.advisory-covers-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 32px 0 16px;
}
.advisory-covers-list { list-style: none; padding: 0; }
.advisory-covers-list li {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.advisory-covers-list li:last-child { border-bottom: 1px solid var(--border); }
.advisory-covers-list li em {
  font-style: italic;
  font-weight: 400;
  color: var(--slate);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
  display: block;
  margin-top: 6px;
}

/* -------------------- Testimonials -------------------- */
.testimonials {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) { .testimonials { grid-template-columns: 1fr 1fr; gap: 32px; } }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.testimonial.featured {
  grid-column: 1 / -1;
  background: var(--subtle-bg);
  border-color: var(--warm-gray);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.testimonial.featured .testimonial-quote { font-size: 24px; }
.testimonial-quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 48px;
  color: var(--brass);
  line-height: 0;
  display: block;
  margin-bottom: 32px;
}
.testimonial-attr {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.testimonial-role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* -------------------- QRA framework -------------------- */
.qra-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 880px) { .qra-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.qra-headline { margin-bottom: 24px; }
.qra-body { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 24px; }
.qra-results-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.result-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.result-row:first-of-type { border-top: 1px solid var(--border); }
.result-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--brass);
  letter-spacing: -0.02em;
  min-width: 100px;
  line-height: 1;
}
.result-label {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.qra-testimonial {
  margin: 40px 0;
  padding-left: 28px;
  border-left: 2px solid var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.qra-testimonial-attr {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* -------------------- Operator paragraph -------------------- */
.operator-block { max-width: 720px; margin: 0 auto; }
.operator-headline { margin-bottom: 32px; }
.operator-body {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.7;
  color: var(--ink);
  font-family: var(--sans);
}
.operator-body + .operator-body { margin-top: 20px; }
.pullquote {
  margin: 48px 0 0;
  padding-left: 28px;
  border-left: 2px solid var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* -------------------- Procurement / certifications -------------------- */
.procurement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}
@media (min-width: 720px) { .procurement-grid { grid-template-columns: 0.7fr 1.3fr; gap: 64px; align-items: start; } }
.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
}
.certs img {
  max-height: 100px;
  width: auto;
}
.procurement-body { font-size: 16px; line-height: 1.7; color: var(--ink); }
.procurement-list { list-style: none; padding: 0; margin-top: 24px; }
.procurement-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: baseline;
}
.procurement-list li::before { content: "—"; color: var(--brass); font-family: var(--serif); font-weight: 500; }
.procurement-list li:last-child { border-bottom: none; }

/* -------------------- About page -------------------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 880px) { .about-hero-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.about-photo {
  aspect-ratio: 4/5;
  background-position: center 15%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #E8E1D3;
  border: 1px solid var(--border);
}

/* Full-width editorial hero (Direction B) — used on About page */
.about-editorial-photo {
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #E8E1D3;
  border-bottom: 1px solid var(--border);
  max-height: 780px;
}
@media (min-width: 1400px) {
  .about-editorial-photo { aspect-ratio: 16/7; max-height: 720px; }
}
.about-editorial-photo + section.about-hero-copy { border-top: none; padding-top: clamp(56px, 7vw, 88px); }
.about-bio { max-width: 640px; }
.about-bio p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 24px;
}
.credentials-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 720px;
}
.credentials-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--ink);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: baseline;
}
.credentials-list li::before {
  content: "—";
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
}
.credentials-list li:first-child { border-top: 1px solid var(--border); }

/* -------------------- Contact page -------------------- */
.contact-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 720px) { .contact-modes { grid-template-columns: repeat(3, 1fr); } }
.contact-mode {
  border: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.contact-mode:hover { border-color: var(--navy); }
.contact-mode-eyebrow { color: var(--brass); margin-bottom: 16px; }
.contact-mode-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.contact-mode-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.contact-mode-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  margin-top: auto;
}

/* -------------------- Notes / blog -------------------- */
.notes-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .notes-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.note {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.note:hover { border-color: var(--navy); }
.note.featured {
  grid-column: 1 / -1;
  background: var(--subtle-bg);
  padding: 48px 40px;
}
.note-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.note-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 16px;
}
.note.featured .note-title { font-size: 32px; }
.note-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.note-link {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.note:hover .note-link { color: var(--brass); border-color: var(--brass); }

/* Individual post page */
.post-header { padding: clamp(72px, 10vw, 128px) 0 clamp(40px, 6vw, 64px); text-align: left; max-width: 800px; margin: 0 auto; }
.post-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}
.post-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin-bottom: 24px;
}
.post-excerpt {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--slate);
}
.post-feature-image {
  max-width: 1180px;
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
}
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 96px);
}
.post-content > * { margin-bottom: 28px; }
.post-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.post-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 26px);
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.post-content p { font-size: 18px; line-height: 1.7; color: var(--ink); }
.post-content ul, .post-content ol { padding-left: 24px; font-size: 18px; line-height: 1.7; color: var(--ink); }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  padding: 20px 0 20px 28px;
  border-left: 2px solid var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin: 40px 0;
}
.post-content a { color: var(--navy); border-bottom: 1px solid var(--brass); padding-bottom: 1px; transition: color var(--transition); }
.post-content a:hover { color: var(--brass); }
.post-content img { margin: 40px auto; border: 1px solid var(--border); }
.post-content code {
  background: var(--subtle-bg);
  padding: 2px 6px;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 15px;
  color: var(--navy);
}
.post-content pre {
  background: var(--navy-deep);
  color: var(--white);
  padding: 24px;
  overflow-x: auto;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 14px;
  line-height: 1.6;
}
.post-content pre code { background: transparent; color: inherit; padding: 0; }

/* Ghost editor (Koenig) width classes for images, embeds, galleries */
.post-content .kg-width-wide {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.post-content .kg-width-full {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.post-content .kg-image {
  max-width: 100%;
  height: auto;
}
.post-content .kg-image-card,
.post-content .kg-gallery-card,
.post-content .kg-embed-card,
.post-content .kg-bookmark-card,
.post-content .kg-video-card,
.post-content .kg-audio-card,
.post-content .kg-file-card,
.post-content .kg-toggle-card,
.post-content .kg-callout-card,
.post-content .kg-header-card {
  margin: 40px auto;
}
.post-content .kg-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}
.post-content .kg-gallery-image img {
  width: 100%;
  height: auto;
  display: block;
}
.post-content .kg-bookmark-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-decoration: none;
}
.post-content .kg-bookmark-title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.post-content .kg-callout-card {
  padding: 24px 28px;
  border-left: 3px solid var(--brass);
  background: var(--subtle-bg);
}

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(64px, 8vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; } }
.footer-brand .wordmark { color: var(--white); font-size: 28px; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.footer-newsletter h3,
.footer-contact h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input:focus { outline: none; background: rgba(255, 255, 255, 0.05); }
.newsletter-form button {
  background: var(--brass);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--brass-deep); }
.footer-contact p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact a { color: var(--white); border-bottom: 1px solid transparent; transition: border-color var(--transition), color var(--transition); }
.footer-contact a:hover { color: var(--brass); border-color: var(--brass); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--brass); }

/* -------------------- Utility -------------------- */
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
