/* ═══════════════════════════════════════════════════
   LEXLOGIC — Shared Design System
   Editorial-magazine aesthetic. Cormorant Garamond + Karla.
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Karla:wght@300;400;500;600&display=swap');

:root {
  --bg:        #faf8f4;
  --ink:       #181614;
  --mid:       #6b645a;
  --rule:      #e2ddd6;
  --white:     #ffffff;
  --gold:      #b8860b;
  --gold-soft: #f0e6c8;

  --corp:     #1b3a4b;
  --corp-soft:#e8f0f4;
  --re:       #2d4a22;
  --re-soft:  #e8f2e4;
  --sec:      #3b1f4e;
  --sec-soft: #ede8f4;
  --bar:      #7a2020;
  --bar-soft: #f4e8e8;
  --ai:       #1a3a3a;
  --ai-soft:  #e4f0ef;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Karla', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ── TOPBAR ── */
.topbar {
  display: none;
}

/* ── MASTHEAD ── */
.masthead {
  border-bottom: 3px double var(--ink);
  padding: 1.75rem 2rem 1.25rem;
  text-align: center;
  background: var(--white);
}
.masthead-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.masthead-title span { color: var(--gold); }
.sitenav-logo span { color: var(--gold); }
.masthead-tagline {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.5rem;
}
.masthead-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0.5rem;
  color: var(--mid);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.masthead-rule::before, .masthead-rule::after {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}

/* ── NAV ── */
.sitenav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 200;
}
.sitenav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sitenav-inner::-webkit-scrollbar { display: none; }
.sitenav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 2rem;
  flex-shrink: 0;
}
.sitenav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0; margin-right: auto; }
.nav-link {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 0 1rem;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--ink); border-color: var(--ink); }
.nav-link[data-sec="corp"]:hover, .nav-link[data-sec="corp"].active { border-color: var(--corp); color: var(--corp); }
.nav-link[data-sec="re"]:hover,   .nav-link[data-sec="re"].active   { border-color: var(--re); color: var(--re); }
.nav-link[data-sec="sec"]:hover,  .nav-link[data-sec="sec"].active  { border-color: var(--sec); color: var(--sec); }
.nav-link[data-sec="bar"]:hover,  .nav-link[data-sec="bar"].active  { border-color: var(--bar); color: var(--bar); }
.nav-link[data-sec="ai"]:hover,   .nav-link[data-sec="ai"].active   { border-color: var(--ai); color: var(--ai); }
.nav-link[data-sec="about"]:hover,.nav-link[data-sec="about"].active{ border-color: var(--gold); color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; margin-left: 1rem; }
.nav-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-btn-contact {
  border: 1.5px solid var(--rule);
  color: var(--mid);
  background: transparent;
}
.nav-btn-contact:hover { border-color: var(--ink); color: var(--ink); }
.nav-btn-donate {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.nav-btn-donate:hover { background: #9a6f09; border-color: #9a6f09; color: #fff; }

/* ── PAGE WRAPPER ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION HEADERS ── */
.sec-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 3rem 0 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--ink);
}
.sec-header h1, .sec-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sec-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  color: #fff;
}
.tag-corp { background: var(--corp); }
.tag-re   { background: var(--re); }
.tag-sec  { background: var(--sec); }
.tag-bar  { background: var(--bar); }
.tag-ai   { background: var(--ai); }
.tag-about{ background: var(--gold); color: var(--ink); }

/* ── ARTICLE GRID ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.articles-grid.two-col   { grid-template-columns: repeat(2, 1fr); }
.articles-grid.four-col  { grid-template-columns: repeat(4, 1fr); }

.article-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card:hover .card-title { text-decoration: underline; }

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 3px;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.corp-bg  { background: var(--corp-soft); }
.re-bg    { background: var(--re-soft); }
.sec-bg   { background: var(--sec-soft); }
.bar-bg   { background: var(--bar-soft); }
.ai-bg    { background: var(--ai-soft); }

.card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
}
.cat-corp { color: var(--corp); }
.cat-re   { color: var(--re); }
.cat-sec  { color: var(--sec); }
.cat-bar  { color: var(--bar); }
.cat-ai   { color: var(--ai); }
.cat-about{ color: var(--gold); }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.card-excerpt {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}
.card-meta {
  font-size: 0.7rem;
  color: #bbb;
  margin-top: 0.4rem;
}

/* ── FEATURED BANNER ── */
.featured-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.featured-banner.flip { direction: rtl; }
.featured-banner.flip > * { direction: ltr; }
.featured-visual {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.featured-content .cat-tag-sm {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}
.featured-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.featured-content p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.read-more-btn {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 2px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
  align-self: flex-start;
}
.read-more-btn:hover { background: var(--ink); color: var(--white); }

/* ── ARTICLE PAGE ── */
.article-page-header {
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}
.article-page-header .back-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.article-page-header .back-link:hover { color: var(--ink); }
.article-page-header .art-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.article-page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.article-page-header .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.article-page-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
.article-page-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}
.article-page-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
}
.article-page-body p {
  font-size: 0.975rem;
  line-height: 1.85;
  color: #2a2520;
  margin-bottom: 1.1rem;
}
.article-page-body ul, .article-page-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}
.article-page-body li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2a2520;
  margin-bottom: 0.3rem;
}
.article-page-body strong { color: var(--ink); }

/* ── CALLOUT + INFOBOX ── */
.callout {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 3px 3px 0;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
}
.callout strong { color: var(--gold); }
.info-box {
  background: #f4f2ee;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.info-box ul { padding-left: 1.25rem; }
.info-box li { font-size: 0.88rem; line-height: 1.7; color: var(--mid); }

/* ── COMP TABLE ── */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1.5rem 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.comp-table th {
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
}
.comp-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--rule);
  line-height: 1.55;
  vertical-align: top;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: #faf8f4; }

/* ── DIVIDER ── */
.full-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.divider-gradient {
  height: 4px;
  background: linear-gradient(90deg, var(--corp) 20%, var(--re) 40%, var(--sec) 60%, var(--bar) 80%, var(--ai) 100%);
}

/* ── SECTION INTRO ── */
.section-intro {
  font-size: 1rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.5rem;
}
.sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: 2.5rem 2rem;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.9;
  border-top: 3px solid var(--gold);
}
footer strong { color: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── HERO STRIP (homepage) ── */
.hero-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  border-bottom: 1px solid var(--rule);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-main {
  padding: 3rem 3rem 3rem 0;
  border-right: 1px solid var(--rule);
}
.hero-main .cat-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.hero-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-main p { font-size: 1rem; color: var(--mid); line-height: 1.7; font-weight: 300; max-width: 500px; margin-bottom: 1.5rem; }
.hero-sidebar { padding: 3rem 0 3rem 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.side-story { padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.side-story:last-child { border-bottom: none; padding-bottom: 0; }
.side-story .cat-tag-sm {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
}
.side-story h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.side-story h3 a { color: inherit; text-decoration: none; }
.side-story h3 a:hover { text-decoration: underline; }
.side-story p { font-size: 0.84rem; color: var(--mid); line-height: 1.6; }

/* ── SECTION HUB INTRO CARD ── */
.hub-hero {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
  pointer-events: none;
}
.hub-hero-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.hub-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hub-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.hub-hero-accent {
  display: inline-block;
  height: 4px;
  width: 60px;
  border-radius: 2px;
  margin: 1.25rem auto 0;
  display: block;
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--ink);
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 420px;
}
.about-card {
  background: var(--gold);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-initials {
  width: 90px;
  height: 90px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.about-card .title-line {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(24,22,20,0.65);
  margin-bottom: 1.5rem;
}
.about-card .badge-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.about-badge {
  background: rgba(24,22,20,0.12);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}
.about-content {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255,255,255,0.85);
}
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-body { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.exp-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.exp-item:last-child { border-bottom: none; }
.exp-firm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.exp-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.2rem;
}
.exp-date {
  font-size: 0.75rem;
  color: #bbb;
  margin-bottom: 0.75rem;
}
.exp-item ul { padding-left: 1.25rem; }
.exp-item li { font-size: 0.88rem; line-height: 1.75; color: #3a352e; margin-bottom: 0.3rem; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.sidebar-box ul { list-style: none; }
.sidebar-box li {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--rule);
}
.sidebar-box li:last-child { border-bottom: none; }
.pub-item {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #3a352e;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.pub-item:last-child { border-bottom: none; }
.pub-year { font-size: 0.72rem; color: #bbb; }
.donate-box {
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}
.donate-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.donate-box p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.25rem; }
.donate-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.donate-btn:hover { background: #d4a010; }

/* ── CONTACT PAGE ── */
.contact-wrap { max-width: 680px; margin: 3rem auto 5rem; padding: 0 2rem; }
.contact-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-wrap .sub { font-size: 0.95rem; color: var(--mid); line-height: 1.7; margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--rule);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 160px; resize: vertical; }
.form-submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit-btn:hover { background: #333; }
.form-success {
  display: none;
  background: var(--re-soft);
  border: 1px solid var(--re);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--re);
  text-align: center;
  margin-top: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-content { padding: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-strip { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .hero-main { border-right: none; border-bottom: 1px solid var(--rule); padding: 2rem 0; }
  .hero-sidebar { padding: 2rem 0; }
  .featured-banner { grid-template-columns: 1fr; }
  .featured-banner.flip { direction: ltr; }
}
@media (max-width: 820px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid.four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .articles-grid, .articles-grid.two-col, .articles-grid.four-col { grid-template-columns: 1fr; }
  .page-wrap { padding: 0 1rem; }
  .article-page-header, .article-page-body { padding-left: 1rem; padding-right: 1rem; }
}

/* Litigation section */
:root {
  --lit: #3d2b00;
  --lit-soft: #f5efe0;
}
.tag-lit { background: var(--lit); }
.cat-lit { color: var(--lit); }
.nav-link[data-sec="lit"]:hover, .nav-link[data-sec="lit"].active { border-color: var(--lit); color: var(--lit); }
