:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --accent: #d4af37;
  --text-primary: #f5f5f5;
  --text-secondary: #aaaaaa;
  --border: #2a2a2a;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-primary);
}

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.muted {
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  padding: 0.75rem 1.25rem;
  border-radius: 0.35rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  opacity: 0.82;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

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

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}
