:root {
  --black: #050505;
  --near-black: #070707;
  --charcoal: #0d0d0d;
  --graphite: #121212;
  --graphite-2: #17140e;
  --line: rgba(235, 193, 47, 0.18);
  --line-soft: rgba(255, 255, 255, 0.09);
  --white: #f7f7f4;
  --muted: #bbb5aa;
  --muted-2: #8d877d;
  --gold: #ebc12f;
  --aged-gold: #b99632;
  --sand-detail: #efe7d8;
  --danger-free-green: #1f9d55;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --container: min(1160px, calc(100% - 40px));
  --radius: 6px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 92px 0;
  background: var(--black);
}

.section-alt {
  background: linear-gradient(180deg, var(--near-black), var(--charcoal));
}

.section-deep {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 66px 0;
  }
}
