/* ============================================================
   INDUS Secure — Main stylesheet
   Steel blue + amber + cool white | Editorial federal aesthetic
   ============================================================ */

:root {
  --bg: #F4F6FA;
  --bg-soft: #E8ECF2;
  --bg-card: #FFFFFF;
  --steel: #14171F;
  --steel-deep: #0F1218;
  --steel-darker: #0A0E14;
  --steel-light: #D8DCE3;
  --steel-lightest: #F0F2F5;
  --amber: #00B8D9;
  --amber-deep: #008CA8;
  --amber-light: #CCEFF5;
  --ink: #14171F;
  --text: #2D3748;
  --muted: #5A6478;
  --line: rgba(20, 23, 31, 0.14);
  --line-strong: rgba(20, 23, 31, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Newsreader', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-deep); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; padding: 8px 16px; background: var(--ink); color: #fff; z-index: 1000; }

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--steel-darker);
  color: var(--bg);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-meta { opacity: 0.75; }
.topbar-status::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: #6FCF8F; border-radius: 50%; margin-right: 8px; vertical-align: middle;
}

/* ===== Nav ===== */
.site-header nav {
  background: var(--steel);
  color: var(--bg);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--bg);
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 30px; height: 30px;
  border: 2px solid var(--amber);
  position: relative;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.logo-mark::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; background: var(--amber);
}
.logo-text { letter-spacing: 0.04em; }
.logo-text .secure { font-weight: 400; opacity: 0.85; }
.logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.logo-text .us-anchor {
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--bg);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.nav-links a:hover, .nav-links .current-menu-item a, .nav-links a.current { opacity: 1; }
.nav-links a.nav-cta, .nav-links li.nav-cta a, .nav-links li:last-child a {
  background: var(--amber);
  padding: 10px 22px;
  transition: background 0.2s;
  color: #FFFFFF !important;
  opacity: 1 !important;
}
.nav-links a.nav-cta:hover, .nav-links li.nav-cta a:hover, .nav-links li:last-child a:hover { background: var(--amber-deep); }

/* ===== Buttons ===== */
.btn-primary {
  background: var(--steel);
  color: #FFFFFF;
  padding: 16px 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--steel-deep); color: #FFFFFF; }
.btn-primary.amber { background: var(--amber); }
.btn-primary.amber:hover { background: var(--amber-deep); }
.btn-secondary {
  color: var(--ink);
  padding: 16px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { color: var(--amber-deep); border-color: var(--amber-deep); }

/* ===== Hero ===== */
.hero {
  background: var(--bg);
  color: var(--ink);
  padding: 100px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 0; right: -200px; width: 600px; height: 100%;
  background-image: repeating-linear-gradient(
    45deg, transparent 0, transparent 40px,
    rgba(42, 74, 107, 0.04) 40px, rgba(42, 74, 107, 0.04) 41px
  );
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
  font-weight: 600;
}
.hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--amber); }
.hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 60;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-seal {
  border: 1px solid var(--line-strong);
  padding: 40px;
  background: var(--bg-card);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 18px 36px -16px rgba(42, 74, 107, 0.12);
}
.seal-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.seal-stat { font-family: 'Newsreader', serif; font-size: 64px; line-height: 1; color: var(--amber-deep); margin-bottom: 8px; font-variation-settings: "opsz" 72; }
.seal-text { font-size: 16px; color: var(--text); margin-bottom: 32px; line-height: 1.55; }
.seal-divider { height: 1px; background: var(--line); margin: 24px 0; }
.seal-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; }
.seal-row-label { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; color: var(--muted); letter-spacing: 0.02em; font-weight: 500; }
.seal-row-value { font-family: 'Newsreader', serif; font-size: 17px; font-weight: 500; color: var(--ink); }

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--bg-soft);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .container { display: flex; align-items: center; gap: 60px; }
.trust-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  max-width: 180px;
  line-height: 1.4;
  font-weight: 600;
}
.trust-badges {
  display: flex; gap: 48px; flex-wrap: wrap;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.04em;
}

/* ===== Section base ===== */
section { padding: 120px 0; }
.section-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
  font-weight: 600;
}
.section-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--amber); }
.section-title {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 760px;
  font-variation-settings: "opsz" 56;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--amber-deep); }
.section-intro { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 640px; margin-bottom: 72px; }

/* ===== Services grid (homepage) ===== */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--bg-card);
}
.service {
  padding: 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service:hover { background: var(--steel-lightest); color: inherit; }
.service-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; letter-spacing: 0.1em; color: var(--amber-deep); margin-bottom: 32px; font-weight: 600; }
.service-pending {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-deep);
  background: var(--amber-light);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.service h3 {
  font-family: 'Newsreader', serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
}
.service p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.service-arrow { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; color: var(--amber-deep); letter-spacing: 0.02em; text-transform: uppercase; font-weight: 600; }

/* ===== Process section ===== */
.process { background: var(--steel-deep); color: #FFFFFF; position: relative; overflow: hidden; }
.process .section-eyebrow { color: var(--amber); }
.process .section-eyebrow::before { background: var(--amber); }
.process .section-title { color: #FFFFFF; }
.process .section-title em { color: var(--amber); }
.process .section-intro { color: rgba(255, 255, 255, 0.75); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: 48px 40px 48px 0; border-top: 1px solid rgba(255, 255, 255, 0.18); position: relative; }
.process-step:not(:last-child) { padding-right: 60px; }
.step-num { font-family: 'Newsreader', serif; font-size: 88px; line-height: 1; color: var(--amber); margin-bottom: 24px; font-variation-settings: "opsz" 72; }
.step-label { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; font-weight: 600; }
.process-step h4 { font-family: 'Newsreader', serif; font-size: 26px; font-weight: 500; margin-bottom: 16px; line-height: 1.2; color: #FFFFFF; }
.process-step p { font-size: 16px; line-height: 1.65; color: rgba(255, 255, 255, 0.8); }

/* ===== Insight feature ===== */
.insight { background: var(--bg); }
.insight-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.insight-meta { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: 24px; font-weight: 600; }
.insight h3 {
  font-family: 'Newsreader', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
}
.insight p { font-size: 18px; line-height: 1.65; color: var(--muted); margin-bottom: 32px; }
.insight-link { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 4px; letter-spacing: 0.02em; font-weight: 500; transition: color 0.2s, border-color 0.2s; }
.insight-link:hover { color: var(--amber-deep); border-color: var(--amber-deep); }
.insight-visual { background: var(--steel); aspect-ratio: 4/3; position: relative; overflow: hidden; padding: 40px; color: var(--bg); display: flex; flex-direction: column; justify-content: space-between; }
.insight-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 32px 32px; }
.insight-visual-num { font-family: 'Newsreader', serif; font-size: 120px; line-height: 1; color: var(--amber); position: relative; font-variation-settings: "opsz" 72; }
.insight-visual-text { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; letter-spacing: 0.06em; line-height: 1.5; position: relative; max-width: 280px; color: rgba(255, 255, 255, 0.85); }

/* ===== CTA ===== */
.cta {
  background: var(--steel-darker);
  color: #FFFFFF;
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after { content: ""; position: absolute; top: 50%; width: 1px; height: 200px; background: var(--amber); transform: translateY(-50%); }
.cta::before { left: 60px; }
.cta::after { right: 60px; }
.cta-eyebrow { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 32px; font-weight: 600; }
.cta h2 { font-family: 'Newsreader', serif; font-size: clamp(40px, 5vw, 64px); line-height: 1.05; font-weight: 400; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; letter-spacing: -0.02em; font-variation-settings: "opsz" 64; color: #FFFFFF; }
.cta h2 em { font-style: italic; color: var(--amber); }
.cta p { font-size: 19px; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 48px; line-height: 1.6; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--steel-darker);
  color: var(--bg);
  padding: 64px 0 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline { font-size: 13px; line-height: 1.65; color: rgba(255, 255, 255, 0.7); max-width: 320px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: var(--bg); text-decoration: none; font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--amber); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: 0.7; letter-spacing: 0.02em; }

/* ===== Sub-page hero (used on all interior pages) ===== */
.page-hero {
  background: var(--bg);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: 0; right: -200px; width: 600px; height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(42, 74, 107, 0.04) 40px, rgba(42, 74, 107, 0.04) 41px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; font-weight: 600; }
.page-hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--amber); }
.page-hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 60;
  color: var(--ink);
  max-width: 880px;
}
.page-hero h1 em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
.page-hero-deck { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 660px; }

/* ===== Service detail body ===== */
.service-body { padding: 100px 0; background: var(--bg); }
.service-body-grid { display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.service-body-prose { max-width: 700px; }
.service-body-prose h2 {
  font-family: 'Newsreader', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  margin: 56px 0 24px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
}
.service-body-prose h2:first-child { margin-top: 0; }
.service-body-prose h3 {
  font-family: 'Newsreader', serif;
  font-size: 24px;
  font-weight: 500;
  margin: 32px 0 16px;
  color: var(--ink);
}
.service-body-prose p { font-size: 17px; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.service-body-prose ul, .service-body-prose ol { margin: 0 0 24px 24px; }
.service-body-prose li { font-size: 17px; line-height: 1.75; color: var(--text); margin-bottom: 8px; }
.service-body-prose strong { color: var(--ink); font-weight: 600; }
.service-body-prose blockquote {
  border-left: 3px solid var(--amber);
  padding: 8px 24px;
  margin: 32px 0;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--steel-deep);
  line-height: 1.55;
}

.service-sidebar {
  position: sticky; top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  padding: 32px;
}
.service-sidebar h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.service-sidebar-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.service-sidebar-row:last-of-type { border-bottom: none; }
.service-sidebar-row span:first-child { font-family: 'Bricolage Grotesque', sans-serif; color: var(--muted); }
.service-sidebar-row span:last-child { font-family: 'Newsreader', serif; font-weight: 500; color: var(--ink); }
.service-sidebar .btn-primary { width: 100%; justify-content: center; margin-top: 24px; padding: 14px; font-size: 14px; }

/* ===== Editorial content (about, methodology, articles) ===== */
.editorial { padding: 100px 0; background: var(--bg); }
.editorial-grid { display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start; }
.editorial-rail {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  position: sticky; top: 32px;
  border-top: 1px solid var(--ink);
  padding-top: 16px;
}
.editorial-prose { max-width: 760px; font-family: 'Newsreader', serif; }
.editorial-prose .lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 40px;
  font-variation-settings: "opsz" 24;
}
.editorial-prose .lede::first-letter {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 80px;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--amber-deep);
  font-variation-settings: "opsz" 144;
}
.editorial-prose h2 {
  font-family: 'Newsreader', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  margin: 56px 0 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.editorial-prose h3 { font-family: 'Newsreader', serif; font-size: 24px; font-weight: 500; margin: 32px 0 14px; color: var(--ink); }
.editorial-prose p { font-size: 19px; line-height: 1.75; color: var(--text); margin-bottom: 24px; }
.editorial-prose ul, .editorial-prose ol { margin: 0 0 28px 24px; }
.editorial-prose li { font-size: 19px; line-height: 1.7; color: var(--text); margin-bottom: 10px; }
.editorial-prose strong { color: var(--ink); font-weight: 600; }
.editorial-prose blockquote {
  border-left: 3px solid var(--amber);
  padding: 8px 28px;
  margin: 40px 0;
  font-style: italic;
  font-size: 22px;
  color: var(--steel-deep);
  line-height: 1.55;
  font-variation-settings: "opsz" 24;
}
.editorial-prose hr { border: none; border-top: 1px solid var(--line); margin: 56px 0; }

/* ===== Insights / blog archive ===== */
.archive-list { padding: 100px 0; background: var(--bg); }
.archive-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--ink); }
.archive-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 48px;
  align-items: start;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.archive-item:hover { background: var(--bg-soft); }
.archive-meta { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-deep); font-weight: 600; padding-top: 4px; }
.archive-content h3 { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 12px; font-variation-settings: "opsz" 36; }
.archive-content p { font-size: 16px; color: var(--muted); line-height: 1.6; }
.archive-arrow { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; color: var(--amber-deep); text-transform: uppercase; letter-spacing: 0.06em; text-align: right; padding-top: 4px; font-weight: 600; }

/* ===== Single post ===== */
.single-post-meta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.post-meta { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; color: var(--muted); margin-bottom: 24px; letter-spacing: 0.04em; }

/* ===== Contact form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 100px 0; }
.contact-form { background: var(--bg-card); border: 1px solid var(--line-strong); padding: 40px; }
.contact-form h3 { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.contact-form-meta { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Newsreader', serif;
  font-size: 16px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--amber); }
.form-row textarea { min-height: 120px; resize: vertical; font-family: 'Newsreader', serif; }
.contact-form button { width: 100%; }
.contact-info h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: 12px; font-weight: 600; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-info p { font-size: 17px; line-height: 1.6; color: var(--text); margin-bottom: 32px; }
.contact-info-block:first-child h4 { padding-top: 0; border-top: none; }

/* ===== 404 ===== */
.error-404 { padding: 160px 0; text-align: center; }
.error-404 h1 { font-family: 'Newsreader', serif; font-size: 120px; line-height: 1; color: var(--amber-deep); margin-bottom: 24px; }
.error-404 p { font-size: 19px; color: var(--muted); margin-bottom: 32px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-grid, .insight-grid, .editorial-grid, .service-body-grid, .contact-grid { grid-template-columns: 1fr !important; gap: 48px; }
  .service-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links li:last-child { display: list-item; }
  .nav-links { display: flex; gap: 0; }
  .nav-links li:not(:last-child) { display: none; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta::before, .cta::after { display: none; }
  section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .service { padding: 32px; }
  .archive-item { grid-template-columns: 1fr; gap: 16px; }
  .archive-arrow { text-align: left; }
  .footer-grid { gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .editorial-rail { position: static; padding-top: 0; border-top: none; margin-bottom: 24px; }
  .service-sidebar { position: static; }
  .editorial-prose .lede::first-letter { font-size: 64px; }
}
