/* =================================================================
   PADDLE APPAREL COMPANY — STYLES
   Mobile-first. Palette sampled from the brand logo
   (sunset orange, lake-water blue, navy ink, cream paper).
   ================================================================= */

/* ----------------------------------------------------------------
   DESIGN TOKENS — all colors, type, and spacing live here
   ---------------------------------------------------------------- */
:root {
  /* Brand colors (from the logo) */
  --navy: #0b1f3a;
  --navy-900: #07142a;
  --navy-700: #11305a;
  --orange: #f26522;
  --orange-bright: #fe6d17;
  --sunset-1: #e8642a;
  --sunset-2: #f4a15c;
  --sunset-3: #fbd9a6;
  --water: #2e8bc0;
  --water-deep: #1b5e83;
  --water-soft: #e4f1f8;
  --cream: #fbf6ec;
  --sand: #f4ecdd;

  /* Functional colors */
  --ink: #0b1f3a;
  --muted: #5a6b7e;
  --white: #ffffff;
  --line: #e6dccb;

  /* Typography */
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;

  --fs-xs: 0.8rem;
  --fs-sm: 0.95rem;
  --fs-base: 1.05rem;
  --fs-md: 1.25rem;
  --fs-lg: 1.6rem;
  --fs-xl: 2.1rem;
  --fs-2xl: 2.6rem;
  --fs-3xl: 3.1rem;

  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-base: 1.65;

  /* Spacing scale (rem) */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 5.5rem;

  /* Layout */
  --maxw: 75rem;
  --header-h: 4.25rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 999rem;

  /* Shadows */
  --shadow: 0 0.5rem 1.5rem rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 1rem 2.5rem rgba(11, 31, 58, 0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Accessible focus state for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0.18rem solid var(--orange);
  outline-offset: 0.18rem;
}

/* ----------------------------------------------------------------
   SHARED HELPERS — eyebrows, buttons, section headings, wave
   ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.eyebrow-center {
  text-align: center;
}

.eyebrow-light {
  color: var(--sunset-2);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 0.13rem solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease),
    background-color 0.15s var(--ease);
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--orange-bright);
  transform: translateY(-0.12rem);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background-color: var(--navy);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}

/* Centered section heading block */
.section-head {
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-head h2 {
  font-size: var(--fs-xl);
  color: var(--navy);
}

.section-sub {
  margin-top: var(--space-sm);
  color: var(--muted);
}

/* Wave divider — the signature three-line motif from the logo */
.wave-divider {
  display: block;
  width: 100%;
  height: 3rem;
  margin-top: var(--space-xl);
}

.wave-divider path {
  fill: var(--cream);
}

/* ----------------------------------------------------------------
   HEADER + NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--cream);
  border-bottom: 0.06rem solid var(--line);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.brand-mark {
  font-size: 1.5rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--navy);
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--water-deep);
}

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  background-color: transparent;
  border: 0.06rem solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle-bar {
  display: block;
  height: 0.16rem;
  width: 100%;
  background-color: var(--navy);
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

/* Open state: morph bars into an X (toggled via JS class on body) */
.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(0.48rem) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-0.48rem) rotate(-45deg);
}

/* Mobile nav: collapsed by default, expands when .nav-open is set */
.primary-nav {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  display: grid;
  gap: var(--space-xs);
  padding: var(--space-md);
  background-color: var(--cream);
  border-bottom: 0.06rem solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-150%);
  transition: transform 0.25s var(--ease);
}

.nav-open .primary-nav {
  transform: translateY(0);
}

.primary-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  color: var(--navy);
}

.primary-nav a:hover {
  background-color: var(--sand);
}

.nav-cta {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
}

.nav-cta:hover {
  background-color: var(--orange-bright);
}

/* ----------------------------------------------------------------
   HERO — sunset gradient + CTA
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--sunset-1) 0%,
    var(--sunset-2) 45%,
    var(--sunset-3) 100%
  );
  padding-top: var(--space-2xl);
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  gap: var(--space-xl);
}

.hero-copy .eyebrow {
  color: var(--navy-900);
}

.hero h1 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--navy-900);
}

.hero .hl {
  color: var(--white);
  text-shadow: 0 0.15rem 0 var(--orange);
}

.hero-lede {
  margin-top: var(--space-md);
  max-width: 34rem;
  color: var(--navy-900);
  font-weight: 600;
}

.hero-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------------------------
   SERVICES / PRODUCTS GRID
   ---------------------------------------------------------------- */
.services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-3xl);
}

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-lg);
}

.card {
  background-color: var(--white);
  border: 0.06rem solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.card:hover {
  transform: translateY(-0.35rem);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: var(--fs-md);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.card p {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.services-cta {
  margin-top: var(--space-xl);
  text-align: center;
}

/* ----------------------------------------------------------------
   ABOUT — navy section
   ---------------------------------------------------------------- */
.about {
  background-color: var(--navy);
  color: var(--cream);
}

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
  display: grid;
  gap: var(--space-xl);
}

.about-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-copy h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.about-copy p {
  margin-bottom: var(--space-md);
  color: var(--sand);
}

.about-points {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-xs);
}

.about-points li {
  position: relative;
  padding-left: var(--space-lg);
  font-weight: 600;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: var(--radius-pill);
  background-color: var(--orange);
}

/* ----------------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials {
  background-color: var(--water-soft);
  padding: var(--space-3xl) var(--space-md);
}

.testi-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--maxw);
  display: grid;
  gap: var(--space-lg);
}

.testi-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testi-quote {
  color: var(--navy);
  font-size: var(--fs-base);
}

.testi-person {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.testi-person img {
  border-radius: var(--radius-pill);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}

.testi-role {
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ----------------------------------------------------------------
   CONTACT — info + form
   ---------------------------------------------------------------- */
.contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.contact-inner {
  display: grid;
  gap: var(--space-xl);
}

.contact-info h2 {
  font-size: var(--fs-xl);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.contact-info p {
  color: var(--muted);
}

.detail-list {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.detail-list li {
  display: grid;
  gap: var(--space-2xs);
}

.detail-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.detail-value {
  color: var(--navy);
  font-weight: 600;
}

/* Form */
.contact-form {
  background-color: var(--white);
  border: 0.06rem solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: var(--space-md);
}

.field {
  display: grid;
  gap: var(--space-2xs);
}

.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  border: 0.09rem solid var(--line);
  border-radius: var(--radius);
  background-color: var(--cream);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--water);
}

.field textarea {
  resize: vertical;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-900);
  color: var(--sand);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  gap: var(--space-xl);
}

.footer-brand-name {
  color: var(--cream);
}

.footer-brand p {
  margin-top: var(--space-sm);
  color: var(--sand);
  max-width: 22rem;
}

.footer-links h3,
.footer-hours h3,
.footer-map h3 {
  font-size: var(--fs-md);
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: grid;
  gap: var(--space-2xs);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-hours p {
  margin-bottom: var(--space-2xs);
}

.map-placeholder img {
  width: 100%;
  border-radius: var(--radius);
}

.footer-bottom {
  border-top: 0.06rem solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--sand);
}

/* =================================================================
   RESPONSIVE — TABLET (>= 48rem / ~768px)
   ================================================================= */
@media (min-width: 48rem) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: var(--fs-3xl);
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-map {
    grid-column: 1 / -1;
    max-width: 22.5rem;
  }
}

/* =================================================================
   RESPONSIVE — DESKTOP (>= 64rem / ~1024px)
   ================================================================= */
@media (min-width: 64rem) {
  /* Show full nav inline, hide hamburger */
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

  /* Two-column hero on desktop */
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Two-column about with image alongside copy */
  .about-inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: var(--space-2xl);
  }

  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }

  .footer-map {
    grid-column: auto;
  }
}

/* =================================================================
   PRODUCTS PAGE — compact hero + interactive logo/color previewer
   (used by products.html; rendered from js/products.js)
   ================================================================= */

/* Highlight the current page in the nav */
.primary-nav a[aria-current="page"] {
  color: var(--orange);
}

/* ---- Compact page hero ---- */
.page-hero {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--water-deep) 0%,
    var(--water) 55%,
    var(--sunset-2) 100%
  );
  padding-top: var(--space-2xl);
}

.page-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-2xl);
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--navy-900);
}

.page-hero h1 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0.15rem 0 rgba(11, 31, 58, 0.25);
}

.page-hero-lede {
  margin: var(--space-md) auto 0;
  max-width: 38rem;
  color: var(--navy-900);
  font-weight: 600;
}

/* ---- Products section wrapper ---- */
.products {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-3xl);
}

.js-fallback {
  text-align: center;
  color: var(--muted);
  background-color: var(--white);
  border: 0.06rem solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.js-fallback a {
  color: var(--water-deep);
  font-weight: 700;
}

/* ---- Card grid ---- */
.product-grid {
  display: grid;
  gap: var(--space-lg);
}

.product-card {
  background-color: var(--white);
  border: 0.06rem solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

/* ---- Preview "stage" + garment silhouette ---- */
.preview-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      45deg,
      var(--sand) 0 0.75rem,
      var(--cream) 0.75rem 1.5rem
    );
  padding: var(--space-lg);
}

.preview-fabric {
  position: relative;
  width: 78%;
  height: 82%;
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 0 0 0.06rem rgba(11, 31, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--ease);
}

/* The printed art — recolored single-color marks (via masking) OR a
   full-color image (via background-image). JS sets the paint method. */
.preview-art {
  width: 66%;
  height: 66%;
  background-color: transparent;
  transition: background-color 0.2s var(--ease);
}

/* Shape cues (purely visual hints at the product type) */
.preview-mug .preview-fabric {
  width: 58%;
  border-radius: 0.5rem 0.5rem 0.7rem 0.7rem;
}

.preview-mug .preview-fabric::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 26%;
  width: 1.4rem;
  height: 48%;
  border: 0.4rem solid currentColor; /* currentColor = garment color (set in JS) */
  border-left: none;
  border-radius: 0 0.8rem 0.8rem 0;
}

.preview-can .preview-fabric {
  width: 50%;
  height: 86%;
  border-radius: 0.6rem;
}

.preview-can .preview-fabric::before,
.preview-can .preview-fabric::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 0.35rem;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.25);
}

.preview-can .preview-fabric::before { top: 6%; }
.preview-can .preview-fabric::after  { bottom: 6%; }

/* Cap: a domed crown turned slightly (a 3/4 view), so the bill angles off
   to one side rather than pointing straight at the viewer. */
.preview-cap .preview-fabric {
  width: 60%;
  height: 54%;
  border-radius: 48% 44% 0.6rem 0.5rem;
}

.preview-cap .preview-fabric::after {
  content: "";
  position: absolute;
  bottom: -0.35rem;
  left: -10%;
  width: 78%;
  height: 0.95rem;
  background-color: currentColor; /* currentColor = garment color (set in JS) */
  border-radius: 1.4rem 0.5rem 0.6rem 1.4rem;
}

.preview-caption {
  margin: var(--space-sm) 0 var(--space-md);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy);
}

/* ---- Text ---- */
.product-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-name {
  font-size: var(--fs-md);
  color: var(--navy);
}

.product-blurb {
  color: var(--muted);
  font-size: var(--fs-sm);
}

/* ---- Option groups (color + logo pickers) ---- */
.option-group {
  margin-top: var(--space-xs);
}

.option-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.swatch {
  width: 1.9rem;
  height: 1.9rem;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 0.13rem solid rgba(11, 31, 58, 0.15);
  cursor: pointer;
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease);
}

.swatch.swatch-light {
  border-color: rgba(11, 31, 58, 0.25);
}

.swatch:hover {
  transform: translateY(-0.12rem);
}

.swatch[aria-pressed="true"] {
  box-shadow: 0 0 0 0.13rem var(--white), 0 0 0 0.28rem var(--navy);
}

/* ---- Logo chips ---- */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 0.7rem 0.4rem 0.5rem;
  background-color: var(--cream);
  border: 0.13rem solid var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--navy);
  transition: border-color 0.12s var(--ease), background-color 0.12s var(--ease);
}

.logo-chip:hover {
  border-color: var(--water);
}

.logo-chip-mark {
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--navy);
  flex: 0 0 auto;
}

/* Full-color designs show a real thumbnail instead of a tinted square */
.logo-chip-mark--image {
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-chip[aria-pressed="true"] {
  border-color: var(--orange);
  background-color: var(--sand);
}

/* Only tint the mark for single-color (mask-based) chips */
.logo-chip[aria-pressed="true"] .logo-chip-mark:not(.logo-chip-mark--image) {
  background-color: var(--orange);
}

/* ---- Bottom CTA row ---- */
.products-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

/* ---- Responsive: 2-up tablet, 4-up desktop ---- */
@media (min-width: 48rem) {
  .page-hero h1 {
    font-size: var(--fs-3xl);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =================================================================
   MOTION PREFERENCES — respect reduced motion
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}
