:root {
  --black: #080808;
  --dark: #111111;
  --dark2: #191919;
  --gold: #c9a34f;
  --gold2: #f4d27a;
  --text: #f7f2e8;
  --muted: #c9c1b3;
  --line: rgba(201, 163, 79, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.brand strong {
  display: block;
  font-size: 24px;
  color: var(--gold2);
  letter-spacing: 0.5px;
}

.brand span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

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

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(201, 163, 79, 0.26), transparent 35%),
    linear-gradient(135deg, #080808 0%, #17120a 55%, #080808 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 58px;
  padding: 80px 0;
}

.label {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.center {
  text-align: center;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 18px;
}

.intro {
  color: var(--muted);
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 34px;
}

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

.btn,
button {
  border: none;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.primary,
button {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #12100a;
  box-shadow: 0 14px 40px rgba(201, 163, 79, 0.22);
}

.secondary {
  color: var(--gold2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  text-align: center;
}

.hero-card img {
  width: 100%;
  border-radius: 20px;
  display: block;
  margin-bottom: 18px;
}

.hero-card p {
  color: var(--gold2);
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section > .container > p,
.section-head p {
  color: var(--muted);
}

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

.card {
  background: linear-gradient(180deg, var(--dark2), var(--dark));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 210, 122, 0.7);
}

.card h3 {
  color: var(--gold2);
  font-size: 22px;
  margin-bottom: 12px;
}

.card p,
.about p,
.contact p {
  color: var(--muted);
}

.about {
  background:
    radial-gradient(circle at left, rgba(201, 163, 79, 0.18), transparent 32%),
    #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about h2,
.contact h2 {
  text-align: left;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.quote {
  color: var(--gold2);
  font-size: 30px;
  line-height: 1.3;
  background: rgba(255,255,255,0.04);
  border-left: 5px solid var(--gold);
  border-radius: 20px;
  padding: 36px;
}

.contact-box {
  margin-top: 25px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.contact-box p {
  margin-bottom: 10px;
}

.form {
  background: linear-gradient(180deg, #181818, #101010);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
}

label {
  display: block;
  color: var(--gold2);
  font-weight: 800;
  margin-bottom: 17px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: #090909;
  color: white;
  border: 1px solid rgba(201, 163, 79, 0.22);
  border-radius: 14px;
  font: inherit;
}

footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: var(--gold2);
  margin-left: 18px;
  text-decoration: none;
}

.legal {
  padding: 70px 0;
  max-width: 850px;
}

.legal h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.legal h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 28px;
}

.legal p {
  margin-bottom: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer a {
    margin-left: 0;
    margin-right: 15px;
  }
}
