/* =============================================================
   Hygiecontrol — Smart Bidet site
   Shared layout + components on top of the DS foundations.
   RTL-first. Hebrew. Cream canvas. Coral accent. Editorial.
   ============================================================= */

@import url("./colors_and_type.css");

/* ---------- Reset-ish + RTL base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  direction: rtl;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-canvas);
  color: var(--color-body);
  font-family: var(--font-body);
  /* Hebrew-friendly fallback chain */
  font-family: "Hanken Grotesk", "Assistant", "Heebo", "Rubik",
    "Segoe UI", Tahoma, sans-serif;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* Hebrew display serif fallback chain — Newsreader handles latin,
   Frank Ruhl Libre / David / system serif covers Hebrew glyphs */
.display-xl,
.display-lg,
.display-md,
.display-sm,
h1, h2, h3 {
  font-family: "Frank Ruhl Libre", "Newsreader", "David", "Times New Roman", serif;
  font-weight: 500;
}

.serif {
  font-family: "Frank Ruhl Libre", "Newsreader", "David", serif;
  font-weight: 500;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ============================================================
   Top nav — cream, mirrored RTL, logo on right (start)
   ============================================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-canvas);
  border-bottom: 1px solid var(--color-hairline);
}

.topnav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-ink);
}

.brand svg.mark {
  width: 22px;
  height: 22px;
  color: var(--color-ink);
}

.brand-name {
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--color-ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: auto;
}

.nav-links a {
  color: var(--color-body-strong);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 180ms ease-out, color 180ms ease-out;
}

.nav-links a:hover {
  color: var(--color-ink);
}

.nav-links a.active {
  border-bottom-color: var(--color-primary);
  color: var(--color-ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-canvas);
  font-size: 14px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background 180ms ease-out;
}

.nav-cta:hover { background: #000; }

.nav-cta .wa-bubble {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta .wa-bubble svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .topnav-inner { gap: 16px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--color-surface-dark);
  color: var(--color-on-dark);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0 96px;
}

.hero-art {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .room-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 30% 60%, rgba(232,165,90,0.10) 0%, transparent 70%),
    radial-gradient(40% 40% at 70% 30%, rgba(204,120,92,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-art .bidet-illus {
  position: relative;
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.hero-copy h1 {
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--color-on-dark);
  margin: 0 0 24px;
}

.hero-copy .lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-on-dark-soft);
  max-width: 48ch;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.btn-primary:hover { background: var(--color-primary-active); }
.btn-primary:active { background: var(--color-primary-active); }

.btn-ghost-dark {
  background: transparent;
  color: var(--color-on-dark);
  border-color: rgba(250,249,245,0.22);
}
.btn-ghost-dark:hover { border-color: rgba(250,249,245,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-hairline);
}
.btn-ghost:hover { border-color: var(--color-ink); }

.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5a; }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* Hero trust strip */
.trust-strip {
  background: var(--color-surface-dark-elevated);
  border-top: 1px solid rgba(250,249,245,0.06);
  color: var(--color-on-dark-soft);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.trust-item .ico {
  width: 22px;
  height: 22px;
  color: var(--color-accent-amber);
  flex: none;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0 64px;
  }
  .hero-art { min-height: 320px; }
  .trust-strip-inner { justify-content: flex-start; }
}

/* ============================================================
   Sections — generic
   ============================================================ */
.section {
  padding: 96px 0;
}

.section.tight { padding: 72px 0; }

.section-dark {
  background: var(--color-surface-dark);
  color: var(--color-on-dark);
}
.section-dark .eyebrow { color: var(--color-on-dark-soft); }
.section-dark h2 { color: var(--color-on-dark); }
.section-dark p { color: var(--color-on-dark-soft); }

.section-cream {
  background: var(--color-surface-soft);
}

.section-coral {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.section-coral h2 { color: var(--color-on-primary); }
.section-coral p { color: rgba(255,255,255,0.88); }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section.tight { padding: 48px 0; }
}

.eyebrow {
  font-family: "Hanken Grotesk", "Assistant", "Heebo", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin: 0 0 16px;
}

h2.section-title {
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0 0 20px;
}

.section-lede {
  font-size: 17px;
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 0 32px;
}

/* ============================================================
   "What you get" — 2-col with feature tiles
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.text-first { grid-template-columns: 1fr 1fr; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.feature-tile {
  background: var(--color-surface-dark-elevated);
  border: 1px solid rgba(250,249,245,0.06);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 110px;
}

.feature-tile .ico {
  width: 28px;
  height: 28px;
  color: var(--color-accent-amber);
}

.feature-tile .label {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-on-dark);
  line-height: 1.35;
}

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Cream-mode feature tile */
.section-cream .feature-tile,
.section:not(.section-dark) .feature-tile {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
}
.section-cream .feature-tile .label,
.section:not(.section-dark) .feature-tile .label {
  color: var(--color-ink);
}
.section-cream .feature-tile .ico,
.section:not(.section-dark) .feature-tile .ico {
  color: var(--color-primary);
}

/* ============================================================
   "Who it's for" — 3 cards on dark
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.who-card {
  background: var(--color-surface-dark-elevated);
  border: 1px solid rgba(250,249,245,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-card .ico {
  width: 36px;
  height: 36px;
  color: var(--color-accent-amber);
}

.who-card h3 {
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-weight: 500;
  color: var(--color-on-dark);
  font-size: 22px;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 0;
}

.who-card p {
  color: var(--color-on-dark-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; }
}

.pull-quote {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--color-primary);
}

.pull-quote em {
  font-style: normal;
  display: block;
  color: var(--color-on-dark);
  margin-top: 8px;
}

/* ============================================================
   Compatibility + price band
   ============================================================ */
.fit-band {
  background: var(--color-surface-soft);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 1000px) {
  .fit-grid { grid-template-columns: 1fr; }
}

.fit-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-steps li {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--color-ink);
  font-weight: 500;
}

.fit-steps li .num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-canvas);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
}

.fit-art {
  background: var(--color-ink);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.fit-art svg { width: 100%; max-width: 320px; }

/* Price card */
.price-card {
  background: var(--color-surface-dark);
  color: var(--color-on-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card .price-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-on-dark-soft);
  font-weight: 600;
}

.price-card .price-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  color: var(--color-on-dark);
}

.price-card .price-value .num {
  font-size: 64px;
  letter-spacing: -2px;
  line-height: 1;
  font-weight: 500;
}

.price-card .price-value .currency {
  font-size: 28px;
  color: var(--color-accent-amber);
}

.price-card .price-strike {
  font-size: 14px;
  color: var(--color-on-dark-soft);
}
.price-card .price-strike s { color: var(--color-on-dark-soft); }

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-on-dark);
  line-height: 1.5;
}

.price-card ul li .check {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--color-accent-amber);
  margin-top: 2px;
}

.price-card .fineprint {
  font-size: 12px;
  color: var(--color-on-dark-soft);
  line-height: 1.55;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-surface-dark);
  color: var(--color-on-dark);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

.footer h4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-on-dark-soft);
  margin: 0 0 16px;
}

.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--color-on-dark); font-size: 14px; }
.footer ul a:hover { color: var(--color-accent-amber); }

.footer-brand .brand-name { color: var(--color-on-dark); }
.footer-brand svg.mark { color: var(--color-on-dark); }
.footer-brand .tag {
  margin-top: 16px;
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-size: 16px;
  color: var(--color-on-dark-soft);
  line-height: 1.5;
}

.footer-meta {
  border-top: 1px solid rgba(250,249,245,0.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-on-dark-soft);
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FAQ / accordion
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.faq-item {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--color-ink);
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary .plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  position: relative;
  transition: transform 200ms ease-out, background 200ms ease-out;
}
.faq-summary .plus::before,
.faq-summary .plus::after {
  content: "";
  position: absolute;
  background: var(--color-ink);
  border-radius: 1px;
}
.faq-summary .plus::before { width: 10px; height: 1.5px; }
.faq-summary .plus::after { width: 1.5px; height: 10px; transition: transform 200ms ease-out; }

details[open] .faq-summary .plus { background: var(--color-ink); }
details[open] .faq-summary .plus::before { background: var(--color-canvas); }
details[open] .faq-summary .plus::after { transform: scaleY(0); }

.faq-body {
  padding: 0 22px 22px;
  color: var(--color-body);
  line-height: 1.65;
  font-size: 15px;
}

/* ============================================================
   Misc
   ============================================================ */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-card);
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag-pill.coral {
  background: rgba(204,120,92,0.12);
  color: var(--color-primary);
}

.tag-pill.dark {
  background: rgba(250,249,245,0.1);
  color: var(--color-on-dark);
}

.divider-rule {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 24px;
}

.divider-rule.on-dark { background: var(--color-accent-amber); }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card .stars {
  display: flex;
  gap: 2px;
  color: var(--color-primary);
}
.review-card .stars svg { width: 16px; height: 16px; }

.review-card blockquote {
  margin: 0;
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ink);
  letter-spacing: -0.2px;
}

.review-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface-cream-strong);
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: "Frank Ruhl Libre", serif;
}

.review-card .name { font-size: 14px; font-weight: 600; color: var(--color-ink); }
.review-card .place { font-size: 12px; color: var(--color-muted); }

/* ---------- Spec table ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-table tr + tr td { border-top: 1px solid var(--color-hairline); }
.spec-table td {
  padding: 16px 22px;
  font-size: 15px;
  color: var(--color-ink);
  vertical-align: top;
}
.spec-table td:first-child {
  color: var(--color-muted);
  width: 38%;
  font-weight: 500;
}

/* ---------- Big floating WA button (mobile-friendly) ---------- */
.wa-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: transform 180ms ease-out;
}
.wa-fab:hover { transform: translateY(-2px); }
.wa-fab svg { width: 26px; height: 26px; fill: currentColor; }

/* ============================================================
   Page intro band (used on subpages)
   ============================================================ */
.page-intro {
  padding: 88px 0 56px;
  background: var(--color-surface-soft);
  border-bottom: 1px solid var(--color-hairline);
}

.page-intro h1 {
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: var(--color-ink);
  max-width: 18ch;
}

.page-intro .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body);
  max-width: 56ch;
}

/* ============================================================
   Steps with art (compatibility page deep view)
   ============================================================ */
.steps-deep {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps-deep .step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: start;
}
.steps-deep .step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-canvas);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 18px;
  font-weight: 500;
}
.steps-deep .step h3 {
  font-family: "Frank Ruhl Libre", "Newsreader", serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--color-ink);
  letter-spacing: -0.3px;
}
.steps-deep .step p {
  margin: 0;
  color: var(--color-body);
  font-size: 15px;
  line-height: 1.6;
}
.steps-deep .step .example {
  margin-top: 12px;
  background: var(--color-surface-card);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--color-body-strong);
  line-height: 1.5;
}

/* ============================================================
   Dark-theme adjustments — applied site-wide
   Picks up after the variable flip in colors_and_type.css.
   Handles surfaces and inline-style collisions that were
   originally drawn assuming a cream canvas.
   ============================================================ */

/* Top nav: dark surface, gold-outlined CTA */
.nav-cta {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-primary);
}
.nav-cta:hover { background: rgba(201, 165, 117, 0.10); }
.nav-links a { color: rgba(250, 249, 245, 0.78); }
.nav-links a:hover { color: var(--color-ink); }
.nav-links a.active { border-bottom-color: var(--color-primary); color: var(--color-ink); }

/* Tag pill — coral variant restyled to gold */
.tag-pill.coral {
  background: rgba(201, 165, 117, 0.14);
  color: var(--color-primary);
}

/* Final CTA section — was coral, now dark elevated */
.section-coral { background: #1a1612; color: var(--color-ink); }
.section-coral h2 { color: var(--color-ink); }
.section-coral p { color: rgba(250, 249, 245, 0.78); }

/* Fit-art frame (was cream block on cream page) — keep dark on dark */
.fit-art { background: #14110d; }

/* Inline-style collision catch-alls ------------------------- */

/* Coral text accents become gold */
[style*="color:#cc785c"],
[style*="color: #cc785c"] {
  color: var(--color-primary) !important;
}

/* Small coral chips / circular avatars become gold */
[style*="background:#cc785c"],
[style*="background: #cc785c"] {
  background: var(--color-primary) !important;
}

/* Large coral panels with white text → become dark elevated */
[style*="background:#cc785c"][style*="color:#fff"],
[style*="background: #cc785c"][style*="color:#fff"] {
  background: #1a1612 !important;
}

/* Avatar circles styled "ink on cream" became cream-on-cream → flip */
[style*="background:var(--color-ink)"][style*="color:#faf9f5"] {
  background: var(--color-primary) !important;
  color: #0e0c0a !important;
}

/* Hardcoded dark feature cards (#181715) — already dark, just keep */
[style*="background:#181715"],
[style*="background: #181715"] {
  background: var(--color-surface-card) !important;
}
