/* ============================================================
   Ghost of Eastside Records — styles.css
   Retro vinyl palette: matte black + warm cream + neon magenta/teal
   ============================================================ */

:root {
  --bg: #121212;
  --bg-2: #1a1a1a;
  --bg-3: #1c1c1c;
  --cream: #f4ecd8;
  --cream-soft: #e9e0c8;
  --ink: #16140f;
  --neon: #ff2e88;        /* electric magenta */
  --neon-deep: #d61f6e;
  --neon-2: #1de9b6;      /* neon teal/green */
  --neon-2-deep: #12b894;
  --muted: #a8a196;
  --line: rgba(244, 236, 216, 0.12);
  --line-strong: rgba(244, 236, 216, 0.22);

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.35);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", 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;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--neon);
  color: #121212;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0.5px; }
h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.6rem); font-weight: 400; }
h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 400; }
h3 { font-family: var(--font-body); font-size: 1.18rem; font-weight: 700; letter-spacing: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

.hl { color: var(--neon); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--neon);
  color: #121212;
  box-shadow: 0 8px 24px rgba(255, 46, 136, 0.32);
}
.btn--primary:hover { background: var(--neon-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 46, 136, 0.42); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn--outline:hover { border-color: var(--neon-2); color: var(--neon-2); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: transparent;
  padding: 10px 14px;
}
.btn--ghost:hover { color: var(--neon); }

.btn--dark { background: #121212; color: var(--cream); border-color: rgba(0,0,0,0.2); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn--light { background: var(--cream); color: #121212; }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* ============================================================
   Intro overlay: record drop -> needle drop -> logo plays
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 38%, #1f1f1f 0%, #121212 60%, #0c0c0c 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.intro__turntable { width: min(64vw, 260px); }

/* dropping record */
.intro__disc {
  transform-origin: 120px 140px;
  animation: discDrop 1s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
@keyframes discDrop {
  0%   { transform: translateY(-180px) scale(0.92); opacity: 0; }
  60%  { transform: translateY(0) scale(1); opacity: 1; }
  70%  { transform: translateY(-8px) scale(1); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
/* after settling, spin */
.intro__disc { animation: discDrop 1s cubic-bezier(0.2,0.8,0.3,1) forwards, discSpin 3.5s linear 1s infinite; }
@keyframes discSpin { to { transform: rotate(360deg); } }

/* tonearm drops in */
.intro__arm {
  transform-origin: 218px 56px;
  transform: rotate(-26deg);
  opacity: 0;
  animation: armDrop 0.7s ease 1s forwards;
}
@keyframes armDrop {
  0%   { transform: rotate(-26deg); opacity: 0; }
  100% { transform: rotate(0deg); opacity: 1; }
}

.intro__reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: introText 0.7s ease 1.5s forwards;
}
@keyframes introText {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro__kicker {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--neon-2); font-weight: 700;
}
.intro__word {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.4rem);
  color: var(--cream);
  letter-spacing: 1px;
}
.intro__word em { color: var(--neon); font-style: normal; }
.intro__tag { font-size: 0.92rem; color: var(--muted); letter-spacing: 0.08em; }

.intro__skip {
  position: absolute;
  bottom: 28px; right: 28px;
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease;
}
.intro__skip:hover { border-color: var(--neon); color: var(--neon); }

@media (prefers-reduced-motion: reduce) {
  .intro__disc, .intro__arm, .intro__reveal { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: var(--cream);
}
.brand__mark { display: inline-flex; }
.brand__accent { color: var(--neon); }

.nav { display: none; }
.nav__list {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-soft);
  letter-spacing: 0.02em;
  transition: color 0.16s ease;
}
.nav__list a:hover { color: var(--neon); }

.site-header__cta { display: none; gap: 8px; align-items: center; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.98);
  padding: 12px 24px 22px;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--cream-soft);
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--neon); }
.mobile-nav .btn { margin-top: 12px; border-bottom: none; color: #121212; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(255, 46, 136, 0.14), transparent 55%),
    radial-gradient(ellipse at 12% 80%, rgba(29, 233, 182, 0.10), transparent 55%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244,236,216,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.7;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero__copy h1 { margin-bottom: 18px; }
.hero__sub {
  font-size: 1.08rem;
  color: var(--cream-soft);
  max-width: 56ch;
  margin: 0 0 26px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.trust-line {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 0;
}

.hero__art { position: relative; }
.turntable-illustration {
  background: linear-gradient(160deg, #1c1c1c, #141414);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.art-badge {
  position: absolute;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.art-badge--neon { background: var(--neon); color: #121212; top: 8px; right: 8px; }
.art-badge--teal { background: var(--neon-2); color: #0c2c25; bottom: 8px; left: 8px; }

.spin {
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin { animation: none; } }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-soft);
}
.trust-item svg { color: var(--neon-2); flex-shrink: 0; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(54px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-lead {
  font-size: 1.05rem;
  color: var(--cream-soft);
  margin: 16px auto 0;
}

/* ---------- Offerings grid ---------- */
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.offer-card {
  background: linear-gradient(165deg, var(--bg-3), #161616);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  color: var(--cream-soft);
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.offer-card__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255, 46, 136, 0.08);
  border: 1px solid rgba(255, 46, 136, 0.18);
  color: var(--cream);
  margin-bottom: 16px;
}
.offer-card h3 { margin-bottom: 8px; color: var(--cream); }
.offer-card p { margin: 0; font-size: 0.96rem; }

.shop-note, .bins-note, .schedule-note {
  text-align: center;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.shop-note a, .bins-note a { color: var(--neon-2); text-decoration: none; font-weight: 600; }
.shop-note a:hover, .bins-note a:hover { text-decoration: underline; }

/* ---------- Why / features ---------- */
.why { background: var(--bg-2); }
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(29, 233, 182, 0.08);
  border: 1px solid rgba(29, 233, 182, 0.2);
  color: var(--neon-2);
  margin-bottom: 14px;
}
.feature h3 { margin-bottom: 8px; color: var(--cream); }
.feature p { margin: 0; font-size: 0.96rem; color: var(--cream-soft); }

/* ---------- Showcase ---------- */
.showcase__art {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #141414;
}
.bins-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.bins-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.bin-tag {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--neon);
}
.bin-desc { font-size: 0.92rem; color: var(--cream-soft); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.review {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  margin: 0;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--neon);
  opacity: 0.7;
  margin-bottom: 6px;
}
.review blockquote {
  margin: 0 0 16px;
  font-size: 1.04rem;
  color: var(--cream);
  line-height: 1.55;
}
.review figcaption {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.96rem;
}
.review figcaption span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 2px;
}
.reviews-disclaimer {
  text-align: center;
  margin: 28px auto 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--neon);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--cream-soft); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, var(--neon) 0%, var(--neon-deep) 60%, #b81860 100%);
  color: #121212;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(40px, 6vw, 64px) 24px;
  text-align: center;
  align-items: center;
}
.cta-band h2 { color: #121212; }
.cta-band p { margin: 12px 0 0; font-size: 1.05rem; max-width: 50ch; color: #2a0e1c; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.contact__info p { color: var(--cream-soft); max-width: 50ch; }
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.contact-list a { color: var(--cream); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--neon); }
.contact-list__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 46, 136, 0.1);
  border: 1px solid rgba(255, 46, 136, 0.2);
  color: var(--neon);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--cream-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--cream);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(255, 46, 136, 0.18);
}
.field textarea { resize: vertical; }
.contact-form .field { margin-bottom: 16px; }
.contact-form button { margin-top: 4px; }

.form-status { margin: 14px 0 0; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.form-status.is-error { color: var(--neon); }
.form-status.is-success { color: var(--neon-2); }
.form-fineprint { margin: 12px 0 0; font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand .brand__text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--cream);
}
.site-footer__brand .brand__accent { color: var(--neon); }
.site-footer__brand p { margin: 10px 0 0; color: var(--muted); font-size: 0.92rem; max-width: 42ch; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 18px; align-content: start; }
.site-footer__nav a { color: var(--cream-soft); text-decoration: none; font-weight: 600; font-size: 0.94rem; }
.site-footer__nav a:hover { color: var(--neon); }
.site-footer__contact { display: flex; flex-direction: column; gap: 8px; }
.site-footer__contact a { color: var(--cream-soft); text-decoration: none; font-weight: 600; }
.site-footer__contact a:hover { color: var(--neon); }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}
.site-footer__bottom p { margin: 0; }
.credit a { color: var(--neon-2); text-decoration: none; font-weight: 600; }
.credit a:hover { text-decoration: underline; }

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  display: flex;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
}
.mobile-bar__btn--call { background: var(--neon); color: #121212; }
.mobile-bar__btn--order { background: var(--bg-2); color: var(--cream); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 600px) {
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .bins-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-band p { margin-bottom: 0; }
}

@media (min-width: 900px) {
  .nav { display: block; }
  .site-header__cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .bins-list { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .site-footer__inner { grid-template-columns: 1.6fr 1fr 1fr; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; }
  .mobile-bar { display: none; }
}

/* Add bottom space on mobile so content clears the call bar */
@media (max-width: 899px) {
  body { padding-bottom: 56px; }
}
