: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;
}
/* Subtle warm gradient */
.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%);
}
/* Vertical rule between columns */
.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: all 0.3s; cursor: default;
}
.pc::after {
  content: attr(data-n);
  position: absolute; top: 24px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 200;
  color: rgba(12,30,53,0.04); line-height: 1; transition: color 0.3s;
}
.pc:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(12,30,53,0.07);
  transform: translateY(-3px);
}
.pc:hover::after { color: rgba(181,136,42,0.1); }
.pc-icon {
  width: 44px; height: 44px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: background 0.2s;
}
.pc:hover .pc-icon { background: var(--gold); }
.pc-icon svg { width: 20px; height: 20px; fill: var(--white); }
.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: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 20px;
}
.ptags { display: flex; flex-wrap: wrap; gap: 5px; }
.ptag {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 500; letter-spacing: 0.8px;
  color: var(--navy-lt); background: var(--cream);
  padding: 4px 9px; border: 1px solid var(--rule); transition: all 0.2s;
}
.pc:hover .ptag { border-color: rgba(181,136,42,0.3); }

/* ── QUOTE ────────────────────────────────────── */
#philosophy {
  background: var(--navy); padding: 120px 72px;
  position: relative; overflow: hidden;
}
#philosophy::before {
  content: ''; position: absolute;
  left: -180px; top: -180px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(181,136,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#philosophy::after {
  content: ''; position: absolute;
  right: -80px; bottom: -80px; width: 360px; height: 360px;
  border: 1px solid rgba(181,136,42,0.07); border-radius: 50%;
  pointer-events: none;
}
.phil-inner {
  max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 200;
  color: rgba(181,136,42,0.18); line-height: 0.8; display: block; margin-bottom: 12px;
}
.phil-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 300; font-style: italic;
  color: var(--ivory); line-height: 1.45; margin-bottom: 36px;
}
.phil-cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.phil-cite::before, .phil-cite::after { content: ''; width: 36px; height: 1px; background: var(--gold-lt); }
.tag-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 64px;
}
.ctag {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(181,136,42,0.6); border: 1px solid rgba(181,136,42,0.18);
  padding: 7px 16px; transition: all 0.2s;
}
.ctag:hover { color: var(--gold-lt); border-color: rgba(181,136,42,0.45); background: rgba(181,136,42,0.05); }

/* ── PUBLICATIONS ─────────────────────────────── */
#publications { background: var(--cream); padding: 120px 72px; }
.pub-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; margin-top: 64px; }
.pub {
  background: var(--white); padding: 40px 36px;
  border: 1px solid var(--rule);
  text-decoration: none; display: block;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.pub::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--gold); transition: width 0.3s;
}
.pub:hover { box-shadow: 0 16px 48px rgba(12,30,53,0.08); transform: translateY(-3px); }
.pub:hover::before { width: 3px; }
.pub-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.pub-cat::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
.pub h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--navy);
  line-height: 1.3; margin-bottom: 12px;
}
.pub.feat h3 { font-size: 27px; }
.pub p { font-family: 'EB Garamond', serif; font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.pub-date { font-family: 'Montserrat', sans-serif; font-size: 9px; color: var(--lgray); letter-spacing: 1px; }
.pub-arr {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  transition: gap 0.2s;
}
.pub:hover .pub-arr { gap: 14px; }
.pub-arr::after { content: '→'; font-size: 14px; }

/* ── CONTACT ──────────────────────────────────── */
#contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.contact-l {
  background: var(--navy); padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-l::after {
  content: ''; position: absolute; right: -100px; bottom: -100px;
  width: 340px; height: 340px;
  border: 1px solid rgba(181,136,42,0.08); border-radius: 50%;
}
.contact-l .s-eye { color: var(--gold-lt); }
.contact-l .s-eye::before { background: var(--gold-lt); }
.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.5); line-height: 1.75;
  margin-top: 8px; max-width: 360px;
}
.clist { margin-top: 48px; display: flex; flex-direction: column; gap: 26px; }
.ci { display: flex; gap: 18px; align-items: flex-start; }
.ci-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(181,136,42,0.25);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.ci:hover .ci-ico { border-color: var(--gold-lt); }
.ci-ico svg { width: 15px; height: 15px; fill: var(--gold-lt); }
.ci-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px;
}
.ci-val {
  font-family: 'EB Garamond', serif;
  font-size: 17.5px; color: rgba(250,247,242,0.75); line-height: 1.4;
}
.ci-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ci-val a:hover { color: var(--gold-lt); }
.contact-r {
  padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ivory);
}
.contact-r h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--navy); margin-bottom: 8px;
}
.contact-r > p {
  font-family: 'EB Garamond', serif;
  font-size: 17px; color: var(--lgray); margin-bottom: 36px; line-height: 1.7;
}
.field { margin-bottom: 13px; }
.field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lgray); margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%; background: var(--white);
  border: 1px solid var(--rule);
  padding: 12px 14px;
  font-family: 'EB Garamond', serif; font-size: 16.5px;
  color: var(--ink); outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); }
.field textarea { height: 90px; resize: none; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fsub {
  width: 100%; margin-top: 10px; padding: 15px;
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); background: var(--navy); border: 1px solid var(--navy);
  cursor: pointer; transition: all 0.25s;
}
.fsub:hover { background: var(--navy-lt); border-color: var(--navy-lt); transform: translateY(-1px); }

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

/* ── REVEAL ───────────────────────────────────── */
.r { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.r.up { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}
.d4{transition-delay:.4s}.d5{transition-delay:.5s}.d6{transition-delay:.6s}


/* ── LANG SWITCHER ────────────────────────── */
.ls { display:flex; gap:2px; margin-left:16px; }
.lb {
  font-family:'Montserrat',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:1.5px;
  padding:7px 11px; border:1px solid rgba(181,136,42,0.22);
  background:transparent; color:var(--lgray); cursor:pointer; transition:all 0.2s;
}
.lb:hover { color:var(--navy); border-color:var(--gold); background:rgba(181,136,42,0.08); }
.lb.on { background:var(--gold); color:var(--navy); border-color:var(--gold); }
[data-t] { display:none; }
span[data-t].vis { display:inline; }
div[data-t].vis  { display:block; }
p[data-t].vis    { display:block; }
h1[data-t].vis,h2[data-t].vis,h3[data-t].vis { display:block; }
a[data-t].vis    { display:inline-flex; }
.vis             { display:revert; }

/* ── RESPONSIVE ───────────────────────────────── */
@media(max-width:1100px){
  #hero{grid-template-columns:1fr}.hero-right{display:none}
  .pgrid{grid-template-columns:1fr 1fr}
  .pub-grid{grid-template-columns:1fr 1fr}
  .p-header{grid-template-columns:1fr;gap:24px}
  #about,#contact{grid-template-columns:1fr}
  .about-visual{min-height:360px}
}
@media(max-width:768px){
  nav{padding:0 24px}
  .nav-links,.nav-cta{display:none}
  .hero-left{padding:100px 24px 60px}
  .hero-name{font-size:52px}
  #practice,#philosophy,#publications{padding:80px 24px}
  .pgrid,.pub-grid{grid-template-columns:1fr}
  .about-content,.contact-l,.contact-r{padding:64px 24px}
  footer{padding:24px;flex-direction:column}
  body{cursor:auto}.cur-dot,.cur-ring{display:none}
}
/* ── WORDPRESS FIXES ──────────────────────────────── */
body {
  cursor: none !important;
}
body *, body *::before, body *::after {
  cursor: none !important;
}
.cur-dot  { opacity: 0; }  /* shown by JS on first mousemove */
.cur-ring { opacity: 0; }

/* Restore cursor on touch devices */
@media (hover: none) {
  body, body *, body *::before, body *::after { cursor: auto !important; }
  .cur-dot, .cur-ring { display: none !important; }
}

/* Elementor canvas: remove default padding */
.site-main { margin: 0; padding: 0; }
.elementor-page .site-main { padding: 0 !important; }

/* Lang switcher button .lb */
.lb {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; background: none; border: none;
  color: var(--lgray); cursor: pointer; padding: 8px 13px;
  transition: color 0.2s;
}
.lb.on { color: var(--navy); }
.lb:hover { color: var(--navy); }

/* data-t visibility */
[data-t] { display: none; }
[data-t].vis { display: inline; }
