/* ==========================================================================
   Kinderman, Brood & Hatchling LLP — Site Styles
   A satirical law firm. Nothing here is legal advice.
   ========================================================================== */

:root {
  --ink:        #0f1f17;
  --forest:     #1a3a2e;
  --moss:       #2d5040;
  --cream:      #f4ede2;
  --parchment:  #ebe1cf;
  --gold:       #b8935a;
  --gold-soft:  #d4b584;
  --burgundy:   #7a1f2b;
  --rule:       rgba(184, 147, 90, 0.4);

  --display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --body:    "EB Garamond", Georgia, "Times New Roman", serif;

  --max: 1240px;
  --max-text: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(184,147,90,0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(122,31,43,0.04) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga", "kern", "onum";
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0.035 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 2; }
.wrap-narrow { max-width: var(--max-text); margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-variant: small-caps;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: var(--rule);
}
.divider svg { width: 14px; height: 14px; fill: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.roman {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  font-variant: small-caps;
}

/* ==========================================================================
   Top Bar + Header
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.topbar span { color: var(--gold-soft); }

header.site {
  background: var(--forest);
  color: var(--cream);
  border-bottom: 1px solid rgba(184,147,90,0.2);
  position: relative;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--display);
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
}
.brand-text { line-height: 1.1; }
.brand-text .top {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand-text .top em {
  font-style: italic;
  color: var(--gold-soft);
}
.brand-text .bot {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 2px;
}
.brand-text .sub {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(235, 225, 207, 0.7);
  margin-top: 3px;
  font-weight: 500;
}
.brand-text .sub strong {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.34em;
}
nav.primary {
  display: flex;
  gap: 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
nav.primary a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
}
nav.primary a:hover { color: var(--gold-soft); }
nav.primary a:hover::after { width: 100%; left: 0; }
nav.primary a.active { color: var(--gold-soft); }
nav.primary a.active::after { width: 100%; left: 0; }

.consult-btn {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
  font-family: var(--body);
  text-decoration: none;
  display: inline-block;
}
.consult-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Nav menu toggle (hamburger) — shown <1100px via media query below */
.nav-menu-toggle {
  display: none;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  font-family: var(--body);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.nav-menu-toggle:hover {
  background: var(--gold);
  color: var(--ink);
}
.nav-menu-toggle:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Nav menu drop-down panel — hidden by default; shown when .is-open */
.nav-menu-panel {
  display: none;
  background: var(--forest);
  border-top: 1px solid rgba(184,147,90,0.2);
}
.nav-menu-panel.is-open {
  display: flex;
  flex-direction: column;
}
.nav-menu-panel a {
  color: var(--cream);
  padding: 0.95rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,147,90,0.12);
  transition: background 0.2s, color 0.2s;
  font-family: var(--body);
}
.nav-menu-panel a:hover {
  background: rgba(184,147,90,0.08);
  color: var(--gold-soft);
}
.nav-menu-panel a:last-child {
  border-bottom: none;
}
.nav-menu-panel a.active {
  color: var(--gold-soft);
}

/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding: 7rem 0 8rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "LLP";
  position: absolute;
  right: -3rem;
  bottom: -6rem;
  font-family: var(--display);
  font-size: 32rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(184,147,90,0.04);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: end;
  position: relative;
}
.hero .eyebrow { margin-bottom: 2rem; display: block; }
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}
.hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-soft);
  max-width: 30rem;
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  line-height: 1.45;
}
.hero-side {
  border-top: 1px solid rgba(184,147,90,0.3);
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(244,237,226,0.75);
}
.hero-side dl { display: grid; gap: 1.25rem; }
.hero-side dt {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.hero-side dd {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--cream);
}

/* ==========================================================================
   Page Hero (secondary pages)
   ========================================================================== */
.page-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.5rem; display: block; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}
.page-hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(244,237,226,0.8);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.5;
}

.bar-established {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(184,147,90,0.25);
  border-bottom: 1px solid rgba(184,147,90,0.25);
}
.bar-established span {
  display: inline-block;
  padding: 0 1.25rem;
  color: var(--gold-soft);
}
.bar-established .sep { color: var(--gold); margin: 0 0.5rem; }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 6rem 0; position: relative; z-index: 2; }

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 4rem;
}
.section-head .roman { display: block; margin-bottom: 0.75rem; }
.section-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.section-head h2 em { font-style: italic; color: var(--burgundy); font-weight: 400; }
.section-head p {
  font-size: 1.15rem;
  color: rgba(15,31,23,0.75);
  font-style: italic;
  font-family: var(--display);
}

/* ==========================================================================
   Practice Areas
   ========================================================================== */
.practice {
  background: var(--parchment);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--cream);
}
.practice-item {
  padding: 2.75rem 2.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s;
}
.practice-item:nth-child(2n) { border-right: none; }
.practice-item:nth-last-child(-n+2) { border-bottom: none; }
.practice-item:hover { background: var(--parchment); }

.practice-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  font-variant: small-caps;
  margin-bottom: 0.5rem;
}
.practice-item h3 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.practice-item p {
  color: rgba(15,31,23,0.78);
  font-size: 1rem;
  line-height: 1.65;
}
.practice-item .latin {
  font-family: var(--display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 0.88rem;
  margin-top: 0.9rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Ad Slot
   ========================================================================== */
.ad-slot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 2.5rem 0;
  position: relative;
  z-index: 2;
}
.ad-slot-inner {
  border: 1px dashed var(--rule);
  background: rgba(235, 225, 207, 0.3);
  padding: 1rem;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(15,31,23,0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Case Notes (homepage + index)
   ========================================================================== */
.casenotes { background: var(--cream); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.case {
  border-top: 2px solid var(--ink);
  padding-top: 1.75rem;
}
.case .citation {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.case h4 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.case h4 a { transition: color 0.2s; }
.case h4 a:hover { color: var(--burgundy); }
.case p {
  font-size: 0.98rem;
  color: rgba(15,31,23,0.78);
  margin-bottom: 1.1rem;
}
.case .outcome {
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case .outcome .read {
  color: var(--burgundy);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  font-family: var(--display);
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial-section {
  background: var(--moss);
  color: var(--cream);
}
.testimonial {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.testimonial .mark {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.testimonial blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.testimonial cite small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(244,237,226,0.6);
  letter-spacing: 0.15em;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--parchment); }
.faq-list { max-width: 52rem; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item .q {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.faq-item .q::before {
  content: "Q.";
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item .a {
  color: rgba(15,31,23,0.82);
  font-size: 1.05rem;
  padding-left: 2rem;
  position: relative;
}
.faq-item .a::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-style: italic;
  color: var(--burgundy);
}

/* ==========================================================================
   About / Disclosure
   ========================================================================== */
.about {
  background: var(--ink);
  color: var(--cream);
}
.about .section-head h2 { color: var(--cream); }
.about .section-head h2 em { color: var(--gold-soft); }
.about .section-head p { color: rgba(244,237,226,0.7); }

.disclosure {
  max-width: 44rem;
  margin: 0 auto;
  background: rgba(244,237,226,0.04);
  border: 1px solid rgba(184,147,90,0.3);
  padding: 3rem 3rem;
}
.disclosure .roman { display: block; text-align: center; margin-bottom: 1.25rem; }
.disclosure h3 {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
}
.disclosure p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244,237,226,0.88);
  margin-bottom: 1.25rem;
}
.disclosure p strong {
  color: var(--gold-soft);
  font-weight: 500;
}
.disclosure .seal {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.cta h2 em { font-style: italic; color: var(--gold-soft); }
.cta p {
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(244,237,226,0.85);
}
.cta-btn {
  display: inline-block;
  border: 1px solid var(--gold-soft);
  color: var(--cream);
  padding: 1rem 2.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--body);
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--gold-soft);
  color: var(--burgundy);
  border-color: var(--gold-soft);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--ink);
  color: rgba(244,237,226,0.75);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
  border-top: 1px solid rgba(184,147,90,0.25);
  position: relative;
  z-index: 2;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(184,147,90,0.15);
}
footer h5 {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
footer ul { list-style: none; }
footer li { margin-bottom: 0.65rem; }
footer a { color: rgba(244,237,226,0.8); transition: color 0.2s; }
footer a:hover { color: var(--gold-soft); }
.foot-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.foot-brand em { color: var(--gold-soft); font-style: italic; }
.foot-address {
  font-style: italic;
  line-height: 1.65;
  color: rgba(244,237,226,0.6);
}

.satire-banner {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  padding: 1rem 2rem;
  margin: 2rem auto 0;
  max-width: var(--max);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(244,237,226,0.15);
}
.satire-banner strong {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

.foot-legal {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(244,237,226,0.5);
  margin-top: 2rem;
  font-style: italic;
  line-height: 1.8;
}
.foot-legal .colophon {
  margin-top: 1rem;
  font-family: var(--display);
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(184,147,90,0.55);
}

/* ==========================================================================
   Long-form Articles (cases, journal, legal pages)
   ========================================================================== */
.article {
  padding: 5rem 0 6rem;
}
.article-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}
.article-header .kicker {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-variant: small-caps;
  font-weight: 500;
}
.article-header .kicker a { color: inherit; }
.article-header .kicker a:hover { color: var(--burgundy); }
.article-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-header h1 em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.article-header .citation-big {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.article-header .byline {
  font-family: var(--display);
  font-style: italic;
  color: rgba(15,31,23,0.6);
  font-size: 1rem;
}
.article-header .byline span {
  margin: 0 0.5rem;
  color: var(--gold);
}

.article-body {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(15,31,23,0.88);
}
.article-body p { margin-bottom: 1.5rem; }
.article-body p:first-child::first-letter {
  font-family: var(--display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  margin: 0.3rem 0.5rem 0 0;
  color: var(--burgundy);
  font-weight: 400;
}
.article-body h2 {
  font-size: 1.85rem;
  margin: 3rem 0 1.25rem;
  font-weight: 500;
}
.article-body h3 {
  font-size: 1.4rem;
  margin: 2.25rem 0 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--burgundy);
}
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(15,31,23,0.75);
  line-height: 1.5;
}
.article-body ol, .article-body ul {
  margin: 1.5rem 0 1.5rem 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; }
.article-body a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(122,31,43,0.3);
  transition: border-color 0.2s;
}
.article-body a:hover { border-bottom-color: var(--burgundy); }

.article-end {
  max-width: 42rem;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
}
.article-end::before, .article-end::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--gold);
}
.article-end span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
}

/* ==========================================================================
   Index pages (cases, journal)
   ========================================================================== */
.index-page { padding: 5rem 0; background: var(--cream); }
.index-list {
  max-width: 52rem;
  margin: 0 auto;
}
.index-entry {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.5rem;
}
.index-entry:first-child { border-top: 1px solid var(--rule); }
.index-entry .meta {
  font-family: var(--display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 0.95rem;
  line-height: 1.5;
}
.index-entry .meta .date {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 0.35rem;
  font-family: var(--body);
}
.index-entry h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.index-entry h3 a { transition: color 0.2s; }
.index-entry h3 a:hover { color: var(--burgundy); }
.index-entry .excerpt {
  color: rgba(15,31,23,0.75);
  margin-bottom: 1rem;
}
.index-entry .read-more {
  font-family: var(--display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Legal Pages (Privacy, Terms)
   ========================================================================== */
.legal {
  padding: 4rem 0 6rem;
  background: var(--cream);
}
.legal-body {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}
.legal-body .last-updated {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.legal-body h2 {
  font-size: 1.5rem;
  margin: 2.75rem 0 1rem;
  font-weight: 500;
  color: var(--ink);
}
.legal-body h2::before {
  content: counter(section) ". ";
  color: var(--gold);
  font-style: italic;
  font-family: var(--display);
  margin-right: 0.35rem;
}
.legal-body { counter-reset: section; }
.legal-body h2 { counter-increment: section; }

.legal-body h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  font-weight: 500;
  font-style: italic;
  color: var(--burgundy);
}
.legal-body p {
  margin-bottom: 1.1rem;
  color: rgba(15,31,23,0.88);
}
.legal-body ul, .legal-body ol {
  margin: 1rem 0 1.25rem 1.75rem;
  color: rgba(15,31,23,0.88);
}
.legal-body li { margin-bottom: 0.5rem; }
.legal-body a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(122,31,43,0.3);
}
.legal-body a:hover { border-bottom-color: var(--burgundy); }
.legal-body strong { font-weight: 600; color: var(--ink); }

.placeholder-note {
  background: rgba(184,147,90,0.1);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--display);
  font-style: italic;
  color: rgba(15,31,23,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Partner Cards (About / Masthead)
   ========================================================================== */
.partners {
  background: var(--parchment);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--cream);
  max-width: 62rem;
  margin: 0 auto;
}
.partner {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.partner:nth-child(2n) { border-right: none; }
.partner:nth-last-child(-n+2) { border-bottom: none; }
.partner .crest {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  font-family: var(--display);
  margin-bottom: 1.5rem;
}
.partner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.partner .role {
  font-family: var(--display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.partner p {
  color: rgba(15,31,23,0.78);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.partner .creds {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.88rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 56rem;
  margin: 0 auto;
  align-items: start;
}
.contact-card {
  background: var(--parchment);
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
}
.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}
.contact-card p {
  margin-bottom: 1rem;
  color: rgba(15,31,23,0.85);
}
.contact-card a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(122,31,43,0.3);
}

/* ==========================================================================
   Resources Page — deliberately plainer register than satire pages
   ========================================================================== */
.page-hero-plain {
  background: var(--ink);
}
.page-hero-plain .eyebrow { color: var(--gold-soft); }
.page-hero-plain h1 em { color: var(--gold-soft); }

.resources {
  padding: 4rem 0 6rem;
  background: var(--cream);
}
.resources-intro {
  max-width: 42rem;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(15,31,23,0.85);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.resources-intro p {
  margin-bottom: 1.1rem;
}

.resource-group {
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}
.resource-group h2 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--burgundy);
  font-style: italic;
  margin-bottom: 1.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}

.resource {
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid rgba(184,147,90,0.18);
}
.resource:last-child {
  border-bottom: none;
}
.resource h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: 0.005em;
}
.resource .desc {
  font-size: 1rem;
  color: rgba(15,31,23,0.82);
  line-height: 1.65;
}
.resource .desc a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(122,31,43,0.3);
  transition: border-color 0.2s;
}
.resource .desc a:hover {
  border-bottom-color: var(--burgundy);
}

.resources-footnote {
  max-width: 42rem;
  margin: 3rem auto 0;
  padding: 1.75rem;
  background: rgba(184,147,90,0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(15,31,23,0.78);
}
.resources-footnote strong {
  color: var(--ink);
}
.resources-footnote a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(122,31,43,0.3);
}

@media (max-width: 900px) {
  .resources-intro, .resource-group, .resources-footnote {
    padding-left: 0;
    padding-right: 0;
  }
  .resources-footnote {
    padding: 1.25rem;
  }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-item { border-right: none !important; }
  .practice-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .practice-item:last-child { border-bottom: none; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner { border-right: none !important; }
  .partner:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .partner:last-child { border-bottom: none; }
  .case-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .disclosure { padding: 2rem 1.5rem; }
  .wrap, .wrap-narrow { padding: 0 1.5rem; }
  section { padding: 4rem 0; }
  .hero { padding: 4.5rem 0 5rem; }
  .index-entry { grid-template-columns: 1fr; gap: 1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .article-body p:first-child::first-letter { font-size: 3.5rem; }
}
@media (max-width: 1099px) {
  nav.primary { display: none; }
  .consult-btn { display: none; }
  .nav-menu-toggle { display: inline-block; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 0.65rem; letter-spacing: 0.12em; }
  .nav { flex-wrap: wrap; gap: 1rem; }
}
