:root {
  color-scheme: dark;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #0a0a0a;
  color: #f4f4f2;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-image: radial-gradient(circle at 50% -10%, rgba(255,255,255,0.06), transparent 55%);
  min-height: 100vh;
}

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

::selection { background: #fff; color: #0a0a0a; }

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

header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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: #f4f4f2;
}

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.brand-text {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.brand-text .sep { color: rgba(191,191,191,0.6); margin: 0 0.25em; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: #f4f4f2;
  transition: border-color 0.3s, background 0.3s;
}
.back:hover {
  border-color: #e11d3a;
  background: rgba(255,255,255,0.03);
}

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(191,191,191,0.8);
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #e11d3a;
}

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 em { font-style: italic; color: #bfbfbf; }
h1 .accent { color: #e11d3a; }

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.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f4f4f2;
  margin: 2rem 0 0.5rem;
}

p, li { color: #bfbfbf; }
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: #f4f4f2; 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(255,255,255,0.18), transparent);
  margin: 3rem 0;
  border: 0;
}

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

footer.site {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
  font-size: 0.78rem;
  color: rgba(191,191,191,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: #fff; }

@media (max-width: 540px) {
  .site-inner { height: 64px; }
  .brand-text { display: none; }
  main { padding: 3.5rem 0 3.5rem; }
}
