:root {
  --navy-980: #020814;
  --navy-950: #041024;
  --navy-900: #071a33;
  --navy-850: #0b2443;
  --navy-800: #123457;
  --gold-600: #b77b22;
  --gold-500: #d9a84c;
  --gold-400: #f0c66d;
  --gold-300: #f7dfaa;
  --cream: #f5eedf;
  --paper: #fbf7ef;
  --white: #ffffff;
  --ink: #0a1727;
  --muted: #657180;
  --line: rgba(5, 20, 38, .14);
  --glass: rgba(255, 255, 255, .08);
  --shadow: 0 28px 90px rgba(2, 8, 20, .18);
  --radius: 28px;
  --container: min(1200px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.section--compact { padding: 74px 0; }
.section--cream { background: var(--cream); }
.section--dark { color: var(--white); background: radial-gradient(circle at 15% 0, rgba(217,168,76,.18), transparent 34%), linear-gradient(135deg, var(--navy-980), var(--navy-900)); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, .serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
h1 { margin-bottom: 26px; font-size: clamp(48px, 7.4vw, 104px); line-height: .94; }
h2 { margin-bottom: 20px; font-size: clamp(36px, 5vw, 68px); line-height: 1.02; }
h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.25; }
h1, h2, h3, .lead { overflow-wrap: break-word; }
p { color: var(--muted); }
.lead { max-width: 760px; color: rgba(255,255,255,.72); font-size: clamp(18px, 2vw, 22px); }
.section--dark p { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 54px;
}
.section-head > div { max-width: 820px; }
.section-head h2 { margin-bottom: 0; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(2, 8, 20, .78);
  border-bottom: 1px solid rgba(240,198,109,.16);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}
.site-header.scrolled {
  background: rgba(2, 8, 20, .94);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}
.nav {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  width: 214px;
  flex: 0 0 auto;
  align-items: center;
}
.brand img {
  width: 214px;
  border-radius: 14px;
}
.nav__links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav__links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
  transition: .22s ease;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--gold-300);
  background: rgba(240,198,109,.1);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--large { min-height: 62px; padding-inline: 28px; }
.btn--gold {
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-400) 38%, var(--gold-600));
  box-shadow: 0 18px 42px rgba(217,168,76,.26);
}
.btn--outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.btn--outline-dark {
  color: var(--navy-950);
  border: 1px solid rgba(5,20,38,.18);
  background: rgba(255,255,255,.45);
}
.btn--text {
  min-height: auto;
  padding: 0;
  color: var(--gold-600);
  background: transparent;
  box-shadow: none;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(2,8,20,.96), rgba(7,26,51,.92)),
    radial-gradient(circle at 78% 20%, rgba(217,168,76,.24), transparent 35%);
}
.hero::before {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: "";
}
.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .55;
}
.hero__orb--one {
  width: 380px;
  height: 380px;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(217,168,76,.35), transparent 68%);
}
.hero__orb--two {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 4%;
  background: radial-gradient(circle, rgba(240,198,109,.18), transparent 68%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 820px;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  padding: 86px 0 112px;
}
.hero__content { max-width: 720px; }
.hero__trust {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.hero__trust div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
}
.hero__trust strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1;
}
.hero__trust span { color: rgba(255,255,255,.76); font-size: 14px; }
.hero__visual { position: relative; }
.hero-logo-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(240,198,109,.35);
  border-radius: 38px;
  background: var(--navy-950);
  box-shadow: 0 50px 120px rgba(0,0,0,.36);
  transform: rotate(.6deg);
}
.hero-logo-card::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240,198,109,.26);
  border-radius: 28px;
  pointer-events: none;
  content: "";
}
.hero-logo-card img {
  width: 100%;
  height: auto;
  max-height: 430px;
  border-radius: 26px;
  object-fit: contain;
}
.victory-card {
  position: relative;
  right: auto;
  bottom: auto;
  display: grid;
  width: min(420px, 88%);
  grid-template-columns: 58px 1fr;
  gap: 16px;
  margin: 18px 0 0 auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  color: var(--white);
  background: rgba(4,16,36,.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.victory-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
  font-size: 28px;
  font-weight: 900;
}
.victory-card strong { display: block; margin-bottom: 6px; color: var(--gold-300); }
.victory-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }

.quick-panel {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}
.quick-panel__inner {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(217,168,76,.28);
  border-radius: 28px;
  background: rgba(251,247,239,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.quick-panel a {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--white);
}
.quick-panel span {
  display: block;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.quick-panel strong { display: block; color: var(--ink); }

.section--video {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 10%, rgba(217,168,76,.2), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, var(--navy-980), var(--navy-900));
}
.section--video .section-head h2 { max-width: 840px; }
.section--video .section-head h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}
.video-showcase {
  overflow: hidden;
  border: 1px solid rgba(240,198,109,.22);
  border-radius: 38px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}
.video-showcase__screen {
  position: relative;
  min-height: 520px;
}
.video-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity .45s ease, transform .45s ease;
}
.video-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.video-slide__visual {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240,198,109,.26);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, #06142a, #0c2747);
  background-size: 46px 46px, 46px 46px, auto;
}
.video-slide__visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.14) 48%, transparent 58% 100%);
  animation: videoShine 5.6s linear infinite;
  content: "";
}
.video-slide__visual img {
  position: relative;
  z-index: 2;
  width: min(76%, 620px);
  border-radius: 22px;
  filter: drop-shadow(0 22px 42px rgba(0,0,0,.42));
}
.video-slide__visual--court {
  background:
    radial-gradient(circle at 26% 32%, rgba(217,168,76,.28), transparent 30%),
    linear-gradient(135deg, #06142a, #0c2747);
}
.video-slide__visual--result {
  background:
    radial-gradient(circle at 74% 28%, rgba(247,223,170,.22), transparent 32%),
    linear-gradient(135deg, #06142a, #0c2747);
}
.video-symbol {
  position: relative;
  z-index: 2;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: clamp(150px, 18vw, 260px);
  line-height: 1;
  text-shadow: 0 26px 58px rgba(0,0,0,.38);
}
.video-play {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
  box-shadow: 0 0 0 18px rgba(217,168,76,.15), 0 22px 48px rgba(0,0,0,.28);
  font-size: 28px;
}
.video-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(217,168,76,.24);
  filter: blur(42px);
  animation: videoPulse 3.8s ease-in-out infinite;
}
.video-slide__caption {
  padding: 16px 18px 16px 0;
}
.video-slide__caption span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.video-slide__caption h3 {
  max-width: 520px;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.45vw, 32px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.16;
}
.video-slide__caption p {
  max-width: 520px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.55;
}
.video-showcase__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.video-showcase__controls > button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--gold-300);
  background: rgba(255,255,255,.08);
  font-size: 20px;
  font-weight: 900;
}
.video-dots {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.video-dots button {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 900;
}
.video-dots button.active {
  color: #1a1207;
  border-color: transparent;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
}
@keyframes videoShine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}
@keyframes videoPulse {
  0%, 100% { transform: scale(.86); opacity: .45; }
  50% { transform: scale(1.12); opacity: .75; }
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.practice-card, .case-card, .article-card, .value-card, .prep-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(2,8,20,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.practice-card:hover, .case-card:hover, .article-card:hover, .prep-card:hover {
  border-color: rgba(217,168,76,.48);
  box-shadow: 0 24px 70px rgba(2,8,20,.12);
  transform: translateY(-7px);
}
.practice-card::before, .case-card::before, .article-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  content: "";
}
.practice-card__num {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--gold-600);
  background: rgba(217,168,76,.12);
  font-weight: 900;
}
.practice-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--gold-600);
  font-weight: 900;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
}
.split--reverse { grid-template-columns: 1.06fr .94fr; }
.split > *, .founder-layout > *, .contact-layout > *, .map-card > * { min-width: 0; }
.founder-card {
  overflow: hidden;
  border-radius: 36px;
  background: var(--navy-950);
  box-shadow: var(--shadow);
}
.founder-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}
.founder-card div {
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
}
.founder-card span {
  display: block;
  color: var(--gold-400);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.founder-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.split__content p { font-size: 18px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline__item {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.timeline__item span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 50%;
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
  font-weight: 900;
}
.timeline__item h3 { color: var(--gold-300); }

.diagnostic {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  padding: 42px;
  border: 1px solid rgba(217,168,76,.28);
  border-radius: 36px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  color: var(--white);
  box-shadow: var(--shadow);
}
.diagnostic h2 { margin-bottom: 0; }
.diagnostic__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}
.diagnostic__buttons button {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.diagnostic__buttons button.active {
  color: #1a1207;
  border-color: transparent;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
}
.diagnostic__result {
  grid-column: 2;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.07);
}
.diagnostic__result strong { color: var(--gold-300); }

.case-row, .article-grid, .values-grid, .prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card span, .article-card span, .article-wide span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-card { min-height: 300px; }
.article-card { min-height: 260px; }
.article-card a, .article-wide a { color: var(--gold-600); font-weight: 900; }

.cta-section {
  padding: 106px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(217,168,76,.24), transparent 30%),
    linear-gradient(135deg, var(--navy-980), var(--navy-900));
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta h2 { max-width: 820px; margin-bottom: 16px; }
.cta p { max-width: 640px; color: rgba(255,255,255,.68); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(217,168,76,.25), transparent 32%),
    linear-gradient(135deg, var(--navy-980), var(--navy-900));
}
.page-hero__inner {
  min-height: 520px;
  padding: 116px 0 82px;
}
.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 1;
}
.page-hero .lead {
  max-width: 820px;
  font-size: clamp(16px, 1.65vw, 20px);
}
.about-page .page-hero h1 {
  max-width: 940px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.04;
}
.about-page .section h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
}
.about-page .split__content p,
.about-page .founder-text p {
  font-size: 16px;
  line-height: 1.62;
}

.about-panel {
  overflow: hidden;
  min-width: 0;
  border-radius: 36px;
  background: var(--navy-950);
  box-shadow: var(--shadow);
}
.about-panel img {
  width: 100%;
  height: auto;
  max-height: 300px;
  padding: 32px;
  object-fit: contain;
  object-position: center;
  background: var(--navy-950);
}
.about-panel div { padding: 28px; }
.about-panel h3 {
  color: var(--gold-300);
  font-size: 20px;
  line-height: 1.25;
}
.about-panel p {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.55;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.metric-grid div {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
}
.metric-grid strong {
  display: block;
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}
.metric-grid span { color: var(--muted); font-size: 14px; }
.founder-layout {
  display: grid;
  align-items: center;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
}
.founder-portrait {
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.founder-portrait img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center top;
}
.founder-text h2 {
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.05;
}
.founder-text p { font-size: 16px; }
.values-grid { grid-template-columns: repeat(4, 1fr); }
.value-card {
  min-height: 290px;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.value-card span {
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 42px;
}
.value-card h3 { color: var(--gold-300); }
.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq__item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.faq__item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
}
.faq__item p {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
}
.faq__item.open p { display: block; }
.faq__item.open button span { transform: rotate(45deg); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}
.filter-btn.active {
  color: #1a1207;
  border-color: transparent;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.project-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(2,8,20,.06);
}
.project-card.hidden { display: none; }
.project-card div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.project-card span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-card strong {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy-950);
  background: rgba(217,168,76,.13);
  font-size: 13px;
}
.project-card h2 {
  font-size: clamp(30px, 3.3vw, 46px);
}
.project-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.featured-article {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  box-shadow: var(--shadow);
}
.featured-article p { max-width: 780px; color: rgba(255,255,255,.68); }
.article-list {
  display: grid;
  gap: 16px;
}
.article-wide {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}
.article-wide h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
}
.article-wide p { margin: 0; }

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1.08fr .92fr;
  gap: 26px;
}
.contact-card, .contact-info {
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.contact-card {
  padding: 42px;
  background: var(--white);
}
.contact-info {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
}
.info-block {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
}
.info-block--gold {
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
}
.info-block span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.info-block a, .info-block strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}
.info-block p { margin: 8px 0 0; color: rgba(255,255,255,.68); }
.info-block--gold p { color: rgba(26,18,7,.7); }
.prep-grid { grid-template-columns: repeat(4, 1fr); }
.prep-card { min-height: 230px; }
.prep-card span {
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 40px;
}
.map-section { padding: 0 0 112px; background: var(--cream); }
.map-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.fake-map {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  color: var(--gold-300);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
  background-size: 42px 42px, 42px 42px, auto;
}
.fake-map .pin {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
  box-shadow: 0 0 0 20px rgba(217,168,76,.15);
}
.fake-map strong {
  position: absolute;
  bottom: 26px;
  left: 26px;
  color: var(--white);
}

.form {
  display: grid;
  gap: 14px;
}
.form label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 800;
}
.form--light label { color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--white);
  outline: none;
  background: rgba(255,255,255,.08);
  transition: .22s ease;
}
.form--light input, .form--light textarea, .form--light select {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(217,168,76,.12);
}

.site-footer {
  color: var(--white);
  background: var(--navy-980);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 50px;
  padding: 70px 0 36px;
}
.footer-logo { display: inline-flex; width: 220px; margin-bottom: 18px; }
.footer-logo img { border-radius: 14px; }
.site-footer p { max-width: 480px; color: rgba(255,255,255,.62); }
.site-footer h3 {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-weight: 400;
}
.site-footer a, .site-footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 95;
  right: 22px;
  bottom: 22px;
  border-radius: 999px;
  padding: 14px 18px;
  color: #06130b;
  background: linear-gradient(135deg, #9bffba, #20d466);
  box-shadow: 0 18px 44px rgba(0,0,0,.2);
  font-weight: 900;
}
.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.64);
  backdrop-filter: blur(10px);
}
.modal.open { display: grid; }
.modal__card {
  position: relative;
  width: min(560px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(240,198,109,.25);
  border-radius: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font-size: 26px;
}
.toast {
  position: fixed;
  z-index: 240;
  right: 22px;
  bottom: 86px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #1a1207;
  background: linear-gradient(135deg, #fff0b8, var(--gold-500));
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .24s ease;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav__cta { display: none; }
  .hero__inner, .split, .split--reverse, .founder-layout, .contact-layout, .map-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__inner { min-height: auto; padding-top: 68px; }
  .practice-grid, .case-row, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .values-grid, .prep-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-panel__inner { grid-template-columns: 1fr 1fr; }
  .video-slide { grid-template-columns: 1fr; }
  .video-showcase__screen { min-height: 780px; }
  .diagnostic { grid-template-columns: 1fr; }
  .diagnostic__result { grid-column: auto; }
  .article-wide { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 82px 0; }
  .nav { min-height: 82px; justify-content: space-between; }
  .brand, .brand img { width: 166px; }
  .menu-toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 82px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(240,198,109,.2);
    border-radius: 24px;
    background: rgba(2,8,20,.96);
    box-shadow: var(--shadow);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 14px 16px; }
  h1 { font-size: clamp(42px, 14vw, 68px); }
  h2 { font-size: clamp(34px, 10vw, 50px); }
  .hero__trust, .quick-panel__inner, .practice-grid, .case-row, .article-grid, .timeline, .values-grid, .projects-grid, .metric-grid, .prep-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-logo-card { padding: 14px; }
  .hero-logo-card img { max-height: none; }
  .victory-card { position: static; width: 100%; margin-top: 16px; }
  .video-showcase__screen { min-height: 760px; }
  .video-slide { padding: 18px; }
  .video-slide__visual { min-height: 330px; }
  .video-showcase__controls { align-items: stretch; flex-direction: column; }
  .video-showcase__controls > button { width: 100%; border-radius: 18px; }
  .section-head, .cta, .featured-article, .footer-bottom { align-items: start; flex-direction: column; }
  .founder-card img, .founder-portrait img { height: 430px; }
  .contact-card, .diagnostic, .featured-article { padding: 26px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

@media (max-width: 520px) {
  .btn { width: 100%; }
  .quick-panel { margin-top: -28px; }
  .hero__inner { padding-bottom: 70px; }
  .practice-card, .case-card, .article-card, .project-card, .value-card, .prep-card { padding: 24px; }
  .hero-logo-card { border-radius: 26px; }
  .video-showcase__screen { min-height: 700px; }
  .video-slide__visual { min-height: 250px; }
  .video-slide__visual img { width: 92%; }
  .video-play { width: 66px; height: 66px; font-size: 20px; }
  .footer-logo { width: 180px; }
}
