:root {
  color-scheme: dark;
  --gold: #c89a3a;
  --gold-soft: #f4e3b1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  background: #06070a;
  color: #ece9e2;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-image:
    radial-gradient(900px circle at 80% -10%, rgba(200,154,58,0.10), transparent 55%),
    radial-gradient(700px circle at -10% 60%, rgba(200,154,58,0.06), transparent 50%);
  min-height: 100vh;
}

a { color: inherit; }
a:hover { color: #f4e3b1; }

::selection { background: var(--gold); color: #06070a; }

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6,7,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,154,58,0.18);
}

.site-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ece9e2;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
.wordmark-light { color: #ece9e2; }
.wordmark-gold {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #f4e3b1, #c89a3a 55%, #8d6213);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wordmark-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.55em;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #f4e3b1, #c89a3a 60%, #8d6213);
  box-shadow: 0 0 8px rgba(200,154,58,0.7);
  border-radius: 1px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(200,154,58,0.4);
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: #ece9e2;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.back:hover {
  border-color: var(--gold);
  background: rgba(200,154,58,0.06);
  color: var(--gold-soft);
}

main { padding: 6rem 0 5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(220,180,90,0.9);
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 2rem;
  color: #fff;
  letter-spacing: -0.01em;
}
h1 .accent {
  background: linear-gradient(135deg, #f4e3b1, #c89a3a 60%, #8d6213);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 3rem 0 0.85rem;
  color: #fff;
}

h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin: 2rem 0 0.5rem;
}

p, li { color: #b8bcc5; }
p { margin: 0 0 1rem; max-width: 70ch; }

ul, ol { padding-left: 1.25rem; margin: 0 0 1.25rem; }
li { margin-bottom: 0.4rem; }

strong { color: #ece9e2; font-weight: 600; }

.lead {
  font-size: 1.05rem;
  color: #d8d8d8;
  margin-bottom: 2rem;
  max-width: 60ch;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,154,58,0.35), transparent);
  margin: 3rem 0;
  border: 0;
}

.note {
  border: 1px solid rgba(200,154,58,0.25);
  background: rgba(200,154,58,0.05);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  font-size: 0.92rem;
  color: #ece9e2;
  margin: 2rem 0;
}
.note strong { display: block; margin-bottom: 0.25rem; color: #fff; }

footer.site {
  border-top: 1px solid rgba(200,154,58,0.18);
  padding: 2.5rem 0;
  font-size: 0.78rem;
  color: rgba(184,188,197,0.6);
}
footer .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
footer a:hover { color: var(--gold-soft); }

@media (max-width: 540px) {
  .site-inner { height: 64px; }
  .wordmark { font-size: 1rem; letter-spacing: 0.16em; }
  main { padding: 3.5rem 0 3.5rem; }
}
