﻿:root {
  --black: #050505;
  --charcoal: #151515;
  --gold: #f7b500;
  --gold-soft: #ffd35c;
  --white: #ffffff;
  --muted: #d8d8d8;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 190px;
  max-width: 42vw;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta {
  color: var(--black);
  background: var(--gold);
  padding: 11px 14px;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: 138px clamp(18px, 5vw, 72px) 56px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.44)),
    url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1800&q=82") center right / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: var(--gold);
}

.hero-copy,
.hero-card { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark { color: #6f5200; }

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

h3 {
  font-size: 25px;
  line-height: 1.06;
  text-transform: uppercase;
}

.lead,
.section-head p,
.split p,
.social p,
.contact p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero .lead { max-width: 670px; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary { color: var(--black); background: var(--gold); }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.08); }

.hero-card {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-card div {
  padding: 24px;
  background: rgba(8, 8, 8, 0.9);
}

.hero-card strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  min-height: 266px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #1b1b1b, #0b0b0b);
}

.card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.card h3 { margin: 28px 0 12px; }
.card p { color: var(--muted); }
.card.popular { border-color: var(--gold); }

.light {
  color: var(--black);
  background: #f5f5f5;
}

.light p { color: #3f3f3f; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  flex: 0 0 14px;
  height: 14px;
  margin-top: 6px;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 58%, 40% 100%, 100% 18%, 84% 4%, 38% 68%);
}

.assessment-box {
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.assessment-box h3 { color: var(--gold); }
.assessment-box p { color: var(--muted); }

.social {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.97), rgba(5,5,5,0.82)),
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-grid div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.social-grid strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
}

.social-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 72px);
  padding: 76px clamp(18px, 5vw, 72px);
  color: var(--black);
  background: var(--gold);
}

.contact p { color: #2c2200; }

.contact-panel {
  display: grid;
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  font-size: 18px;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #a8a8a8;
  background: #050505;
}

@media (max-width: 1000px) {
  nav a:not(.nav-cta) { display: none; }
  .hero,
  .split,
  .social,
  .contact { grid-template-columns: 1fr; }
  .cards.four,
  .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: 90vh; }
}

@media (max-width: 640px) {
  .site-header { min-height: 72px; }
  .brand img { width: 154px; }
  .nav-cta { padding: 10px 11px; font-size: 12px; }
  .hero { padding-top: 112px; }
  .actions .button { width: 100%; }
  .cards.four,
  .cards.three,
  .social-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  footer { flex-direction: column; }
}
