/* ============================================================
   Orlando Rodriguez — Trial Lawyer · Houston
   Design system: near-black ground, single red accent,
   Archivo Black (Helvetica-style) chunky display type, ledger-style rows.
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --panel: #111111;
  --panel-hover: #0F0F0F;
  --line: #2A2A2A;
  --red: #CC0000;
  --red-hover: #E00000;
  --white: #FFFFFF;
  --body: #CCCCCC;
  --gray: #888888;
  --dim: #555555;
  --faint: #444444;
  --ghost: #111111;

  --display: "Archivo Black", "Helvetica Neue", "Arial Black", Arial, sans-serif;
  --text: "Barlow", Arial, sans-serif;

  --max: 1400px;
  --pad: 2rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Type roles ---------- */

.display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
}

.eyebrow {
  font-family: var(--text);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.kicker {
  font-family: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.tick {
  width: 2rem;
  height: 2px;
  background: var(--red);
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */

.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--red);
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  display: inline-block;
  cursor: pointer;
  transition: background 150ms;
}

.btn:hover { background: var(--red-hover); }

.btn--small {
  font-size: 0.75rem;
  padding: 0.45rem 1.1rem;
  white-space: nowrap;
}

.link-underline {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color 150ms;
}

.link-underline:hover { color: var(--red); }

/* ---------- Header ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.brand .tag {
  font-family: var(--text);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 200ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav a {
  display: block;
  padding: 1rem var(--pad);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a.cta { color: var(--red); }

.mobile-nav.open { display: block; }

@media (max-width: 767px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  background: var(--bg);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem var(--pad);
  position: relative;
  overflow: hidden;
}

.hero--sub { min-height: 62vh; }

.hero .ghost {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 15rem);
  color: var(--ghost);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero .inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-line {
  display: block;
  font-size: clamp(2.4rem, 7.5vw, 6.5rem);
}

.hero--sub .hero-line {
  font-size: clamp(2rem, 6vw, 5rem);
}

.hero-sub {
  font-family: var(--text);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 640px;
  margin: 2rem 0 0;
}

.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta .dash {
  width: 3rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-meta .who {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
}

.hero-meta .where {
  font-family: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero-meta .btn { margin-left: auto; }

@media (max-width: 640px) {
  .hero-meta .btn { margin-left: 0; }
}

/* ---------- Fact strip ---------- */

.facts {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts .grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.fact {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fact:last-child { border-right: none; }

.fact .big {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}

.fact .small {
  font-family: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .facts .grid { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: none; }
}

/* ---------- Sections ---------- */

.section { padding: 6rem var(--pad); background: var(--bg); }
.section--panel { background: var(--panel); border-top: 1px solid var(--line); }
.section--big { padding: 7rem var(--pad); border-top: 1px solid var(--line); }

.section .inner { max-width: var(--max); margin: 0 auto; }

/* ---------- Practice ledger rows (homepage) ---------- */

.practice-row {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: background 150ms, padding 150ms, margin 150ms;
}

.practice-row:hover {
  background: var(--panel-hover);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.practice-row h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.practice-row p {
  font-family: var(--text);
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.practice-row .more {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 150ms;
}

.practice-row .more:hover { color: var(--red); }

@media (max-width: 640px) {
  .practice-row { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Practice detail blocks (practice page) ---------- */

.area {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 3rem;
}

.area h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0 0 0.75rem;
}

.area .tagline {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
}

.area .body p {
  margin: 0 0 1.5rem;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
}

.area ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.6rem 2rem;
}

.area li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 1.1rem;
  position: relative;
}

.area li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.6rem;
  height: 2px;
  background: var(--red);
}

@media (max-width: 767px) {
  .area { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- Quote / about teaser ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  align-items: center;
}

.pullquote {
  border-left: 3px solid var(--red);
  padding-left: 2rem;
}

.pullquote blockquote {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ---------- Numbered method list (about page) ---------- */

.method {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.method .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--ghost);
  -webkit-text-stroke: 1px var(--faint);
  line-height: 1;
  min-width: 3.5rem;
}

.method h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1;
}

.method p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 640px;
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  padding: 2.5rem;
}

.form-card h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1;
}

.form-card .note {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0 0 2rem;
}

.field { margin-bottom: 1.4rem; }

.field label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  font-family: var(--text);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
}

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

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

.form-hint {
  font-size: 0.75rem;
  color: var(--dim);
  margin-top: 0.75rem;
}

.info-block { margin-bottom: 2.25rem; }

.info-block .label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.info-block .value,
.info-block .value a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.3;
}

.info-block p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.legal-note {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--dim);
  line-height: 1.6;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--pad) 2rem;
}

.site-footer .red-rule {
  border-top: 1px solid var(--red);
  margin-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-brand .role {
  font-family: var(--text);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
  margin: 0;
}

.footer-col .head {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col nav,
.footer-col .stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 150ms;
}

.footer-col a:hover { color: var(--white); }

.footer-col .phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-col p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0.25rem 0 0;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-legal .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-legal p {
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
}

.footer-legal .disclaimer {
  font-size: 0.65rem;
  color: var(--faint);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 900px;
}

.footer-legal .links a {
  font-size: 0.7rem;
  color: var(--dim);
  text-decoration: none;
}

.footer-legal .links a:hover { color: var(--gray); }

/* ---------- Motion ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.js .rise {
  opacity: 0;
  animation: riseIn 700ms ease forwards;
}

.js .rise:nth-child(1) { animation-delay: 60ms; }
.js .rise:nth-child(2) { animation-delay: 160ms; }
.js .rise:nth-child(3) { animation-delay: 260ms; }
.js .rise:nth-child(4) { animation-delay: 360ms; }
.js .rise:nth-child(5) { animation-delay: 460ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .rise {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Focus visibility ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ============================================================
   THE NIGHT DOCKET
   ============================================================ */

.hablamos {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-top: 0.35rem;
}

/* Three-column intro row (mirrors the fact strip) */
.docket-intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.docket-intro .grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.docket-cell {
  padding: 2rem 1.5rem 2rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}
.docket-cell:first-child { border-left: 0; padding-left: 0; }
.docket-cell .big {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.docket-cell .small { font-size: 0.85rem; color: var(--gray); }

/* Entry ledger rows */
.entry-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.entry-row:hover { background: var(--panel-hover); }
.entry-row .stamp {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.entry-row .cat {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-left: 1rem;
}
.entry-row h3 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.02;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.entry-row .deck { color: var(--gray); margin: 0; font-size: 0.95rem; }
.entry-row .arrow {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--red);
}

/* Article template */
.article {
  max-width: 68ch;
  margin: 0 auto;
  padding: 4rem var(--pad) 5rem;
}
.article .cat {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.article .stamp {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 1rem;
}
.article h1 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.02;
  color: var(--white);
  margin: 1rem 0 0;
}
.article .red-tick {
  width: 64px; height: 6px;
  background: var(--red);
  margin: 1.5rem 0 2.5rem;
}
.article-body {
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #CCCCCC;
}
.article-body p { margin: 0 0 1.4rem; }
.article-body strong { color: var(--white); }
.article .signoff {
  font-family: var(--text);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 3rem;
}
.article .signoff .dot { color: var(--red); }
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
}
.article-nav a {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
}
.article-nav a:hover { color: var(--white); }

@media (max-width: 720px) {
  .docket-intro .grid { grid-template-columns: 1fr; }
  .docket-cell { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .docket-cell:first-child { border-top: 0; }
  .entry-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .entry-row .arrow { display: none; }
}

/* ============================================================
   CONTRAST CUTS + SHARP QUOTES (editorial pass)
   ============================================================ */

/* Signature red terminal punctuation */
.reddot { color: var(--red); }

/* Hard white cut section */
.section--light {
  background: var(--white);
  color: #1A1A1A;
  border-top: 6px solid var(--red);
  border-bottom: none;
}
.section--light .pullquote { border-left-color: #0A0A0A; }
.section--light .pullquote blockquote { color: #0A0A0A; }
.section--light .eyebrow { color: var(--red); }
.section--light p { color: #333333 !important; }
.section--light .link-underline { color: #0A0A0A; }

/* Bigger stat numerals, subway-sign weight */
.fact .big { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }

/* Sharper pullquote: heavier rule, tighter block */
.pullquote { border-left-width: 6px; }

/* ---------- Portrait ---------- */
.portrait { margin: 0; }
.portrait img {
  width: 100%; height: auto; display: block;
  border-bottom: 8px solid var(--red);
}
.portrait figcaption {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-top: 0.85rem;
}
.section--light .pullquote { margin-bottom: 1.75rem; }
