/* =========================================================================
   ERISA Benefits Tech — shared stylesheet
   Brand: navy #000066 + brass/gold #B7791F
   Type:  Source Serif 4 (display) · Inter (body) · IBM Plex Mono (labels)
   ========================================================================= */

:root {
  /* Color */
  --navy:        #000066;
  --navy-deep:   #00004a;
  --ink:         #0e1230;   /* body text — very dark navy, not pure black */
  --steel:       #575f73;   /* secondary text */
  --gold:        #b7791f;
  --gold-bright: #cc8a26;
  --ice:         #eef2f9;   /* pale section tint */
  --paper:       #f6f8fc;   /* page background */
  --white:       #ffffff;
  --line:        #e0e5f0;   /* hairlines on light */
  --line-navy:   rgba(255,255,255,.14);
  --muted-navy:  #c6cce6;   /* text on navy */

  /* Type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Rhythm */
  --wrap: 1120px;
  --wrap-narrow: 760px;
  --gap: clamp(1.25rem, 3vw, 2.25rem);
  --section-y: clamp(3.75rem, 8vw, 6.5rem);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration-color: rgba(183,121,31,.5); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.12; font-weight: 600; margin: 0; letter-spacing: -.01em; }

/* ---- Utility ---- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); }
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: block;
}
.eyebrow--onnavy { color: var(--gold-bright); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--steel); line-height: 1.6; }

/* Skip link for accessibility */
.skip { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: .5rem; top: .5rem; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Wordmark ---- */
.wordmark { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; color: var(--navy); text-decoration: none; display: inline-flex; align-items: baseline; gap: .34em; white-space: nowrap; }
.wordmark:hover { color: var(--navy); }
.wordmark .tech { font-family: var(--sans); font-weight: 300; color: var(--gold); letter-spacing: .01em; }
.wordmark--light { color: #fff; }
.wordmark--light:hover { color: #fff; }
/* Official SVG logo (replaces the styled text wordmark) */
.wordmark { align-items: center; }
.logo-img { height: 42px; width: auto; display: block; }
.site-footer .logo-img { height: 48px; }
@media (max-width: 760px) { .logo-img { height: 34px; } .site-footer .logo-img { height: 42px; } }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,248,252,.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .93rem; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: .35rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold); transition: right .28s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--navy); }
.nav-cta {
  font-family: var(--sans); font-size: .88rem; font-weight: 600;
  background: var(--navy); color: #fff !important; text-decoration: none;
  padding: .58rem 1.05rem; border-radius: 6px; transition: background .2s ease;
}
.nav-cta:hover { background: var(--gold); }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex; background: none; border: 1px solid var(--line);
    border-radius: 6px; padding: .5rem .7rem; font: inherit; color: var(--navy);
    cursor: pointer; align-items: center; gap: .4rem;
  }
  .nav-links {
    position: absolute; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--white); border-bottom: 1px solid var(--line);
    padding: .5rem 0; box-shadow: 0 18px 40px -24px rgba(14,18,48,.5);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links[data-open="true"] { max-height: 420px; }
  .nav-links li { padding: 0 clamp(1.25rem,5vw,2.5rem); }
  .nav-links a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-cta { display: inline-block; margin: .4rem 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .96rem;
  padding: .8rem 1.35rem; border-radius: 7px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: var(--gold-bright); color: #fff; transform: translateY(-1px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--gold); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--onnavy { background: transparent; color: #fff; border-color: var(--line-navy); }
.btn--onnavy:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn .arw { transition: transform .2s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* ---- Hero ---- */
.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero::after { /* subtle brass hairline horizon, not a gradient blob */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,121,31,.6), transparent);
}
.hero-inner { padding-block: clamp(3.5rem, 8vw, 6rem); }
.hero h1 { color: #fff; font-size: clamp(2.35rem, 5vw, 3.85rem); max-width: 15ch; }
.hero h1 .accent { color: var(--gold-bright); }
.hero p.sub { color: var(--muted-navy); font-size: clamp(1.08rem, 1.7vw, 1.28rem); max-width: 54ch; margin: 1.4rem 0 2rem; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-cta .plain { color: #fff; font-weight: 500; font-size: .96rem; text-decoration: none; border-bottom: 1px solid var(--line-navy); padding-bottom: 2px; }
.hero-cta .plain:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* Signature: the "question panel" */
.qpanel {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line-navy);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  max-width: 620px;
}
.qpanel .qlabel { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-navy); }
.qpanel .qtext { font-family: var(--mono); font-size: clamp(.92rem, 1.4vw, 1.02rem); color: #fff; line-height: 1.55; margin: .55rem 0 1rem; }
.qpanel .qmeta { display: flex; flex-direction: column; gap: .5rem; font-size: .88rem; }
.qpanel .qmeta .row { display: flex; align-items: flex-start; gap: .6rem; color: var(--muted-navy); }
.qpanel .qmeta .tick { color: var(--gold-bright); font-family: var(--mono); flex: none; }
.qpanel .qmeta .row.route { color: #fff; }

/* ---- Section headings ---- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.sec-head p { color: var(--steel); font-size: 1.1rem; margin-top: 1rem; }

/* ---- Thesis / two-col ---- */
.thesis { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 820px) { .thesis { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.thesis .gap-note { border-left: 3px solid var(--gold); padding-left: 1.4rem; }
.thesis h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.thesis p { color: var(--steel); }

/* ---- Phases (a real sequence → numbered) ---- */
.phases { border-top: 1px solid var(--line); }
.phase {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3vw, 2.2rem) 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.phase .num { font-family: var(--mono); font-size: .82rem; font-weight: 500; color: var(--gold); letter-spacing: .12em; padding-top: .35rem; }
.phase h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.phase h3 .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-left: .8rem; vertical-align: middle; }
.phase p { color: var(--steel); margin: 0; max-width: 68ch; }
@media (max-width: 560px) {
  .phase { grid-template-columns: 1fr; gap: .4rem; }
  .phase .num { padding-top: 0; }
}

/* ---- Domain chips ---- */
.domains { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.domain {
  font-size: .88rem; font-weight: 500; color: var(--navy);
  background: var(--white); border: 1px solid var(--line);
  padding: .5rem .9rem; border-radius: 999px;
}

/* ---- Why-us list ---- */
.why { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 720px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why .card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.6rem 1.5rem; }
.why .card .k { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.why .card h3 { font-size: 1.18rem; margin: .7rem 0 .5rem; }
.why .card p { color: var(--steel); font-size: .98rem; margin: 0; }

/* ---- Bands ---- */
.band-ice { background: var(--ice); }
.band-navy { background: var(--navy); color: #fff; }
.band-navy h2 { color: #fff; }
.band-navy .lede { color: var(--muted-navy); }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: var(--muted-navy); max-width: 52ch; margin: 1rem auto 2rem; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: var(--muted-navy); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: clamp(2.75rem, 6vw, 4rem); }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .wordmark { margin-bottom: 1rem; }
.footer-col h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; font-weight: 500; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: var(--muted-navy); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact { font-size: .95rem; line-height: 1.9; }
.footer-contact a { color: var(--muted-navy); }
.footer-bottom { border-top: 1px solid var(--line-navy); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .82rem; }
.disclaimer { max-width: 62ch; color: var(--muted-navy); font-size: .82rem; line-height: 1.6; }

/* ---- Article / blog ---- */
.post-hero { border-bottom: 1px solid var(--line); }
.post-meta { font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); display: flex; flex-wrap: wrap; gap: .3rem .9rem; align-items: center; }
.post-meta .tag { color: var(--gold); }
.post-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 .8rem; max-width: 22ch; }
.post-hero .standfirst { font-size: 1.2rem; color: var(--steel); max-width: 60ch; }

.article { font-size: 1.09rem; line-height: 1.75; color: var(--ink); }
.article > * + * { margin-top: 1.35rem; }
.article h2 { font-size: 1.6rem; margin-top: 2.6rem; }
.article h3 { font-size: 1.28rem; margin-top: 2rem; }
.article p { color: #23283f; }
.article a { color: var(--navy); }
.article ul, .article ol { padding-left: 1.4rem; }
.article li { margin-top: .5rem; }
.article ol { counter-reset: item; list-style: none; padding-left: 0; }
.article ol > li { counter-increment: item; padding-left: 2.4rem; position: relative; }
.article ol > li::before {
  content: counter(item); position: absolute; left: 0; top: .1rem;
  font-family: var(--mono); font-size: .82rem; font-weight: 600; color: var(--gold);
  background: var(--ice); width: 1.7rem; height: 1.7rem; border-radius: 6px;
  display: grid; place-items: center;
}
.article blockquote {
  border-left: 3px solid var(--gold); margin: 2rem 0; padding: .3rem 0 .3rem 1.4rem;
  font-family: var(--serif); font-size: 1.25rem; color: var(--navy); font-style: italic;
}
.article code { font-family: var(--mono); font-size: .9em; background: var(--ice); padding: .12em .4em; border-radius: 4px; }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 2.6rem 0; }
.article .callout {
  background: var(--ice); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 8px; padding: 1.2rem 1.4rem; font-size: 1rem;
}
.article .callout strong { color: var(--navy); }

.back-link { font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); text-decoration: none; display: inline-flex; gap: .5rem; align-items: center; }
.back-link:hover { color: var(--gold); }
.post-foot { border-top: 1px solid var(--line); margin-top: 3.5rem; padding-top: 2rem; }

/* ---- Blog index list ---- */
.blog-toolbar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--white); border: 1px solid var(--line); color: var(--steel);
  padding: .45rem .85rem; border-radius: 999px; cursor: pointer; transition: all .18s ease;
}
.filter:hover { border-color: var(--navy); color: var(--navy); }
.filter[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.post-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.post-item { border-bottom: 1px solid var(--line); }
.post-item a { display: grid; grid-template-columns: 1fr; gap: .4rem; padding: 1.8rem 0; text-decoration: none; color: inherit; transition: background .18s ease; }
@media (min-width: 720px) { .post-item a { grid-template-columns: 180px 1fr; gap: 2rem; align-items: baseline; } }
.post-item:hover .pi-title { color: var(--gold); }
.pi-date { font-family: var(--mono); font-size: .8rem; letter-spacing: .05em; color: var(--steel); text-transform: uppercase; }
.pi-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--navy); line-height: 1.2; transition: color .18s ease; }
.pi-sum { color: var(--steel); font-size: 1rem; margin-top: .5rem; }
.pi-tags { margin-top: .6rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.pi-tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.blog-empty { padding: 3rem 0; color: var(--steel); font-family: var(--mono); font-size: .9rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.6rem, 3vw, 2.2rem); }
.contact-card dl { margin: 0; }
.contact-card dt { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 1.3rem; }
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd { margin: .3rem 0 0; font-size: 1.05rem; color: var(--ink); }
.contact-card dd a { color: var(--navy); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Affiliate tagline (hero) */
.hero .affiliate-line { font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-navy); margin-top: 1.2rem; }
.hero .affiliate-line strong { color: var(--gold-bright); font-weight: 500; }

/* ============================================================
   SUITE / TRAINING / CONTACT / LOGIN COMPONENTS
   Added in the 2026 rebuild. Tokens only — no new colors or faces.
   ============================================================ */

/* Two-column framing with affirm/deny lists */
.split { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; } }
.split h3 { font-size: 1.22rem; margin-bottom: .9rem; }
.plainlist { list-style: none; margin: 0; padding: 0; }
.plainlist li { position: relative; padding-left: 1.5rem; margin-bottom: .7rem; color: var(--steel); }
.plainlist li::before { position: absolute; left: 0; top: 0; font-family: var(--mono); font-size: .9rem; font-weight: 500; }
.plainlist--yes li::before { content: "+"; color: var(--gold); }
.plainlist--no  li::before { content: "\2013"; color: var(--steel); }
.plainlist strong { color: var(--ink); font-weight: 600; }

/* Card grids: coverage clusters (4-up) and curriculum topics (3-up) */
.clusters, .topics { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 700px) { .clusters, .topics { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .clusters { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1040px) { .topics { grid-template-columns: repeat(3, 1fr); } }
.cluster, .topic { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem 1.3rem; }
.topic { padding: 1.5rem 1.4rem; }
.cluster .k, .topic .k { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.cluster h3 { font-size: 1.06rem; margin: .6rem 0 .8rem; line-height: 1.25; }
.topic h3 { font-size: 1.08rem; margin: .6rem 0 .7rem; line-height: 1.3; }
.cluster ul { list-style: none; margin: 0; padding: 0; }
.cluster li { font-size: .9rem; color: var(--steel); padding: .3rem 0; border-top: 1px solid var(--line); }
.cluster li:first-child { border-top: 0; }
.topic p { color: var(--steel); font-size: .94rem; margin: 0; }

/* The product's own notice, shown as a specimen */
.notice { background: var(--navy); color: #fff; border-radius: 12px; border-left: 3px solid var(--gold);
  padding: 1.3rem 1.5rem; margin-bottom: 1rem; font-family: var(--mono); font-size: .8rem; line-height: 1.75; }
.notice .warn { color: var(--gold-bright); font-weight: 500; }
.notice .stamp { color: var(--muted-navy); }
.notice-cap { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel); margin: 0 0 .7rem; }

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.7rem 1.5rem;
  display: flex; flex-direction: column; }
.tier .k { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.tier h3 { font-size: 1.24rem; margin: .6rem 0 1rem; }
.tier .price { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--navy); line-height: 1; }
.tier .renew { font-family: var(--mono); font-size: .76rem; color: var(--steel); margin: .6rem 0 1.1rem; }
.tier p { color: var(--steel); font-size: .95rem; margin: 0; }

/* Requirement / fine-print strip */
.reqs { border-top: 1px solid var(--line); margin-top: 1.8rem; padding-top: 1.4rem; }
.reqs h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.reqs p { color: var(--steel); font-size: .96rem; margin: 0; max-width: 70ch; }

/* Session lists, rendered from assets/data/seminars.json */
.sessions { list-style: none; margin: 0; padding: 0; }
.session { border-top: 1px solid var(--line); padding: 1.4rem 0; display: grid; grid-template-columns: 1fr; gap: .5rem; }
@media (min-width: 760px) { .session { grid-template-columns: 12rem 1fr auto; gap: 1.5rem; align-items: start; } }
.session:first-child { border-top: 0; }
.s-when { font-family: var(--mono); font-size: .8rem; letter-spacing: .04em; color: var(--gold);
  text-transform: uppercase; padding-top: .2rem; }
.s-title { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.s-sum { color: var(--steel); font-size: .94rem; margin: .4rem 0 0; }
.s-meta { font-family: var(--mono); font-size: .74rem; color: var(--steel); margin-top: .5rem; }
.s-action { white-space: nowrap; padding-top: .2rem; }

/* Empty states — an invitation, not a dead end */
.empty { border: 1px dashed var(--line); border-radius: 12px; padding: 1.8rem 1.6rem; background: var(--white); }
.empty p { margin: 0; color: var(--steel); max-width: 62ch; }
.empty p + p { margin-top: .8rem; }

/* Notify / highlighted callout panel */
.notify { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 1.7rem 1.6rem; }
.notify h3 { font-size: 1.16rem; margin: 0 0 .6rem; }
.notify p { color: var(--steel); margin: 0 0 1.2rem; max-width: 64ch; }

/* Principles list (Approach, folded into Home) */
.principles { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 900px) { .principles { grid-template-columns: 1fr 1fr; } }
.principle { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; align-items: start; }
.principle .num { font-family: var(--mono); font-size: .95rem; font-weight: 500; color: var(--gold);
  border-top: 2px solid var(--gold); padding-top: .5rem; }
.principle h3 { font-size: 1.1rem; margin: 0 0 .5rem; line-height: 1.3; }
.principle p { color: var(--steel); font-size: .95rem; margin: 0; }

/* Contact + form fields */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.1fr 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem .85rem; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field textarea { min-height: 8rem; resize: vertical; }
.form-note { font-size: .86rem; color: var(--steel); margin-top: 1rem; }

/* Centered narrow utility panel (login, 404) */
.panel-center { max-width: 30rem; margin: 0 auto; }
