:root {
  --bg: #081018;
  --bg-deep: #060b10;
  --panel: #0a141e;
  --panel-2: #0c1823;
  --text: #f1eee8;
  --muted: #adb6bf;
  --line: rgba(255,255,255,.12);
  --accent: #7fb1df;
  --accent-deep: #416f99;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(73, 105, 128, .12), transparent 33rem),
    linear-gradient(180deg, #09121a 0%, #071019 70%, #060b10 100%);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 13, 19, .88);
  backdrop-filter: blur(18px);
}
.brand,
.footer-brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .11em;
}
nav { display: flex; gap: clamp(24px, 4vw, 54px); }
nav a {
  font-size: 14px;
  color: #d7dce0;
  transition: color .2s ease;
}
nav a:hover { color: white; }

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(70px, 7.5vw, 110px) clamp(38px, 5vw, 76px) clamp(68px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(6, 12, 17, .98), rgba(7, 15, 22, .97) 70%, rgba(7, 15, 22, .9));
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow span { width: 28px; height: 1px; background: #c8a26a; display: inline-block; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5.3vw, 86px);
  line-height: .94;
  letter-spacing: -.025em;
  font-weight: 500;
  max-width: 780px;
}
.hero-copy > p {
  margin: 28px 0 0;
  max-width: 650px;
  color: #d0d5d9;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}
.actions { display: flex; align-items: center; gap: 40px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 240px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #5789b4, #315f86);
  border: 1px solid rgba(159, 199, 234, .7);
  font-weight: 400;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.08); }
.text-link {
  color: #b7d7f3;
  border-bottom: 1px solid #5680a5;
  padding-bottom: 3px;
  display: inline-flex;
  gap: 22px;
}
.hero-visual {
  min-height: 610px;
  background-image:
    linear-gradient(90deg, rgba(7, 15, 22, .55) 0%, rgba(7, 15, 22, .08) 18%, rgba(7, 15, 22, 0) 55%),
    url("assets/hero-maxim.jpg");
  background-size: cover;
  background-position: center center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 26, .72);
}
.pillars article {
  min-height: 170px;
  padding: 38px clamp(22px, 3vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-content: center;
  border-right: 1px solid var(--line);
}
.pillars article:first-child { padding-left: 0; }
.pillars article:last-child { border-right: 0; }
.index { color: var(--accent); font-family: var(--serif); font-size: 22px; padding-top: 4px; }
.pillars h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}
.pillars p { grid-column: 2; margin: 8px 0 0; color: var(--muted); font-size: 14px; }

.minimal-section {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(140px, .35fr) minmax(0, 1.65fr);
  gap: 40px;
  align-items: center;
  padding: 64px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  align-self: start;
  padding-top: 12px;
}
.section-copy { max-width: 850px; }
.section-copy h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 500;
}
.section-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto minmax(280px, 440px);
  gap: 38px;
  align-items: end;
  padding: 42px clamp(24px, 5vw, 76px) 46px;
  background: #060c12;
}
footer .footer-brand { font-size: 22px; }
.copyright { margin-top: 10px; color: #7f8992; font-size: 12px; }
.footer-links { display: flex; gap: 24px; color: #b7d7f3; font-size: 13px; }
.disclaimer { margin: 0; color: #7f8992; font-size: 11px; line-height: 1.55; text-align: right; }

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .brand { font-size: 24px; }
  nav { gap: 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 72px; padding-bottom: 58px; }
  .hero-visual { min-height: 520px; background-position: center 35%; order: 2; }
  .pillars { grid-template-columns: 1fr; padding: 0 24px; }
  .pillars article { border-right: 0; border-bottom: 1px solid var(--line); padding: 30px 0; min-height: 130px; }
  .pillars article:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .disclaimer { text-align: left; max-width: 560px; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 18px; }
  .brand { font-size: 21px; }
  nav a:not(:last-child) { display: none; }
  .hero-copy { padding: 58px 22px 50px; }
  .hero h1 { font-size: clamp(52px, 15vw, 68px); }
  .hero-copy > p { font-size: 17px; }
  .actions { gap: 24px; align-items: flex-start; flex-direction: column; }
  .button { min-width: 220px; }
  .hero-visual { min-height: 420px; }
  .minimal-section { grid-template-columns: 1fr; gap: 24px; padding: 52px 22px; }
  .section-label { padding-top: 0; }
  footer { padding: 36px 22px 42px; }
}
