:root {
  --bg: #0d0b08;
  --surface: #171310;
  --surface-2: #1e1915;
  --line: rgba(200, 163, 92, 0.22);
  --text: #f3ece1;
  --muted: #a89b85;
  --gold: #c8a35c;
  --gold-soft: #e6cf9a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -10%, rgba(200, 163, 92, 0.12), transparent 34%),
    linear-gradient(180deg, #100d09 0%, #0d0b08 100%);
  line-height: 1.7;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(13, 11, 8, 0.88);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.brand small {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.button:hover,
button.button:hover {
  background: var(--gold);
  color: #171310;
}

.button.ghost {
  border-color: var(--line);
  color: var(--muted);
}

.button.ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}

.hero,
.page-hero,
.section {
  padding: 84px 0;
}

.hero-grid,
.split,
.grid-3,
.grid-4,
.stats,
.footer-grid,
.faq-list {
  display: grid;
  gap: 20px;
}

.hero-grid,
.split {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.grid-3,
.stats {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.12;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--text);
}

h3 {
  font-size: 22px;
  color: var(--gold-soft);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-copy p {
  font-size: 18px;
  max-width: 700px;
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin: 28px 0;
}

.card,
.photo-card,
.faq-item,
.contact-form-wrap {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.faq-item,
.contact-form-wrap {
  padding: 28px;
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 18px;
}

.muted-box {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.faq-item button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--gold-soft);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
}

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

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.accent {
  color: var(--gold-soft);
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

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

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 72px;
    width: min(320px, calc(100% - 40px));
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .hero,
  .page-hero,
  .section {
    padding: 52px 0;
  }

  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid,
  .photo-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }
}
