/* service.css — Aleric-plumbing-inspired casino review.
   Bold sans display + copper accent + service-finder layout. */

/* ─────────────────────────────────────────────
   Tokens
   ───────────────────────────────────────────── */
:root {
  --s-bg:      #ecebe5;          /* cool off-white */
  --s-paper:   #f5f4ee;
  --s-paper-2: #dedcd2;
  --s-ink:     #161512;
  --s-ink-2:   #2e2c25;
  --s-ink-mute:#787266;
  --s-line:    rgba(22,21,18,0.10);
  --s-line-2:  rgba(22,21,18,0.18);
  --s-accent:  #b25928;          /* copper */
  --s-accent-2:#923f15;
  --s-cool:    #1f4659;          /* deep teal — for variant */

  --s-display: 'Bricolage Grotesque', 'Public Sans', system-ui, sans-serif;
  --s-sans:    'Geist', ui-sans-serif, system-ui, sans-serif;
  --s-mono:    'JetBrains Mono', ui-monospace, monospace;
}
[data-stheme="dark"] {
  --s-bg:      #131210;
  --s-paper:   #1e1c18;
  --s-paper-2: #2a2823;
  --s-ink:     #ecebe5;
  --s-ink-2:   #d5d2c4;
  --s-ink-mute:#8e887b;
  --s-line:    rgba(236,235,229,0.10);
  --s-line-2:  rgba(236,235,229,0.20);
}

/* ─────────────────────────────────────────────
   Reset
   ───────────────────────────────────────────── */
.s-page * { box-sizing: border-box; }
.s-page { margin: 0; padding: 0; }
.s-page button { font: inherit; cursor: pointer; }
.s-page a { color: inherit; text-decoration: none; }
.s-page ol, .s-page ul { list-style: none; margin: 0; padding: 0; }
.s-page input, .s-page select { font: inherit; }

.s-page {
  background: var(--s-bg);
  color: var(--s-ink);
  font-family: var(--s-sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  container-type: inline-size;
  container-name: spage;
  overflow-x: hidden;
}
.s-scroll-root {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

/* ─────────────────────────────────────────────
   Atoms
   ───────────────────────────────────────────── */
.s-brace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--s-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
  font-weight: 500;
  margin-bottom: 18px;
}
.s-brace-mark {
  font-family: var(--s-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--s-accent);
  letter-spacing: 0;
}

.s-sec-h {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.s-sec-h em {
  font-style: italic;
  color: var(--s-accent);
}
.s-sec-h--on-dark { color: var(--s-bg); }

/* Buttons — chunky sans, square-ish */
.s-btn {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: 999px;
  border: 0;
  font-family: var(--s-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.15s;
}
.s-btn > span:first-child {
  padding: 14px 8px 14px 22px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.s-btn-ico {
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin: 4px 4px 4px 0;
  transition: transform 0.25s cubic-bezier(0.2, 0, 0.2, 1), background 0.2s;
}
.s-btn:hover { transform: translateY(-1px); }
.s-btn:hover .s-btn-ico { transform: translateX(3px); }

.s-btn--dark {
  background: var(--s-ink);
  color: var(--s-bg);
}
.s-btn--dark .s-btn-ico {
  background: var(--s-accent);
  color: var(--s-bg);
}
.s-btn--dark:hover { background: var(--s-accent); }
.s-btn--dark:hover .s-btn-ico { background: var(--s-ink); }

.s-btn--ghost {
  background: transparent;
  color: var(--s-ink);
  border: 1px solid var(--s-line-2);
}
.s-btn--ghost .s-btn-ico {
  background: var(--s-ink);
  color: var(--s-bg);
}
.s-btn--ghost:hover {
  background: var(--s-ink);
  color: var(--s-bg);
  border-color: var(--s-ink);
}
.s-btn--ghost:hover .s-btn-ico {
  background: var(--s-accent);
}

.s-btn--light {
  background: var(--s-bg);
  color: var(--s-ink);
}
.s-btn--light .s-btn-ico {
  background: var(--s-accent);
  color: var(--s-bg);
}

/* Placeholder */
.s-ph {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--s-line);
  background: var(--s-paper-2);
}
.s-ph-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    rgba(22, 21, 18, 0.05) 14px 15px);
}
.s-ph-label {
  position: absolute;
  left: 12px; bottom: 10px;
  font-family: var(--s-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
}
.s-ph--dark { background: var(--s-ink); }
.s-ph--dark .s-ph-label { color: rgba(236, 235, 229, 0.5); }
.s-ph--dark .s-ph-stripes {
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    rgba(236, 235, 229, 0.05) 14px 15px);
}

/* Marquee */
.s-marq { width: 100%; overflow: hidden; display: flex; }
.s-marq-track {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  animation: s-scroll var(--s-speed, 40s) linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.s-marq-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
@keyframes s-scroll {
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   Header
   ───────────────────────────────────────────── */
.s-hd {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--s-bg);
  border-bottom: 0.5px solid var(--s-line);
}
.s-hd-util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 18px;
  font-family: var(--s-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
  background: var(--s-ink);
  color: rgba(236, 235, 229, 0.7);
  gap: 12px;
}
.s-hd-util > span:first-child {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s-hd-util-r {
  flex-shrink: 0;
  display: none;
}
.s-hd-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 14px;
}
.s-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.s-logo-mark {
  width: 12px;
  height: 12px;
  background: var(--s-accent);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
}
.s-logo-wm {
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--s-ink);
}
.s-hd-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-hd-help {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.s-hd-help-l {
  font-family: var(--s-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
}
.s-hd-help-r {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--s-ink);
  margin-top: 2px;
}
.s-hd-menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 18px;
  border-radius: 999px;
  background: var(--s-ink);
  color: var(--s-bg);
  font-size: 13px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.s-hd-menu:hover { background: var(--s-accent); }
.s-hd-menu-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  width: 18px;
}
.s-hd-menu-bars span {
  display: block;
  height: 1.5px;
  background: var(--s-bg);
  border-radius: 1px;
  transition: transform 0.2s, width 0.2s, opacity 0.2s;
}
.s-hd-menu-bars span:nth-child(1) { width: 18px; }
.s-hd-menu-bars span:nth-child(2) { width: 14px; }
.s-hd-menu-bars span:nth-child(3) { width: 10px; }
.s-hd-menu-bars[data-open="true"] span:nth-child(2) { opacity: 0; }
.s-hd-menu-bars[data-open="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); width: 18px; }
.s-hd-menu-bars[data-open="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); width: 18px; }

.s-hd-nav {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--s-line);
  background: var(--s-paper);
}
.s-hd-nav a {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 0.5px solid var(--s-line);
  font-family: var(--s-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--s-ink);
  opacity: 0;
  transform: translateY(-4px);
  animation: s-mn-in 0.35s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}
.s-hd-nav a:hover {
  background: var(--s-ink);
  color: var(--s-bg);
}
.s-hd-nav a:hover .s-hd-nav-n { color: var(--s-accent); }
.s-hd-nav-n {
  font-family: var(--s-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--s-accent);
  letter-spacing: 0.08em;
}
.s-hd-nav-arr {
  display: inline-flex;
  justify-content: flex-end;
  color: var(--s-ink-mute);
}
@keyframes s-mn-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   Hero — service finder
   ───────────────────────────────────────────── */
.s-hero {
  padding: 32px 18px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-bottom: 0.5px solid var(--s-line);
  overflow: hidden;
}
.s-hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.s-hero-shape--1 {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -80px;
  background: radial-gradient(circle, color-mix(in oklab, var(--s-accent) 22%, transparent), transparent 60%);
}
.s-hero-shape--2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: -60px;
  background: radial-gradient(circle, color-mix(in oklab, var(--s-cool) 18%, transparent), transparent 60%);
}
.s-hero-l { position: relative; z-index: 1; }
.s-hero-r { position: relative; z-index: 1; }

.s-hero-h {
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  color: var(--s-ink);
}
.s-hero-h em {
  font-style: italic;
  font-weight: 700;
  color: var(--s-accent);
}
.s-hero-h-acc {
  font-style: italic;
  color: var(--s-ink-mute);
  font-weight: 400;
  background: var(--s-ink);
  color: var(--s-bg);
  padding: 0 12px 4px;
  border-radius: 4px;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
}

.s-finder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--s-paper);
  border: 1px solid var(--s-line-2);
  border-radius: 6px;
  padding: 14px;
}
.s-finder-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-finder-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s-finder-field label {
  font-family: var(--s-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
}
.s-finder-select {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--s-bg);
  border: 1px solid var(--s-line);
  border-radius: 4px;
  padding: 0 28px 0 12px;
}
.s-finder-select select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--s-ink);
  width: 100%;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.s-finder-select svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--s-ink-mute);
  pointer-events: none;
}
.s-finder .s-btn { align-self: stretch; justify-content: space-between; }

/* Hero thumb */
.s-hero-thumb {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.s-hero-thumb-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--s-bg);
  border: 1px solid var(--s-line-2);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
}
.s-hero-thumb-tag-n {
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 22px;
  background: var(--s-accent);
  color: var(--s-bg);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.s-hero-thumb-tag-l {
  font-family: var(--s-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-ink);
  font-weight: 600;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────
   Tag marquee
   ───────────────────────────────────────────── */
.s-tag-marq {
  background: var(--s-ink);
  color: var(--s-bg);
  padding: 18px 0;
}
.s-tag-marq .s-marq-track { gap: 24px; }
.s-tag-marq .s-marq-item { gap: 24px; }
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--s-bg);
}
.s-tag-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--s-accent);
  color: var(--s-bg);
}
.s-tag-i svg { display: block; }

/* ─────────────────────────────────────────────
   About + bullet list + features
   ───────────────────────────────────────────── */
.s-about {
  padding: 56px 18px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-bottom: 0.5px solid var(--s-line);
}
.s-about-h {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.s-about-h em {
  font-style: italic;
  color: var(--s-accent);
}
.s-about-p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--s-ink-2);
  margin: 0 0 22px;
  max-width: 56ch;
}

.s-about-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--s-ink);
}
.s-about-list li {
  border-bottom: 1px solid var(--s-line);
  transition: background 0.2s;
}
.s-about-list li.is-open { background: var(--s-paper); }
.s-about-list button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}
.s-about-list-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--s-ink);
  color: var(--s-bg);
  flex-shrink: 0;
}
.s-about-list.li.is-open .s-about-list-ico { background: var(--s-accent); }
.s-about-list-t {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.s-about-list p {
  margin: 0 0 16px 42px;
  font-size: 14px;
  color: var(--s-ink-2);
  line-height: 1.55;
  max-width: 50ch;
}

.s-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--s-ink);
}
.s-feature {
  padding: 22px 0;
  border-bottom: 1px solid var(--s-line);
  position: relative;
}
.s-feature-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--s-accent);
  margin-bottom: 14px;
}
.s-feature h3 {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.s-feature p {
  font-size: 13.5px;
  color: var(--s-ink-2);
  margin: 0;
  line-height: 1.5;
  max-width: 44ch;
}

/* ─────────────────────────────────────────────
   Numbered services list
   ───────────────────────────────────────────── */
.s-svc {
  padding: 56px 18px;
  border-bottom: 0.5px solid var(--s-line);
}
.s-svc-hd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.s-svc-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.s-svc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--s-ink);
}
.s-svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--s-line);
  cursor: pointer;
  transition: padding 0.2s;
}
.s-svc-row.is-active { padding-left: 8px; }
.s-svc-num {
  font-family: var(--s-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--s-ink-mute);
  font-weight: 600;
  align-self: flex-start;
  padding-top: 6px;
}
.s-svc-row.is-active .s-svc-num { color: var(--s-accent); }
.s-svc-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.s-svc-text h3 {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: var(--s-ink);
  transition: color 0.2s;
}
.s-svc-row.is-active .s-svc-text h3 { color: var(--s-accent); }
.s-svc-sub {
  font-size: 12.5px;
  color: var(--s-ink-mute);
  font-weight: 500;
}
.s-svc-arr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--s-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--s-ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.s-svc-row.is-active .s-svc-arr {
  background: var(--s-accent);
  color: var(--s-bg);
  border-color: var(--s-accent);
  transform: rotate(-45deg);
}

.s-svc-thumb {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}
.s-svc-thumb-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.4s, transform 0.6s;
}
.s-svc-thumb-frame:first-child { position: relative; }
.s-svc-thumb-frame.is-active {
  opacity: 1;
  transform: scale(1);
}
.s-svc-thumb-num {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--s-bg);
  background: var(--s-accent);
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1;
  z-index: 2;
}

/* ─────────────────────────────────────────────
   Stats
   ───────────────────────────────────────────── */
.s-stats {
  padding: 48px 18px;
  background: var(--s-paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 14px;
  border-bottom: 0.5px solid var(--s-line);
}
.s-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--s-ink);
  padding-top: 14px;
}
.s-stat-v {
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--s-ink);
}
.s-stat-v em {
  font-style: normal;
  color: var(--s-accent);
}
.s-stat-l {
  font-family: var(--s-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   Compare — Old vs New
   ───────────────────────────────────────────── */
.s-cmp {
  padding: 56px 18px;
  background: var(--s-ink);
  color: var(--s-bg);
}
.s-cmp-hd .s-brace { color: rgba(236,235,229,0.55); }
.s-cmp-hd .s-brace-mark { color: var(--s-accent); }
.s-cmp-hd { margin-bottom: 36px; }
.s-cmp-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.s-cmp-col {
  background: rgba(236, 235, 229, 0.04);
  border: 1px solid rgba(236, 235, 229, 0.10);
  border-radius: 4px;
  padding: 22px;
}
.s-cmp-col--new {
  background: var(--s-accent);
  border-color: var(--s-accent);
}
.s-cmp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.s-cmp-num {
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--s-bg);
  line-height: 1;
  background: rgba(236,235,229,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s-cmp-col--new .s-cmp-num {
  background: rgba(22, 21, 18, 0.2);
  color: var(--s-bg);
}
.s-cmp-badge {
  font-family: var(--s-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 235, 229, 0.7);
  font-weight: 600;
}
.s-cmp-col--new .s-cmp-badge { color: rgba(22, 21, 18, 0.8); }
.s-cmp-t {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--s-bg);
  text-wrap: balance;
}
.s-cmp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(236, 235, 229, 0.14);
}
.s-cmp-col--new .s-cmp-list { border-top-color: rgba(22, 21, 18, 0.18); }
.s-cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(236, 235, 229, 0.85);
  line-height: 1.45;
}
.s-cmp-col--new .s-cmp-list li { color: var(--s-bg); }
.s-cmp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--s-accent);
  margin-top: 6px;
  flex-shrink: 0;
}
.s-cmp-col--new .s-cmp-dot { background: var(--s-ink); }

/* ─────────────────────────────────────────────
   Link strip marquee
   ───────────────────────────────────────────── */
.s-lstrip {
  background: var(--s-bg);
  padding: 24px 0;
  border-bottom: 0.5px solid var(--s-line);
}
.s-lstrip-link {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--s-ink);
}
.s-lstrip-link:hover { color: var(--s-accent); }
.s-lstrip-und {
  color: var(--s-accent);
  margin-left: 4px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.s-faq {
  padding: 56px 18px;
  border-bottom: 0.5px solid var(--s-line);
}
.s-faq-hd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.s-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--s-ink);
}
.s-faq-list li {
  border-bottom: 1px solid var(--s-line);
}
.s-faq-list li.is-open { background: var(--s-paper); }
.s-faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.s-faq-list li.is-open button { padding: 22px 18px 12px; }
.s-faq-q {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--s-ink);
  text-wrap: balance;
}
.s-faq-list li.is-open .s-faq-q { color: var(--s-accent); }
.s-faq-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--s-ink);
  color: var(--s-bg);
  flex-shrink: 0;
}
.s-faq-list li.is-open .s-faq-ico { background: var(--s-accent); }
.s-faq-list p {
  margin: 0;
  padding: 0 18px 22px;
  font-size: 14px;
  color: var(--s-ink-2);
  line-height: 1.6;
  max-width: 64ch;
}

/* ─────────────────────────────────────────────
   Testimonial
   ───────────────────────────────────────────── */
.s-test {
  padding: 56px 18px;
  background: var(--s-paper);
  border-bottom: 0.5px solid var(--s-line);
}
.s-test-q {
  font-family: var(--s-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--s-ink);
  text-wrap: pretty;
}
.s-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-test-av {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--s-ink);
  color: var(--s-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.s-test-author h4 {
  margin: 0;
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.s-test-author span {
  font-family: var(--s-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
}

/* ─────────────────────────────────────────────
   Reviews
   ───────────────────────────────────────────── */
.s-rev {
  padding: 56px 18px;
  border-bottom: 0.5px solid var(--s-line);
}
.s-rev-hd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.s-rev-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.s-rev-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-rev-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--s-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-ink-mute);
}
.s-rev-meta > span:first-child { color: var(--s-accent); font-weight: 600; }
.s-rev-dot {
  width: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 50%;
}
.s-rev-t {
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  text-wrap: pretty;
}
.s-rev-link {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--s-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--s-ink);
  align-self: flex-start;
  margin-top: 4px;
}
.s-rev-link:hover { color: var(--s-accent); }

/* ─────────────────────────────────────────────
   CTA banner
   ───────────────────────────────────────────── */
.s-cta {
  padding: 56px 18px;
  background: var(--s-accent);
  color: var(--s-bg);
}
.s-cta .s-brace { color: rgba(236, 235, 229, 0.7); }
.s-cta .s-brace-mark { color: var(--s-bg); }
.s-cta-h {
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--s-bg);
  text-wrap: balance;
}
.s-cta-h em {
  font-style: italic;
  color: rgba(22, 21, 18, 0.85);
}
.s-cta-p {
  font-size: 14.5px;
  color: rgba(236, 235, 229, 0.9);
  margin: 0 0 24px;
  max-width: 50ch;
  line-height: 1.55;
}
.s-cta .s-btn--dark { background: var(--s-ink); color: var(--s-bg); }
.s-cta .s-btn--dark .s-btn-ico { background: var(--s-bg); color: var(--s-accent); }
.s-cta .s-btn--dark:hover { background: var(--s-bg); color: var(--s-ink); }
.s-cta .s-btn--dark:hover .s-btn-ico { background: var(--s-accent); color: var(--s-bg); }

/* ─────────────────────────────────────────────
   Responsible gambling strip
   ───────────────────────────────────────────── */
.s-rg {
  padding: 22px 18px;
  background: var(--s-bg);
  border-bottom: 0.5px solid var(--s-line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.s-rg-mark {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--s-ink);
  color: var(--s-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--s-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.s-rg p {
  margin: 0;
  font-size: 12.5px;
  color: var(--s-ink-2);
  line-height: 1.5;
}
.s-rg a { text-decoration: underline; }

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.s-ft {
  background: var(--s-ink);
  color: rgba(236, 235, 229, 0.7);
  padding: 56px 18px 24px;
}
.s-ft-top { margin-bottom: 28px; }
.s-ft-top p {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(236, 235, 229, 0.55);
  max-width: 36ch;
  line-height: 1.5;
}
.s-logo--ft .s-logo-wm { color: var(--s-bg); }
.s-ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 0.5px solid rgba(236, 235, 229, 0.14);
}
.s-ft-grid h4 {
  font-family: var(--s-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--s-accent);
  margin: 0 0 10px;
  font-weight: 600;
}
.s-ft-grid p {
  margin: 0;
  font-size: 13px;
  color: rgba(236, 235, 229, 0.7);
  line-height: 1.5;
}
.s-ft-grid a {
  display: block;
  padding: 3px 0;
  font-size: 13.5px;
  color: rgba(236, 235, 229, 0.75);
  font-weight: 500;
}
.s-ft-grid a:hover { color: var(--s-accent); }
.s-ft-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--s-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 235, 229, 0.45);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   Responsive — container queries on .s-page
   ───────────────────────────────────────────── */
@container spage (min-width: 640px) {
  .s-hd-util-r { display: inline; }
  .s-hd-util, .s-hd-main { padding-left: 28px; padding-right: 28px; }
  .s-hd-help { display: flex; }
  .s-hd-nav a { padding-left: 28px; padding-right: 28px; }
  .s-hero { padding: 56px 28px; flex-direction: row; align-items: flex-start; gap: 36px; }
  .s-hero-l { flex: 1.3; }
  .s-hero-r { flex: 1; }
  .s-hero-h { font-size: 72px; }
  .s-finder-row { flex-direction: row; }
  .s-finder-field { flex: 1; }
  .s-finder { padding: 18px; }
  .s-hero-thumb { max-width: none; }
  .s-tag-marq { padding: 22px 0; }
  .s-tag { font-size: 28px; }
  .s-about, .s-svc, .s-stats, .s-cmp, .s-faq, .s-test, .s-rev, .s-cta, .s-rg, .s-ft { padding-left: 28px; padding-right: 28px; }
  .s-about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .s-about-l { grid-column: 1; }
  .s-about-list { grid-column: 2; grid-row: 1 / 3; }
  .s-features { grid-column: 1 / -1; flex-direction: row; gap: 18px; }
  .s-feature { flex: 1; border-bottom: 0; border-right: 1px solid var(--s-line); padding: 22px 22px 22px 0; }
  .s-feature:last-child { border-right: 0; }
  .s-about-h { font-size: 40px; }
  .s-sec-h { font-size: 48px; }
  .s-svc-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }
  .s-svc-thumb { position: sticky; top: 24px; }
  .s-svc-text h3 { font-size: 32px; }
  .s-stats { grid-template-columns: repeat(4, 1fr); padding-top: 56px; padding-bottom: 56px; }
  .s-stat-v { font-size: 60px; }
  .s-cmp-grid { flex-direction: row; }
  .s-cmp-col { flex: 1; padding: 32px; }
  .s-cmp-t { font-size: 28px; }
  .s-rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .s-test-q { font-size: 30px; max-width: 36ch; }
  .s-faq-list p { font-size: 14.5px; }
  .s-cta-h { font-size: 48px; }
  .s-lstrip-link { font-size: 48px; }
  .s-ft-grid { grid-template-columns: repeat(4, 1fr); }
}

@container spage (min-width: 960px) {
  .s-hd-util, .s-hd-main { padding-left: 40px; padding-right: 40px; }
  .s-hero { padding: 80px 40px; max-width: 1280px; margin: 0 auto; }
  .s-hero-h { font-size: 96px; }
  .s-tag { font-size: 36px; }
  .s-about, .s-svc, .s-stats, .s-cmp, .s-faq, .s-test, .s-rev, .s-cta, .s-ft {
    padding-left: 40px; padding-right: 40px; max-width: 1280px; margin-left: auto; margin-right: auto;
  }
  .s-rg { padding-left: 40px; padding-right: 40px; max-width: 1280px; margin-left: auto; margin-right: auto; }
  .s-about-h { font-size: 52px; }
  .s-sec-h { font-size: 60px; }
  .s-svc-text h3 { font-size: 44px; }
  .s-stat-v { font-size: 72px; }
  .s-cmp-t { font-size: 32px; }
  .s-cta-h { font-size: 64px; }
  .s-lstrip-link { font-size: 72px; }
  .s-test-q { font-size: 38px; }
}

/* ─────────────────────────────────────────────
   Density
   ───────────────────────────────────────────── */
[data-sdensity="compact"] .s-hero,
[data-sdensity="compact"] .s-about,
[data-sdensity="compact"] .s-svc,
[data-sdensity="compact"] .s-faq,
[data-sdensity="compact"] .s-rev,
[data-sdensity="compact"] .s-cta { padding-top: 36px; padding-bottom: 36px; }
[data-sdensity="compact"] .s-hero-h { font-size: 40px; }
