/* ── White Riot Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --coral: #D85A30;
  --coral-light: #FAECE7;
  --coral-dark: #993C1D;
  --ink: #1a1a1a;
  --ink2: #3d3d3a;
  --muted: #888780;
  --faint: #f5f3ef;
  --card: #ffffff;
  --rule: #e8e5e0;
  --gold: #B8973A;
  --max-w: 1100px;
  --pad: 40px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --coral: #F0997B;
    --coral-light: #2a1a14;
    --ink: #f0ede8;
    --ink2: #B4B2A9;
    --muted: #5F5E5A;
    --faint: #141414;
    --card: #1e1e1e;
    --rule: #2a2a2a;
    --gold: #D4AF55;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--faint);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--faint);
  border-bottom: 0.5px solid var(--rule);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-slash {
  width: 3px; height: 22px;
  background: var(--coral); border-radius: 2px;
  transform: rotate(-12deg);
}
.nav-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px; font-weight: 700; color: var(--ink);
}
.nav-wordmark span { color: var(--coral); }

.nav-links {
  display: flex; gap: 24px; align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--muted); text-decoration: none;
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--coral); font-weight: 500; }

.nav-cta {
  background: var(--coral); color: #fff;
  border: none; border-radius: 20px;
  padding: 8px 20px; font-size: 13px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: opacity 0.18s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { opacity: 0.88; }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.25s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: var(--faint);
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; color: var(--ink);
  text-decoration: none; padding: 16px 0;
  border-bottom: 0.5px solid var(--rule);
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mob-cta {
  margin-top: 32px;
  background: var(--coral); color: #fff;
  border-radius: 28px; padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; text-align: center; border: none;
}

/* ── SECTION CHROME ── */
.section { padding: 80px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section-label {
  font-size: 11px; letter-spacing: 2.5px;
  color: var(--coral); margin-bottom: 14px;
  text-transform: uppercase; font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; color: var(--ink);
  margin-bottom: 14px; line-height: 1.25;
}
.section-sub {
  font-size: 16px; color: var(--ink2);
  line-height: 1.75; max-width: 520px;
  margin-bottom: 44px;
}
.rule { border: none; border-top: 0.5px solid var(--rule); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--coral); color: #fff;
  border: none; border-radius: 28px;
  padding: 13px 28px; font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: opacity 0.18s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 0.5px solid var(--rule); border-radius: 28px;
  padding: 13px 28px; font-size: 14px;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.18s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { background: var(--card); }
.btn-gold {
  background: var(--gold); color: #1a1a1a;
  border: none; border-radius: 28px;
  padding: 13px 28px; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: opacity 0.18s;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { opacity: 0.9; }
.btn-white {
  background: #fff; color: var(--coral);
  border: none; border-radius: 28px;
  padding: 13px 28px; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-block; font-family: 'DM Sans', sans-serif;
}

/* ── FOOTER ── */
.footer {
  padding: 28px 0;
  border-top: 0.5px solid var(--rule);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.footer-logo span { color: var(--coral); }
.footer-right { font-size: 12px; color: var(--muted); }

/* ── CONCENTRIC CIRCLES MOTIF ── */
.circles-bg {
  position: absolute; pointer-events: none;
  opacity: 0.04; overflow: hidden;
}
.circles-bg svg { width: 100%; height: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --pad: 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .section-title { font-size: 22px; }
}
