/* ===================================================================
   FOUND & FLAGGED — design system v2
   Palette: warm paper neutrals, near-black ink, single coral accent
   Type: Manrope (display) + Inter (body)
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #14151A;
  --ink-soft: #23242B;
  --ink-softer: #34363F;
  --paper: #FAF9F6;
  --paper-card: #FFFFFF;
  --paper-alt: #F1EFE9;

  --accent: #FF5B33;
  --accent-hover: #E64A24;
  --accent-soft: #FFE7DC;
  --accent-soft-ink: #7A2E14;

  --line: #E7E4DC;
  --line-soft: #EFEDE6;
  --text: #1B1C22;
  --text-muted: #6B6C76;
  --text-on-ink: #F3F2EE;
  --text-on-ink-muted: #A9AAB6;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20, 21, 26, 0.06), 0 1px 1px rgba(20, 21, 26, 0.04);
  --shadow-card: 0 1px 2px rgba(20, 21, 26, 0.04), 0 8px 24px rgba(20, 21, 26, 0.08);
  --shadow-card-hover: 0 4px 10px rgba(20, 21, 26, 0.06), 0 20px 40px rgba(20, 21, 26, 0.14);
  --shadow-pop: 0 20px 60px rgba(20, 21, 26, 0.22);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--accent-soft); color: var(--accent-soft-ink); }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- skip link ---------- */

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 200;
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 16px; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* blur lives on a pseudo-element, not .site-header itself — backdrop-filter/filter
   on the header would otherwise establish a containing block for its fixed-position
   mobile nav panel, collapsing it to the header's own height instead of the viewport */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 249, 246, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20,21,26,0.02), 0 8px 24px rgba(20,21,26,0.05);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 5px;
  z-index: 110;
}

.logo .dot { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav a:hover { color: var(--text); background: var(--paper-alt); }
.site-nav a.active { color: var(--ink); background: var(--accent-soft); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle .bars {
  position: relative;
  width: 20px;
  height: 14px;
}

.nav-toggle .bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }

.nav-open .nav-toggle .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0s;
  }

  .site-nav a {
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    padding: 10px 6px;
    border-radius: 0;
    background: none !important;
  }

  .site-nav a.active { color: var(--accent); }

  body.nav-open { overflow: hidden; }
}

/* ---------- disclosure strip ---------- */

.disclosure-strip {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  font-size: 13.5px;
  text-align: center;
  padding: 9px 24px;
}

.disclosure-strip a { color: var(--text-on-ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(243,242,238,0.35); }
.disclosure-strip a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(255, 91, 51, 0.28); }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 14px 30px rgba(255, 91, 51, 0.36); }

.btn-outline { border-color: var(--line); color: var(--text); background: var(--paper-card); }
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost-on-ink { border-color: rgba(243,242,238,0.28); color: var(--text-on-ink); background: transparent; }
.btn-ghost-on-ink:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 76px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,91,51,0.22) 0%, rgba(255,91,51,0) 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  color: var(--accent);
  margin: 0 0 18px;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,91,51,0.22);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.04;
  margin: 0 0 20px;
  max-width: 15ch;
}

.hero p.hero-lede {
  max-width: 50ch;
  color: var(--text-on-ink-muted);
  font-size: 18.5px;
  margin: 0 0 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; }

.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--text-on-ink);
}

.hero-stats .stat span {
  font-size: 13px;
  color: var(--text-on-ink-muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
}

.hero-art { width: 100%; max-width: 460px; height: auto; justify-self: end; }

@media (max-width: 780px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}

/* ---------- section headings ---------- */

.section { padding: 64px 0; }
.section-tight { padding: 36px 0; }
.section-alt { background: var(--paper-alt); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 30px);
  margin: 0;
}

.section-head .eyebrow-small {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-head .see-all {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.section-head .see-all:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- feature strip (why trust us) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-hover);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  margin: 0 0 6px;
}

.feature-card p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

@media (max-width: 780px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- article cards (related / grid) ---------- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.article-card {
  text-decoration: none;
  color: var(--text);
  display: block;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.article-card .thumb { overflow: hidden; }

.article-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.article-card:hover img { transform: scale(1.06); }

.article-card .card-body { padding: 18px 20px 22px; }

.article-card .kicker {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-hover);
  margin-bottom: 8px;
}

.article-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18.5px;
  margin: 0 0 6px;
  line-height: 1.3;
}

.article-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ---------- disclosure strip already above ---------- */

/* ---------- article/post page ---------- */

.post-header {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 52px 0 42px;
  position: relative;
  overflow: hidden;
}

.post-header::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,91,51,0.18) 0%, rgba(255,91,51,0) 70%);
}

.post-header .wrap { position: relative; z-index: 1; }

.post-header .kicker {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.post-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.12;
  margin: 0 0 14px;
  max-width: 22ch;
}

.post-meta { color: var(--text-on-ink-muted); font-size: 14px; }

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 24px;
}

.post-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 25px;
  margin: 44px 0 16px;
}

.post-body p { margin: 0 0 18px; color: var(--text); }
.post-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--text); }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--accent-hover); text-decoration-color: var(--accent-soft); text-underline-offset: 2px; }
.post-body a:hover { text-decoration-color: var(--accent-hover); }

.post-body .inline-embed { margin: 32px 0; }

/* product embed card */
.embed-tag {
  display: flex;
  gap: 18px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
  align-items: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.embed-tag:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.embed-tag img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--paper-alt);
}

.embed-tag .embed-body { flex: 1; min-width: 0; }
.embed-tag h4 { margin: 0 0 8px; font-family: var(--font-body); font-weight: 700; font-size: 15.5px; }
.embed-tag .price-row { display: flex; align-items: baseline; gap: 9px; margin-bottom: 12px; }

.price-now { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--accent-hover); }
.price-was { text-decoration: line-through; color: var(--text-muted); font-size: 14px; }

.embed-tag .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--text-on-ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.embed-tag .cta:hover { background: var(--accent); transform: translateY(-1px); }

@media (max-width: 480px) {
  .embed-tag { flex-direction: column; align-items: flex-start; }
  .embed-tag img { width: 100%; height: 160px; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  padding: 48px 0 32px;
  margin-top: 40px;
  font-size: 13.5px;
}

.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(243,242,238,0.1);
}

.site-footer .footer-brand .logo { color: var(--text-on-ink); margin-bottom: 10px; }
.site-footer .footer-note { max-width: 420px; color: var(--text-on-ink-muted); margin: 0; }

.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.site-footer nav a { color: var(--text-on-ink-muted); text-decoration: none; }
.site-footer nav a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  color: var(--text-on-ink-muted);
  opacity: 0.7;
  font-size: 12.5px;
}

/* ---------- breadcrumb ---------- */

.breadcrumb { font-size: 13px; color: var(--text-on-ink-muted); margin: 0 0 6px; }
.breadcrumb a { color: var(--text-on-ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.5; }

/* ---------- category filter row ---------- */

.filter-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 36px;
  background: var(--paper-alt);
  padding: 5px;
  border-radius: 999px;
}

.filter-pill {
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  font-family: var(--font-body);
}

.filter-pill.active {
  background: var(--paper-card);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.filter-pill:hover:not(.active) { color: var(--text); }

/* ---------- blog post list (SEO homepage) ---------- */

.post-list { display: flex; flex-direction: column; gap: 20px; }

.post-list-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  padding: 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.post-list-item:hover {
  background: var(--paper-card);
  border-color: var(--line);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.post-list-item .thumb { border-radius: var(--radius-sm); overflow: hidden; }

.post-list-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--paper-alt);
  transition: transform 0.5s var(--ease-out);
}

.post-list-item:hover img { transform: scale(1.06); }

.post-list-item .kicker {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-hover);
  margin-bottom: 8px;
}

.post-list-item h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 21px;
  margin: 0 0 8px;
  line-height: 1.3;
}

.post-list-item p.dek { color: var(--text-muted); font-size: 15px; margin: 0 0 10px; max-width: 58ch; }
.post-list-item .meta { font-size: 12.5px; color: var(--text-muted); }
.post-list-item .meta .dot { margin: 0 6px; }

.post-list-item[hidden] { display: none; }

@media (max-width: 640px) {
  .post-list-item { grid-template-columns: 1fr; }
}

/* ---------- table of contents ---------- */

.toc {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0 8px;
}

.toc p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px !important;
  color: var(--accent-hover);
}

.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 7px; font-size: 14.5px; }
.toc a { color: var(--text); text-decoration: none; border-bottom: 1px dotted var(--line); transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.toc a:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

/* ---------- post tags + FAQ ---------- */

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 0; }

.post-tags a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.post-tags a:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--paper-card);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--accent-hover); }

.faq-item p { margin: 0; padding: 0 20px 18px; color: var(--text-muted); }

/* ---------- related posts ---------- */

.related { background: var(--paper-alt); padding: 56px 0; }

/* ---------- contact form ---------- */

.contact-form {
  max-width: 560px;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field { display: flex; flex-direction: column; gap: 7px; }

.form-field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--paper-card);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field textarea { resize: vertical; min-height: 140px; }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-banner {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 20px;
}

.form-banner.success { background: #E7F5EA; color: #1E6B36; border: 1px solid #BFE4C8; }
.form-banner.error { background: var(--accent-soft); color: var(--accent-soft-ink); border: 1px solid #FFD3C0; }

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-grid { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
