* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --charcoal: #111111;
  --panel: #171717;
  --gold: #c8a15a;
  --gold-light: #d9b36a;
  --white: #ffffff;
  --muted: #cfcfcf;
  --line: rgba(200, 161, 90, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Avenir Next, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 92px;
  padding: 0 7%;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 230px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--gold);
}

.nav-cta {
  color: #060606 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 13px 18px;
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 92px);
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 161, 90, 0.16), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(200, 161, 90, 0.08), transparent 30%),
    linear-gradient(135deg, #050505 0%, #141414 100%);
}

.hero-logo {
  width: min(440px, 88vw);
  margin-bottom: 34px;
  display: block;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -3px;
  max-width: 850px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -2px;
  margin-bottom: 22px;
}

h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.lead,
.card p,
.split p,
.quote-card p,
details p,
.contact p,
footer p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  font-size: 20px;
  max-width: 760px;
  margin: 25px 0 34px;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}

.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050505;
}

.secondary {
  border-color: var(--line);
  color: var(--white);
}

.hero-panel,
.card,
.quote-card,
details,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.hero-panel {
  border-radius: 34px;
  padding: 44px;
}

.panel-top {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: 34px 7%;
  border-right: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 100px 7%;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.card,
.quote-card,
details {
  border-radius: 28px;
  padding: 32px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 55px;
  align-items: center;
  background: var(--charcoal);
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

li {
  margin: 14px 0;
  color: #eeeeee;
}

li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 12px;
}

.quote-card img {
  width: 230px;
  margin-bottom: 26px;
}

.full {
  width: 100%;
  margin-top: 18px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.location-grid span {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  color: #eeeeee;
  font-weight: 700;
}

.faq-section {
  background: #090909;
}

details {
  margin-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 55px;
  background: #f4f2ef;
  color: #080808;
}

.contact .eyebrow {
  color: #9b7438;
}

.contact p {
  color: #555;
}

.contact-lines {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-form {
  background: white;
  border-color: rgba(0,0,0,0.08);
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  padding: 42px 7%;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer img {
  width: 220px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 18px 6%;
  }

  .brand img {
    width: 190px;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 6%;
  }

  .cards,
  .stats,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 28px;
  }

  h1 {
    letter-spacing: -1px;
  }

  footer {
    display: grid;
    gap: 20px;
  }
}
