@import url("https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@400;500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #07010c;
  --panel: rgba(12, 4, 16, 0.78);
  --ink: #f7f0fb;
  --mute: #b39ab8;
  --dim: #7a6280;
  --line: rgba(232, 121, 249, 0.18);
  --line-strong: rgba(232, 121, 249, 0.42);
  --mag: #e879f9;
  --white: #ffffff;
  --max: 1120px;
  --serif: "Libre Bodoni", "Bodoni MT", Didot, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(192, 38, 211, 0.18), transparent 55%),
    var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}

.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 1, 12, 0.78);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.brand { font-size: 13px; }
nav { display: flex; gap: 22px; }
nav a {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}
nav a:hover { color: var(--ink); }

.hero {
  min-height: 88vh;
  background-size: cover;
  background-position: center 40%;
  display: flex; align-items: flex-end;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,1,12,0.2) 0%, rgba(7,1,12,0.45) 50%, rgba(7,1,12,0.94) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 0 0 72px; }
.kicker {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mag); margin-bottom: 16px; font-weight: 600;
}
.logo-hero {
  font-family: var(--serif);
  font-size: clamp(48px, 12vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #fff;
}
.lede {
  margin-top: 22px; max-width: 46ch;
  color: var(--mute); font-size: 17px; font-weight: 400;
}
.btn {
  display: inline-flex; margin-top: 28px;
  border: 1px solid var(--line-strong);
  color: var(--ink); padding: 12px 18px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.btn:hover { background: rgba(232, 121, 249, 0.1); }

section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.sec-head { margin-bottom: 36px; }
.sec-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mag); font-weight: 600; margin-bottom: 10px;
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
}
.caption { color: var(--mute); margin-top: 10px; font-size: 15px; max-width: 56ch; }
.slot {
  margin-top: 8px; color: var(--dim); font-size: 13px;
  border-bottom: 1px dashed rgba(232,121,249,0.22);
  min-height: 28px; max-width: 52ch;
}

.goals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.goal {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 140px;
}
.goal h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--line); overflow: hidden; }
.card .thumb { height: 168px; width: 100%; object-fit: cover; }
.card .body { padding: 18px 18px 20px; }
.card h3 { font-size: 16px; font-weight: 600; }
.card .meta {
  margin-top: 14px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mag);
}

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.seat { background: var(--panel); border: 1px solid var(--line); overflow: hidden; }
.face {
  height: 220px;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.seat .cap { padding: 14px 16px 16px; }
.seat .id {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mag); margin-bottom: 6px;
}
.seat h3 { font-size: 15px; font-weight: 600; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 8px;
}
.blank { height: 40px; border-bottom: 1px solid var(--line); }

table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
th { color: var(--dim); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.about-row { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.about-row img { width: 100%; border: 1px solid var(--line); background: #000; }

footer {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 28px 0 48px; color: var(--dim); font-size: 12px; letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  nav { display: none; }
  .goals, .grid-3, .team, .contact, .about-row { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
}
