/* =====================================================
   BARLA LAW — Main Stylesheet
   WordPress Theme | barla-theme
   ===================================================== */

:root {
  --navy:    #0C1E35;
  --navy-md: #163050;
  --navy-lt: #1E4272;
  --gold:    #B5882A;
  --gold-lt: #CCA84E;
  --gold-dim:#8A6420;
  --ivory:   #FAF7F2;
  --cream:   #F3EDE1;
  --warm:    #EAE2D4;
  --white:   #FFFFFF;
  --ink:     #161210;
  --gray:    #4E4840;
  --lgray:   #8C847A;
  --rule:    #D8D0C2;
}

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

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ──────────────────────────────────── */
.cur-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999; transition: transform 0.08s;
}
.cur-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(181,136,42,0.45);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* ── PROGRESS ─────────────────────────────────── */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-lt));
  z-index: 600; transition: width 0.08s linear; }

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 72px; height: 72px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(181,136,42,0.18);
  transition: height 0.3s, box-shadow 0.3s;
}
nav.scrolled { height: 60px; box-shadow: 0 4px 32px rgba(12,30,53,0.08); }
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--navy);
  letter-spacing: 3px; text-transform: uppercase;
}
.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lgray);
  text-decoration: none; transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
  background: var(--navy); padding: 10px 24px;
  text-decoration: none; border: 1px solid var(--navy);
  transition: all 0.25s;
}
.nav-cta:hover { background: transparent; color: var(--navy); }

/* ── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ivory); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, rgba(181,136,42,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 10% 80%, rgba(12,30,53,0.04) 0%, transparent 60%);
}
.hero-divider {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rule) 20%, var(--rule) 80%, transparent);
  z-index: 1;
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 80px 80px;
}
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 6.5vw, 92px); font-weight: 200;
  color: var(--navy); line-height: 0.95; letter-spacing: -2px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.35s forwards;
}
.hero-name em { font-style: italic; font-weight: 300; color: var(--gold); display: block; }
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 3px;
  text-transform: uppercase; color: var(--lgray);
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-desc {
  font-family: 'EB Garamond', serif;
  font-size: 20px; color: var(--gray); line-height: 1.75;
  max-width: 480px; margin-bottom: 56px;
  opacity: 0; animation: fadeUp 1s 0.65s forwards;
}
.hero-btns {
  display: flex; gap: 14px; align-items: center;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}
.btn-solid {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--white);
  background: var(--navy); padding: 14px 34px;
  text-decoration: none; border: 1px solid var(--navy);
  transition: all 0.25s; display: inline-block;
}
.btn-solid:hover { background: var(--navy-lt); border-color: var(--navy-lt); transform: translateY(-1px); box-shadow: 0 10px 32px rgba(12,30,53,0.18); }
.btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--navy);
  border: 1px solid rgba(12,30,53,0.25); padding: 13px 26px;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(12,30,53,0.04); }

.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 80px 72px;
}
.hero-visual {
  width: 100%; max-width: 440px; margin: 0 auto 48px;
  opacity: 0; animation: fadeIn 1.5s 0.5s forwards;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  border: 1px solid var(--rule); overflow: hidden;
  max-width: 440px; margin: 0 auto;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hstat {
  background: var(--white); padding: 20px 18px;
  transition: background 0.2s;
}
.hstat:hover { background: var(--cream); }
.hstat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 400; color: var(--navy);
  line-height: 1.4; margin-bottom: 5px;
}
.hstat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lgray);
}

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

/* ── TICKER ───────────────────────────────────── */
.ticker {
  background: var(--navy); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; animation: ticker 30s linear infinite;
}
.ticker-inner span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding: 0 28px;
}
.ticker-inner .dot { color: var(--gold-lt); font-size: 16px; padding: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION COMMONS ──────────────────────────── */
.s-eye {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.s-eye::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px); font-weight: 300;
  line-height: 1.1; color: var(--navy); margin-bottom: 20px;
}
.s-title em { font-style: italic; color: var(--gold-dim); }
.s-title.onnavy { color: var(--ivory); }
.s-title.onnavy em { color: var(--gold-lt); }
.gold-bar { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }

/* ── ABOUT ────────────────────────────────────── */
#about {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--white);
}
.about-visual {
  background: var(--navy);
  min-height: 680px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual-art {
  width: 100%; height: 100%; position: absolute; inset: 0;
}
.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; font-weight: 200;
  color: rgba(255,255,255,0.04); letter-spacing: -10px;
  position: relative; z-index: 1; user-select: none;
}
.about-content {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text {
  font-family: 'EB Garamond', serif;
  font-size: 18.5px; color: var(--gray); line-height: 1.8; margin-bottom: 18px;
}
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.cred {
  border: 1px solid var(--rule); padding: 18px 20px;
  background: var(--ivory); transition: border-color 0.2s;
}
.cred:hover { border-color: var(--gold); }
.cred-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.cred-val {
  font-family: 'EB Garamond', serif;
  font-size: 16.5px; color: var(--navy); line-height: 1.4;
}
.lang-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.lang {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--rule); padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 500; letter-spacing: 1px;
  color: var(--navy); background: var(--ivory); transition: border-color 0.2s;
}
.lang:hover { border-color: var(--gold); }

/* ── PRACTICE ─────────────────────────────────── */
#practice { background: var(--ivory); padding: 120px 72px; }
.p-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 72px;
}
.p-body {
  font-family: 'EB Garamond', serif;
  font-size: 19px; color: var(--gray); line-height: 1.75;
}
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pc {
  background: var(--white); border: 1px solid var(--rule);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pc::before {
  content: attr(data-n);
  position: absolute; top: -10px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 200;
  color: rgba(181,136,42,0.07); line-height: 1;
  pointer-events: none;
}
.pc:hover { border-color: rgba(181,136,42,0.4); transform: translateY(-3px); }
.pc-icon {
  width: 40px; height: 40px; margin-bottom: 24px;
  fill: var(--gold);
}
.pc-icon svg { width: 100%; height: 100%; fill: var(--gold); }
.pc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--navy);
  margin-bottom: 14px; line-height: 1.2;
}
.pc p {
  font-family: 'EB Garamond', serif;
  font-size: 16.5px; color: var(--gray); line-height: 1.7; margin-bottom: 20px;
}
.ptags { display: flex; flex-wrap: wrap; gap: 6px; }
.ptag {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold-dim);
  border: 1px solid rgba(181,136,42,0.25); padding: 4px 10px;
}

/* ── PHILOSOPHY ──────────────────────────────── */
#philosophy {
  background: var(--navy);
  padding: 140px 72px;
  position: relative; overflow: hidden;
}
.phil-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 1; text-align: center;
}
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; font-weight: 200; color: rgba(181,136,42,0.12);
  line-height: 0.6; display: block; margin-bottom: -40px;
  user-select: none;
}
.phil-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 300; font-style: italic;
  color: var(--ivory); line-height: 1.5; margin-bottom: 32px;
}
.phil-cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 52px;
}
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.ctag {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1); padding: 6px 14px;
  transition: all 0.2s;
}
.ctag:hover { color: var(--gold-lt); border-color: rgba(181,136,42,0.4); }

/* ── PUBLICATIONS ─────────────────────────────── */
#publications { background: var(--cream); padding: 120px 72px; }
.pub-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; margin-top: 60px;
}
.pub {
  background: var(--white); padding: 40px 36px;
  text-decoration: none; display: flex; flex-direction: column;
  border: 1px solid var(--rule);
  transition: border-color 0.3s, transform 0.3s;
}
.pub:hover { border-color: var(--gold); transform: translateY(-3px); }
.pub-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.pub h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--navy);
  line-height: 1.3; margin-bottom: 14px;
}
.pub p {
  font-family: 'EB Garamond', serif;
  font-size: 16.5px; color: var(--gray); line-height: 1.7;
  flex: 1; margin-bottom: 24px;
}
.pub-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lgray);
}
.pub.feat { grid-row: span 2; }
.pub-arr {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy); margin-top: 24px;
  display: flex; align-items: center; gap: 8px;
}
.pub-arr::after { content: '→'; }

/* ── METHODOLOGY ─────────────────────────────── */
#methodology { background: var(--white); padding: 120px 72px; }
.meth-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.meth-step {
  display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--rule);
}
.meth-step:last-child { border-bottom: none; }
.meth-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 200; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 44px;
}
.meth-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 8px;
}
.meth-step-text {
  font-family: 'EB Garamond', serif;
  font-size: 17px; color: var(--gray); line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────── */
#contact {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ivory);
}
.contact-l { padding: 100px 80px; background: var(--navy); }
.contact-l .s-eye { color: var(--gold); }
.contact-l .s-eye::before { background: var(--gold); }
.contact-l .s-title { color: var(--ivory); }
.contact-l .s-title em { color: var(--gold-lt); }
.contact-l .s-sub {
  font-family: 'EB Garamond', serif;
  font-size: 18px; color: rgba(250,247,242,0.65); line-height: 1.75; margin-bottom: 52px;
}
.clist { display: flex; flex-direction: column; gap: 28px; }
.ci { display: flex; gap: 20px; align-items: flex-start; }
.ci-ico {
  width: 40px; height: 40px; border: 1px solid rgba(181,136,42,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  fill: var(--gold);
}
.ci-ico svg { width: 18px; height: 18px; fill: var(--gold); }
.ci-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.ci-val {
  font-family: 'EB Garamond', serif;
  font-size: 17px; color: rgba(250,247,242,0.8); line-height: 1.5;
}
.ci-val a { color: rgba(250,247,242,0.8); text-decoration: none; }
.ci-val a:hover { color: var(--gold-lt); }

.contact-r { padding: 100px 80px; }
.contact-r h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--navy); margin-bottom: 10px;
}
.contact-r p {
  font-family: 'EB Garamond', serif;
  font-size: 17px; color: var(--gray); margin-bottom: 36px;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lgray);
}
.field input, .field select, .field textarea {
  font-family: 'EB Garamond', serif;
  font-size: 16.5px; color: var(--ink);
  background: var(--white); border: 1px solid var(--rule);
  padding: 12px 16px; outline: none;
  transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
}
.field textarea { min-height: 120px; resize: vertical; }
.fsub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--white);
  background: var(--navy); border: none;
  padding: 16px 36px; cursor: pointer;
  transition: background 0.25s; width: 100%; margin-top: 8px;
}
.fsub:hover { background: var(--navy-lt); }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--ink); padding: 32px 72px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.f-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400; color: rgba(250,247,242,0.7);
  letter-spacing: 1px;
}
.f-mid {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 400; letter-spacing: 1.5px;
  color: rgba(250,247,242,0.35); text-transform: uppercase;
}
.f-links { display: flex; gap: 28px; }
.f-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(250,247,242,0.45);
  text-decoration: none; transition: color 0.2s;
}
.f-links a:hover { color: var(--gold-lt); }

/* ── REVEAL ANIMATIONS ────────────────────────── */
.r {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.r.up { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }

/* ── MOBILE NAV TOGGLE ────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--navy);
  transition: all 0.3s;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  .hero-left, .hero-right { padding: 120px 48px 72px; }
  .about-content { padding: 72px 48px; }
  .contact-l, .contact-r { padding: 72px 48px; }
  footer { padding: 28px 40px; }
  #practice, #publications { padding: 100px 40px; }
  #philosophy { padding: 120px 48px; }
  #methodology { padding: 100px 40px; }
}

@media (max-width: 900px) {
  body { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }

  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
    padding: 16px 0;
  }
  .nav-links.open li a {
    display: block; padding: 14px 24px; font-size: 11px;
  }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-divider { display: none; }
  .hero-left { padding: 120px 24px 48px; }
  .hero-right { padding: 32px 24px 64px; }
  .hero-stats { max-width: 100%; }

  #about { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; }
  .about-monogram { font-size: 120px; }
  .about-content { padding: 56px 24px; }

  .p-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .pgrid { grid-template-columns: 1fr; }
  #practice { padding: 72px 24px; }

  #philosophy { padding: 80px 24px; }
  .big-quote { font-size: 120px; }

  .pub-grid { grid-template-columns: 1fr; }
  .pub.feat { grid-row: auto; }
  #publications { padding: 72px 24px; }

  #methodology { padding: 72px 24px; }
  .meth-inner { grid-template-columns: 1fr; gap: 40px; }

  #contact { grid-template-columns: 1fr; }
  .contact-l { padding: 72px 24px; }
  .contact-r { padding: 56px 24px; }
  .frow { grid-template-columns: 1fr; }

  footer { padding: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
