/* Eternal Saturday — for-profit play / make spaces
   Large type, high contrast, low-vision friendly */

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

:root {
  --bg: #12100e;
  --bg-2: #1c1814;
  --bg-card: #252019;
  --text: #f7f1e6;
  --muted: #c4b5a2;
  --accent: #e8a838;
  --accent-2: #ffc857;
  --accent-dim: #a67c28;
  --line: #3d342a;
  --ok: #8fd48a;
  --danger: #e88a7a;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --body: 1.25rem;   /* ~20px */
  --lead: 1.45rem;
  --h1: clamp(2.4rem, 5vw, 3.6rem);
  --h2: clamp(1.8rem, 3.5vw, 2.4rem);
  --h3: 1.45rem;
  --max: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 16, 14, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.logo span { color: var(--accent); }

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.35rem 0.15rem;
  border-bottom: 3px solid transparent;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent-2);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: var(--bg-card);
  border: 2px solid var(--line);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .nav-list.open { display: flex; }
}

/* Layout */
main { flex: 1; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(ellipse 90% 70% at 80% 0%, rgba(232, 168, 56, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255, 200, 87, 0.08), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--display);
  font-size: var(--h1);
  line-height: 1.15;
  font-weight: 700;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: var(--lead);
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}
.btn-primary {
  background: var(--accent);
  color: #1a1208;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2);
  color: #1a1208;
  border-color: var(--accent-2);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--muted);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}
.trust-row span::before {
  content: "·";
  margin-right: 0.75rem;
  color: var(--accent-dim);
}
.trust-row span:first-child::before { content: none; margin: 0; }

/* Sections */
.section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: var(--bg-2); }

h2 {
  font-family: var(--display);
  font-size: var(--h2);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h3 {
  font-size: var(--h3);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--accent-2);
}

.section-intro {
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 1.75rem;
  font-size: 1.2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.card p { color: var(--muted); }
.card strong { color: var(--text); }

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(232, 168, 56, 0.15);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}
.compare th, .compare td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare th {
  background: var(--bg-card);
  color: var(--accent-2);
  font-size: 1.05rem;
}
.compare td { color: var(--muted); }
.compare td:first-child { color: var(--text); font-weight: 600; width: 28%; }
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote {
  border-left: 5px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.4;
  max-width: 36rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0;
}
.pill-list li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  color: var(--text);
}

/* Forms */
.form {
  max-width: 36rem;
  display: grid;
  gap: 1.1rem;
}
label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.hint {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.25rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: #0d0b09;
  color: var(--text);
}
textarea { min-height: 8rem; resize: vertical; }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  color: var(--muted);
  font-size: 1.05rem;
}
.flash {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.flash-ok {
  background: rgba(143, 212, 138, 0.15);
  border: 2px solid var(--ok);
  color: var(--ok);
}
.flash-err {
  background: rgba(232, 138, 122, 0.12);
  border: 2px solid var(--danger);
  color: var(--danger);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  background: #0a0908;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
}
.site-footer .wrap {
  display: grid;
  gap: 1rem;
}
.site-footer strong { color: var(--text); }
.site-footer .fine {
  font-size: 0.98rem;
  max-width: 48rem;
  line-height: 1.55;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--accent-2); }

.page-hero {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { margin-bottom: 0; }

.prose p { margin-bottom: 1rem; color: var(--muted); max-width: 46rem; }
.prose p strong { color: var(--text); }
.prose ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--muted);
  max-width: 46rem;
}
.prose li { margin-bottom: 0.45rem; }
