:root {
  --bg: #101112;
  --panel: #181a1c;
  --panel-light: #222529;
  --text: #f4f1ea;
  --muted: #b8b1a5;
  --accent: #c47a36;
  --accent-light: #e0a15d;
  --border: #33373c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 17, 18, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.logo span { color: var(--accent-light); }
nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}
nav a {
  color: var(--muted);
  text-decoration: none;
}
nav a:hover { color: var(--text); }

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(196, 122, 54, 0.22), transparent 34%),
    linear-gradient(135deg, #101112 0%, #1b1d20 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); max-width: 750px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 800px; }
h3 { font-size: 1.35rem; }
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 650px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.primary { background: var(--accent); color: #111; }
.secondary { border: 1px solid var(--border); color: var(--text); }
.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  min-height: 430px;
  padding: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.photo-placeholder, .gallery-item {
  height: 100%;
  min-height: 390px;
  border: 2px dashed #484d54;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
  background: linear-gradient(145deg, #17191b, #25282c);
}

.section { padding: 80px 0; }
.dark-section { background: #0c0d0e; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.card p, .split p, .contact-box p, .note { color: var(--muted); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.gallery-item {
  min-height: 220px;
  font-weight: 700;
}
.gallery-item span {
  background: rgba(16,17,18,0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-section { padding-top: 40px; }
.contact-box {
  background: linear-gradient(135deg, var(--panel), var(--panel-light));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 42px;
}
.contact-lines a { color: var(--accent-light); }
footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
footer a { color: var(--muted); text-decoration: none; }

@media (max-width: 820px) {
  .nav-wrap { flex-direction: column; padding: 18px 0; }
  nav { flex-wrap: wrap; justify-content: center; }
  .hero { padding-top: 55px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .three, .gallery { grid-template-columns: 1fr; }
  .hero-card { min-height: 260px; }
  .photo-placeholder { min-height: 230px; }
  .footer-wrap { flex-direction: column; }
}
