/* ==========================================================================
   Salado Custom Carts - theme styles
   BEM-ish naming, custom properties for the palette, no build step required.
   Palette is sampled from the real logo: navy #002068, red #B80830.
   ========================================================================== */

:root {
  /* Brand, straight off the logo */
  --scc-navy: #002068;
  --scc-navy-deep: #001845;
  --scc-red: #b80830;

  /* Red is too dark to read as text on a dark background, so accents use a
     lightened tint. Solid red stays for button fills, which carry white text. */
  --scc-red-accent: #ff4b63;
  --scc-red-hover: #9c0628;

  /* Surfaces */
  --scc-ink: #0b0d10;
  --scc-ink-2: #14181d;
  --scc-ink-3: #1d232b;
  --scc-line: rgba(255, 255, 255, 0.12);
  --scc-paper: #ffffff;
  --scc-paper-2: #f4f6f8;

  /* Text */
  --scc-on-dark: #f2f5f8;
  --scc-on-dark-muted: #b3bcc7;
  --scc-on-light: #14181d;
  --scc-on-light-muted: #4d5763;

  --scc-radius: 10px;
  --scc-radius-lg: 16px;
  --scc-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --scc-max: 1200px;
  --scc-gutter: clamp(1rem, 4vw, 2.5rem);

  --scc-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --scc-font-head: "Barlow Condensed", "Arial Narrow", var(--scc-font);
}

/* The page alternates light and dark panels by design. Declaring the scheme
   stops phone browsers in dark mode from repainting the light panels. */
:root { color-scheme: light; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--scc-navy); }

h1, h2, h3, h4 {
  font-family: var(--scc-font-head);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.scc-container {
  width: 100%;
  max-width: var(--scc-max);
  margin-inline: auto;
  padding-inline: var(--scc-gutter);
}

.scc-section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.scc-section--dark { background: var(--scc-ink); color: var(--scc-on-dark); }
.scc-section--dark h1, .scc-section--dark h2, .scc-section--dark h3 { color: #fff; }
.scc-section--ink2 { background: var(--scc-ink-2); color: var(--scc-on-dark); }
.scc-section--ink2 h2, .scc-section--ink2 h3 { color: #fff; }
.scc-section--light { background: var(--scc-paper); }
.scc-section--muted { background: var(--scc-paper-2); }

.scc-eyebrow {
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--scc-red-accent);
  margin: 0 0 0.6rem;
}
.scc-section--light .scc-eyebrow,
.scc-section--muted .scc-eyebrow { color: var(--scc-red); }

.scc-lede { font-size: 1.1rem; color: var(--scc-on-dark-muted); max-width: 60ch; }
.scc-section--light .scc-lede,
.scc-section--muted .scc-lede { color: var(--scc-on-light-muted); }

/* --------------------------------------------------------------- buttons */
.scc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--scc-font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.08rem;
  line-height: 1;
  padding: 1.05rem 1.7rem;
  border-radius: var(--scc-radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, color 0.18s ease;
}
.scc-btn:hover { transform: translateY(-2px); }
.scc-btn--primary { background: var(--scc-red); color: #fff; }
.scc-btn--primary:hover { background: var(--scc-red-hover); color: #fff; }
.scc-btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.scc-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.scc-btn--navy { background: var(--scc-navy); color: #fff; }
.scc-btn--navy:hover { background: var(--scc-navy-deep); color: #fff; }
.scc-btn--outline-navy { border-color: var(--scc-navy); color: var(--scc-navy); }
.scc-btn--outline-navy:hover { background: var(--scc-navy); color: #fff; }

/* ---------------------------------------------------------------- header */
/* Black bar with white type, following the mockup. The logo needs no dark
   variant: every shape in it is already outlined in white, so it sits on black
   unaltered. Recolouring it would have destroyed those keylines. */
.scc-header {
  position: sticky;
  top: 0;
  z-index: 60;
  /* Pure black on purpose: it has to match the black in the logo artwork
     exactly, or the logo shows up as a slightly different rectangle. Fully
     opaque - the sections underneath are dark, and even 3% transparency let
     their text ghost through. */
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.scc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.9rem, 2vw, 2rem);
  min-height: 92px;
  /* Wider than the 1200px body container: the row holds the logo, six links,
     the phone number and a button, and needs the extra room to breathe. */
  max-width: 1440px;
}
/* Sized by height, not width: this logo is a wide badge-plus-wordmark lockup,
   so height is what keeps it in proportion with the bar. */
.scc-header__logo img { height: clamp(48px, 5vw, 72px); width: auto; }
.scc-header__logo { display: block; line-height: 0; flex: none; }
.scc-header__actions { display: flex; align-items: center; gap: clamp(0.5rem, 1vw, 1rem); flex: none; }
.scc-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--scc-font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.scc-header__phone svg { color: var(--scc-red-accent); flex: none; }
.scc-header__phone:hover { color: var(--scc-red-accent); }

/* The outlined action button from the mockup, pointed at the service enquiry
   rather than a quote form. */
.scc-header__cta {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--scc-red);
  border-radius: var(--scc-radius);
  padding: 0.6rem clamp(0.75rem, 1.1vw, 1.15rem);
  font-family: var(--scc-font-head);
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.scc-header__cta:hover { background: var(--scc-red); border-color: var(--scc-red); color: #fff; }

/* Menu labels were shortened by the client, which freed up a lot of room, so
   the links are spaced generously again. Everything still scales with the
   viewport - the longest label ("Carts for Sale") sets the floor. */
.scc-nav__list {
  display: flex;
  gap: clamp(0.9rem, 1.9vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.scc-nav__list a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-block: 0.4rem;
  display: inline-block;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.scc-nav__list a:hover,
.scc-nav__list .current-menu-item > a {
  color: var(--scc-red-accent);
  border-bottom-color: var(--scc-red-accent);
}

.scc-burger {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--scc-radius);
  padding: 0.7rem 1rem;
  font-family: var(--scc-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.scc-burger__bars { display: inline-block; width: 18px; height: 2px; background: #fff; position: relative; }
.scc-burger__bars::before,
.scc-burger__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.scc-burger__bars::before { top: -6px; }
.scc-burger__bars::after { top: 6px; }

/* ------------------------------------------------------------------ hero */
.scc-hero {
  position: relative;
  background: var(--scc-ink);
  color: var(--scc-on-dark);
  overflow: hidden;
}
.scc-hero__media { position: absolute; inset: 0; }
.scc-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.scc-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 10, 13, 0.94) 0%,
    rgba(8, 10, 13, 0.86) 38%,
    rgba(8, 10, 13, 0.45) 68%,
    rgba(8, 10, 13, 0.35) 100%
  );
}
.scc-hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  max-width: 44rem;
}
.scc-hero__title { margin-bottom: 0.35em; color: #fff; }
.scc-hero__title span { color: var(--scc-red-accent); display: block; }
.scc-hero__text { font-size: 1.15rem; color: #dfe5ec; max-width: 46ch; }
.scc-hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.scc-hero__local {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.9rem;
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.scc-hero__local svg { flex: none; }

/* ------------------------------------------------------------- trust bar */
.scc-trust { background: var(--scc-ink-2); border-top: 1px solid var(--scc-line); }
.scc-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--scc-line);
}
.scc-trust__item {
  background: var(--scc-ink-2);
  padding: 1.6rem clamp(1rem, 2vw, 1.8rem);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.scc-trust__icon { color: var(--scc-red-accent); flex: none; margin-top: 2px; }
.scc-trust__title {
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.15rem;
  line-height: 1.15;
}
.scc-trust__text { margin: 0; font-size: 0.92rem; color: var(--scc-on-dark-muted); line-height: 1.45; }

/* ------------------------------------------------------------ split rows */
.scc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.scc-split__media img { border-radius: var(--scc-radius-lg); box-shadow: var(--scc-shadow); width: 100%; }
.scc-split--flip .scc-split__media { order: -1; }

.scc-check {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.scc-check li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 500;
}
.scc-check li svg { flex: none; margin-top: 5px; color: var(--scc-red); }
.scc-section--dark .scc-check li svg,
.scc-section--ink2 .scc-check li svg { color: var(--scc-red-accent); }

/* --------------------------------------------------------------- savings */
.scc-savings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.scc-savings__card {
  border: 1px solid var(--scc-line);
  border-radius: var(--scc-radius);
  padding: 1.3rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
}
.scc-savings__card--accent { border-color: var(--scc-red); background: rgba(184, 8, 48, 0.12); }
.scc-savings__label {
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--scc-on-dark-muted);
  margin: 0 0 0.3rem;
}
.scc-savings__value {
  font-family: var(--scc-font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.35rem;
}
.scc-savings__note { margin: 0; font-size: 0.9rem; color: var(--scc-on-dark-muted); }

/* -------------------------------------------------------------- services */
.scc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
}
.scc-card {
  background: var(--scc-paper);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: var(--scc-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.scc-card:hover { transform: translateY(-4px); box-shadow: var(--scc-shadow); }
.scc-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--scc-paper-2); }
.scc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.scc-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.scc-card__title { margin: 0 0 0.5rem; font-size: 1.35rem; }
.scc-card__title a { color: inherit; text-decoration: none; }
.scc-card__title a:hover { color: var(--scc-red); }
.scc-card__text { margin: 0 0 1.2rem; color: var(--scc-on-light-muted); font-size: 0.98rem; }
.scc-card__link {
  margin-top: auto;
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--scc-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.scc-card__link:hover { gap: 0.7rem; color: var(--scc-red-hover); }

/* ----------------------------------------------------------------- carts */
.scc-carts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.scc-cart {
  background: var(--scc-ink-2);
  border: 1px solid var(--scc-line);
  border-radius: var(--scc-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.scc-section--light .scc-cart,
.scc-section--muted .scc-cart {
  background: var(--scc-paper);
  border-color: rgba(0, 0, 0, 0.09);
}
.scc-cart__media { aspect-ratio: 4 / 3; overflow: hidden; background: #0e1217; }
.scc-cart__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.scc-cart:hover .scc-cart__media img { transform: scale(1.04); }
.scc-cart__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.scc-cart__title { font-size: 1.2rem; margin: 0 0 0.5rem; line-height: 1.15; }
.scc-cart__title a { color: inherit; text-decoration: none; }
.scc-cart__title a:hover { color: var(--scc-red-accent); }
.scc-section--light .scc-cart__title a:hover { color: var(--scc-red); }
.scc-cart__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}
.scc-cart__meta li {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--scc-on-dark-muted);
}
.scc-section--light .scc-cart__meta li,
.scc-section--muted .scc-cart__meta li {
  background: var(--scc-paper-2);
  color: var(--scc-on-light-muted);
}
.scc-cart__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Sold cards have no price block, so the button would drift to the left edge
   on its own. Push it back to where it sits on every other card. */
.scc-cart__foot--sold { justify-content: flex-end; }
.scc-cart__price {
  font-family: var(--scc-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.scc-section--light .scc-cart__price, .scc-section--muted .scc-cart__price { color: var(--scc-navy); }
.scc-cart__price small {
  display: block;
  font-family: var(--scc-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scc-on-dark-muted);
  margin-bottom: 0.15rem;
}
.scc-section--light .scc-cart__price small { color: var(--scc-on-light-muted); }
.scc-cart__cta {
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: var(--scc-radius);
  background: var(--scc-red);
  color: #fff;
  text-decoration: none;
}
.scc-cart__cta:hover { background: var(--scc-red-hover); color: #fff; }
.scc-cart__status {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: #1f7a3d;
}
.scc-cart__status--pending { background: #b8730a; }
.scc-cart__status--sold { background: #4a5563; }

/* shown in place of the grid when no carts are in stock */
/* The "recently built and sold" strip that follows the empty state. */
.scc-recent__label { margin-top: 2.4rem; text-align: center; }

.scc-empty {
  border: 1px dashed var(--scc-line);
  border-radius: var(--scc-radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-top: 2.4rem;
}
.scc-empty__title {
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.scc-empty__text {
  max-width: 46ch;
  margin: 0 auto 1.5rem;
  color: var(--scc-on-dark-muted);
}
.scc-section--light .scc-empty,
.scc-section--muted .scc-empty { border-color: rgba(0, 0, 0, 0.16); }
.scc-section--light .scc-empty__title,
.scc-section--muted .scc-empty__title { color: var(--scc-navy); }
.scc-section--light .scc-empty__text,
.scc-section--muted .scc-empty__text { color: var(--scc-on-light-muted); }

.scc-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.scc-sectionhead h2 { margin-bottom: 0; }

/* --------------------------------------------------------------- pickup  */
.scc-pickup { position: relative; background: var(--scc-navy); color: #fff; overflow: hidden; }
.scc-pickup__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.scc-pickup__media img { border-radius: var(--scc-radius-lg); box-shadow: var(--scc-shadow); }
.scc-pickup h2 { color: #fff; }
.scc-pickup .scc-lede { color: #cdd8ea; }
.scc-pickup .scc-eyebrow { color: #ff8fa0; }
.scc-pickup .scc-check li svg { color: #fff; }

/* ------------------------------------------------------------------- CTA */
.scc-cta { background: var(--scc-ink); color: #fff; text-align: center; }
.scc-cta h2 { color: #fff; }
.scc-cta .scc-lede { margin-inline: auto; }
.scc-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

/* ---------------------------------------------------------------- footer */
.scc-footer { background: var(--scc-ink-2); color: var(--scc-on-dark-muted); padding-block: 3.2rem 1.5rem; }
.scc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
}
.scc-footer__logo { display: inline-block; line-height: 0; }
.scc-footer__logo img { width: 230px; max-width: 100%; height: auto; }
.scc-footer__pickup {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--scc-red-accent);
  font-weight: 700;
}
.scc-footer__pickup svg { flex: none; }
.scc-footer__logo img { width: 210px; }
.scc-footer h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.9rem; }
.scc-footer a { color: var(--scc-on-dark-muted); text-decoration: none; }
.scc-footer a:hover { color: #fff; text-decoration: underline; }
.scc-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.scc-footer__bottom {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--scc-line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* -------------------------------------------------- mobile sticky call bar */
.scc-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  gap: 1px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.22);
}
.scc-callbar a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-family: var(--scc-font-head);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
  text-decoration: none;
  color: #fff;
  background: var(--scc-red);
}
.scc-callbar a + a { background: var(--scc-navy); }

/* -------------------------------------------------------- page + content */
.scc-pagehead { background: var(--scc-ink); color: #fff; padding-block: clamp(2.5rem, 6vw, 4rem); }
.scc-pagehead h1 { margin-bottom: 0.2em; }
.scc-pagehead p { color: var(--scc-on-dark-muted); margin: 0; max-width: 60ch; }

.scc-content { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.scc-content .scc-container > * { max-width: 780px; margin-inline: auto; }
.scc-content .alignwide { max-width: 1100px; }
.scc-content .alignfull { max-width: none; }
.scc-content img { border-radius: var(--scc-radius); }

.scc-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--scc-navy);
  padding: 0.8rem 1.2rem;
  z-index: 200;
}
.scc-skip:focus { left: 0; }

/* --------------------------------------------------------------- 1150px  */
@media (max-width: 1150px) {
  .scc-nav { display: none; }
  .scc-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--scc-shadow);
  }
  .scc-nav.is-open .scc-nav__list { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .scc-nav.is-open .scc-nav__list li { border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .scc-nav.is-open .scc-nav__list li:first-child { border-top: 0; }
  .scc-nav.is-open .scc-nav__list a {
    display: block;
    padding: 0.95rem var(--scc-gutter);
    border-bottom: 0;
  }
  .scc-burger { display: inline-flex; }
  .scc-header__inner { position: relative; }
  /* Logo + phone + button + burger is too much for one line on a tablet.
     Both of these are covered by the sticky call bar at the bottom. */
  .scc-header__phone { display: none; }
  .scc-header__cta { display: none; }

  .scc-split, .scc-pickup__grid { grid-template-columns: 1fr; }
  .scc-split--flip .scc-split__media { order: 0; }
  .scc-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .scc-cards, .scc-carts { grid-template-columns: repeat(2, 1fr); }
  .scc-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------- 767px  */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .scc-hero__inner { padding-block: 3rem 3.5rem; max-width: none; }
  .scc-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 10, 13, 0.82) 0%,
      rgba(8, 10, 13, 0.9) 55%,
      rgba(8, 10, 13, 0.95) 100%
    );
  }
  .scc-hero__cta .scc-btn { width: 100%; }
  .scc-trust__grid, .scc-cards, .scc-carts { grid-template-columns: 1fr; }
  .scc-savings { grid-template-columns: 1fr; }
  .scc-footer__grid { grid-template-columns: 1fr; }
  .scc-callbar { display: flex; }
  /* keep the fixed call bar from covering the end of the page */
  body { padding-bottom: 58px; }
  .scc-footer__bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .scc-btn:hover { transform: none; }
}
