/* ═══════════════════════════════════════════════════════════════════════════
   M Enterprise — WordPress port of the Mambu Enterprise gateway design.
   Pearl/ice light, deep navy ink, warm gold. Cormorant Garamond + Jost.
   Design and Develop by Mambu Enterprise / Peter Mambu.
   ═══════════════════════════════════════════════════════════════════════════ */

.gateway-root {
  --bg: #EFF1F5;
  --bg2: #F7F8FB;
  --panel: rgba(255, 255, 255, 0.82);
  --surface: rgba(255, 255, 255, 0.92);
  --surface2: #F3EEE2;
  --elevated: #FFFFFF;
  --border: rgba(22, 35, 61, 0.12);
  --hair: rgba(22, 35, 61, 0.08);
  --text: #16233D;
  --dim: #4B5568;
  --mute: #5E6679; /* darkened from the site's #8A8FA0 — that value fails WCAG 4.5:1 */
  --accent: #A67C2E;
  --accent2: #C9A45C;
  --accent3: #8A6420;
  --glow: rgba(201, 164, 92, 0.4);
  --shadow: rgba(22, 35, 61, 0.10);
  --g-serif: "Cormorant Garamond", Georgia, serif;
  --g-sans: "Jost", system-ui, sans-serif;

  /* palette-driven material tokens (Heritage Gold defaults; each palette in
     palettes.css overrides this set — nothing below hardcodes a brand color) */
  --g-body-bg:
    radial-gradient(1100px 500px at 85% -5%, rgba(201, 164, 92, 0.14), transparent 60%),
    radial-gradient(900px 480px at 8% 30%, rgba(110, 168, 255, 0.10), transparent 65%),
    linear-gradient(180deg, #F2F4F8, #E9ECF2);
  --g-hero-bg: linear-gradient(180deg, #F3F1EA 0%, rgba(239, 241, 245, 0) 100%);
  --g-line: rgba(201, 164, 92, 0.3);
  --g-input-bg: #F1F3F6;
  --g-input-border: rgba(201, 164, 92, 0.22);
  --g-label: #5C6478;
  --g-chip-bg: #FFFFFF;
  --g-chip-on-bg: var(--text);
  --g-chip-on-text: #F3EEE2;
  --g-svc-chip-bg: rgba(255, 255, 255, 0.72);
  --g-band-bg: var(--text);
  --g-band-text: #F3EEE2;
  --g-band-dim: #9aa8c4;
  --g-band-accent: #C9A45C;
  --g-band-card-bg: rgba(255, 255, 255, 0.04);
  --g-band-card-border: rgba(201, 164, 92, 0.18);
  --g-strip-bg: #ffffff;
  --g-cta-bg: linear-gradient(180deg, #EFF1F5 0%, #E6E9EF 100%);
  --g-toast-bg: var(--text);
  --g-toast-text: #F3EEE2;
  --g-particle: rgba(201, 164, 92, 0.8);
  --g-spot: rgba(201, 164, 92, 0.22);
  --g-ring: rgba(201, 164, 92, 0.35);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.gateway-root {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  color: var(--text);
  font-family: var(--g-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--g-body-bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Sticky-footer layout: the content wrapper grows to fill any leftover
     viewport height so the footer is always pinned to the bottom — no blank
     space below it on short pages or tall screens. */
  display: flex;
  flex-direction: column;
}
body.gateway-root .site-content { flex: 1 0 auto; }
body.gateway-root .site-footer { flex-shrink: 0; }
.gateway-root a { color: var(--accent3); text-decoration: none; }
.gateway-root a:hover { color: var(--accent); }
.gateway-root ::selection { background: rgba(201, 164, 92, 0.35); color: var(--text); }
input, button, textarea, select { font-family: inherit; color: inherit; }
img { max-width: 100%; height: auto; }

/* full-width fluid gutter used by every section */
.gutter { width: 100%; padding-left: clamp(18px, 4vw, 96px); padding-right: clamp(18px, 4vw, 96px); }

.font-serif-display { font-family: var(--g-serif); font-weight: 600; letter-spacing: -0.005em; }

.screen-reader-text {
  border: 0; clip-path: inset(50%); height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal;
}
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--text); color: #fff; padding: 10px 18px; }
.skip-link:focus { left: 0; clip-path: none; width: auto; height: auto; color: #fff; }

/* ── Gold particles (fixed: ambient viewport layer, never part of the
      document's scrollable area — keeps the page exactly as tall as its
      content, footer flush at the bottom) ──────────────────────────────── */
.g-particles { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
@keyframes goldFloat { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-16px); opacity: 1; } }
.g-particle { position: absolute; border-radius: 50%; background: radial-gradient(circle, var(--g-particle), transparent 70%); animation: goldFloat 7s ease-in-out infinite; pointer-events: none; }

/* ── Primitives ─────────────────────────────────────────────────────────── */
.g-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.g-rule { display: flex; align-items: center; justify-content: center; gap: 14px; }
.g-rule::before, .g-rule::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: .55;
}
.g-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 26px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--accent2); color: var(--accent3);
  background: transparent; cursor: pointer; border-radius: 2px;
  transition: all .2s ease; text-decoration: none;
}
.g-btn:hover { background: var(--accent2); color: #fff; box-shadow: 0 6px 22px var(--glow); }
.g-btn-solid { background: var(--text); border-color: var(--text); color: #fff; padding-left: 36px; padding-right: 36px; }
.g-btn-solid:hover { background: var(--accent3); border-color: var(--accent3); box-shadow: 0 6px 22px var(--glow); }
.g-btn:disabled { opacity: .6; cursor: wait; }
.g-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 6px;
  box-shadow: 0 14px 44px var(--shadow);
  backdrop-filter: blur(14px);
  position: relative;
}
.g-card::before {
  content: ""; position: absolute; inset: 10px; pointer-events: none;
  border: 1px solid var(--g-line); border-radius: 3px;
}
.g-input {
  width: 100%; padding: 13px 15px; border-radius: 2px; font-size: 14.5px;
  color: var(--text); background: var(--g-input-bg); border: 1px solid var(--g-input-border);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.g-input:focus { border-color: var(--accent2); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent2) 16%, transparent); }
.g-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g-label); }
.g-label-soft { text-transform: none; letter-spacing: 0; }

/* scroll reveal */
.g-reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.g-reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .g-reveal { opacity: 1; transform: none; transition: none; }
  .g-particle { animation: none; }
  html { scroll-behavior: auto; }
}

/* chips */
.g-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 999px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--g-line); background: var(--g-chip-bg); color: var(--dim);
  cursor: pointer; transition: all .18s ease; user-select: none;
}
.g-chip:hover { border-color: var(--accent2); transform: translateY(-1px); }
.g-chip.on { background: var(--g-chip-on-bg); border-color: var(--g-chip-on-bg); color: var(--g-chip-on-text); box-shadow: 0 6px 18px var(--shadow); }
.g-chip.on .g-chip-dot { background: var(--accent2); }
.g-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: color-mix(in srgb, var(--accent2) 50%, transparent); transition: background .18s; }

/* toast */
.g-toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px);
  background: var(--g-toast-bg); color: var(--g-toast-text); padding: 12px 22px; border-radius: 4px;
  font-size: 13px; box-shadow: 0 14px 40px rgba(5, 8, 16, .35);
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; z-index: 90;
  border: 1px solid var(--g-line);
}
.g-toast.show { opacity: 1; transform: translate(-50%, 0); }
.g-toast.warn { background: #7a5a12; }
.g-toast.danger { background: #7a1f2b; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header { position: relative; z-index: 10; display: flex; align-items: center; gap: 32px; padding-top: 28px; padding-bottom: 28px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; color: var(--text) !important; }
.brand-serif { font-family: var(--g-serif); font-weight: 600; font-size: 22px; }
.brand-caps { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); }
.site-nav .menu { display: flex; align-items: center; gap: 28px; margin: 0 0 0 32px; padding: 0; list-style: none; }
.site-nav .menu a { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); }
.site-nav .menu a:hover { color: var(--accent3); }
.header-cta { margin-left: auto; }
/* Note: the small-screen nav is a slide-in panel owned by site2.css — do not
   hide .site-nav here, or the mobile menu disappears entirely. */
@media (max-width: 860px) {
  .site-header { gap: 16px; }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1; display: flex; justify-content: center;
  padding: 110px 24px 90px; min-height: 62vh; align-items: center;
  background: var(--g-hero-bg);
}
.hero-inner { display: grid; justify-items: center; text-align: center; gap: 18px; max-width: 760px; }
.hero-kicker { margin: 0; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; }
.hero-heading { margin: 0; font-size: clamp(34px, 6vw, 62px); font-weight: 600; line-height: 1.05; color: var(--text); }
.hero-text { margin: 0; color: var(--dim); font-size: 18px; font-weight: 300; line-height: 1.6; max-width: 560px; }
.hero-btn {
  display: inline-flex; align-items: center; margin-top: 6px;
  background: var(--accent); color: #fff !important; padding: 14px 30px;
  border-radius: 999px; font-weight: 600; font-size: 15px; transition: all .2s ease;
}
.hero-btn:hover { background: var(--accent3); box-shadow: 0 8px 26px var(--glow); transform: translateY(-1px); }

/* ── Section pages (Services / Innovation / Reach / Contact) ────────────── */
.section-page { padding-top: 40px; }
.section-page .section-innovation { margin-top: 8px; }
.page-intro { max-width: 720px; margin: 32px auto 0; text-align: center; }
.page-intro p:first-child { margin-top: 0; }

/* ── Home metrics strip (light variant, from the Studio home canvas) ────── */
.section-metrics-light { position: relative; z-index: 1; padding: 56px 0; background: var(--g-strip-bg); }
.metrics-light-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .metrics-light-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-light { text-align: center; display: grid; gap: 6px; }
.metric-light-value { font-size: 44px; line-height: 1.1; color: var(--text); }
.metric-light-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }

/* ── Home CTA band ──────────────────────────────────────────────────────── */
.section-cta {
  position: relative; z-index: 1; display: flex; justify-content: center;
  padding: 84px 24px; background: var(--g-cta-bg);
}
.cta-inner { display: grid; justify-items: center; text-align: center; gap: 16px; max-width: 620px; }
.cta-heading { margin: 0; font-size: 38px; font-weight: 600; color: var(--text); }
.cta-text { margin: 0; font-size: 16px; font-weight: 300; color: var(--dim); }
.cta-btn {
  display: inline-flex; align-items: center; margin-top: 4px;
  padding: 13px 28px; border-radius: 999px; border: 1.5px solid var(--accent);
  color: var(--accent) !important; font-weight: 600; font-size: 15px;
  transition: all .2s ease; background: transparent;
}
.cta-btn:hover { background: var(--accent); color: #fff !important; box-shadow: 0 8px 26px var(--glow); }

/* ── Services grid ──────────────────────────────────────────────────────── */
.section-services { position: relative; z-index: 1; padding-bottom: 80px; }
.section-services .g-rule { margin-bottom: 40px; }
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1536px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }
.svc-cell, .svc-cell > .svc-card { height: 100%; }
.svc-card {
  position: relative; overflow: hidden; border-radius: 6px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--g-line);
  box-shadow: 0 10px 32px var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.svc-spot { position: absolute; inset: 0; pointer-events: none; transition: opacity .3s; }
.svc-hairline { position: absolute; inset: 9px; pointer-events: none; border: 1px solid var(--g-line); border-radius: 3px; }
.svc-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; }
.svc-numeral { font-size: 36px; line-height: 1; color: var(--accent3); }
.svc-tag { font-size: 9.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim); }
.svc-body { position: relative; }
.svc-dash { width: 32px; height: 1px; margin-bottom: 12px; background: var(--accent2); }
.svc-title { margin: 0; font-size: 24px; line-height: 1.2; color: var(--text); }
.svc-blurb { margin: 8px 0 0; font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--dim); }
.svc-chips { position: relative; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }
.svc-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
  border-radius: 999px; font-size: 10.5px; font-weight: 500; color: var(--dim);
  background: var(--g-svc-chip-bg); border: 1px solid var(--g-line);
}
.svc-chip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent2); }
.svc-explore {
  position: relative; align-self: flex-start; margin-top: 4px; padding: 0 0 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent3); background: none; border: none;
  border-bottom: 1px solid var(--g-line); cursor: pointer; transition: color .2s;
}
.svc-explore:hover { color: var(--accent); }

/* ── Innovation band ────────────────────────────────────────────────────── */
.section-innovation { position: relative; z-index: 1; padding: 64px 0; background: var(--g-band-bg); color: var(--g-band-text); }
.g-rule-dark { margin-bottom: 12px; }
.inno-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g-band-accent); }
.inno-text { text-align: center; font-size: 13.5px; font-weight: 300; max-width: 620px; margin: 0 auto 40px; color: var(--g-band-dim); }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card {
  text-align: center; padding: 32px 16px; border-radius: 4px;
  background: var(--g-band-card-bg); border: 1px solid var(--g-band-card-border);
  transition: transform .2s ease; will-change: transform;
}
.metric-value { font-size: clamp(34px, 3vw, 46px); color: var(--g-band-accent); }
.metric-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; color: var(--g-band-dim); }

/* ── Reach ──────────────────────────────────────────────────────────────── */
.section-reach { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.reach-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .reach-grid { grid-template-columns: 1fr 1fr; } }
.reach-kicker { margin-bottom: 16px; display: block; }
.reach-heading { margin: 0; font-size: clamp(30px, 3vw, 46px); line-height: 1.08; max-width: 16ch; color: var(--text); }
.reach-text { margin-top: 20px; font-size: 14.5px; font-weight: 300; line-height: 1.75; max-width: 420px; color: var(--dim); }
.cities-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 16px; row-gap: 20px; }
@media (min-width: 640px) { .cities-grid { grid-template-columns: repeat(4, 1fr); } }
.city { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 300; color: var(--dim); }
.city-dot { width: 4px; height: 4px; border-radius: 50%; flex: none; background: var(--accent2); }

/* ── Contact ────────────────────────────────────────────────────────────── */
.section-contact { position: relative; z-index: 1; padding-bottom: 80px; }
.section-contact .g-rule { margin-bottom: 40px; }
.contact-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }
.contact-heading { margin: 0; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.2; color: var(--text); }
.contact-text { margin-top: 16px; font-size: 14px; font-weight: 300; line-height: 1.75; max-width: 420px; color: var(--dim); }
.contact-cards { display: grid; gap: 12px; margin-top: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--g-line);
  transition: transform .2s ease;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; width: 64px; flex: none; color: var(--accent); }
.contact-card a, .contact-card span:not(.contact-label) { font-size: 13.5px; font-weight: 500; word-break: break-all; color: var(--text); }
.contact-form { padding: 36px; display: grid; gap: 20px; }
@media (max-width: 640px) { .contact-form { padding: 26px 20px; } }
.form-note { margin: 0; font-size: 12.5px; color: var(--mute); }
.form-2col { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-2col { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 8px; }
.form-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-reply-note { font-size: 11.5px; font-weight: 300; color: var(--mute); }
.m-ent-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
textarea.g-input { resize: vertical; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--hair); padding: 32px 0; }
.footer-row { display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 11.5px; color: var(--mute); }
@media (min-width: 860px) { .footer-row { flex-direction: row; } }
.footer-brand .brand-serif { font-size: 15px; }
.footer-brand .brand-caps { font-size: 9px; }
.footer-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 860px) { .footer-meta { margin-left: auto; } }
.footer-menu { display: flex; gap: 14px; margin: 0; padding: 0; list-style: none; }
.footer-menu a { color: var(--mute); }
.footer-menu a:hover { color: var(--accent3); }

/* ── Blog / pages (editorial) ───────────────────────────────────────────── */
.blog-wrap, .page-wrap { position: relative; z-index: 1; padding-top: 24px; padding-bottom: 80px; }
.page-rule { margin-bottom: 40px; }
.entries-grid { display: grid; gap: 24px; }
@media (min-width: 768px)  { .entries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .entries-grid { grid-template-columns: repeat(3, 1fr); } }
.entry-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--g-line);
  box-shadow: 0 10px 32px var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.entry-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px var(--shadow); }
.entry-thumb { display: block; }
.entry-thumb img { display: block; width: 100%; object-fit: cover; aspect-ratio: 16 / 9; }
.entry-body { display: flex; flex-direction: column; gap: 10px; padding: 24px; flex: 1; }
.entry-meta, .single-meta { display: flex; gap: 12px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.entry-cats a { color: var(--accent); }
.entry-title { margin: 0; font-size: 24px; line-height: 1.2; }
.entry-title a { color: var(--text); }
.entry-title a:hover { color: var(--accent3); }
.entry-excerpt { font-size: 13.5px; font-weight: 300; line-height: 1.7; color: var(--dim); }
.entry-excerpt p { margin: 0; }
.entry-more { margin-top: auto; padding-top: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent3); }
.pagination-wrap { margin-top: 48px; text-align: center; }
.pagination-wrap .nav-links { display: inline-flex; gap: 8px; align-items: center; }
.pagination-wrap .page-numbers {
  display: inline-flex; min-width: 36px; height: 36px; align-items: center; justify-content: center;
  padding: 0 10px; border: 1px solid var(--g-line); border-radius: 2px;
  font-size: 12px; color: var(--dim);
}
.pagination-wrap .page-numbers.current { background: var(--g-chip-on-bg); border-color: var(--g-chip-on-bg); color: var(--g-chip-on-text); }
.pagination-wrap .page-numbers:hover { border-color: var(--accent2); color: var(--accent3); }

.page-article { max-width: 880px; margin: 0 auto; }
.single-title { margin: 8px 0 24px; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; color: var(--text); }
.page-thumb { margin-bottom: 28px; }
.page-thumb img { border-radius: 6px; }
.prose { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--dim); }
.prose h1, .prose h2, .prose h3, .prose h4 { font-family: var(--g-serif); font-weight: 600; color: var(--text); line-height: 1.2; }
.prose h2 { font-size: 32px; margin: 40px 0 12px; }
.prose h3 { font-size: 25px; margin: 32px 0 10px; }
.prose blockquote {
  margin: 28px 0; padding: 4px 0 4px 22px; border-left: 2px solid var(--accent2);
  font-family: var(--g-serif); font-size: 20px; color: var(--text);
}
.prose code { background: var(--g-input-bg); padding: 2px 6px; border-radius: 3px; font-size: 14px; }
.prose pre { background: var(--g-toast-bg); color: var(--g-toast-text); padding: 20px; border-radius: 6px; overflow-x: auto; }
.prose pre code { background: none; color: inherit; }
.prose img { border-radius: 4px; }
.prose a { border-bottom: 1px solid rgba(201,164,92,.5); }
.alignwide { margin-left: -6%; margin-right: -6%; max-width: 112%; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }

.post-navigation { margin: 48px 0 0; }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; }
.archive-desc { max-width: 640px; margin: -24px auto 40px; text-align: center; font-size: 14px; font-weight: 300; color: var(--dim); }
.none-found { max-width: 560px; margin: 40px auto; text-align: center; display: grid; gap: 16px; justify-items: center; }
.none-found h1, .none-found h2 { margin: 0; font-size: 34px; color: var(--text); }
.none-found p { margin: 0; font-weight: 300; color: var(--dim); }
.err-numeral { font-size: 110px; line-height: 1; color: var(--accent2); }
.search-form { display: flex; gap: 10px; width: 100%; max-width: 420px; }
.search-form .g-input { flex: 1; }

/* comments */
.comments-area { margin-top: 56px; border-top: 1px solid var(--hair); padding-top: 36px; }
.comments-title { font-size: 26px; margin: 0 0 20px; color: var(--text); }
.comment-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.comment-list .comment-body {
  background: var(--surface); border: 1px solid var(--g-line);
  border-radius: 4px; padding: 18px; font-size: 14px; font-weight: 300; color: var(--dim);
}
.comment-list .comment-author { font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 10px; }
.comment-list .comment-author img { border-radius: 50%; }
.comment-list .comment-metadata { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.comment-list .children { list-style: none; margin: 14px 0 0; padding-left: 24px; display: grid; gap: 14px; }
.comment-form { display: grid; gap: 14px; margin-top: 24px; }
.comment-form label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--g-label); margin-bottom: 6px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 2px; font-size: 14.5px;
  color: var(--text); background: var(--g-input-bg); border: 1px solid var(--g-input-border); outline: none;
}
.comment-form .submit {
  display: inline-flex; padding: 12px 26px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--text);
  background: var(--text); color: #fff; cursor: pointer; border-radius: 2px; transition: all .2s ease;
}
.comment-form .submit:hover { background: var(--accent3); border-color: var(--accent3); }
