*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --accent: #c9a96e;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Georgia', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.75;
}

/* ── Nav ── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--text);
  opacity: 1;
}

/* ── Main ── */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Hero ── */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 3rem;
}

/* ── Coming soon banner ── */

.coming-soon {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
}

/* ── Section shared ── */

.section {
  padding: 5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 2.5rem;
}

/* ── About page blocks ── */

.about-block {
  padding: 4rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.about-block + .about-block {
  border-top: 1px solid var(--border);
}

.about-block .section-label {
  margin-bottom: 1.25rem;
}

.about-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.about-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-block p:last-child {
  margin-bottom: 0;
}

/* ── Footer ── */

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  opacity: 1;
}

/* ── Responsive ── */

@media (max-width: 600px) {
  nav {
    padding: 1.25rem 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
  }
}
