:root {
  --accent: #c45c26;
  --accent-2: #9a4318;
  --ink: #14181d;
  --muted: #5d646c;
  --line: #e6e2db;
  --paper: #f6f3ee;
  --white: #fff;
  --shadow: 0 18px 50px rgba(20, 24, 29, 0.08);
  --radius: 18px;
  --max: 1120px;
  --header: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 46px; width: auto; }
.logo span { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .04em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links a { font-size: 14px; font-weight: 600; color: #2b333b; }
.nav-links a:hover, .nav-links a.is-active { color: var(--accent); }
.nav-item { position: relative; }
.nav-item .submenu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  list-style: none;
}
.nav-item:hover .submenu, .nav-item:focus-within .submenu { display: grid; gap: 2px; }
.submenu a { display: block; padding: 8px 10px; border-radius: 10px; }
.submenu a:hover { background: var(--paper); }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
}
.burger span { display: block; height: 2px; margin: 6px 8px; background: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-line { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-line:hover { background: #fff; color: var(--ink); }

.hero {
  position: relative;
  min-height: calc(78vh - var(--header));
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,14,18,.48), rgba(12,14,18,.78)),
    url("/assets/img/hero.png") center/cover;
}
.hero-copy { position: relative; z-index: 1; text-align: center; padding: 88px 0; }
.kicker {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffd8c2;
  margin-bottom: 14px;
}
.hero h1 {
  max-width: 16ch;
  margin: 0 auto;
  font-size: clamp(40px, 8vw, 76px);
  line-height: .95;
  letter-spacing: -.04em;
}
.hero p { max-width: 56ch; margin: 18px auto 28px; color: #e8edf3; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  color: #fff;
}
.stat { background: #171b20; padding: 28px 22px; }
.stat strong { display: block; font-size: 20px; letter-spacing: -.03em; }
.stat span { color: #a9b4bf; font-size: 13px; }

.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; line-height: 1.1; }
.lead { color: var(--muted); margin-top: 12px; font-size: 17px; }

.grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}
.card:hover { transform: translateY(-2px); }
.card-body { padding: 22px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card img.icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 22px auto 0;
}
.card img.cover {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.band { background: var(--paper); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 24px; width: 100%; height: 360px; object-fit: cover; }

.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}
.partners img {
  max-height: 42px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: .85;
}

.page-hero {
  padding: 72px 0 36px;
  background:
    linear-gradient(180deg, rgba(16,18,22,.72), rgba(16,18,22,.88)),
    url("/assets/img/hero.png") center/cover;
  color: #fff;
}
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: -.04em; }
.page-hero p { max-width: 56ch; margin-top: 12px; color: #e6ebf1; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.info-card, .form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}
.info-card p { color: var(--muted); }
.info-card a { color: var(--accent); font-weight: 700; }
label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--paper);
}
textarea { min-height: 140px; resize: vertical; }
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 8px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.check input { width: auto; }
.hp { position: absolute; left: -9999px; }
.form-status { margin-top: 14px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.legal { max-width: 760px; }
.legal h2 { margin: 32px 0 10px; font-size: 28px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 20px; margin-top: 10px; }

.cta-band { background: var(--ink); color: #fff; padding: 64px 0; }
.cta-band .wrap { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-band h2 { max-width: 16ch; }

.site-footer { background: #0d1218; color: #d5dbe2; padding: 56px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 28px; }
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 12px; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a:hover { color: #fff; }
.legal-line {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #8d97a3;
}

@media (max-width: 900px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    inset: var(--header) 16px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-item .submenu { position: static; display: none; box-shadow: none; border: 0; padding: 0 0 0 10px; }
  .nav-item.open .submenu, .nav-links.open .submenu { display: grid; }
  .stats, .grid-3, .grid-2, .split, .contact-grid, .foot-grid, .form-row, .partners, .checks {
    grid-template-columns: 1fr;
  }
  .cta-band .wrap, .legal-line { flex-direction: column; }
  .hero { min-height: 72vh; }
}
