* {
  box-sizing: border-box;
}

:root {
  --black: #070707;
  --charcoal: #111;
  --gold: #caa24d;
  --gold-light: #e0c070;
  --white: #f5f1e8;
  --muted: #b7b0a3;
  --line: rgba(202, 162, 77, 0.3);
}

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

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

.topbar {
  background: #080808;
  border-bottom: 1px solid var(--line);
}

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

.nav-brand {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 2px;
}

.nav-brand span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-top: -4px;
}

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

nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

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

.hero {
  background: #050505;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #090909, #141414);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 14px;
}

h1, h2 {
  font-family: Georgia, serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.cards-section {
  background: #f4f1eb;
  color: #111;
  padding: 70px 0;
}

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

.cards article {
  text-align: center;
  padding: 18px 30px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.cards article:last-child {
  border-right: 0;
}

.cards h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.cards p {
  color: #333;
  font-size: 0.98rem;
}

.icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.dark-section {
  padding: 76px 0;
  background: #0b0b0b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

li {
  margin-bottom: 14px;
}

.contact {
  padding: 76px 0;
  text-align: center;
}

.contact-box {
  max-width: 740px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
  }

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

  .cards article {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding-bottom: 34px;
  }

  .cards article:last-child {
    border-bottom: 0;
  }
}
