:root {
  --ink: #2e2e2e;
  --ink-soft: #3a3a3a;
  --paper: #faf8f5;
  --paper-2: #f3eee8;
  --line: #ddd5cd;
  --muted: #5e5954;
  --accent: #7d4047;
  --accent-dark: #5b2d32;
  --gold: #f1ce66;
  --teal: #7d4047;
  --cream: #ffffff;
  --color-red: #7d4047;
  --color-red-dark: #5b2d32;
  --color-muted: #5e5954;
  --color-text: #2e2e2e;
  --color-bg: #faf8f5;
  --font: 'DM Sans', system-ui, sans-serif;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --container: 1680px;
  --header-h: 4.4rem;
  --page-pad: clamp(1.6rem, 6vw, 6.5rem);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: var(--header-h);
}

video { display: none !important; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container,
.rx-shell {
  width: 100%;
  max-width: none;
  padding-inline: var(--page-pad);
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-quiet, .btn-nav-call { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-quiet:hover, .btn-nav-call:hover { background: var(--paper-2); color: var(--ink); border-color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--paper); color: var(--ink); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-pill { border-radius: 999px; }
.btn-secondary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-red { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Header — compact cream bar, clustered nav, no black strip */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  transition: box-shadow 0.25s ease;
}
.site-header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 55%, var(--paper-2) 100%);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(46, 46, 46, 0.08);
}
.rx-topbar {
  background: var(--paper-2);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.rx-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.25rem;
  justify-content: space-between;
  padding-block: 0.22rem;
  padding-inline: var(--page-pad);
}
.rx-topbar a { color: var(--accent); }
.rx-topbar a:hover { text-decoration: underline; color: var(--accent-dark); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.42rem;
  padding-inline: var(--page-pad);
  flex-wrap: nowrap;
  background: transparent;
  width: 100%;
}
.nav-cluster {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}
.logo {
  color: var(--ink) !important;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.logo small {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 1;
  margin-top: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 8px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.05rem;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0.16rem;
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.nav-indicator { display: none !important; }
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
}
.nav-links a:hover { color: var(--ink); background: #fff; }
.nav-links a.active {
  color: var(--accent);
  background: #fff;
  box-shadow: 0 1px 0 rgba(46, 46, 46, 0.04);
}
.nav-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-left: 0;
  flex-shrink: 0;
}
.nav-actions .btn { padding: 0.48rem 0.95rem; font-size: 0.84rem; }
.nav-actions .btn-primary { background: var(--accent); }

/* Footer */
.site-footer {
  background: #fff;
  color: var(--muted);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}
.site-footer h4 {
  font-family: var(--display);
  color: var(--ink);
  margin-bottom: 0.85rem;
  font-size: 1rem;
}
.footer-masthead {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  display: block;
  letter-spacing: -0.04em;
}
.footer-wordmark small {
  display: block;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 1;
  margin-top: 0.35rem;
  font-weight: 600;
}
.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  font-weight: 700;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links a, .site-footer a { color: var(--muted); }
.footer-links a:hover, .site-footer a:hover { color: var(--accent); }
.footer-social-links { display: flex; gap: 0.75rem; list-style: none; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.85rem; }

/* Heroes — each page picks a layout, not one dark strip */
.rx-hero, .hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-copy, .hero-body, .hero-split, .hero-mosaic {
  position: relative;
  z-index: 1;
}
.hero-kicker, .rx-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.hero--light .hero-kicker,
.hero--light .rx-kicker { color: var(--accent); }
.hero h1, .rx-hero h1, .rx-display {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
  max-width: 16ch;
}
.hero-lead, .rx-lead {
  font-size: 1.05rem;
  max-width: 38rem;
  color: var(--muted);
}
.hero--light .hero-lead, .hero--light .rx-lead { color: var(--muted); }
.rx-hero-actions, .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin-top: 1.4rem;
}
.hero-trust li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
}
.hero--light .hero-trust li {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.hero-frame {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(125, 64, 71, 0.12);
  min-height: 22rem;
  background: var(--paper-2);
}
.hero-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

/* Home: cream copy + photo card, no black wash / overlay */
.hero--home,
.hero--split {
  background: var(--paper);
  color: var(--ink);
  padding: 1.8rem 0 2rem;
}
.hero--home {
  background:
    radial-gradient(ellipse 42% 70% at 88% 18%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 72%),
    radial-gradient(ellipse 30% 40% at 8% 90%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 70%),
    var(--paper);
  overflow: hidden;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 1fr);
  gap: 2rem 2.6rem;
  align-items: center;
}
.hero--home .hero-copy h1 { max-width: 13ch; }
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 1.15rem -0.85rem -0.85rem 1.6rem;
  background: color-mix(in srgb, var(--accent) 12%, var(--paper-2));
  border-radius: 26px;
  z-index: 0;
}
.hero-visual .hero-frame {
  position: relative;
  z-index: 1;
  min-height: 22rem;
}
.hero--home .hero-frame img {
  object-position: 50% 35%;
  min-height: 24rem;
}
.hero-float {
  position: absolute;
  z-index: 2;
  left: -0.6rem;
  bottom: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  box-shadow: 0 14px 30px rgba(125, 64, 71, 0.14);
  display: grid;
  gap: 0.12rem;
  max-width: 14rem;
}
.hero-float strong {
  font-family: var(--display);
  color: var(--ink);
  font-size: 0.95rem;
}
.hero-float span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Buy / contact: light split with photo card */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 1fr);
  gap: 2rem 3rem;
  align-items: center;
}
.hero--split-flip .hero-split { grid-template-columns: minmax(16rem, 1fr) minmax(0, 1.05fr); }
.hero--split-flip .hero-copy { order: 2; }
.hero--split-flip .hero-frame { order: 1; }

/* Sell: maroon panel + photo */
.hero--maroon {
  background: linear-gradient(135deg, #7d4047 0%, #9a555c 100%);
  color: #fff;
  padding: 2.8rem 0 2.2rem;
}
.hero--maroon .hero-lead { color: rgba(255,255,255,.88); }
.hero--maroon .hero-split { padding-bottom: 2.2rem; }
.hero--maroon .hero-kicker { color: var(--gold); }
.hero--maroon .btn-primary,
.rx-band-ink .btn-primary,
.fw-cta-strip .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.hero--maroon .btn-primary:hover,
.rx-band-ink .btn-primary:hover,
.fw-cta-strip .btn-primary:hover {
  background: var(--paper);
  color: var(--accent-dark);
}

/* Repair: cream + bench photo on the left */
.hero--bench {
  background: var(--paper);
  color: var(--ink);
  padding: 2.6rem 0;
}

/* About: shop photo as a card, not a black banner */
.hero--shop {
  background: var(--paper);
  color: var(--ink);
  padding: 2.4rem 0;
}
.hero--shop .hero-bg { display: none; }

/* Services: mosaic of repair photos */
.hero--mosaic {
  background: #fff;
  color: var(--ink);
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}
.hero-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 1fr);
  gap: 2rem;
  align-items: center;
}
.hero-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.hero-tiles img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Info pages: compact cream band + inset photo */
.hero--band {
  background: var(--paper-2);
  color: var(--ink);
  padding: 2rem 0;
  border-bottom: 4px solid var(--gold);
}
.hero-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 1.5rem;
  align-items: center;
}
.hero-band img {
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.rx-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.rx-chip {
  display: inline-flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  min-width: 10.5rem;
  color: var(--ink);
}
.hero--light .rx-chip {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.rx-chip strong { font-size: 0.92rem; }
.rx-chip span { font-size: 0.75rem; opacity: 0.7; }
.rx-chip a { color: inherit; }
.rx-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 1.6rem;
  position: relative;
  z-index: 1;
  background: transparent;
}
.rx-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: var(--ink);
}
.hero--maroon .rx-stat {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.rx-stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
}
.rx-stat small { opacity: 0.7; font-size: 0.78rem; }

.hero--light .btn-outline-white {
  color: var(--ink);
  border-color: var(--ink);
}
.hero--light .btn-outline-white:hover { background: var(--ink); color: #fff; }

/* Bands */
.rx-band { padding: 4rem 0; }
.rx-band-alt { background: var(--paper-2); }
.rx-band-ink { background: var(--accent); color: #fff; }
.rx-band-ink .btn-white { background: #fff; color: var(--accent); border-color: #fff; }
.rx-band-ink .btn-white:hover { background: var(--paper); color: var(--accent-dark); }
.rx-intro { max-width: 38rem; margin-bottom: 2rem; }
.rx-intro h2, .rx-band h2, .title-left {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.rx-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.rx-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.rx-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.rx-card h3 { font-family: var(--display); margin-bottom: 0.4rem; }
.rx-num {
  font-family: var(--display);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

/* Forms */
.form-control, input, select, textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form-control:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-color: var(--accent);
}
.form-control.is-invalid {
  border-color: #b42318;
}
label { font-weight: 650; font-size: 0.88rem; display: block; margin-bottom: 0.35rem; }
.form-group, .ct-field, .bk-field { margin-bottom: 1rem; }
.field-error, .ct-error, .bk-field-error { color: #b42318; font-size: 0.8rem; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.whatsapp-float-icon { width: 22px; height: 22px; display: block; }
.whatsapp-float-icon svg { width: 22px; height: 22px; display: block !important; }

/* Misc */
.messages-bar { padding: 0.75rem 0; }
.alert { width: min(100% - 2rem, var(--container)); margin: 0.4rem auto; padding: 0.8rem 1rem; border-radius: 10px; background: #fff; border: 1px solid var(--line); }
.fw-page, .rx-page { min-height: 40vh; }
.fw-hero { background: var(--paper); color: var(--ink); padding: 3rem 0 2.4rem; }
.fw-section { padding: 3.5rem 0; }
.fw-hero-lead { color: var(--muted); max-width: 38rem; }
.fw-hero-eyebrow, .fw-hero-eyebrow a { color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; font-weight: 700; }
.fw-section { padding: 3.5rem 0; }
.fw-section-alt { background: var(--paper-2); }
.fw-section-head { margin-bottom: 1.6rem; }
.fw-cta-strip { background: var(--accent); color: #fff; padding: 3rem 0; text-align: center; }
.fw-cta-strip .btn-primary { background: #fff; color: var(--accent); border-color: #fff; }
.fw-cta-strip .btn-primary:hover { background: var(--paper); color: var(--accent-dark); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.prose-wide, .prose { max-width: 42rem; }
.fw-checklist { list-style: none; }
.fw-checklist li { padding: 0.35rem 0 0.35rem 1.4rem; position: relative; }
.fw-checklist li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.sidebar-card, .ct-form-wrap, .bk-side-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}

@keyframes rxRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes rxKen {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
@keyframes rxFloatIn {
  from { opacity: 0; transform: translate(-10px, 14px); }
  to { opacity: 1; transform: none; }
}
.hero-copy > * {
  animation: rxRise 0.65s ease both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.36s; }
.hero-frame img,
.hero-tiles img,
.hero-band img {
  animation: rxKen 14s ease-in-out infinite alternate;
}
.hero-visual .hero-frame {
  animation: rxRise 0.75s 0.12s ease both;
}
.hero-float {
  animation: rxFloatIn 0.7s 0.38s ease both;
}
.has-rx-motion .rx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease var(--rx-delay, 0ms), transform 0.55s ease var(--rx-delay, 0ms);
}
.has-rx-libs .hero-copy > *,
.has-rx-libs .hero-visual .hero-frame,
.has-rx-libs .hero-float {
  animation: none;
}
.has-rx-libs .hero-frame img,
.has-rx-libs .hero-tiles img,
.has-rx-libs .hero-band img {
  animation: none;
}
.home-bento a, .rx-card, .mp-card, .fw-issue-card, .sell-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.home-bento a:hover, .rx-card:hover, .mp-card:hover, .fw-issue-card:hover, .sell-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(125, 64, 71, 0.1);
}
.btn { transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.btn:hover { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .hero-frame img,
  .hero-tiles img,
  .hero-band img,
  .hero-visual .hero-frame,
  .hero-float,
  .rx-reveal,
  .home-bento a,
  .rx-card,
  .mp-card,
  .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 980px) {
  .footer-masthead, .footer-grid, .rx-grid-3, .rx-grid-2, .rx-stats { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .nav-cluster {
    width: 100%;
    flex-wrap: wrap;
  }
  .nav-links, .nav-actions { display: none; width: 100%; margin: 0; }
  .nav-links.is-open, .nav-actions.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.45rem;
    margin-top: 0.4rem;
  }
  .nav-actions.is-open { flex-direction: row; flex-wrap: wrap; }
  .hero-split, .hero-mosaic, .hero-band, .hero-home-grid, .hero-buy-grid,
  .hero--split-flip .hero-split { grid-template-columns: 1fr; }
  .hero--split-flip .hero-copy, .hero--split-flip .hero-frame { order: 0; }
  .hero-frame img, .hero-frame { min-height: 16rem; }
  .hero--home .hero-frame img { min-height: 18rem; }
  .hero-visual::before { inset: 0.8rem -0.4rem -0.5rem 0.8rem; }
  .hero-float { left: 0.6rem; bottom: 0.8rem; }
}
@media (max-width: 640px) {
  .footer-grid, .rx-stats, .footer-masthead { grid-template-columns: 1fr; }
  .whatsapp-float-label { display: none; }
  .logo small { display: none; }
}
