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

:root {
  --bg: #0b0b0b;
  --panel: #141414;
  --text: #f3efe7;
  --muted: #cec6ba;
  --gold: #d4af6a;
  --gold-soft: rgba(212, 175, 106, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-soft);
  position: sticky;
  top: 0;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 0.4px;
}

nav {
  display: flex;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.8;
}

.hero {
  padding: 110px 0 80px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 760px;
  color: #d8d2c7;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  font-weight: bold;
}

.btn-secondary {
  color: var(--text);
  background: transparent;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 28px;
}

.two-col,
.grid {
  display: grid;
  gap: 20px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--gold-soft);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
  color: #f8f2e8;
}

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

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--gold-soft);
  background: #111;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.form-status {
  color: var(--gold);
  min-height: 24px;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(212, 175, 106, 0.15);
  color: #bdb3a4;
  text-align: center;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 0 14px 0 0;
  }

  .hero {
    padding-top: 72px;
  }
}
