/* ============================================================
   CASH FOR CLOTHES NJ — styles.css
   Theme: warm, photo-driven, trust-first
   Palette: bone · espresso · terracotta · olive   Type: Fraunces + Open Sans
   Accessible: 18–20px body, AA contrast, 52px+ touch targets
   ============================================================ */

:root {
  /* neutrals (from supplied palette) */
  --bone:        #FCFDFF;   /* page background (near white) */
  --bone-2:      #E9EEF5;   /* alt band — light blue-gray */
  --surface:     #FFFFFF;
  --surface-warm:#F4F7FB;   /* cards / inputs */
  --sand:        #D3DEEC;   /* hairline borders */

  /* ink — deep navy */
  --espresso:    #0A2342;   /* primary text + dark sections */
  --espresso-2:  #41566E;   /* secondary text */
  --muted:       #74879F;   /* tertiary */

  /* accents — orange (action) + blue (brand/trust) */
  --terra:       #FF6A00;   /* primary CTA — bright orange */
  --terra-dark:  #E15E00;
  --olive:       #2C6E9A;   /* secondary / trust band — blue */
  --olive-dark:  #245A80;
  --gold-acc:    #FF9B54;   /* light orange accent */

  --white: #fff;

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --tap: 54px;

  --shadow-sm: 0 1px 2px rgba(43,38,32,.06), 0 3px 8px rgba(43,38,32,.07);
  --shadow-md: 0 6px 18px rgba(43,38,32,.10);
  --shadow-lg: 0 18px 44px rgba(43,38,32,.18);

  --display: "Merriweather", Georgia, "Times New Roman", serif;
  --head:    "Open Sans", system-ui, Arial, sans-serif;
  --sans:    "Open Sans", system-ui, Arial, sans-serif;

  /* ---- compatibility aliases (hub.css + inline SVGs) ---- */
  --serif: var(--display);
  --navy: var(--espresso);
  --ink: var(--espresso);
  --cream: var(--surface-warm);
  --cream-deep: var(--bone-2);
  --slate: var(--espresso-2);
  --slate-soft: var(--muted);
  --ink-line: var(--sand);
  --sepia: var(--sand);
  --sepia-line: var(--sand);
  --gold: var(--terra);
  --gold-dark: var(--terra-dark);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.62;
  color: var(--espresso-2);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display); color: var(--espresso); line-height: 1.12; margin: 0 0 .45em; font-weight: 600; }
p { margin: 0 0 1rem; }
strong { color: var(--espresso); font-weight: 700; }
a { color: var(--terra-dark); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }
.align-left { text-align: left; }

.section { padding: 80px 0; }
.section-alt { background: var(--bone-2); }

.section-title {
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 600;
  text-align: center;
  letter-spacing: -.01em;
}
.section-lead { text-align: center; font-size: 21px; color: var(--espresso-2); max-width: 640px; margin: 0 auto 2.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: var(--tap);
  padding: 15px 28px;
  font-family: var(--head);
  font-size: 19px; font-weight: 700; letter-spacing: .005em;
  text-decoration: none;
  color: var(--espresso);
  background: var(--surface);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--terra); color: #fff; border-color: var(--terra-dark); }
.btn-gold:hover { background: #cb5f37; }
.btn-navy { background: var(--olive); color: #fff; border-color: var(--olive-dark); }
.btn-navy:hover { background: var(--olive-dark); }
.btn-call { background: var(--surface); color: var(--espresso); border-color: var(--sand); padding: 9px 16px; }
.btn-lg  { font-size: 20px; padding: 16px 30px; min-height: 58px; }
.btn-xl  { font-size: 22px; padding: 18px 30px; min-height: 64px; width: 100%; }
.btn-icon { font-size: 1.15em; line-height: 1; }
.btn-icon svg { width: 1.02em; height: 1.02em; display: inline-block; vertical-align: -.16em; fill: currentColor; }

/* ============================================================
   1. STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #0A2342;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 10px rgba(10,35,66,.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 24px; }
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand-mark { display: block; font-family: var(--display); font-weight: 600; font-size: 24px; color: #fff; }

.main-nav { display: flex; gap: 26px; }
.main-nav a { font-family: var(--head); font-weight: 600; font-size: 17px; color: #d7e0ec; text-decoration: none; padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: #fff; border-bottom-color: var(--terra); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.btn-call-label { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.btn-call-number { font-family: var(--head); font-weight: 800; font-size: 18px; color: var(--espresso); }

/* Call pill restyled for the dark header */
.site-header .btn-call { background: transparent; border-color: rgba(255,255,255,.35); box-shadow: none; }
.site-header .btn-call:hover { background: rgba(255,255,255,.08); transform: none; }
.site-header .btn-call .btn-icon { color: var(--terra); }
.site-header .btn-call-label { color: #9fb0c6; }
.site-header .btn-call-number { color: #fff; }

/* ============================================================
   2. HERO (photo-driven)
   ============================================================ */
.hero { padding: 56px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--head); font-size: 14px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--terra);
  margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 600; letter-spacing: -.015em; margin-bottom: .35em; }
.hero-sub { font-size: 21px; color: var(--espresso-2); max-width: 600px; }

.hero-bullets { list-style: none; margin: 1.5rem 0 1.8rem; padding: 0; }
.hero-bullets li { position: relative; padding-left: 36px; margin-bottom: 12px; font-size: 18px; font-weight: 600; color: var(--espresso); }
.hero-bullets li::before {
  content: "\2713"; position: absolute; left: 0; top: -1px;
  width: 25px; height: 25px; display: grid; place-items: center;
  background: var(--olive); color: #fff; font-size: 14px; font-weight: 700; border-radius: 50%;
}

/* Conversion box */
.hero-actions { background: var(--surface); border: 1px solid var(--sand); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-md); }
.action-note { text-align: center; font-size: 16px; color: var(--muted); margin: 10px 0 0; }
.or-divider { display: flex; align-items: center; text-align: center; margin: 18px 0; color: var(--muted); font-family: var(--head); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.or-divider::before, .or-divider::after { content: ""; flex: 1; height: 1px; background: var(--sand); }
.or-divider span { padding: 0 14px; }
.lead-label { display: block; font-size: 17px; font-weight: 600; color: var(--espresso); margin-bottom: 10px; }
.lead-row { display: flex; flex-direction: column; gap: 10px; }
.lead-form input[type="tel"] { width: 100%; min-height: var(--tap); padding: 14px 16px; font-family: var(--sans); font-size: 20px; color: var(--espresso); background: var(--surface-warm); border: 1.5px solid var(--espresso-2); border-radius: 10px; }
.lead-form input[type="tel"]:focus { outline: 3px solid rgba(191,86,48,.4); border-color: var(--terra); }
.form-status { font-size: 16px; font-weight: 700; margin: 10px 0 0; min-height: 1.2em; }
.form-status.ok { color: #2e7d46; }
.form-status.error { color: var(--terra-dark); }
.form-fineprint { font-size: 14px; color: var(--muted); margin: 8px 0 0; text-align: center; }
.hero-text-link { text-align: center; font-size: 16px; margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--sand); }
.hero-text-link a { color: var(--terra-dark); font-weight: 700; text-decoration: none; }
.hero-text-link a:hover { text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; }

/* Hero photo */
.hero-photo { position: relative; }
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-lg); }
.hero-photo-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(10,35,66,.9); color: #fff;
  font-family: var(--head); font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
  padding: 9px 14px; border-radius: 9px; backdrop-filter: blur(2px);
}

/* ============================================================
   3. TRUST ANCHOR
   ============================================================ */
.trust-anchor { background: var(--olive); color: #eef0e6; padding: 32px 0; text-align: center; }
.trust-line { font-family: var(--display); font-weight: 600; font-size: 23px; margin-bottom: 6px; color: #fff; }
.trust-line strong { color: #fff; }
.badge-pin { color: #fff; }
.trust-sub { font-size: 16px; color: #d6ecf9; margin-bottom: 16px; }
.charity-logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.charity-chip { background: #fff; display: flex; align-items: center; justify-content: center; gap: 10px; width: 96px; height: 96px; padding: 12px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.charity-chip-local { width: auto; padding: 12px 20px; }
.charity-logo { height: 50px; width: auto; display: block; }
.charity-logo-boxes { height: 38px; }
.charity-local { font-family: var(--head); font-weight: 700; font-size: 15px; line-height: 1.2; color: var(--espresso); max-width: 170px; text-align: left; }

/* ============================================================
   4. HOW IT WORKS
   ============================================================ */
.steps { list-style: none; margin: 0; padding: 0; display: flex; align-items: flex-start; justify-content: center; gap: 10px; }
.step { flex: 1 1 0; max-width: 330px; background: var(--surface); border: 1px solid var(--sand); border-radius: 16px; padding: 32px 26px 28px; text-align: center; box-shadow: var(--shadow-sm); }
.step-medallion { position: relative; width: 110px; height: 110px; margin: 0 auto 18px; border-radius: 50%; background: var(--bone-2); color: var(--olive); display: grid; place-items: center; }
.step-art { width: 64px; height: 64px; }
.step-num { position: absolute; top: -6px; right: -2px; width: 38px; height: 38px; display: grid; place-items: center; background: var(--terra); color: #fff; font-family: var(--display); font-weight: 600; font-size: 19px; border-radius: 50%; border: 3px solid var(--surface); }
.step h3 { font-size: 23px; font-weight: 600; }
.step p { font-size: 18px; color: var(--espresso-2); margin: 0; }
.step-arrow { flex: 0 0 auto; align-self: center; color: var(--sand); padding-top: 40px; }
.step-arrow svg { width: 44px; height: 24px; }

/* ============================================================
   5. WHAT WE BUY (photo editorial)
   ============================================================ */
.buy-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.buy-photos { position: relative; }
.buy-photos .buy-photo-main { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-md); }
.buy-photos .buy-photo-inset {
  position: absolute; right: -18px; bottom: -22px;
  width: 46%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; border: 5px solid var(--bone);
  box-shadow: var(--shadow-md);
}
.buy-text .section-title { font-size: clamp(28px, 4vw, 42px); }
.buy-list { list-style: none; margin: 1.4rem 0 1.2rem; padding: 0; }
.buy-list li { position: relative; padding-left: 34px; margin-bottom: 16px; font-size: 19px; color: var(--espresso-2); }
.buy-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; background: var(--terra); color: #fff; font-size: 13px; font-weight: 700; border-radius: 50%; }
.buy-list strong { display: block; font-size: 19px; color: var(--espresso); }
.buy-value { font-size: 18px; color: var(--espresso); background: #fff4ee; border-left: 4px solid var(--terra); border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 0 0 14px; }
.buy-value strong { color: var(--terra-dark); }
.buy-footnote { font-size: 18px; color: var(--muted); font-style: italic; }
.brand-band { background: var(--espresso); padding: 34px 0 40px; margin: 48px 0; }
.brand-band .brand-cloud .b { color: #fff; }
.brand-strip-wrap { text-align: center; }
.bs-label { font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--terra); margin: 0 0 10px; }
.brand-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2px 9px; max-width: 940px; margin: 16px auto 0; line-height: 1.3; }
.brand-cloud .b { font-family: var(--display); font-weight: 700; font-size: 27px; color: var(--espresso); letter-spacing: -.01em; }
.brand-cloud .b:not(:last-child)::after { content: "\2022"; color: var(--terra); margin-left: 9px; font-size: 15px; vertical-align: middle; }
@media (max-width: 720px) {
  .brand-cloud { gap: 2px 7px; max-width: 560px; }
  .brand-cloud .b { font-size: 20px; }
  .brand-cloud .b:not(:last-child)::after { margin-left: 7px; font-size: 12px; }
}

/* Real-hauls photo gallery (What We Buy) */
.finds-wrap { margin-top: 44px; text-align: center; }
.finds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1000px; margin: 14px auto 0; }
.find { position: relative; margin: 0; border-radius: 12px; overflow: hidden; background: var(--bone-2); box-shadow: 0 2px 10px rgba(10,35,66,.08); }
.find img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.find figcaption { position: absolute; left: 0; right: 0; bottom: 0; text-align: left; color: #fff; font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .01em; padding: 22px 12px 9px; background: linear-gradient(to top, rgba(10,35,66,.9), rgba(10,35,66,0)); }
@media (max-width: 720px) { .finds-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ============================================================
   5b. COMPARISON
   ============================================================ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; max-width: 940px; margin: 0 auto; }
.compare-col { position: relative; background: var(--surface); border: 1px solid var(--sand); border-radius: 16px; padding: 30px 28px 26px; box-shadow: var(--shadow-sm); }
.compare-col h3 { font-size: 23px; text-align: center; margin-bottom: 18px; font-weight: 600; }
.compare-them { background: var(--bone-2); }
.compare-them h3 { color: var(--muted); }
.compare-us { border: 2px solid var(--terra); box-shadow: var(--shadow-md); }
.compare-flag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--terra); color: var(--espresso); font-family: var(--head); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; white-space: nowrap; box-shadow: var(--shadow-sm); }
.compare-list { list-style: none; margin: 0; padding: 0; }
.compare-list li { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; font-size: 18px; border-top: 1px solid var(--sand); }
.compare-list li:first-child { border-top: 0; }
.ci { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; font-size: 16px; font-weight: 700; line-height: 1; }
.ci-good { background: #dcefd9; color: #2e7d46; border: 2px solid #2e7d46; }
.ci-bad  { background: #f6dedb; color: #b23a2c; border: 2px solid #cf5443; }
.compare-punch { text-align: center; font-family: var(--display); font-size: 24px; color: var(--espresso); margin: 36px auto 0; max-width: 660px; line-height: 1.35; }

/* ============================================================
   TRUST STRIP (under hero — safety / no-obligation signals)
   ============================================================ */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--sand); padding: 16px 0; }
.trust-strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.ts-item { font-family: var(--head); font-weight: 700; font-size: 15.5px; color: var(--espresso); white-space: nowrap; }
.ts-item b { color: var(--olive); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1140px; margin: 0 auto; align-items: stretch; }
.review-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--sand); border-radius: 16px; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--terra); font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 18px; font-family: var(--display); font-weight: 400; font-size: 16.5px; line-height: 1.6; color: var(--espresso); }
.review-card figcaption { margin-top: auto; font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--espresso-2); }
.sample-note { display: block; font-size: 14px; color: var(--muted); font-style: italic; margin-top: 6px; }

/* ============================================================
   6. ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.photo-placeholder { aspect-ratio: 1; border-radius: 16px; background: var(--bone-2); border: 2px dashed var(--muted); display: grid; place-items: center; text-align: center; color: var(--muted); font-family: var(--head); font-weight: 700; box-shadow: var(--shadow-sm); }
.about-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-md); }
.about-copy p { font-size: 20px; }
.about-copy .btn { margin-top: 12px; }

/* ============================================================
   7. FAQ
   ============================================================ */
.accordion { margin-top: 8px; }
.faq-item { background: var(--surface); border: 1px solid var(--sand); border-radius: 14px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--tap); padding: 20px 22px; background: transparent; border: 0; cursor: pointer; text-align: left; font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--espresso); }
.faq-q:hover { background: var(--surface-warm); }
.faq-q:focus-visible { outline: 3px solid rgba(191,86,48,.45); outline-offset: -3px; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--terra); transition: transform .2s ease, opacity .2s ease; }
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 3px; }
.faq-icon::after  { left: 10px; top: 0; width: 3px; height: 22px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a { padding: 0 22px; }
.faq-a p { font-size: 18px; color: var(--espresso-2); padding-bottom: 20px; margin: 0; }

/* ============================================================
   8. FINAL CTA + FOOTER
   ============================================================ */
.final-cta { background: var(--espresso); color: #ece6da; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(28px, 4.2vw, 44px); }
.final-sub { font-size: 20px; color: #b8c5d8; margin-bottom: 28px; }
.final-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-buttons .btn { width: auto; }

.site-footer { background: #0A2342; color: #aab8cc; padding: 44px 0; text-align: center; }
.footer-brand { font-family: var(--display); font-weight: 600; font-size: 24px; color: var(--gold-acc); margin-bottom: 6px; }
.footer-line { font-size: 17px; color: #cdd8e6; margin-bottom: 16px; }
.footer-line a { color: var(--gold-acc); font-weight: 700; text-decoration: none; }
.footer-legal { font-size: 13px; line-height: 1.55; color: #74819a; max-width: 760px; margin: 0 auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 16 / 10; max-height: 360px; }
  .buy-editorial { grid-template-columns: 1fr; gap: 48px; }
  .buy-photos { max-width: 460px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .main-nav { display: none; }
  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step { width: 100%; max-width: 460px; }
  .step-arrow { padding: 10px 0; transform: rotate(90deg); }
}

@media (max-width: 720px) {
  body { font-size: 18px; }
  .section { padding: 56px 0; }
  .review-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; gap: 30px; }
  .compare-them { order: 2; }
  /* Header: brand on top row, both CTAs anchored to the corners below */
  .header-inner { flex-wrap: wrap; row-gap: 10px; }
  .brand { flex: 1 1 100%; }
  .header-cta { flex: 1 1 100%; justify-content: space-between; gap: 10px; }
  .header-cta .btn { padding: 8px 12px; font-size: 14px; min-height: 44px; white-space: nowrap; }
  .header-cta .btn-call-number { font-size: 15px; white-space: nowrap; }
  .header-cta .btn-call-label { font-size: 10px; }
  .btn-book { display: inline-flex; }
}

@media (max-width: 460px) {
  .final-buttons .btn { width: 100%; }
  .buy-photos .buy-photo-inset { width: 42%; right: -8px; }
}

/* ============================================================
   STICKY MOBILE CALL/TEXT BAR  (mobile only)
   ============================================================ */
.mobile-cta-bar { display: none; }
@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #0A2342;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -4px 16px rgba(10,33,66,.28);
  }
  .mcb-btn {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 52px;
    font-family: var(--head); font-weight: 700; font-size: 18px;
    text-decoration: none; border-radius: 10px;
  }
  .mcb-call { background: #fff; color: var(--espresso); }
  .mcb-text { background: var(--terra); color: #fff; }
  .mcb-btn span { font-size: 1.1em; }
  /* keep content clear of the fixed bar */
  body { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
