/* ============================================================
   bathsrussucks.com — styles
   A "public notice" look: paper, ink, caution yellow, alarm red.
   ============================================================ */

:root {
  --paper: #f6f2ea;
  --paper-2: #ece6da;
  --ink: #141210;
  --ink-2: #3d3833;
  --ink-3: #6b645c;
  --line: #d8d0c2;
  --yellow: #ffd400;
  --yellow-2: #f2c200;
  --red: #d7261e;
  --red-2: #b51d16;
  --dark: #141210;
  --dark-2: #1f1c19;
  --dark-line: #3a3530;
  --dark-text: #efe9dd;
  --dark-muted: #b6ad9f;
  --max: 1120px;
  --gutter: clamp(16px, 4vw, 40px);
  --display: "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:hover { color: var(--red); }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h2 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: 0.01em; text-transform: uppercase; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
p { margin: 0 0 1em; }
small { font-size: 0.55em; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; background: var(--paper-2); padding: 0.1em 0.35em; border-radius: 3px; }

.skip { position: absolute; left: -999px; top: 0; background: var(--yellow); color: var(--ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }

/* ---------- container ---------- */
/* One centered column for everything. Sections pad the gutters; .wrap caps the width. */
.wrap { width: 100%; max-width: var(--max); margin-left: auto; margin-right: auto; }

/* ---------- notice bar ---------- */
.notice-bar {
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.9rem;
  padding: 10px var(--gutter);
  text-align: center;
  border-bottom: 3px solid var(--ink);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 12px var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px 24px; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.02em; text-decoration: none;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--display); font-size: 1.2rem;
}
.brand-dot { color: var(--red); }
.site-nav { display: flex; gap: 4px 20px; flex-wrap: wrap; font-size: 0.9rem; font-weight: 600; }
.site-nav a { text-decoration: none; padding: 4px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--red); border-bottom-color: var(--red); }

/* ---------- sections ---------- */
main { display: block; }
.section { padding: clamp(56px, 8vw, 104px) var(--gutter); }
.section-head { margin-bottom: 40px; }
.section-intro { max-width: 62ch; color: var(--ink-2); font-size: 1.05rem; margin: 14px 0 0; }
.eyebrow {
  display: block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin: 0 0 12px;
}
.section-dark { background: var(--dark); color: var(--dark-text); }
.section-dark .eyebrow { color: var(--yellow); }
.section-dark .section-intro { color: var(--dark-muted); }
.section-dark a:hover { color: var(--yellow); }
.section-dark code { background: var(--dark-2); }
.section-yellow { background: var(--yellow); }
.section-yellow .eyebrow { color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(4.2rem, 13vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 32px;
}
.hero .accent { color: var(--red); }
.lede {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 44ch;
  color: var(--ink-2);
  line-height: 1.45;
  margin: 0;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 56px; }

.btn {
  display: inline-block;
  padding: 14px 22px;
  font-weight: 700; font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 4px;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--yellow); color: var(--ink); }

.stat-strip {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.stat-strip li { background: var(--paper); padding: 20px 18px; display: flex; flex-direction: column; gap: 6px; }
.stat { font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--red); }
.stat-label { font-size: 0.85rem; color: var(--ink-2); line-height: 1.35; }
.stat-source { font-size: 0.78rem; color: var(--ink-3); margin: 14px 0 0; }

/* ---------- story ---------- */
.story-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 48px 64px; align-items: start; }
.big { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 600; line-height: 1.35; margin-bottom: 1.2em; }
.fine { font-size: 0.85rem; color: var(--ink-3); margin: 24px 0 0; }
mark.fill {
  background: var(--yellow); color: var(--ink);
  padding: 0.1em 0.3em; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  font-style: italic;
}
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: sticky; top: 84px; }
.photo-grid figure {
  margin: 0; min-height: 180px;
  border: 2px dashed var(--line); border-radius: 6px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--paper-2); overflow: hidden;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; flex: 1; }
.photo-grid figcaption { font-size: 0.78rem; color: var(--ink-3); padding: 8px 10px; }

/* ---------- numbers ---------- */
.number-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.num-card {
  background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: 8px;
  padding: 26px 24px 22px;
  display: flex; flex-direction: column;
}
.num-card .num { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--yellow); margin-bottom: 12px; }
.num-card .num-sm { font-size: 2.1rem; padding-top: 0.45rem; }
.num-card p { color: var(--dark-text); flex: 1; margin-bottom: 14px; }
.num-card strong { color: #fff; }
.num-card .sources {
  flex: 0; margin: 0; font-size: 0.8rem; color: var(--dark-muted);
  display: flex; flex-wrap: wrap; gap: 4px 10px;
}
.num-card .sources a { color: var(--dark-muted); }
.num-card .sources a:hover { color: var(--yellow); }
.callout {
  margin-top: 40px; padding: 28px 30px;
  border-left: 6px solid var(--yellow);
  background: var(--dark-2);
}
.callout h3 { font-family: var(--display); font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; color: var(--yellow); }
.callout p { margin: 0; color: var(--dark-text); max-width: 80ch; }

/* ---------- patterns ---------- */
.pattern-list {
  list-style: none; counter-reset: pat; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 36px 40px;
}
.pattern-list li { counter-increment: pat; padding-top: 14px; border-top: 3px solid var(--ink); position: relative; }
.pattern-list li::before {
  content: counter(pat, decimal-leading-zero);
  font-family: var(--display); font-size: 2.4rem; line-height: 1; color: var(--red);
  display: block; margin-bottom: 8px;
}
.pattern-list h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pattern-list p { margin: 0; color: var(--ink-2); }

/* ---------- complaint log ---------- */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  font: inherit; font-size: 0.85rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--dark-text); border: 1px solid var(--dark-line);
}
.chip:hover { border-color: var(--yellow); color: var(--yellow); }
.chip.is-active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.complaint-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.complaint {
  background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: 8px;
  padding: 22px 26px;
  border-left: 5px solid var(--red);
}
.complaint[hidden] { display: none; }
.c-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.82rem; color: var(--dark-muted); margin-bottom: 8px; align-items: baseline; }
.c-meta time { font-weight: 700; color: var(--yellow); letter-spacing: 0.04em; text-transform: uppercase; }
.c-amount { font-weight: 700; color: #fff; }
.complaint h3 { font-size: 1.25rem; margin-bottom: 10px; color: #fff; }
.complaint p { color: var(--dark-text); margin-bottom: 10px; max-width: 90ch; }
.c-response { font-size: 0.93rem; color: var(--dark-muted); border-top: 1px dashed var(--dark-line); padding-top: 10px; margin-bottom: 0 !important; }
.c-response strong { color: var(--dark-text); }
.log-note { margin: 28px 0 0; font-size: 0.9rem; color: var(--dark-muted); max-width: 72ch; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.review {
  margin: 0; padding: 30px 26px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  position: relative;
  display: flex; flex-direction: column;
}
.review::before {
  content: "\201C";
  position: absolute; top: 8px; left: 18px;
  font-family: var(--display); font-size: 4rem; line-height: 1; color: var(--yellow);
}
.review p { position: relative; font-size: 1.02rem; line-height: 1.55; flex: 1; margin-bottom: 16px; }
.review footer { font-size: 0.8rem; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 10px; }
.review-fair { background: var(--paper-2); }
.review-fair::before { color: var(--ink-3); }

/* ---------- claims table ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.claims-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.claims-table th, .claims-table td { text-align: left; vertical-align: top; padding: 18px 20px 18px 0; border-bottom: 1px solid var(--dark-line); }
.claims-table th { font-family: var(--display); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--yellow); border-bottom: 2px solid var(--yellow); }
.claims-table td:first-child { width: 38%; color: var(--dark-muted); font-style: italic; padding-right: 32px; }
.claims-table q { quotes: "\201C" "\201D"; }
.claims-table td strong { color: #fff; }
.claims-table td a { color: var(--dark-text); }

/* ---------- steps / checklist ---------- */
.steps { margin: 0; padding: 0 0 0 1.4em; display: grid; gap: 16px; max-width: 74ch; }
.steps li { padding-left: 6px; }
.steps li::marker { font-family: var(--display); color: var(--red); font-size: 1.2rem; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px 40px; }
.checklist li { position: relative; padding-left: 36px; font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border: 2px solid var(--ink); border-radius: 4px; background: var(--paper);
}
.checklist a { font-weight: 700; }

/* ---------- share ---------- */
.share { text-align: center; border-top: 1px solid var(--line); }
.share .wrap { max-width: 720px; }
.share h2 { margin-bottom: 14px; }
.share p { margin: 0 auto 24px; color: var(--ink-2); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--dark); color: var(--dark-muted);
  padding: 40px var(--gutter) 32px;
  font-size: 0.82rem; line-height: 1.6;
}
.site-footer p { max-width: 90ch; }
.site-footer strong { color: var(--dark-text); }
.site-footer a { color: var(--dark-text); }
.site-footer a:hover { color: var(--yellow); }
.copy { margin: 20px 0 0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  .photo-grid { position: static; }
  .site-nav { font-size: 0.82rem; gap: 2px 14px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-header { position: static; }
  .stat { font-size: 2.2rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .complaint { padding: 18px 16px; }
  .review { padding: 26px 18px 16px; }
  .claims-table th, .claims-table td { padding: 14px 16px 14px 0; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .notice-bar, .cta-row, .filter-row, .share { display: none; }
  .section-dark, .num-card, .complaint { background: #fff !important; color: #000 !important; border-color: #999 !important; }
  .section-dark * { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
