:root {
  --black: #070506;
  --charcoal: #151111;
  --plum: #22121c;
  --wine: #3b1724;
  --gold: #d8b66a;
  --soft-gold: #f2dca4;
  --ivory: #f7efe4;
  --muted: #cbbfaf;
  --line: rgba(216, 182, 106, .24);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 182, 106, .16), transparent 30%),
    radial-gradient(circle at 78% 4%, rgba(88, 31, 55, .36), transparent 36%),
    linear-gradient(135deg, #050304 0%, #120b0e 42%, #080506 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 5, 6, .72);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; color: var(--soft-gold); }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; box-shadow: 0 0 26px rgba(216,182,106,.22); }
.nav-links { display: flex; gap: 18px; align-items: center; font-size: 15px; color: #dfd2bf; }
.nav-links a { text-decoration: none; }
.button, button {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  min-height: 46px; padding: 12px 20px;
  border: 1px solid rgba(216,182,106,.54);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216,182,106,.95), rgba(242,220,164,.72));
  color: #130d08; text-decoration: none; font-weight: 800;
  box-shadow: 0 14px 38px rgba(216,182,106,.18);
  cursor: pointer;
}
.button.secondary { background: rgba(216,182,106,.05); color: #ffe7ad; box-shadow: none; }
.hero { padding: 62px 0 42px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.kicker { color: var(--gold); letter-spacing: .24em; text-transform: uppercase; font-size: 12px; font-weight: 800; }
h1, h2, h3 { font-family: Cormorant Garamond, Georgia, serif; font-weight: 600; line-height: .98; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 88px); letter-spacing: -.045em; margin: 14px 0 20px; }
h2 { font-size: clamp(38px, 5vw, 68px); letter-spacing: -.035em; }
h3 { font-size: 28px; }
.lede { color: #e8ddcf; font-size: clamp(18px, 2vw, 22px); max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card {
  position: relative; padding: 20px; border: 1px solid var(--line); border-radius: 34px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  box-shadow: var(--shadow); overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; inset: -2px; background: radial-gradient(circle at 50% 18%, rgba(216,182,106,.18), transparent 44%); pointer-events: none; }
.hero-logo { position: relative; display: block; width: min(100%, 372px); margin: 0 auto; border-radius: 24px; filter: drop-shadow(0 18px 38px rgba(0,0,0,.38)); }
.seal-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
.seal { padding: 13px 15px; border: 1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,.18); color: #d8cebf; font-size: 13px; }
.seal strong { display: block; color: var(--soft-gold); font-size: 15px; }
section { padding: 58px 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.panel { border: 1px solid var(--line); border-radius: 30px; padding: 28px; background: rgba(255,255,255,.045); box-shadow: var(--shadow); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.card { border: 1px solid var(--line); border-radius: 24px; padding: 24px; background: rgba(0,0,0,.24); }
.card p, .panel p, li { color: #d7ccbd; }
.number { color: var(--gold); letter-spacing: .2em; font-size: 12px; font-weight: 900; }
.event { background: linear-gradient(135deg, rgba(59,23,36,.52), rgba(0,0,0,.18)); border-block: 1px solid var(--line); }
.event-list { display: grid; gap: 12px; margin-top: 22px; }
.event-item { display:flex; justify-content:space-between; gap:18px; padding: 16px 0; border-bottom: 1px solid rgba(216,182,106,.18); }
.event-item span:first-child { color: var(--soft-gold); font-weight: 800; }
.form-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--soft-gold); font-weight: 750; font-size: 14px; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(216,182,106,.28); border-radius: 14px;
  background: rgba(0,0,0,.34); color: var(--ivory); padding: 13px 14px;
  font: inherit; outline: none;
}
textarea { min-height: 104px; resize: vertical; }
.notice { color: #d8cebf; font-size: 13px; }
.honeypot { position:absolute; left:-9999px; }
.footer { border-top: 1px solid var(--line); padding: 30px 0 44px; color: var(--muted); font-size: 14px; }
.footer-inner { display:flex; justify-content:space-between; gap:18px; flex-wrap: wrap; }
.footer a { color: var(--soft-gold); text-decoration:none; margin-right: 16px; }
.success { display:none; border:1px solid rgba(122, 206, 139, .45); background:rgba(44, 107, 58, .18); color:#dff7df; padding:14px; border-radius:14px; }
@media (max-width: 860px) {
  .hero-grid, .split, .form-wrap { grid-template-columns: 1fr; }
  .cards, .seal-row { grid-template-columns: 1fr; }
  .nav-links a:not(.button) { display:none; }
  section { padding: 52px 0; }
}
