/* ============================================================
   ATLAS & CROWN CO. — Design System
   "The Research Press" aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,0..100&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color: Atlas & Crown brand palette */
  --paper:        #FEFEFD;
  --paper-deep:   #F0F2F0;
  --ink:          #000000;
  --ink-soft:     #1C201D;
  --navy:         #0B371C;
  --navy-deep:    #072813;
  --brass:        #B99328;
  --brass-light:  #D4AA3A;
  --rust:         #7A3010;
  --rule:         #CDD2CE;
  --rule-soft:    #DDE2DE;
  --muted:        #969F99;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Instrument Sans', -apple-system, system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 192px;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "cv01";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Paper grain — gives the warm editorial feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 380;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}

h1 {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 360;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 380;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 420;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h4 {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}

.lede {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  font-weight: 360;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 32ch;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s ease, color 0.2s ease;
}

a:hover { border-color: var(--brass); color: var(--brass); }

/* Eyebrow / Section marker */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--brass);
}

.eyebrow.solo::before { display: none; }

.eyebrow-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.italic-serif { font-family: var(--display); font-style: italic; font-weight: 380; }
.mono-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--muted); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

.section-pad      { padding: var(--s-10) 0; }
.section-pad-sm   { padding: var(--s-9) 0; }
.section-pad-lg   { padding: var(--s-11) 0 var(--s-10); }

.divider {
  height: 1px;
  background: var(--rule);
  margin: 0;
  border: none;
}

.divider-brass {
  height: 1px;
  background: var(--brass);
  width: 80px;
  border: none;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 420;
  letter-spacing: -0.015em;
  border: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.nav-logo .amp {
  font-style: italic;
  color: var(--brass);
  font-weight: 380;
}

.nav-logo .co { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; align-self: center; margin-left: 6px; }

.nav-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.005em;
  color: var(--ink-soft);
  border: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 18px;
  background: var(--navy);
  color: var(--paper) !important;
  border: 1px solid var(--navy);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: var(--s-6);
    gap: var(--s-4);
    border-bottom: 1px solid var(--rule);
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: var(--s-10) 0 var(--s-9);
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: end;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

.hero-meta {
  display: flex;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta span::before { content: "—"; margin-right: 8px; color: var(--brass); }

.hero h1 .accent { color: var(--brass); font-style: italic; font-weight: 360; }
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 6px;
  background: var(--brass);
  opacity: 0.25;
  z-index: -1;
}

.hero-sub {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.hero-cta-row {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-5);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.btn:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

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

.btn-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
}

.btn-brass:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  color: var(--ink);
}

.link-arrow:hover { border-color: var(--brass); color: var(--brass); }
.link-arrow .arrow { transition: transform 0.2s ease; }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Data callouts
   ============================================================ */
.data-callout {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.data-callout .number {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 360;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.data-callout .number sup {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--brass);
  font-family: var(--mono);
}

.data-callout .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-6);
}

/* ============================================================
   Product / Tool cards
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

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

.product-card {
  padding: var(--s-7) var(--s-6);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  min-height: 360px;
}

.product-card:hover { background: var(--paper-deep); }

.product-card.featured {
  background: var(--navy);
  color: var(--paper);
}

.product-card.featured:hover { background: var(--navy-deep); }

.product-card.featured h3,
.product-card.featured p,
.product-card.featured .product-meta,
.product-card.featured .link-arrow { color: var(--paper); }
.product-card.featured .eyebrow { color: var(--brass-light); }
.product-card.featured .eyebrow::before { background: var(--brass-light); }
.product-card.featured .link-arrow { border-color: var(--paper); }
.product-card.featured .link-arrow:hover { color: var(--brass-light); border-color: var(--brass-light); }
.product-card.featured .product-tier { color: var(--brass-light); }

.product-tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card h3 { font-family: var(--display); font-weight: 380; }

.product-meta {
  display: flex;
  gap: var(--s-4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}

.product-card.featured .product-meta { border-top-color: rgba(255,255,255,0.15); }

.product-meta-item { display: flex; flex-direction: column; gap: 2px; }
.product-meta-item span:first-child::after { content: " ·"; color: var(--brass); }
.product-card.featured .product-meta-item span:first-child::after { color: var(--brass-light); }
.product-meta-item .v { color: var(--ink); font-weight: 500; }
.product-card.featured .product-meta-item .v { color: var(--paper); }

/* ============================================================
   Editorial blocks
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-9);
  align-items: start;
}

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: var(--s-5); }
}

.editorial-marker {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.editorial-marker .num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 360;
  line-height: 1;
  color: var(--brass);
  font-variation-settings: "opsz" 144;
}

.editorial-body p { margin-bottom: var(--s-4); }
.editorial-body p:last-child { margin-bottom: 0; }

.editorial-body .pull {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  font-weight: 360;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: var(--s-5) 0;
  margin: var(--s-5) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  max-width: none;
}

/* ============================================================
   Methodology / proof bar
   ============================================================ */
.proof-strip {
  background: var(--navy);
  color: var(--paper);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(164,124,40,0.18), transparent 50%);
  pointer-events: none;
}

.proof-strip .container { position: relative; z-index: 2; }

.proof-strip .eyebrow { color: var(--brass-light); }
.proof-strip .eyebrow::before { background: var(--brass-light); }
.proof-strip h2 { color: var(--paper); }
.proof-strip p { color: var(--rule-soft); }

.proof-strip .data-callout { border-top-color: var(--brass-light); }
.proof-strip .data-callout .number { color: var(--paper); }
.proof-strip .data-callout .label { color: var(--rule-soft); }

/* ============================================================
   Pillars / Approach
   ============================================================ */
.pillar-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.pillar {
  display: grid;
  grid-template-columns: 80px 220px 1fr auto;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background 0.2s ease;
}

.pillar:hover { background: var(--paper-deep); padding-left: var(--s-3); padding-right: var(--s-3); margin-left: calc(-1 * var(--s-3)); margin-right: calc(-1 * var(--s-3)); }

@media (max-width: 800px) {
  .pillar { grid-template-columns: 1fr; gap: var(--s-3); }
  .pillar:hover { margin: 0; padding: var(--s-6) 0; }
}

.pillar-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--brass);
  padding-top: 8px;
}

.pillar-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 380;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}

.pillar-name em { font-style: italic; color: var(--brass); font-weight: 360; }

.pillar-desc { color: var(--ink-soft); font-size: 16px; line-height: 1.55; max-width: 50ch; }

.pillar-link { align-self: center; }

/* ============================================================
   Tier ladder (services)
   ============================================================ */
.tier-ladder {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.tier {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--s-5);
  padding: var(--s-6);
  background: var(--paper);
  border: 1px solid var(--rule);
  align-items: start;
  transition: all 0.2s ease;
}

.tier:hover { border-color: var(--ink); transform: translateX(4px); }

@media (max-width: 800px) {
  .tier { grid-template-columns: 1fr; gap: var(--s-3); }
}

.tier-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 4px;
}

.tier-name { font-family: var(--display); font-size: 26px; font-weight: 380; letter-spacing: -0.015em; line-height: 1.1; color: var(--ink); }
.tier-desc { color: var(--ink-soft); font-size: 15px; margin-top: var(--s-2); max-width: 60ch; }
.tier-price { font-family: var(--mono); font-size: 13px; color: var(--ink); padding-top: 6px; white-space: nowrap; }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: var(--rule-soft);
  padding: var(--s-9) 0 var(--s-6);
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--brass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}

footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--s-4);
  font-weight: 500;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
footer a { color: var(--paper); border: none; font-size: 15px; }
footer a:hover { color: var(--brass-light); }

.footer-brand {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 380;
  color: var(--paper);
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}

.footer-brand .amp { font-style: italic; color: var(--brass-light); font-weight: 360; }

.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  color: var(--rule-soft);
  font-size: 16px;
  max-width: 32ch;
  font-weight: 360;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: var(--s-4);
}

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s-2); }
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }
.reveal-5 { animation-delay: 0.45s; }
.reveal-6 { animation-delay: 0.55s; }

/* ============================================================
   Methodology table (for SSCI page)
   ============================================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-6) 0;
}

.spec-table th, .spec-table td {
  text-align: left;
  padding: var(--s-4) var(--s-3);
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  vertical-align: top;
}

.spec-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
}

.spec-table td:first-child {
  font-family: var(--display);
  font-weight: 420;
  font-size: 17px;
  width: 30%;
  color: var(--ink);
}

/* ============================================================
   Bio / About specific
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s-9);
  align-items: start;
}

@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.bio-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-6);
  position: sticky;
  top: 120px;
}

.bio-card .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s-3);
}

.bio-card h3 { font-family: var(--display); font-size: 28px; font-weight: 380; line-height: 1.1; margin-bottom: var(--s-2); }

.bio-card .creds {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: var(--s-5);
}

.bio-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: 14px;
  border-top: 1px solid var(--rule);
  padding-top: var(--s-4);
}

.bio-card ul li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-soft); }
.bio-card ul li::before { content: ""; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; flex-shrink: 0; transform: translateY(-2px); }

/* ============================================================
   Forms
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}

.form-grid .full { grid-column: 1 / -1; }

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

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

.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ink);
}

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

/* ============================================================
   Utility
   ============================================================ */
.mt-1 { margin-top: var(--s-1); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }
.mb-7 { margin-bottom: var(--s-7); }

.text-brass { color: var(--brass); }
.text-muted { color: var(--muted); }

.bg-paper-deep { background: var(--paper-deep); }
.bg-navy { background: var(--navy); color: var(--paper); }

@media (max-width: 700px) {
  .editorial-marker { position: relative; top: 0; }
  .bio-card { position: relative; top: 0; }
  .section-pad { padding: var(--s-9) 0; }
  .section-pad-lg { padding: var(--s-10) 0; }
}
