:root {
  --ease: 180ms ease;
  --bg: #070708;
  --bg-2: #0e0e10;
  --surface: #141416;
  --surface-2: #1b1b1f;
  --line: rgba(201, 194, 179, 0.16);
  --line-strong: rgba(201, 194, 179, 0.38);
  --gold: #c9c2b3;
  --gold-2: #ddd6c8;
  --ink: #f4f1ea;
  --muted: #9a958c;
  --danger: #b45353;
  --ok: #b7c4a3;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  --radius: 14px;
  --nav-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 40; height: var(--nav-h);
  backdrop-filter: blur(16px); background: rgba(7, 7, 8, 0.9);
  border-bottom: 1px solid var(--line);
}
.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.mark {
  width: 38px; height: 38px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-family: "Cinzel", serif;
  font-weight: 600; letter-spacing: 0.04em; color: var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-family: "Cinzel", serif; }
.brand-text span { font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { border: 1px solid var(--line-strong); padding: 8px 14px; border-radius: 999px; color: var(--gold) !important; }
.menu-btn { display: none; background: transparent; border: 1px solid var(--line); color: var(--ink); width: 44px; height: 44px; border-radius: 10px; }
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0c0c0e center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,7,8,.94) 0%, rgba(7,7,8,.72) 48%, rgba(7,7,8,.28) 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  padding: 96px 0 72px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.kicker { color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; }
h1, h2, h3 { font-family: "Cinzel", serif; font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: 0.02em; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 24px; }
.lede { max-width: 640px; color: var(--muted); font-size: 18px; margin-top: 18px; }
.tagline { margin-top: 28px; color: var(--gold-2); letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.btn-primary { background: var(--gold); color: #0c0c0e; }
.btn-primary:hover { background: var(--gold-2); color: #0c0c0e; }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }
section { padding: 84px 0; }
.grid-3, .grid-2, .grid-4 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card:hover { border-color: var(--line-strong); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }
.card .meta { margin-top: 16px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.notice { border: 1px solid var(--line-strong); background: #16140f; border-radius: var(--radius); padding: 22px 24px; }
.notice strong { color: var(--gold-2); display: block; margin-bottom: 8px; }
form { display: grid; gap: 14px; }
label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  width: 100%; min-height: 48px; background: #0b0b0d; border: 1px solid var(--line);
  color: var(--ink); border-radius: 12px; padding: 12px 14px; font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14px; }
.consent input { width: 18px; height: 18px; min-height: 18px; margin-top: 3px; }
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 28px; background: #050506; }
.legal { margin-top: 28px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); padding-top: 18px; }
.page-hero { padding: 64px 0 24px; }
.page-hero p { color: var(--muted); max-width: 680px; margin-top: 12px; }
.channel { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.channel .status { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.status.verified { color: var(--ok); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.field-error { color: #e2b6a0; font-size: 13px; min-height: 18px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-ok { display: none; border: 1px solid var(--ok); color: var(--ok); padding: 16px; border-radius: 12px; }
.form-ok.show { display: block; }
.foot-modern { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.foot-modern h4 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-family: Outfit, sans-serif; margin-bottom: 12px; }
.foot-modern a { display: block; color: var(--muted); margin: 8px 0; }
.foot-modern p { color: var(--muted); }
.dest { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 80px; }
.dest small { display: block; color: var(--muted); margin-top: 6px; font-size: 12px; letter-spacing: 0.04em; }
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.photo-row img { width: 100%; height: 280px; object-fit: cover; }
.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-2, .foot-modern, .hero-grid, .photo-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-photo { max-width: 420px; margin-inline: auto; }
  .nav-links {
    display: none; position: absolute; inset: var(--nav-h) 0 auto 0;
    background: #0b0b0d; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 18px 20px 24px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
}
