/* ==========================================================================
   Penguin Custom Shop — Apple-style design system (2026)
   Photography-first. One accent (orange). One product shadow. No gradients.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* Accent — single interactive color (trendy orange) + on-dark variant */
  --accent: #f0490d;
  --accent-focus: #ff5a1f;
  --accent-on-dark: #ff7a3c;
  --on-accent: #ffffff;

  /* Ink / text */
  --ink: #1d1d1f;
  --body: #1d1d1f;
  --body-on-dark: #ffffff;
  --body-muted: #cccccc;
  --ink-muted-80: #333333;
  --ink-muted-48: #7a7a7a;

  /* Surfaces — slightly warm off-whites to echo the wood/craft story */
  --canvas: #ffffff;
  --parchment: #f6f4f0;
  --pearl: #faf9f6;
  --tile-1: #272729;
  --tile-2: #2a2a2c;
  --tile-3: #252527;
  --black: #000000;
  --chip-translucent: rgba(210, 210, 215, 0.64);

  /* Hairlines */
  --divider-soft: rgba(0, 0, 0, 0.04);
  --hairline: #e0e0e0;
  --hairline-dark: rgba(255, 255, 255, 0.16);

  /* Type families */
  --font-display: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  --font-text: "SF Pro Text", system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;

  /* Spacing — 8px base */
  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 17px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-xxl: 48px;
  --sp-section: 80px;

  /* Radii */
  --r-none: 0px;
  --r-xs: 5px;
  --r-sm: 8px;
  --r-md: 11px;
  --r-lg: 18px;
  --r-pill: 9999px;

  /* The single drop-shadow in the system — product imagery only */
  --shadow-product: 3px 5px 30px 0 rgba(0, 0, 0, 0.22);

  /* Nav heights */
  --global-nav-h: 52px;
  --sub-nav-h: 0px;
  color-scheme: light;
}

/* ---- Dark theme (token override; same accent, same single shadow) ------ */
:root[data-theme="dark"] {
  color-scheme: dark;

  /* On dark surfaces, the accent uses Apple's brighter on-dark orange. */
  --accent: #ff7a3c;
  --accent-focus: #ff8c54;
  --on-accent: #1d1d1f;

  /* Ink / text invert */
  --ink: #f5f5f7;
  --body: #f5f5f7;
  --body-muted: #a1a1a6;
  --ink-muted-80: #c7c7cc;
  --ink-muted-48: #8a8a8e;

  /* Surfaces: light tiles become true black, parchment becomes near-black */
  --canvas: #000000;
  --parchment: #1d1d1f;
  --pearl: #161617;
  --black: #000000;
  --chip-translucent: rgba(60, 60, 64, 0.7);

  /* Hairlines */
  --divider-soft: rgba(255, 255, 255, 0.08);
  --hairline: #333336;
  --hairline-dark: rgba(255, 255, 255, 0.16);

  /* Dark-on-dark needs a soft lift, not a hard cast shadow */
  --shadow-product: 0 18px 50px 0 rgba(0, 0, 0, 0.55);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--global-nav-h);
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--body);
  background: var(--canvas);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent-focus); outline-offset: 2px; }

/* ---- Type utilities ---------------------------------------------------- */
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.t-display-lg {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.t-lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
.t-lead-airy {
  font-family: var(--font-text);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
}
.t-tagline {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0.231px;
}
.t-body-strong { font-weight: 600; letter-spacing: -0.374px; }
.t-caption {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.224px;
}
.t-eyebrow {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Layout helpers ---------------------------------------------------- */
.container { width: min(1440px, 100%); margin-inline: auto; padding-inline: clamp(22px, 5vw, 48px); }
.container-narrow { width: min(980px, 100%); margin-inline: auto; padding-inline: clamp(22px, 5vw, 48px); }

/* ---- Tiles (full-bleed; color change is the divider) ------------------- */
.tile {
  padding-block: var(--sp-section);
  padding-inline: clamp(22px, 5vw, 48px);
}
.tile--light { background: var(--canvas); color: var(--ink); }
.tile--parchment { background: var(--parchment); color: var(--ink); }
.tile--dark { background: var(--tile-1); color: var(--body-on-dark); }
.tile--dark-2 { background: var(--tile-2); color: var(--body-on-dark); }
.tile--dark-3 { background: var(--tile-3); color: var(--body-on-dark); }
.tile--black { background: var(--black); color: var(--body-on-dark); }

/* Hairline only when two same-tone light tiles touch (keeps the divider). */
.tile--light + .tile--light,
.tile--parchment + .tile--parchment { border-top: 1px solid var(--divider-soft); }

.tile-stack { max-width: 980px; margin-inline: auto; text-align: center; }
.tile-stack > * + * { margin-top: var(--sp-lg); }
.tile-stack .t-lead { margin-top: var(--sp-sm); }

.tile-actions { display: inline-flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; }

.tile-figure { margin-top: var(--sp-xxl); }
.tile-figure img { margin-inline: auto; }
/* The single product shadow */
.product-shadow { filter: drop-shadow(var(--shadow-product)); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-text);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.95); }

.btn-pill {
  background: var(--accent);
  color: var(--on-accent);
  font-size: 17px;
  letter-spacing: -0.374px;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  min-height: 44px;
}
.btn-pill:hover { background: var(--accent-focus); }

.btn-pill-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 17px;
  letter-spacing: -0.374px;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  min-height: 44px;
}
.btn-pill-ghost:hover { background: color-mix(in srgb, var(--accent) 8%, transparent); }

.btn-hero {
  font-size: 18px;
  font-weight: 300;
  padding: 14px 28px;
  line-height: 1;
}

.btn-utility {
  background: var(--ink);
  color: var(--body-on-dark);
  font-size: 14px;
  letter-spacing: -0.224px;
  border-radius: var(--r-sm);
  padding: 8px 15px;
}

/* Links use the single accent */
.link { color: var(--accent); }
.link:hover { text-decoration: underline; }
.on-dark .link, .link--on-dark { color: var(--accent-on-dark); }

/* ---- Global nav (slim, true black) ------------------------------------ */
.global-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--global-nav-h);
  background: var(--black);
  color: var(--body-on-dark);
}
.global-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  padding-inline: clamp(16px, 4vw, 32px);
}
.global-nav__logo { display: inline-flex; align-items: center; gap: 8px; }
.global-nav__logo img { width: 22px; height: 22px; border-radius: 50%; }
.global-nav__logo span {
  font-family: var(--font-text);
  font-size: 14px;
  letter-spacing: -0.14px;
  color: var(--body-on-dark);
}
.global-nav__links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); margin: 0; padding: 0; list-style: none; }
.global-nav__links a:not(.btn) {
  font-size: 14px;
  letter-spacing: -0.14px;
  color: var(--body-on-dark);
  opacity: 0.82;
  transition: opacity 0.15s ease;
}
.global-nav__links a:not(.btn):hover { opacity: 1; }
.global-nav__cta { font-size: 13px; padding: 7px 16px; min-height: 0; }

.global-nav__actions { display: flex; align-items: center; gap: var(--sp-sm); }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--body-on-dark);
  opacity: 0.82;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}
.theme-toggle:hover { opacity: 1; background: rgba(255, 255, 255, 0.1); }
.theme-toggle:active { transform: scale(0.95); }
.theme-icon { display: none; }
.theme-icon--moon { display: block; }
:root[data-theme="dark"] .theme-icon--moon { display: none; }
:root[data-theme="dark"] .theme-icon--sun { display: block; }

.nav-toggle { display: none; }

/* ---- Hero 3D (scroll-pinned) ------------------------------------------ */
.hero3d {
  position: relative;
  background: var(--canvas);
  color: var(--ink);
  height: 220vh;            /* scroll length: short 2-stage showcase */
}
.hero3d__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero3d__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.hero3d__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(80px, 14vh, 160px);
  padding-inline: clamp(22px, 5vw, 48px);
  pointer-events: none;
  text-align: center;
}
.hero3d__copy { max-width: 820px; transition: opacity 0.4s ease; }
.hero3d__copy .t-lead { margin-top: var(--sp-md); color: var(--ink-muted-80); text-wrap: balance; }
.hero3d__copy [data-stage-title] { text-wrap: balance; }
.hero3d__actions { margin-top: var(--sp-lg); pointer-events: auto; }

.hero3d__progress {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 56px);
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero3d__progress span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink); opacity: 0.22;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero3d__progress span.on { opacity: 0.9; transform: scale(1.25); }

.hero3d__scrollhint {
  position: absolute;
  right: clamp(22px, 5vw, 48px);
  bottom: clamp(28px, 6vh, 56px);
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted-48);
  animation: hero3d-hint 2.4s ease-in-out infinite;
}
@keyframes hero3d-hint { 0%,100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(6px); opacity: 1; } }

/* ---- Store / utility grid (1:1 cards) --------------------------------- */
.store__head { max-width: 980px; margin: 0 auto var(--sp-xxl); text-align: center; }
.store__head .t-lead { margin-top: var(--sp-sm); color: var(--ink-muted-80); }

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}
/* De-carded: photo sits on the page, caption beneath (editorial). */
.store-card { display: flex; flex-direction: column; }
.store-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--pearl);
}
.store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.store-card:hover .store-card__media img { transform: scale(1.04); }
.store-card__eyebrow { margin-top: var(--sp-md); }
.store-card__name { margin-top: 6px; }
.store-card__desc { margin-top: 6px; color: var(--ink-muted-80); }
.store-card__meta {
  margin-top: var(--sp-xs);
  font-family: var(--font-text);
  font-size: 13px;
  letter-spacing: -0.1px;
  color: var(--ink-muted-48);
}
.store-card__cta { margin-top: var(--sp-sm); }
.store-card__cta a { color: var(--accent); font-size: 17px; }
.store-card__cta a:hover { text-decoration: underline; }

/* ---- Trust strip ------------------------------------------------------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-sm) var(--sp-lg);
  padding: var(--sp-md) clamp(22px, 5vw, 48px);
  background: var(--canvas);
  border-block: 1px solid var(--divider-soft);
}
.trust-strip__item {
  position: relative;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted-80);
}
.trust-strip__item + .trust-strip__item::before {
  content: "";
  position: absolute;
  left: calc(var(--sp-lg) / -2);
  top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ---- Featured products (editorial evidence ladder) -------------------- */
.featured { display: grid; gap: clamp(48px, 8vw, 96px); max-width: 1200px; margin-inline: auto; }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media { border-radius: var(--r-md); overflow: hidden; background: var(--pearl); }
.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.feature:hover .feature__media img { transform: scale(1.03); }
.feature__title { margin-top: var(--sp-xs); }
.feature__bullets { margin-top: var(--sp-md); display: grid; gap: var(--sp-xs); }
.feature__bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-muted-80);
  line-height: 1.4;
}
.feature__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.feature__meta {
  margin-top: var(--sp-md);
  font-family: var(--font-text);
  font-size: 14px;
  letter-spacing: -0.1px;
  color: var(--ink-muted-48);
}
.feature__actions { margin-top: var(--sp-lg); justify-content: flex-start; }

/* ---- Finish swatches (display-only variant selector) ------------------ */
.swatches { display: inline-flex; gap: var(--sp-sm); margin-top: var(--sp-lg); }
.swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px var(--divider-soft);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.15s ease, transform 0.15s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { outline-color: var(--accent); }

/* ---- Sticky mobile CTA ------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: 10px clamp(16px, 4vw, 24px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta__label {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.sticky-cta__btn { font-size: 15px; padding: 9px 20px; min-height: 0; }

/* ---- Workshop (editorial, pinned-free scroll) ------------------------- */
.workshop__head { max-width: 980px; margin: 0 auto var(--sp-xxl); text-align: center; }
.workshop__head .t-lead-airy { margin-top: var(--sp-md); color: var(--body-muted); }

.workshop-steps { display: grid; gap: var(--sp-xxl); max-width: 1200px; margin-inline: auto; }
.workshop-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.workshop-step:nth-child(even) .workshop-step__media { order: 2; }
.workshop-step__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.workshop-step__num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--accent-on-dark);
}
.workshop-step__title { margin-top: var(--sp-xs); }
.workshop-step__text { margin-top: var(--sp-sm); color: var(--body-muted); max-width: 46ch; }

/* ---- Gallery ----------------------------------------------------------- */
.gallery__head { max-width: 980px; margin: 0 auto var(--sp-lg); text-align: center; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  justify-content: center;
  margin-bottom: var(--sp-xl);
}
.filter-btn {
  font-size: 14px;
  letter-spacing: -0.224px;
  color: var(--ink-muted-80);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.filter-btn:hover { color: var(--accent); border-color: var(--accent); }
.filter-btn.active {
  color: var(--on-accent);
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-masonry { columns: 3; column-gap: var(--sp-lg); }
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-lg);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}
.gallery-item img { width: 100%; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.03); }

/* ---- Contact ----------------------------------------------------------- */
.contact { text-align: center; }
.contact .t-lead { margin-top: var(--sp-md); color: var(--body-muted); max-width: 52ch; margin-inline: auto; }
.contact__actions { margin-top: var(--sp-lg); }
.contact__loc { margin-top: var(--sp-lg); color: var(--body-muted); }

/* ---- Footer (dense) ---------------------------------------------------- */
.footer {
  background: var(--parchment);
  color: var(--ink-muted-80);
  padding-block: 64px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: var(--sp-xl);
}
.footer__col h4 {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}
.footer__col a { display: block; font-size: 14px; line-height: 2.1; color: var(--ink-muted-80); }
.footer__col a:hover { color: var(--accent); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm) var(--sp-lg);
  justify-content: space-between;
  padding-top: var(--sp-lg);
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--ink-muted-48);
}

/* ---- Lightbox ---------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  padding: var(--sp-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox-close {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--chip-translucent);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

/* ---- Image fade-in on load -------------------------------------------- */
img.img-fade { opacity: 0; transition: opacity 0.6s ease; }
img.img-fade.loaded { opacity: 1; }

/* ---- Scroll reveal ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1068px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 833px) {
  :root { --sp-section: 56px; }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  /* Collapse the link list into the drawer; the sticky bottom bar carries the
     persistent Enquire CTA on mobile. */
  .global-nav__links { display: none; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
  }
  .nav-toggle span { width: 22px; height: 1.5px; background: var(--body-on-dark); display: block; transition: transform 0.3s ease, opacity 0.3s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .global-nav__links.open {
    display: flex;
    position: fixed;
    inset: var(--global-nav-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black);
    padding: var(--sp-md) clamp(16px, 4vw, 32px) var(--sp-lg);
  }
  .global-nav__links.open li { width: 100%; }
  .global-nav__links.open a:not(.btn) { display: block; padding-block: 12px; font-size: 17px; width: 100%; border-bottom: 1px solid var(--hairline-dark); }
  .global-nav__links.open .global-nav__cta { margin-top: var(--sp-md); width: 100%; }

  .workshop-step { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .workshop-step:nth-child(even) .workshop-step__media { order: 0; }

  .feature { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .feature:nth-child(even) .feature__media { order: 0; }
  .feature__actions { justify-content: center; }

  /* Sticky mobile CTA active below the desktop nav breakpoint */
  .sticky-cta { display: flex; }
  .sticky-cta.show { transform: translateY(0); }

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

@media (max-width: 640px) {
  :root { --sp-section: 48px; }
  .store-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .tile-actions { flex-direction: column; width: 100%; }
  .tile-actions .btn { width: 100%; }
}

/* ---- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
