*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #232020;
  --bg-dark: #1a1717;
  --bg-card: #2b2828;
  --gold: #c9a84c;
  --gold-lt: #eeda72;
  --gold-dk: #8a6c1a;
  --gold-grad: linear-gradient(135deg, #8a6c1a 0%, #c9a84c 28%, #eed970 50%, #c9a84c 72%, #8a6c1a 100%);
  --text: #f0ebe0;
  --text-dim: #a99d8d;
  --text-muted: #746b62;
  --border: rgba(201,168,76,0.16);
  --r: 8px;
  --max: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--r);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-gold { background: var(--gold-grad); color: #1a1717; }
.btn-gold:hover { opacity: 0.86; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(201,168,76,0.5); color: var(--gold); }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  padding: 0 5%;
  background: rgba(26,23,23,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a, .nav-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-phone:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 15px; }
.nav-phone { font-size: 15px; letter-spacing: 0.04em; }

.hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 92px 5%;
  background:
    linear-gradient(rgba(18,15,15,0.72), rgba(18,15,15,0.86)),
    url('https://images.unsplash.com/photo-1555963966-b7ae5404b6ed?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-inner { max-width: var(--max); width: 100%; margin: 0 auto; }
.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.03em;
}

h1 { max-width: 860px; font-size: clamp(34px, 5vw, 62px); margin-bottom: 18px; }
.hero p { max-width: 680px; color: var(--text-dim); font-size: clamp(16px, 2vw, 19px); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.sec { padding: 78px 5%; }
.sec-dark { background: var(--bg-dark); }
.sec-inner { max-width: var(--max); margin: 0 auto; }
.section-kicker {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 { font-size: clamp(27px, 3vw, 40px); margin-bottom: 22px; }
h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
p { color: var(--text-dim); margin-bottom: 16px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.copy-block p { font-size: 16px; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 24px 0 0; }
.check-list li {
  color: var(--text-dim);
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-grad);
}

.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
}
.side-card + .side-card { margin-top: 18px; }
.side-card a { color: var(--gold-lt); text-decoration: none; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.info-card p { font-size: 14px; margin-bottom: 0; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.link-tile {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.link-tile:hover { color: var(--gold-lt); border-color: rgba(201,168,76,0.48); transform: translateY(-1px); }

.cta-band {
  padding: 74px 5%;
  text-align: center;
  background:
    linear-gradient(rgba(14,11,11,0.82), rgba(14,11,11,0.86)),
    url('https://images.unsplash.com/photo-1597502310092-31cdaa35b46d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}
.cta-band p { max-width: 640px; margin: 0 auto 28px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

footer {
  background: #151212;
  padding: 32px 5%;
  border-top: 1px solid var(--border);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-logo { height: 40px; }
.foot-copy { color: var(--text-muted); font-size: 13px; margin: 0; }
.foot-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.foot-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
.foot-links a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .content-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .link-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  nav { height: auto; min-height: 70px; align-items: center; }
  .nav-links, .nav-phone { display: none; }
  .hero { min-height: 58vh; padding-top: 72px; }
  .card-grid, .link-grid { grid-template-columns: 1fr; }
}
