:root {
  --bg: #1a1715;
  --text: #f2f3f5;
  --muted: #b3ada7;
  --rule: #332e2a;
  --accent: #f5b733;
  --maxw: 560px;
  --topbar-h: 56px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Sticky logo bar — always visible */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(26, 23, 21, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.logo { height: 26px; width: auto; }

/* Big centered logo at the top of the hero */
.hero-logo {
  display: block;
  width: 260px;
  max-width: 78%;
  height: auto;
  margin: 4px auto 28px;
}

/* Sections */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 44px 24px;
  scroll-margin-top: var(--topbar-h);
}
.section + .section { border-top: 1px solid var(--rule); }

.hero { padding-top: 56px; padding-bottom: 52px; }

.label {
  display: block;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: var(--accent); margin-bottom: 14px;
}
.label.bridge { text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 500; }

h1 { font-size: 34px; line-height: 1.1; font-weight: 800; margin-bottom: 18px; }
h2 { font-size: 27px; line-height: 1.15; font-weight: 700; margin-bottom: 16px; }

p { font-size: 16px; color: var(--muted); margin-bottom: 14px; }
.section ul { list-style: none; margin-bottom: 14px; }
.section li { font-size: 16px; line-height: 1.7; color: var(--muted); padding-left: 18px; position: relative; }
.section li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

em { color: var(--text); font-style: normal; font-weight: 600; }
strong { color: var(--text); }

.punch {
  color: var(--accent); font-weight: 600; font-size: 16px;
  border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 4px;
}

/* Images drop in anywhere inside a section and are styled automatically */
.section img {
  display: block; width: 100%; height: auto;
  border-radius: 14px; margin: 6px 0 16px;
}

/* Buttons / CTAs */
.cta {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 12px; padding: 14px 22px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  text-decoration: none; margin-top: 8px;
}
.cta:active { transform: translateY(1px); }
.micro { font-size: 13px; margin-top: 14px; }

/* Signup form + sliders */
.signup-section { padding-bottom: 64px; }
.signup { margin-top: 16px; }
.signup .email {
  width: 100%; background: #221e1b; color: var(--text);
  border: 1px solid var(--rule); border-radius: 10px; padding: 14px; font-size: 16px;
}
.signup .email::placeholder { color: #6f6a64; }

.toggle-row { text-align: right; margin: 10px 0 18px; }
.toggle { display: inline-flex; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.toggle button {
  background: transparent; color: var(--muted); border: none;
  padding: 6px 13px; font-size: 13px; font-weight: 600; cursor: pointer;
}
.toggle button.on { background: var(--accent); color: var(--bg); }

.sfield { margin-bottom: 22px; }
.sfield .q {
  font-size: 14px; font-weight: 600; margin-bottom: 4px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.readout { color: var(--accent); font-weight: 700; font-size: 15px; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 6px; background: var(--rule); outline: none; margin: 8px 0 2px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px;
  border-radius: 50%; background: var(--accent); cursor: pointer;
  border: 3px solid var(--bg); box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent);
  cursor: pointer; border: 3px solid var(--bg);
}
input[type="range"].spectrum { background: linear-gradient(90deg, #7aa2c4, var(--rule), #e0a93a); }

.poles { display: flex; justify-content: space-between; font-size: 11px; color: #8a847e; margin-bottom: 2px; }
.spectrum-val { text-align: center; color: var(--accent); font-weight: 700; font-size: 15px; margin-top: 8px; }

.signup .cta { display: block; width: 100%; text-align: center; margin-top: 6px; }
.form-error { color: #ff6b6b; font-size: 14px; margin-top: 8px; }
.confirm { color: var(--accent); font-size: 17px; font-weight: 600; margin-top: 18px; }

#hours { color: var(--accent); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
