/* Instituto Jurídico Juiz Odilon — sistema visual */

:root {
  /* Cores institucionais */
  --navy-900: #0a1a33;
  --navy-800: #0f2444;
  --navy-700: #173258;
  --navy-600: #244273;
  --gold: #c9a45a;
  --gold-dim: #a78648;
  --gold-soft: #d8b97a;
  --ivory: #f4eedd;
  --paper: #faf6ec;
  --paper-warm: #f1ead7;
  --ink: #15130f;
  --ink-72: rgba(21, 19, 15, 0.72);
  --ink-56: rgba(21, 19, 15, 0.56);
  --ink-40: rgba(21, 19, 15, 0.40);
  --ink-20: rgba(21, 19, 15, 0.20);
  --line: rgba(21, 19, 15, 0.14);
  --line-dark: rgba(244, 238, 221, 0.16);
  --gold-line: rgba(201, 164, 90, 0.32);

  /* Fontes */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-serif: "Spectral", "EB Garamond", Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Pesos serif tweakable */
  --serif-weight-display: 500;
  --serif-weight-body: 400;

  /* Escala */
  --container: 1240px;
  --container-wide: 1440px;
  --gutter: 32px;

  /* Density */
  --section-y: 120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: var(--serif-weight-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; }

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ─── Container & rhythm ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; }
section.tight { padding: calc(var(--section-y) * 0.6) 0; }

/* ─── Type ─────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: var(--serif-weight-display);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.display-xl { font-size: clamp(48px, 7.4vw, 112px); }
.display-l  { font-size: clamp(40px, 5.4vw, 80px); }
.display-m  { font-size: clamp(32px, 3.6vw, 56px); }
.display-s  { font-size: clamp(24px, 2.4vw, 36px); }

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.eyebrow.on-dark { color: var(--gold-soft); }

.lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-72);
  max-width: 60ch;
}

.micro {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-56);
}

p { margin: 0 0 1em; max-width: 68ch; }

/* ─── Filetes & ornamentos ─────────────────────────── */
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}
.rule.dark { background: var(--line-dark); }
.rule.gold { background: var(--gold-line); }

.gold-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
}
.gold-flourish .bar {
  flex: 0 0 auto;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.gold-flourish .star {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* ─── Buttons / links ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform .4s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-gold:hover { background: var(--gold); color: var(--navy-900); }

.btn-ivory {
  border-color: var(--ivory);
  color: var(--ivory);
}
.btn-ivory:hover { background: var(--ivory); color: var(--navy-900); }

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-40);
  padding-bottom: 4px;
  transition: color .3s ease, border-color .3s ease;
}
.link-arrow .arrow { transition: transform .35s ease; }
.link-arrow:hover { color: var(--gold-dim); border-color: var(--gold); }
.link-arrow:hover .arrow { transform: translateX(4px); }

.link-arrow.on-dark { color: var(--gold-soft); border-color: var(--gold-line); }
.link-arrow.on-dark:hover { color: var(--ivory); border-color: var(--gold); }

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, border-color .4s ease;
}
.nav.is-dark {
  background: rgba(10, 26, 51, 0.78);
  border-bottom-color: rgba(244, 238, 221, 0.08);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 84px;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
}
.nav-brand .mono {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}
.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand .brand-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav-brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-56);
  margin-top: 2px;
}
.nav.is-dark .brand-name { color: var(--ivory); }
.nav.is-dark .brand-sub { color: var(--gold-soft); }

.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-72);
  padding: 8px 2px;
  position: relative;
  transition: color .3s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}
.nav.is-dark .nav-link { color: rgba(244, 238, 221, 0.7); }
.nav.is-dark .nav-link:hover { color: var(--ivory); }
.nav.is-dark .nav-link.active { color: var(--ivory); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav.is-dark .nav-cta { border-color: var(--gold); color: var(--gold); }
.nav.is-dark .nav-cta:hover { background: var(--gold); color: var(--navy-900); }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--ivory);
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 164, 90, 0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10, 26, 51, 0.6), transparent 60%);
  pointer-events: none;
}
.hero::after {
  /* fine texture grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 238, 221, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 221, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 238, 221, 0.55);
  margin-bottom: 64px;
}
.hero-meta .gold { color: var(--gold-soft); }

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: var(--serif-weight-display);
  font-size: clamp(56px, 7.4vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ivory);
  margin: 0;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0 28px;
}

.hero-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(244, 238, 221, 0.78);
  max-width: 52ch;
}

.hero-portrait-wrap {
  position: relative;
}
.hero-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.18) contrast(1.05) brightness(0.96);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 26, 51, 0.72));
  pointer-events: none;
}
.hero-portrait-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.hero-portrait-caption .name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
}
.hero-portrait-caption .role {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-align: right;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  margin-top: 56px;
  border-top: 1px solid rgba(244, 238, 221, 0.16);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.stat-label {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 238, 221, 0.62);
  line-height: 1.4;
}

/* hero layouts */
.hero-grid-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-grid-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-grid-centered .hero-rule { margin: 36px auto 28px; }
.hero-grid-centered .hero-portrait-wrap {
  width: min(420px, 80%);
  margin-top: 56px;
}

/* ─── Sections ─────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head .meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-head .meta .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-dim);
}

/* ─── Cards de curso ──────────────────────────────── */
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.course-card {
  padding: 48px 40px 48px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
  cursor: default;
  position: relative;
  transition: padding-left .5s cubic-bezier(.2,.7,.2,1);
}
.course-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 48px; }
.course-card:nth-child(even) { padding-left: 48px; }
.course-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.course-card:nth-child(even)::before { left: 0; }
.course-card:nth-child(odd)::before { left: 0; }
.course-card:hover::before { transform: scaleY(1); }
.course-card:nth-child(even):hover { padding-left: 60px; }

.course-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-dim);
  padding-top: 8px;
  letter-spacing: 0.02em;
}
.course-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.course-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-72);
  max-width: 48ch;
  margin-bottom: 20px;
}
.course-meta {
  display: flex;
  gap: 22px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-56);
}
.course-meta span { display: inline-flex; align-items: center; gap: 8px; }
.course-meta .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  display: inline-block;
}

.course-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-56);
  transition: all .35s ease;
}
.course-card:hover .course-arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* ─── Editorial blocks ─────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.editorial-img {
  aspect-ratio: 4 / 5;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }

.placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg,
      rgba(15, 36, 68, 0.04) 0,
      rgba(15, 36, 68, 0.04) 1px,
      transparent 1px,
      transparent 12px),
    var(--paper-warm);
  display: grid;
  place-items: center;
  color: var(--ink-56);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(15, 36, 68, 0.18);
}
.placeholder.dark {
  background:
    repeating-linear-gradient(45deg,
      rgba(244, 238, 221, 0.04) 0,
      rgba(244, 238, 221, 0.04) 1px,
      transparent 1px,
      transparent 12px),
    var(--navy-800);
  color: rgba(244, 238, 221, 0.55);
}
.placeholder.dark::before {
  border-color: rgba(244, 238, 221, 0.14);
}
.placeholder .ph-label {
  position: relative;
  background: var(--paper);
  padding: 6px 14px;
  border: 1px solid rgba(15, 36, 68, 0.18);
}
.placeholder.dark .ph-label {
  background: var(--navy-800);
  border-color: rgba(244, 238, 221, 0.14);
  color: var(--gold-soft);
}

/* ─── Block dark (sobre o juiz) ─────────────────────── */
.section-dark {
  background: var(--navy-900);
  color: var(--ivory);
}
.section-dark .display { color: var(--ivory); }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark .lede { color: rgba(244, 238, 221, 0.78); }
.section-dark p { color: rgba(244, 238, 221, 0.78); }
.section-dark .rule { background: rgba(244, 238, 221, 0.14); }

/* ─── Publicações ─────────────────────────────────── */
.pub-list {
  border-top: 1px solid var(--line);
}
.pub-row {
  display: grid;
  grid-template-columns: 80px 1fr 160px 140px 40px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  position: relative;
  transition: padding-left .35s ease;
  cursor: default;
}
.pub-row:hover { padding-left: 16px; }
.pub-row::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.pub-row:hover::before { width: 8px; }

.pub-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-dim);
}
.pub-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pub-title small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-56);
  margin-top: 4px;
}
.pub-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-56);
}
.pub-arrow {
  color: var(--ink-40);
  font-size: 18px;
  transition: color .3s ease, transform .3s ease;
}
.pub-row:hover .pub-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer li a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(244, 238, 221, 0.72);
  transition: color .25s ease;
}
.footer li a:hover { color: var(--ivory); }

.footer-mono {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
}
.footer-mono .brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
  line-height: 1.15;
}
.footer-mono .brand-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer-mono p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(244, 238, 221, 0.62);
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 238, 221, 0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 238, 221, 0.48);
}

/* ─── Page heads ──────────────────────────────────── */
.page-head {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 238, 221, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 221, 0.022) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head .crumbs {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 238, 221, 0.55);
  margin-bottom: 48px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-head .crumbs .sep { color: var(--gold-soft); }
.page-head h1 {
  font-family: var(--font-display);
  font-weight: var(--serif-weight-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0;
  max-width: 14ch;
}
.page-head h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-head .sub {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(244, 238, 221, 0.74);
  max-width: 56ch;
}

/* ─── Contato form ─────────────────────────────────── */
.form-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-56);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-20);
  padding: 12px 0 14px;
  outline: none;
  transition: border-color .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-serif); }

/* ─── Quote ─────────────────────────────────────── */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ivory);
  max-width: 24ch;
}
.pull-quote .open {
  font-size: 1.6em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 0.1em;
}
.attrib {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ─── Areas of study chips ──────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area-cell {
  background: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background .4s ease;
}
.area-cell:hover { background: var(--paper-warm); }
.area-cell .num {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-dim);
}
.area-cell h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.area-cell p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-72);
  margin: 0;
  max-width: 38ch;
}

/* ─── Monograma SVG presence ─────────────────────── */
.section-monogram {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  font-size: clamp(280px, 32vw, 520px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 980px) {
  :root { --section-y: 80px; }
  .hero-grid-split { grid-template-columns: 1fr; gap: 56px; }
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card { padding: 36px 0 !important; border-right: 0 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .area-grid { grid-template-columns: 1fr; }
  .pub-row { grid-template-columns: 60px 1fr 40px; }
  .pub-row .pub-meta { display: none; }
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
}
