/*
 * Impressions in Ink — main marketing site stylesheet.
 * Reuses the open-house design language (tokens.css) but is purpose-built for
 * a brochure/lead-gen site rather than the campaign form. Component CSS for
 * the signature pieces (.btn-pixel, .eyebrow, .faq, footer) is faithful to the
 * source so the brand reads identically across every Impressions property.
 */

/* ───────────── BASE ───────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
.mono { font-family: var(--font-mono); }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
.section-head { margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 12px; display: block; }
h1, h2, h3, h4 { text-wrap: balance; }

/* Shared section-heading rhythm */
.head-split {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 44px;
}
.head-split h2 {
  font-size: clamp(32px, 4vw, 50px); line-height: 1; letter-spacing: -0.025em;
  margin: 12px 0 0; font-weight: 800; max-width: 640px;
}
.head-split p { max-width: 440px; color: var(--slate); margin: 0; font-size: 15px; }
.accent { color: var(--magenta); }

/* ───────────── TOP UTILITY STRIP ───────────── */
.util {
  background: var(--ink); color: #fff;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.06em;
}
.util .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; gap: 16px;
}
.util .cmyk { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.util .cmyk img { height: 14px; width: auto; display: block; }
.util .links { display: flex; gap: 18px; }
.util .links a { color: rgba(255,255,255,0.75); text-decoration: none; }
.util .links a:hover { color: var(--yellow); }
@media (max-width: 620px) {
  .util .cmyk span { display: none; }
}

/* ───────────── HEADER ───────────── */
header.site {
  background: var(--paper);
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 50;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
header.site .logo { height: 34px; }
header.site nav {
  display: flex; gap: 22px; align-items: center;
  font-size: 14px; color: var(--slate);
}
header.site nav a { text-decoration: none; }
header.site nav a.link:hover { color: var(--magenta); }
header.site .cta {
  background: var(--cyan); color: #fff; text-decoration: none;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease;
}
header.site nav a.cta:hover { background: var(--yellow); color: var(--ink); }
.nav-toggle {
  display: none; background: transparent; border: 0; padding: 6px;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  header.site nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid #eee;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0; box-shadow: var(--shadow);
    display: none;
  }
  header.site nav.is-open { display: flex; }
  header.site nav a { padding: 14px 24px; font-size: 15px; }
  header.site nav a.cta {
    margin: 8px 24px; text-align: center; border-radius: 999px;
  }
}

/* ───────────── BUTTONS ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px; border-radius: 999px; border: 0;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { transform: translateY(-1px); background: var(--yellow-warm); }
.btn-cyan { background: var(--cyan); color: #fff; }
.btn-cyan:hover { transform: translateY(-1px); background: #00C1FF; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--slate); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: #fff; }

/* Pixel-shadow button (signature CTA) */
.btn-pixel {
  position: relative; display: inline-flex; text-decoration: none;
  cursor: pointer; background: transparent; padding: 0; border: 0;
  transition: transform .18s ease;
}
.btn-pixel:hover { transform: translate(-2px, -2px); }
.btn-pixel__shadow {
  position: absolute; top: 12px; left: -10px; bottom: -10px; right: 0;
  background-image: url("/assets/brand/btn-pixel-shadow-tile.svg");
  background-repeat: repeat; background-size: 16px 14px; background-position: 0 100%;
  border-radius: 14px; pointer-events: none;
}
.btn-pixel__face {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--ink);
  font: 800 16px/1 var(--font-sans); letter-spacing: -0.005em;
  padding: 16px 22px 17px; border-radius: 12px; white-space: nowrap;
}
.btn-pixel .hand { width: 32px; height: auto; flex-shrink: 0; margin-left: 2px; }
.btn-pixel.ghost .btn-pixel__shadow { display: none; }
.btn-pixel.ghost .btn-pixel__face {
  background: transparent; color: #fff; box-shadow: inset 0 0 0 2px var(--yellow);
}
.btn-pixel.ghost:hover .btn-pixel__face { color: var(--yellow); }
.btn-pixel.cyan-face .btn-pixel__face { background: var(--cyan); color: #fff; }

/* ───────────── HERO ───────────── */
.hero { position: relative; background: var(--hero-pink); color: #fff; overflow: hidden; }
.hero .wrap {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  padding: 80px 24px; align-items: center; position: relative; z-index: 2;
}
.hero .lockup { position: relative; }
.hero .stamp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  padding: 7px 14px 8px; border-radius: 6px;
  font: 700 12px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-weight: 900; font-size: clamp(40px, 6vw, 80px); line-height: 0.95;
  letter-spacing: -0.025em; margin: 0 0 24px; text-wrap: pretty;
}
.hero h1 .strike {
  background: var(--yellow); color: var(--ink);
  padding: 2px 14px 6px; display: inline-block; margin: 4px 0;
  border-radius: 2px; white-space: nowrap;
}
.hero .sub {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  max-width: 500px; margin: 0 0 16px; opacity: 0.95;
}
.hero .sub b { font-weight: 700; }
.hero .sub:last-of-type { margin-bottom: 32px; }
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; padding: 0 0 14px 14px; }
.hero .micro {
  margin-top: 28px; font: 700 14px/1.4 var(--font-sans);
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.hero .micro span { display: inline-flex; align-items: center; gap: 10px; }
.hero .micro span::before {
  content: ''; width: 14px; height: 14px; border-radius: 2px;
  display: inline-block; flex-shrink: 0;
}
.hero .micro span:nth-of-type(1)::before { background: var(--cyan); }
.hero .micro span:nth-of-type(2)::before { background: #fff; }
.hero .micro span:nth-of-type(3)::before { background: var(--yellow); }

/* Hero pastiche slot */
.hero .pastiche-bg { position: absolute; top: 0; left: 0; height: 100%; width: 44%; pointer-events: none; z-index: 1; }

/* Hero proof-card visual */
.hero .visual { position: relative; aspect-ratio: 4 / 5; width: 100%; max-width: 440px; margin-left: auto; }
.hero .visual .yblock {
  position: absolute; inset: 6% -3% -4% 8%; background: var(--yellow);
  border-radius: 8px; transform: rotate(-6deg); box-shadow: 0 24px 40px -12px rgba(0,0,0,0.28);
}
.hero .visual .yblock::after {
  content: ""; position: absolute; inset: 10px; border: 1.5px dashed rgba(1,1,1,0.18); border-radius: 4px;
}
.hero .visual .proof {
  position: absolute; inset: 0; background: #fff; border-radius: 8px; z-index: 2;
  box-shadow: 0 30px 50px -16px rgba(0,0,0,0.35); overflow: hidden;
  display: flex; flex-direction: column;
}
.hero .visual .proof .marks { position: absolute; inset: 0; pointer-events: none; }
.hero .visual .proof .bleed-box { position: absolute; inset: 7%; border: 1px dashed rgba(0,0,0,0.18); }
.hero .visual .proof .safe-box { position: absolute; inset: 12%; border: 1px dashed rgba(237,0,140,0.35); }
.hero .visual .proof .corner { position: absolute; width: 16px; height: 16px; border: 0 solid var(--ink); }
.hero .visual .proof .corner.tl { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.hero .visual .proof .corner.tr { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.hero .visual .proof .corner.bl { bottom: 8px; left: 8px; border-bottom-width: 1px; border-left-width: 1px; }
.hero .visual .proof .corner.br { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }
.hero .visual .proof .proof-body {
  position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 24px; text-align: center;
}
.hero .visual .proof .proof-body img { width: 72%; max-width: 230px; }
.hero .visual .proof .proof-body .kicker {
  font: 600 10px/1.4 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate);
}
.hero .visual .proof .cmyk-strip { display: flex; height: 10px; }
.hero .visual .proof .cmyk-strip i { flex: 1; }
.hero .visual .proof .cmyk-strip i:nth-child(1) { background: var(--cyan); }
.hero .visual .proof .cmyk-strip i:nth-child(2) { background: var(--magenta); }
.hero .visual .proof .cmyk-strip i:nth-child(3) { background: var(--yellow); }
.hero .visual .proof .cmyk-strip i:nth-child(4) { background: var(--ink); }
.hero .visual .tag {
  position: absolute; bottom: 7%; left: -5%; background: var(--ink); color: var(--yellow);
  font: 600 11px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 6px; z-index: 3; transform: rotate(-3deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.hero .visual .ink-stamp {
  position: absolute; top: 3%; right: -3%; z-index: 3; width: 92px; height: 92px;
  border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font: 700 10px/1.2 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  transform: rotate(9deg); padding: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.hero .visual .ink-stamp b { color: var(--yellow); font-size: 17px; display: block; margin-bottom: 2px; }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding: 48px 24px 56px; gap: 44px; }
  .hero .visual { max-width: 320px; margin: 0 auto; }
  .hero .pastiche-bg { width: 100%; opacity: 0.7; }
}

/* ───────────── VALUE BAR ───────────── */
.valuebar { background: var(--ink); color: #fff; border-top: 6px solid var(--yellow); }
.valuebar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0 24px; }
.valuebar .cell { padding: 28px 24px; border-right: 1px dashed rgba(255,255,255,0.15); }
.valuebar .cell:first-child { padding-left: 0; }
.valuebar .cell:last-child { border-right: 0; padding-right: 0; }
.valuebar .num {
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.14em; color: var(--yellow);
  text-transform: uppercase; margin-bottom: 12px;
}
.valuebar .big { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.valuebar .lil { font-size: 13px; opacity: 0.7; }
@media (max-width: 800px) {
  .valuebar .wrap { grid-template-columns: 1fr 1fr; }
  .valuebar .cell { padding: 24px; border-right: 0; }
  .valuebar .cell:nth-child(odd) { padding-left: 0; }
  .valuebar .cell:nth-child(even) { padding-right: 0; }
  .valuebar .cell:nth-child(1), .valuebar .cell:nth-child(2) { border-bottom: 1px dashed rgba(255,255,255,0.15); }
}
@media (max-width: 480px) {
  .valuebar .wrap { grid-template-columns: 1fr; }
  .valuebar .cell { border-bottom: 1px dashed rgba(255,255,255,0.15); padding: 20px 0; }
  .valuebar .cell:last-child { border-bottom: 0; }
}

/* ───────────── SERVICES ───────────── */
.services { padding: 88px 0; background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, border-color .15s ease;
}
.svc:hover { transform: translateY(-2px); border-color: var(--slate-light); }
.svc .ic {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; background: var(--bone-2); color: var(--ink); margin-bottom: 4px;
}
.svc:nth-child(4n+1) .ic { background: rgba(0,173,239,0.12); color: var(--cyan); }
.svc:nth-child(4n+2) .ic { background: rgba(237,0,140,0.10); color: var(--magenta); }
.svc:nth-child(4n+3) .ic { background: rgba(252,186,0,0.18); color: #B07A00; }
.svc:nth-child(4n+4) .ic { background: rgba(70,90,101,0.12); color: var(--slate); }
.svc h3 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.svc p { margin: 0; font-size: 13.5px; color: var(--slate); line-height: 1.5; }
.services .svc-foot {
  margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--slate); font-size: 15px;
}

/* ───────────── HOW IT WORKS ───────────── */
.how { padding: 32px 0 88px; background: var(--bone); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; box-shadow: var(--shadow);
}
.step .n {
  position: absolute; top: 20px; right: 20px; font: 700 13px/1 var(--font-mono);
  background: var(--ink); color: #fff; padding: 6px 10px; border-radius: 999px; letter-spacing: 0.08em;
}
.step .icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--bone-2); margin-bottom: 20px; color: var(--ink);
}
.step h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--slate); font-size: 14px; }
.step:nth-child(1) .n { background: var(--cyan); }
.step:nth-child(1) .icon { background: rgba(0,173,239,0.12); color: var(--cyan); border: 1px solid rgba(0,173,239,0.25); }
.step:nth-child(2) .n { background: var(--magenta); }
.step:nth-child(2) .icon { background: rgba(237,0,140,0.10); color: var(--magenta); border: 1px solid rgba(237,0,140,0.22); }
.step:nth-child(3) .n { background: var(--yellow); color: var(--ink); }
.step:nth-child(3) .icon { background: rgba(252,186,0,0.18); color: #B07A00; border: 1px solid rgba(252,186,0,0.45); }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ───────────── WORK / GALLERY ───────────── */
.work { background: var(--ink); color: #fff; padding: 96px 0 80px; }
.work .head-split h2 { max-width: 720px; }
.work .head-split .eyebrow { color: var(--yellow); }
.work .head-split p { color: rgba(255,255,255,0.72); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }
.work-cell {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: flex-end; padding: 18px;
}
.work-cell.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (max-width: 560px) { .work-cell.wide { grid-column: span 1; aspect-ratio: 4 / 3; } }
.work-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Placeholder treatment until real photos arrive — tasteful CMYK gradients,
   not a broken image. Each cell labels the product it will showcase. */
.work-cell.ph-c { background: linear-gradient(135deg, #00ADEF 0%, #0a2740 100%); }
.work-cell.ph-m { background: linear-gradient(135deg, #ED008C 0%, #3a0322 100%); }
.work-cell.ph-y { background: linear-gradient(135deg, #FCBA00 0%, #5a4200 100%); }
.work-cell.ph-k { background: linear-gradient(135deg, #2a2a2a 0%, #050505 100%); }
.work-cell .tag {
  position: relative; z-index: 1; font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.35); padding: 7px 11px; border-radius: 999px; backdrop-filter: blur(2px);
}
.work-foot {
  border-top: 1px dashed rgba(255,255,255,0.15); margin-top: 28px; padding-top: 18px;
  display: flex; justify-content: flex-end; align-items: center; gap: 10px;
  font: 500 12px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.work-foot img { height: 14px; width: auto; }

/* ───────────── LOCATIONS ───────────── */
.locations {
  padding: 88px 0;
  background-color: var(--bone);
  background-image: url("/assets/img/west-coast-map.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .loc-grid { grid-template-columns: 1fr; } }
.loc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; box-shadow: var(--shadow);
}
.loc .city {
  display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em; margin: 0 0 4px;
}
.loc .city .pin { width: 10px; height: 10px; border-radius: 2px; }
.loc.pdx .city .pin { background: var(--magenta); }
.loc.sd .city .pin { background: var(--cyan); }
.loc .est { font: 500 11px/1 var(--font-mono); letter-spacing: 0.1em; color: var(--slate); text-transform: uppercase; }
.loc address { font-style: normal; color: var(--slate); font-size: 14.5px; line-height: 1.6; margin: 16px 0; }
.loc address a { color: var(--ink); text-decoration: none; font-weight: 600; }
.loc address a:hover { color: var(--magenta); }
.loc .hours {
  border-top: 1px dashed var(--bone-2); padding-top: 14px; margin-top: 4px;
  font-size: 13px; color: var(--slate); display: flex; justify-content: space-between; gap: 12px;
}
.loc .hours b { color: var(--ink); font-weight: 600; }

/* ───────────── CTA BAND ───────────── */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 80px 0; }
.cta-band .pastiche-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: -0.025em; margin: 0 0 14px; font-weight: 800; }
.cta-band h2 .accent { color: var(--yellow); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 32px; font-size: 16px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .quicklinks {
  margin-top: 28px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font: 500 13px/1 var(--font-mono); letter-spacing: 0.04em;
}
.cta-band .quicklinks a { color: rgba(255,255,255,0.7); text-decoration: none; }
.cta-band .quicklinks a:hover { color: var(--yellow); }
/* Brightened pastiche palette for the dark band */
.cta-band { --iik-cyan: #5ED2FF; --iik-magenta: #FF4FB0; --iik-yellow: #FFD24A; --iik-slate: #B5BDC1; }

/* ───────────── FAQ ───────────── */
.faq { background: var(--bone); padding: 72px 0 88px; }
.faq h2 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 32px; letter-spacing: -0.02em; font-weight: 800; }
.faq .qs { display: grid; gap: 12px; max-width: 860px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.faq details summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after { content: "+"; font-weight: 400; font-size: 24px; color: var(--magenta); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--slate); font-size: 14px; line-height: 1.6; }

/* ───────────── FOOTER ───────────── */
footer.site { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 72px 0 40px; }
footer.site .pastiche-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
footer.site .wrap { position: relative; z-index: 1; }
footer.site { --iik-cyan: #5ED2FF; --iik-magenta: #FF4FB0; --iik-yellow: #FFD24A; --iik-slate: #909CA3; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr; gap: 28px; } }
footer.site .logo { height: 30px; opacity: 0.95; margin-bottom: 16px; }
footer.site .blurb { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.6; max-width: 320px; }
footer.site .col h4 {
  font: 600 11px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin: 0 0 16px;
}
footer.site .col a, footer.site .col span {
  display: block; color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 14px; margin-bottom: 10px;
}
footer.site .col a:hover { color: var(--yellow); }
.foot-bottom {
  border-top: 1px dashed rgba(255,255,255,0.15); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.foot-bottom .small { font: 500 12px/1.5 var(--font-mono); color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.foot-bottom .swatches img { height: 14px; width: auto; }

/* ───────────── BACK TO TOP ───────────── */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .18s ease;
}
.back-to-top.is-on { opacity: 1; pointer-events: auto; }
.back-to-top .btn-pixel__face {
  background: var(--magenta); color: #fff; width: 48px; height: 48px; padding: 0;
  border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 0;
}
.back-to-top .hand { width: 24px; height: auto; margin: 0; transform: rotate(-90deg); }
@media (prefers-reduced-motion: reduce) { .back-to-top { transition: none; } }

/* ───────────── FOCUS (keyboard only) ───────────── */
a:focus-visible, button:focus-visible, summary:focus-visible,
.btn-pixel:focus-visible, .back-to-top:focus-visible {
  outline: 2px solid var(--cyan); outline-offset: 2px;
}
