:root {
  --bg: #070709;
  --bg-2: #0e0e12;
  --ink: #f4efe6;
  --muted: #9a9388;
  --line: rgba(244, 239, 230, 0.1);
  --gold: #d4b06a;
  --gold-2: #f0d9a8;
  --danger: #e8a0a0;
  --ok: #9fd4b3;
  --font-d: "Syne", sans-serif;
  --font-b: "Manrope", sans-serif;
  --max: 1180px;
  --pad: clamp(16px, 4vw, 24px);
  --header-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: dark;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 16.5px;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { touch-action: manipulation; }
h1, h2, h3, .display {
  font-family: var(--font-d);
  letter-spacing: -0.03em;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.wrap { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: var(--gold); color: #111; padding: 8px 12px; z-index: 99; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,7,9,.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
  position: relative;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 700; letter-spacing: .04em;
  min-width: 0;
}
.logo span:last-child { white-space: nowrap; }
.logo-mark {
  width: 36px; height: 36px; flex: 0 0 auto; border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  color: #111; display: grid; place-items: center; font-weight: 800;
}
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; justify-content: flex-end; }
.nav a, .nav-drop > span {
  display: inline-flex; align-items: center; padding: 8px 12px; color: var(--muted); font-size: 14px; font-weight: 600;
}
.nav a:hover, .nav a.is-on, .nav-drop:hover > span { color: var(--ink); }
.nav-drop { position: relative; }
.nav-drop ul {
  display: none; position: absolute; top: 100%; right: 0; min-width: 260px;
  background: #14141a; border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  list-style: none; margin: 0;
}
.nav-drop:hover ul, .nav-drop:focus-within ul { display: block; }
.nav-drop ul a { display: block; padding: 10px 12px; border-radius: 10px; }
.nav-drop ul a:hover { background: rgba(212,176,106,.1); color: var(--gold-2); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 20px; font-weight: 700; font-family: inherit; cursor: pointer;
  min-height: 44px; text-align: center;
}
.btn-gold { background: var(--gold); color: #15120c; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--line); color: var(--ink);
  border-radius: 12px; cursor: pointer; flex: 0 0 auto;
}
.nav-toggle span {
  display: block; width: 16px; height: 2px; margin: 4px auto; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
body.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 820px);
  min-height: min(88dvh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease;
  background: #000 center/cover no-repeat;
  background-position: center;
}
.slide.is-on { opacity: 1; z-index: 1; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,9,.25) 0%, rgba(7,7,9,.55) 40%, rgba(7,7,9,.94) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  width: min(820px, calc(100% - (var(--pad) * 2)));
  margin-left: max(var(--pad), calc((100% - var(--max)) / 2));
  margin-right: auto;
  padding: 18vh 0 36px;
}
.kicker { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.display { font-size: clamp(1.85rem, 7.2vw, 4.6rem); margin: 12px 0 16px; }
.lede { color: #d7d0c4; font-size: clamp(1rem, 2.4vw, 1.12rem); max-width: 46rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.slider-nav {
  position: relative; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 28px;
}
.slider-nav button {
  width: 28px; height: 28px; border: 0; padding: 0; cursor: pointer;
  background: transparent; display: grid; place-items: center;
}
.slider-nav button::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.32);
}
.slider-nav button.is-on::after {
  width: 22px; border-radius: 99px; background: var(--gold);
}

.marquee {
  border-block: 1px solid var(--line); overflow: hidden; padding: 14px 0; color: var(--muted);
  font-family: var(--font-d); letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
}
.marquee-track { display: flex; gap: 40px; width: max-content; animation: mq 32s linear infinite; }
@keyframes mq { to { transform: translateX(-50%); } }

section { padding: clamp(48px, 8vw, 88px) 0; }
.sec-tight { padding-top: 0; }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(1.5rem, 4vw, 2.6rem); margin: 8px 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
.card:hover { border-color: rgba(212,176,106,.35); }
.card img { height: 190px; width: 100%; object-fit: cover; }
.card .pad, .pad { padding: 20px; }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.muted { color: var(--muted); }
.num { color: var(--gold); font-family: var(--font-d); font-size: 13px; }

.page-banner {
  position: relative; min-height: min(52vh, 520px); display: grid; align-items: end;
  background: #000 center/cover no-repeat;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,9,.2), rgba(7,7,9,.88));
}
.page-banner .wrap { position: relative; z-index: 1; padding: 100px 0 40px; }
.prose { max-width: 44rem; }
.prose p { color: #d2cbc0; }
.list-check { padding: 0; list-style: none; margin: 0; }
.list-check li { padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid var(--line); color: #d2cbc0; }
.list-check li::before { content: ""; position: absolute; left: 0; top: 20px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.steps-2 { grid-template-columns: 1fr 1fr; }
.step { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-2); }
.sig { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sig-card {
  position: relative; min-height: 420px; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); display: block;
}
.sig-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sig-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,9,.15) 20%, rgba(7,7,9,.88) 100%);
}
.sig-copy { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 24px; }
.sig-copy h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 8px 0; }
.sig-copy p { color: #d7d0c4; margin: 0; max-width: 36rem; }
.sig-card:hover { border-color: rgba(212,176,106,.45); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: 13px; color: var(--gold-2); }
.cta-row {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center;
}
.cta-row h2 { margin: 0; font-size: clamp(1.25rem, 3vw, 1.8rem); }

.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%; background: #121218; border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); padding: 12px 14px; font: inherit; font-size: 16px;
  min-height: 48px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { justify-self: start; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; }
.alert-ok { background: rgba(159,212,179,.12); color: var(--ok); }
.alert-err { background: rgba(232,160,160,.12); color: var(--danger); }

.site-footer {
  border-top: 1px solid var(--line); padding: 40px 0 calc(24px + env(safe-area-inset-bottom));
  background: #050506;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h4 { font-family: var(--font-d); margin: 0 0 12px; }
.site-footer a { display: block; color: var(--muted); padding: 6px 0; font-size: 14px; min-height: 36px; }
.site-footer a:hover { color: var(--gold-2); }
.legal {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 1100px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: grid; place-content: center; }
  .nav {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    top: calc(var(--header-h) + env(safe-area-inset-top));
    background: rgba(10, 10, 14, .98);
    border-bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 12px var(--pad) calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 45;
  }
  .nav.is-open { display: flex; }
  body.is-nav-open { overflow: hidden; }
  .nav a, .nav-drop > span { min-height: 44px; }
  .nav-drop ul {
    position: static; display: block; box-shadow: none; border: 0; background: transparent;
    min-width: 0; padding: 0 0 8px 8px;
  }
  .nav-drop > span {
    color: var(--gold); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    padding: 14px 12px 4px; min-height: 0;
  }
  .nav .btn-gold { width: 100%; margin-top: 10px; }
}

@media (max-width: 960px) {
  .grid-3, .steps, .foot-grid, .sig { grid-template-columns: 1fr 1fr; }
  .steps-2 { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-top: 12vh; max-width: none; }
  .sig-card { min-height: 340px; }
  .page-banner { min-height: 42vh; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .logo span:last-child { font-size: 15px; }
  .grid-3, .grid-2, .steps, .steps-2, .foot-grid, .sig { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: stretch; }
  .sec-head .btn { width: 100%; }
  .hero-slider {
    min-height: calc(100svh - var(--header-h) - env(safe-area-inset-top));
  }
  .hero-copy {
    padding: 72px 0 28px;
    margin-inline: auto;
    width: min(var(--max), calc(100% - (var(--pad) * 2)));
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn, .form .btn, .cta-row .btn { width: 100%; }
  .page-banner { min-height: 0; }
  .page-banner .wrap { padding: 72px 0 28px; }
  .card img { height: 168px; }
  .sig-card { min-height: 280px; }
  .sig-copy { padding: 18px; }
  .marquee { font-size: 11px; padding: 12px 0; }
  .cta-row { align-items: stretch; }
}

@media (max-width: 640px) and (max-height: 720px) {
  .hero-slider { min-height: 0; }
  .hero-copy { padding-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slide { transition: none; }
  .marquee-track { animation: none; }
}
