:root {
  --bg: #0D0D0C;
  --bg-alt: #161614;
  --bg-card: #1C1C1A;
  --bg-light: #F5F4F0;
  --bg-light-alt: #EDECEA;
  --text: #F5F4F0;
  --text-dim: #8A877F;
  --text-dark: #111110;
  --text-dark-light: #6B6860;
  --accent: #3B82D9;
  --accent-glow: rgba(59, 130, 217, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: #D6D3CC;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Space Grotesk", -apple-system, sans-serif;
  --max-w: 1200px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --section-gap: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #000; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: #000;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  padding: var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

nav {
  position: fixed;
  top: var(--section-gap);
  left: var(--section-gap);
  right: var(--section-gap);
  z-index: 100;
  background: rgba(22, 22, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: transform 0.3s ease;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { text-decoration: none; display: flex; flex-direction: column; }
.logo-main { font-family: var(--sans); font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; line-height: 1.1; }
.logo-sub { font-size: 9px; font-weight: 600; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; transition: all 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

section {
  background: var(--bg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 48px;
}
.light { background: var(--bg-light); border-color: var(--border-light); color: var(--text-dark); }
.alt-bg { background: var(--bg-alt); }

.stag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(59, 130, 217, 0.3);
}
.light .stag { background: rgba(59, 130, 217, 0.1); }
.stitle { font-family: var(--serif); font-size: 48px; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; font-weight: 500; }
.stitle em { font-style: italic; color: var(--accent); font-weight: 400; }
.ssub { font-size: 18px; color: var(--text-dim); line-height: 1.6; max-width: 640px; margin-bottom: 64px; }
.light .stitle { color: var(--text-dark); }
.light .ssub { color: var(--text-dark-light); }

.hero {
  padding: 200px 48px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 { font-family: var(--serif); font-size: 72px; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 32px; max-width: 900px; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-body { font-size: 20px; color: var(--text-dim); line-height: 1.6; max-width: 680px; margin-bottom: 48px; }
.hero-cta { display: inline-block; background: var(--accent); color: #fff; padding: 18px 42px; border-radius: 100px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s; }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--accent-glow); }
.hero-image-wrapper {
  margin-top: 80px;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
.hero-image-wrapper img { width: 100%; height: 100%; display: block; object-fit: cover; }

.quote-strip { padding: 120px 48px; text-align: center; position: relative; }
.quote-icon { position: absolute; top: 60px; left: 50%; transform: translateX(-50%); opacity: 0.05; width: 120px; height: 120px; color: var(--accent); }
.quote-strip blockquote { position: relative; font-family: var(--serif); font-size: 44px; font-style: italic; color: var(--text); max-width: 800px; margin: 0 auto 24px; font-weight: 400; line-height: 1.2; z-index: 2; }
.quote-strip cite { font-family: var(--sans); font-size: 14px; font-style: normal; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.split-grid:last-child { margin-bottom: 0; }
.split-text h2 { font-family: var(--serif); font-size: 40px; line-height: 1.1; margin-bottom: 24px; font-weight: 500; }
.split-text h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.split-text p { font-size: 17px; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.split-text .highlight { color: var(--text); font-weight: 500; font-size: 18px; margin-top: 32px; padding-left: 20px; border-left: 2px solid var(--accent); }
.split-image { border-radius: var(--radius-md); overflow: hidden; height: 500px; position: relative; border: 1px solid var(--border); background: var(--bg-alt); }
.split-image img { width: 100%; height: 100%; transition: transform 0.7s ease; display: block; object-fit: cover; }
.split-image:hover img { transform: scale(1.05); }

.sub-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.sub-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 40px 32px; text-align: center; position: relative; overflow: hidden; }
.sub-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.3s; }
.sub-card:hover::before { opacity: 1; }
.sub-before { font-size: 15px; color: var(--text-dim); margin-bottom: 24px; line-height: 1.5; }
.sub-arrow { width: 48px; height: 48px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--accent); font-size: 20px; }
.sub-after { font-size: 18px; color: var(--text); font-weight: 500; line-height: 1.4; font-family: var(--serif); font-style: italic; }

.card-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 48px 40px; transition: all 0.3s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent); border-color: transparent; }
.light .card { background: #fff; border-color: var(--border-light); }
.light .card:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 0 1px var(--accent); }
.icon-wrap { width: 64px; height: 64px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; color: var(--accent); }
.light .icon-wrap { background: var(--bg-light); border-color: var(--border-light); }
.card h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 16px; font-weight: 500; }
.card p { font-size: 16px; color: var(--text-dim); line-height: 1.6; }

.eng-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 48px 40px; position: relative; overflow: hidden; transition: all 0.3s ease; }
.eng-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.eng-num { font-family: var(--sans); font-size: 120px; color: var(--accent); opacity: 0.05; position: absolute; top: -20px; right: -10px; line-height: 1; font-weight: 700; pointer-events: none; }
.eng-card h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 16px; font-weight: 500; position: relative; z-index: 2; }
.eng-card p { font-size: 16px; color: var(--text-dim); line-height: 1.6; position: relative; z-index: 2; }

.prin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; }
.prin { padding: 32px 0; border-bottom: 1px solid var(--border); }
.prin:nth-last-child(1), .prin:nth-last-child(2) { border-bottom: none; }
.prin h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 12px; font-weight: 500; color: var(--text); }
.prin p { font-size: 16px; color: var(--text-dim); line-height: 1.6; }

.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lead-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 40px; display: flex; gap: 24px; align-items: start; transition: transform 0.3s ease; }
.lead-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); }
.lead-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--bg-light-alt);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  overflow: hidden;
}
.lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lead-photo--portrait-focus img {
  object-position: center 5%;
}
.lead-info h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 4px; font-weight: 500; color: var(--text-dark); }
.lead-role { display: inline-block; font-size: 12px; color: var(--accent); background: rgba(59, 130, 217, 0.1); padding: 4px 12px; border-radius: 100px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px; }
.lead-info p { font-size: 15px; color: var(--text-dark-light); line-height: 1.6; }

.final-cta { text-align: center; padding: 160px 48px; background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%); }
.final-cta h2 { font-family: var(--serif); font-size: 56px; margin-bottom: 24px; font-weight: 500; letter-spacing: -1px; }
.final-cta h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.final-cta p { font-size: 18px; color: var(--text-dim); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
footer { background: transparent; padding: 0 48px 48px; text-align: center; font-size: 13px; color: var(--text-dim); opacity: 0.8; }
footer a { color: var(--text-dim); text-decoration: underline; }
footer a:hover { color: var(--accent); }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: rgba(22, 22, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { color: var(--text-dim); font-size: 14px; margin: 0; max-width: 760px; }
.cookie-banner p a { color: var(--text); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  cursor: pointer;
}
.cookie-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.policy-page {
  min-height: 100vh;
  padding-top: 110px;
}
.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 56px 44px;
}
.policy-card h1 {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.policy-card .updated {
  color: var(--text-dim);
  margin-bottom: 26px;
  font-size: 14px;
}
.policy-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}
.policy-card p, .policy-card li {
  color: var(--text-dim);
  font-size: 16px;
}
.policy-card ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

@media (max-width: 992px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse .split-image { order: -1; }
  .split-image { height: 350px; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .prin-grid { gap: 0 40px; }
  .hero h1 { font-size: 56px; }
}
@media (max-width: 768px) {
  body { padding: 8px; gap: 8px; }
  nav { top: 8px; left: 8px; right: 8px; }
  .nav-inner { padding: 12px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  section { border-radius: var(--radius-md); }
  .section-inner { padding: 80px 24px; }
  .hero { padding: 160px 24px 80px; }
  .hero h1 { font-size: 42px; }
  .quote-strip { padding: 80px 24px; }
  .quote-strip blockquote { font-size: 32px; }
  .stitle, .final-cta h2 { font-size: 36px; }
  .card-grid-3, .card-grid-2, .sub-grid, .prin-grid, .lead-grid { grid-template-columns: 1fr; }
  .lead-card { flex-direction: column; align-items: center; text-align: center; }
  .prin:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease-out both; }
.hero-image-wrapper { animation: fadeUp 0.8s ease-out 0.2s both; }
