/* ============================================================
   ruckus creative — simplified, professional
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fafaf7;        /* warm paper, easier on the eye than pure white */
  color: var(--ruckus-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
::selection { background: var(--ruckus-yellow); color: #000; }

/* ===== reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }
.reveal.d5 { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}

/* ===== container ===== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

/* ===== shared accents ===== */
.accent { color: var(--ruckus-magenta); }
.muted  { color: var(--ink-500); font-size: .95em; }

.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.section-num.light { color: var(--ink-300); }

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  text-transform: lowercase;
  letter-spacing: -.005em;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s var(--ease-out), color .18s var(--ease-out),
              border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn.primary {
  background: var(--ruckus-magenta);
  color: #fff;
}
.btn.primary:hover { background: var(--ruckus-magenta-shade); }

.btn.yellow {
  background: var(--ruckus-yellow);
  color: var(--ruckus-black);
}
.btn.yellow:hover { background: var(--ruckus-yellow-shade); }

.btn.ghost {
  background: transparent;
  color: var(--ruckus-black);
  border-color: var(--ruckus-black);
}
.btn.ghost:hover { background: var(--ruckus-black); color: #fff; }

.btn.ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn.ghost-light:hover { background: #fff; color: #000; border-color: #fff; }

.btn.outline {
  background: transparent;
  color: var(--ruckus-black);
  border-color: var(--ruckus-black);
}
.btn.outline:hover { background: var(--ruckus-black); color: #fff; }

.btn .arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform .2s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: rgba(250, 250, 247, 0);
  transition: background .25s var(--ease-out), padding .25s var(--ease-out),
              border-color .25s var(--ease-out), backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 247, .92);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom-color: rgba(0,0,0,.08);
  padding: 14px 40px;
}

/* unscrolled state — over magenta hero, use white text */
.nav:not(.scrolled) .nav-links a { color: #fff; }
.nav:not(.scrolled) .nav-links a:hover { color: var(--ruckus-yellow); }
.nav:not(.scrolled) .nav-cta {
  background: #fff;
  color: var(--ruckus-black);
}
.nav:not(.scrolled) .nav-cta:hover {
  background: var(--ruckus-yellow);
  color: var(--ruckus-black);
}
@media (max-width: 720px) {
  .nav, .nav.scrolled { padding-left: 22px; padding-right: 22px; }
}

/* ============================================================
   BRAND LOGO — actual SVG provided by client
   (white "ruckus" + yellow "creative")
   ============================================================ */
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 52px;
}
.nav-logo .logo-img {
  display: block;
  height: 48px;
  width: auto;
  transition: opacity .25s var(--ease-out);
}
.nav-logo .logo-dark {
  display: none;
  /* dark variant's svg has more vertical padding around the wordmark;
     scale up so the "ruckus" letters look the same size as the white version */
  height: 60px;
}

/* over magenta hero — use the white-text version */
.nav:not(.scrolled) .nav-logo .logo-light { display: block; }
.nav:not(.scrolled) .nav-logo .logo-dark  { display: none; }

/* scrolled past hero — swap to dark-text version on white nav */
.nav.scrolled .nav-logo .logo-light { display: none; }
.nav.scrolled .nav-logo .logo-dark  { display: block; }

@media (max-width: 720px) {
  .nav-logo .logo-img { height: 40px; }
  .nav-logo .logo-dark { height: 50px; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
  text-transform: lowercase;
  white-space: nowrap;
  color: var(--ruckus-black);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ruckus-magenta); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: -.005em;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ruckus-black);
  color: #fff;
  text-decoration: none;
  transition: background .18s, color .18s, transform .18s;
}
.nav-cta:hover { background: var(--ruckus-yellow); color: var(--ruckus-black); transform: translateY(-1px); }
.nav-cta .arrow { display: inline-block; transition: transform .2s; }
.nav-cta:hover .arrow { transform: translateX(2px); }

@media (max-width: 820px) { .nav-links { display: none; } }

/* ============================================================
   HERO — bold magenta backdrop + reverse text + halftone burst
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 0 120px;
  background: var(--ruckus-magenta);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  text-transform: lowercase;
  opacity: 0;
  animation: fadeIn .6s var(--ease-out) .1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 13vw, 196px);
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: lowercase;
  color: #fff;
  margin: 0;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .15s forwards;
}
.hero-title .dot { color: var(--ruckus-yellow); }

.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  max-width: 580px;
  margin: 40px 0 44px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .35s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .55s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- large blended cyan circles bouncing around ----- */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--ruckus-cyan);
  /* screen lifts the magenta backdrop into a softer pink/lavender
     in the overlap area; sits behind the megaphone so it doesn't
     wash out the silhouette */
  mix-blend-mode: screen;
  filter: blur(2px);
  will-change: transform;
}

/* mix of sizes — XL, L, M, S — all clustered on the right.
   symmetric ease-in-out floats: 0%==100% with velocity easing to zero at
   the seam, so the loop is perfectly smooth (no hitch on repeat). */
.blob-1 { width: 480px; height: 480px; top: -120px; right: -100px;
          animation: blobFloat1 15s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; top: 38%;    right: 6%;
          animation: blobFloat2 18s ease-in-out infinite; }
.blob-3 { width: 240px; height: 240px; bottom: -60px; right: 22%;
          animation: blobFloat3 12s ease-in-out infinite; }
.blob-4 { width: 160px; height: 160px; top: 22%;    right: 28%;
          animation: blobFloat4 10s ease-in-out infinite; }

/* all motion paths stay biased toward the right edge */
@keyframes blobFloat1 {
  0%,100% { transform: translate(0, 0)          scale(1); }
  33%     { transform: translate(-110px, 120px)  scale(1.08); }
  66%     { transform: translate(60px, 220px)    scale(.95); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0, 0)          scale(1); }
  33%     { transform: translate(-170px, -70px)  scale(1.12); }
  66%     { transform: translate(-80px, 150px)   scale(.9); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(0, 0)          scale(1); }
  33%     { transform: translate(150px, -130px)  scale(1.15); }
  66%     { transform: translate(40px, -210px)   scale(.88); }
}
@keyframes blobFloat4 {
  0%,100% { transform: translate(0, 0)          scale(1); }
  33%     { transform: translate(150px, 170px)   scale(1.2); }
  66%     { transform: translate(-120px, 250px)  scale(.85); }
}

@media (max-width: 720px) {
  .blob-1 { width: 300px; height: 300px; }
  .blob-2 { width: 240px; height: 240px; }
  .blob-3 { width: 160px; height: 160px; }
  .blob-4 { width: 110px; height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
}

/* ----- monochromatic backdrop + megaphone graphic ----- */
.hero-halftone {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.18) 18%, transparent 19%);
  background-size: 26px 26px;
  opacity: .35;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(135deg, transparent 30%, #000 90%);
  -webkit-mask-image: linear-gradient(135deg, transparent 30%, #000 90%);
}
.hero-mega {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 720px;
  height: 720px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: megaIn .9s var(--ease-out) .4s forwards;
}
.hero-mega img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* multiply blends the magenta megaphone into a deeper magenta
     silhouette on the magenta backdrop — monochromatic */
  mix-blend-mode: multiply;
  animation: megaFloat 6s ease-in-out infinite;
  transform-origin: 60% 60%;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@keyframes megaFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-10px); }
}

@media (max-width: 980px) {
  .hero-mega { width: 520px; height: 520px; right: -180px; opacity: .35; }
  .hero-mega img { mix-blend-mode: multiply; }
}
@media (max-width: 720px) {
  .hero { padding: 140px 0 90px; min-height: 86vh; }
  .hero-mega { width: 440px; height: 440px; right: -160px; top: auto; bottom: -120px; transform: none; opacity: .25; }
  @keyframes megaIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: .25; transform: translateX(0); }
  }
}

/* ----- contrasting cyan sticker ----- */
.hero-sticker {
  position: absolute;
  right: 40px;
  bottom: -70px;
  width: 200px;
  height: 200px;
  z-index: 3;
  opacity: 0;
  animation: stickerIn .7s var(--ease-pop) .9s forwards;
  transform-origin: center;
}
.hero-sticker-svg {
  width: 100%;
  height: 100%;
  animation: stickerSpin 28s linear infinite;
  transform-origin: 50% 50%;
}
/* keep the inner black disc & text static while the outer ring + text spin */
.hero-sticker-core {
  transform-origin: 100px 100px;
  animation: stickerSpin 28s linear infinite reverse;
}
@keyframes stickerSpin { to { transform: rotate(360deg); } }
@keyframes stickerIn {
  from { opacity: 0; transform: scale(.4) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 980px) {
  .hero-sticker { width: 160px; height: 160px; right: 24px; bottom: -50px; }
}
@media (max-width: 720px) {
  .hero-sticker { width: 130px; height: 130px; right: 16px; bottom: -36px; }
}

/* ============================================================
   MARQUEE — subtler
   ============================================================ */
.ticker {
  background: var(--ruckus-black);
  color: #fafaf7;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -.01em;
  font-size: clamp(20px, 2.4vw, 28px);
  padding: 18px 0;
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: tickerScroll 44s linear infinite;
  white-space: nowrap;
}
.ticker .dot-sep { color: var(--ruckus-magenta); font-size: .6em; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: 140px 0 130px;
  background: #fafaf7;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; } }

.manifesto-left h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  margin: 0;
}
.manifesto-right {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-700);
}
.manifesto-right p { margin: 0 0 22px; }

.manifesto-stats {
  display: flex; gap: 56px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,.12);
}
.manifesto-stats .stat .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ruckus-black);
}
.manifesto-stats .stat .lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-500);
  margin-top: 6px;
}

/* ============================================================
   SERVICES — clean list
   ============================================================ */
.services {
  background: #fafaf7;
  padding: 130px 0 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.services-head {
  margin-bottom: 64px;
}
.services-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  color: var(--ruckus-black);
  margin: 0;
}
.services-intro {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 520px;
  margin: 24px 0 0;
}

.services-list { border-top: 1px solid rgba(0,0,0,.12); }
.service-row {
  display: grid;
  grid-template-columns: 60px 1.1fr 2fr 40px;
  gap: 28px; align-items: center;
  padding: 28px 4px;
  border-bottom: 1px solid rgba(0,0,0,.12);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding .2s var(--ease-out);
}
.service-row::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: var(--ruckus-magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
  z-index: 0;
}
.service-row:hover::before { transform: scaleX(1); }
.service-row > * { position: relative; z-index: 1; transition: color .25s var(--ease-out); }
.service-row:hover > * { color: #fff; }
.service-row:hover .s-desc { color: #fff; }
.service-row:hover .s-title { color: var(--ruckus-yellow); }
.service-row:hover .s-num { color: rgba(255,255,255,.6); }
.service-row:hover { padding: 36px 14px; }

/* each row hovers a different brand colour */
.service-row:nth-child(2)::before { background: var(--ruckus-cyan); }
.service-row:nth-child(3)::before { background: var(--ruckus-yellow); }
.service-row:nth-child(4)::before { background: var(--ruckus-black); }
/* cyan + yellow are light — use dark text on hover */
.service-row:nth-child(2):hover > *,
.service-row:nth-child(3):hover > *,
.service-row:nth-child(2):hover .s-desc,
.service-row:nth-child(3):hover .s-desc,
.service-row:nth-child(2):hover .s-title,
.service-row:nth-child(3):hover .s-title,
.service-row:nth-child(2):hover .s-arrow,
.service-row:nth-child(3):hover .s-arrow { color: var(--ruckus-black); }
.service-row:nth-child(2):hover .s-num,
.service-row:nth-child(3):hover .s-num { color: rgba(0,0,0,.55); }

/* per-row hover text colours (Mike's spec) */
/* row 2 — cyan bg: yellow title, white copy */
.service-row:nth-child(2):hover .s-title { color: var(--ruckus-yellow); }
.service-row:nth-child(2):hover .s-desc { color: #fff; }
.service-row:nth-child(2):hover .s-num { color: rgba(255,255,255,.8); }
.service-row:nth-child(2):hover .s-arrow { color: #fff; }
/* row 3 — yellow bg: blue title, black copy */
.service-row:nth-child(3):hover .s-title { color: var(--ruckus-cyan); }
.service-row:nth-child(3):hover .s-desc { color: var(--ruckus-black); }
/* row 4 — black bg: pink title, white copy */
.service-row:nth-child(4):hover .s-title { color: var(--ruckus-magenta); }
.service-row:nth-child(4):hover .s-desc { color: #fff; }
.service-row:nth-child(4):hover .s-arrow { color: #fff; }

.service-row .s-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
}
.service-row .s-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: lowercase;
  color: var(--ruckus-black);
}
.service-row .s-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-700);
}
.service-row .s-arrow {
  justify-self: end;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-500);
  transition: transform .25s var(--ease-out), color .25s;
}
.service-row:hover .s-arrow { transform: translateX(6px); color: var(--ruckus-yellow); }

@media (max-width: 820px) {
  .service-row { grid-template-columns: 48px 1fr 32px; gap: 14px; padding: 22px 4px; }
  .service-row:hover { padding: 28px 10px; }
  .service-row .s-desc { display: none; }
}

/* ----- full capabilities band ----- same background as Meet the Duo, full-bleed ----- */
.capabilities {
  margin-top: 96px;
  background-color: var(--ruckus-cyan);
  background-image: url('assets/about-us-BG.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 96px 0;
}
@media (max-width: 560px) { .capabilities { padding: 64px 0; } }
.cap-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  margin: 0 0 36px;
  color: #fff;
}
.cap-title .accent { color: var(--ruckus-yellow); }
.cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 48px;
}
@media (max-width: 820px) { .cap-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cap-list { grid-template-columns: 1fr; } }
.cap-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  text-transform: lowercase;
  letter-spacing: -.01em;
  color: #fff;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.cap-item::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ruckus-magenta);
  transform: translateY(-2px);
}
.cap-item:nth-child(3n)::before  { background: var(--ruckus-black); }
.cap-item:nth-child(3n+1)::before { background: var(--ruckus-yellow); }

/* ============================================================
   FEATURED WORK
   ============================================================ */
.work {
  background: var(--ruckus-magenta);
  padding: 130px 0 140px;
}
.work .section-num { color: rgba(255,255,255,.8); }
.work-head { margin-bottom: 36px; }
.work-head .left { max-width: 720px; }
.work-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  margin: 0 0 18px;
  color: #fff;
}
.work-head h2 .accent { color: var(--ruckus-yellow); }
.work-head p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
  max-width: 600px;
}

/* grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  align-items: start;
}
.work-card {
  position: relative;
  background: transparent;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  overflow: hidden;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  display: flex; flex-direction: column;
}
a.work-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}
/* Olea PDF card — no rollover pop-up shadow */
a.work-card.kind-pdf:hover {
  transform: none;
  box-shadow: none;
}

/* thumb is now an edge-to-edge image container — no padding, image covers fully */
.work-card .thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* aspect-ratio supplied per-card from JSX */
}
.work-card .thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* stacked (Yonge-Steeles) — logo on top out of container, business cards under */
.work-card.kind-stacked .thumb {
  position: relative;
  background: #fff;
  display: block;
  padding: 0;
}
.work-card.kind-stacked .stacked-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px 12px;
}
.work-card.kind-stacked .stacked-top img {
  display: block;
  max-width: 84%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.work-card.kind-stacked .stacked-bottom {
  position: absolute;
  top: 46%; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  background: transparent;
}
.work-card.kind-stacked .stacked-bottom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 4px 22px 18px;
}

/* ----- PDF spread — two pages butt up against each other, no shadow ----- */
.pdf-spread {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  background: transparent;
}
.pdf-spread img {
  height: 100%;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  display: block;
  box-shadow: none;
  border-radius: 0;
  background: #fff;
}
.pdf-spread-loading,
.pdf-spread-error {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-500);
  text-align: center;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pdf-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,.1);
  border-top-color: var(--ruckus-magenta);
  border-radius: 50%;
  animation: pdfSpin .8s linear infinite;
}
@keyframes pdfSpin { to { transform: rotate(360deg); } }

/* pdf-cta removed per Mike's note — the whole card is the click target */


/* meta block — text left-aligned to the card edge so it matches each work's left edge */
.work-card .meta {
  padding: 22px 24px 24px 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.work-card .meta-top {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ruckus-yellow);
  font-weight: 600;
}
.work-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.015em;
  text-transform: lowercase;
  margin: 4px 0 0;
  color: #fff;
}
.work-card .role {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  margin: 0;
}
.work-card .note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin: 8px 0 0;
}

.work-card.w-12 { grid-column: span 12; }
.work-card.w-8  { grid-column: span 8; }
.work-card.w-7  { grid-column: span 7; }
.work-card.w-6  { grid-column: span 6; }
.work-card.w-5  { grid-column: span 5; }
.work-card.w-4  { grid-column: span 4; }
@media (max-width: 980px) and (min-width: 561px) {
  .work-card.w-12 { grid-column: span 12; }
  .work-card.w-8, .work-card.w-7, .work-card.w-6, .work-card.w-5, .work-card.w-4 { grid-column: span 6; }
}
@media (max-width: 560px) {
  .work-card.w-12, .work-card.w-8, .work-card.w-7, .work-card.w-6, .work-card.w-5, .work-card.w-4 { grid-column: span 12; }
}

/* attribution callout — moved below the work grid */
.work-attribution {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  background: var(--ruckus-yellow);
  padding: 26px 30px;
  border-radius: 8px;
  margin: 72px auto 0;
  max-width: 980px;
}
.work-attribution .attr-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ruckus-black);
  background: rgba(0,0,0,.08);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.work-attribution p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ruckus-black);
  margin: 0;
  max-width: 760px;
}
@media (max-width: 720px) {
  .work-attribution { grid-template-columns: 1fr; gap: 14px; padding: 22px 24px; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: #fafaf7;
  padding: 130px 0 140px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.process-head { margin-bottom: 64px; }
.process-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  margin: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 6px;
  padding: 28px 26px;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -18px rgba(0,0,0,.18);
}
.step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ruckus-magenta);
  font-weight: 700;
  letter-spacing: .04em;
}
.step .step-tag {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: lowercase;
  margin: 18px 0 12px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}

/* four colored step blocks — pink / blue / yellow / black */
.step:nth-child(1) { background: var(--ruckus-magenta); border-color: transparent; }
.step:nth-child(2) { background: var(--ruckus-cyan);    border-color: transparent; }
.step:nth-child(3) { background: var(--ruckus-yellow);  border-color: transparent; }
.step:nth-child(4) { background: var(--ruckus-black);   border-color: transparent; }

.step:nth-child(1) .step-num,
.step:nth-child(1) h3 { color: #fff; }
.step:nth-child(1) .step-tag,
.step:nth-child(1) p { color: rgba(255,255,255,.85); }

.step:nth-child(2) .step-num,
.step:nth-child(2) .step-tag,
.step:nth-child(2) h3 { color: var(--ruckus-black); }
.step:nth-child(2) p { color: rgba(0,0,0,.72); }

.step:nth-child(3) .step-num,
.step:nth-child(3) .step-tag,
.step:nth-child(3) h3 { color: var(--ruckus-black); }
.step:nth-child(3) p { color: rgba(0,0,0,.74); }

.step:nth-child(4) .step-num { color: var(--ruckus-yellow); }
.step:nth-child(4) h3 { color: #fff; }
.step:nth-child(4) .step-tag,
.step:nth-child(4) p { color: rgba(255,255,255,.82); }

/* ============================================================
   MEET THE DUO
   ============================================================ */
.duo {
  background-color: var(--ruckus-cyan);
  background-image: url('assets/about-us-BG.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
  padding: 130px 0 140px;
}
.duo .section-num { color: rgba(255,255,255,.85); }
.duo-head { max-width: 720px; margin-bottom: 64px; }
.duo-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  margin: 0 0 18px;
  color: #fff;
}
.duo-head h2 .duo-accent { color: var(--ruckus-yellow); }
.duo-head p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 560px;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 820px) { .duo-grid { grid-template-columns: 1fr; gap: 24px; } }
.duo-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--ruckus-magenta);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 12px;
  padding: 26px;
}
@media (max-width: 480px) { .duo-card { flex-direction: column; } }
.duo-photo {
  flex: 0 0 132px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px dashed rgba(255,255,255,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}
.duo-photo.has-photo {
  border: 3px solid #fff;
  background: #fff;
}
.duo-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.duo-initials {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -.02em;
  color: #fff;
}
.duo-photo-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.duo-info h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.02em;
  margin: 4px 0 6px;
  color: #fff;
}
.duo-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: .04em;
  color: var(--ruckus-yellow);
  margin-bottom: 14px;
}
.duo-info p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin: 0;
}

/* ============================================================
   TESTIMONIALS — scrollable carousel
   ============================================================ */
.testimonials {
  background: #fff;
  padding: 120px 0 130px;
  overflow: hidden;
}
.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.testi-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: lowercase;
  margin: 0;
}
.testi-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.t-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ruckus-black);
  background: #fff;
  color: var(--ruckus-black);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, transform .15s var(--ease-out);
}
.t-arrow:hover { background: var(--ruckus-magenta); color: #fff; border-color: var(--ruckus-magenta); transform: translateY(-2px); }

.testi-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 8px 0 28px;
  /* bleed to the viewport edges, start aligned to the .wrap gutter */
  padding-left: max(40px, calc((100vw - 1240px) / 2 + 40px));
  padding-right: max(40px, calc((100vw - 1240px) / 2 + 40px));
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.28) transparent;
}
.testi-track::-webkit-scrollbar { height: 8px; }
.testi-track::-webkit-scrollbar-thumb { background: rgba(0,0,0,.22); border-radius: 10px; }
.testi-track::-webkit-scrollbar-track { background: transparent; border-radius: 10px; }
@media (max-width: 720px) {
  .testi-track { padding-left: 22px; padding-right: 22px; }
}

.tcard {
  scroll-snap-align: start;
  flex: 0 0 clamp(300px, 42vw, 480px);
  margin: 0;
  background: var(--ruckus-magenta);
  border: none;
  border-radius: 14px;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* four coloured testimonial cards — same rhythm as the process steps */
.tcard:nth-child(2) { background: var(--ruckus-cyan); }
.tcard:nth-child(3) { background: var(--ruckus-yellow); }
.tcard:nth-child(4) { background: var(--ruckus-black); }

/* dark cards (magenta, black) — light text */
.tcard:nth-child(1) blockquote, .tcard:nth-child(4) blockquote,
.tcard:nth-child(1) .t-name, .tcard:nth-child(4) .t-name { color: #fff; }
.tcard:nth-child(1) .t-role, .tcard:nth-child(4) .t-role { color: rgba(255,255,255,.85); }
.tcard:nth-child(1) .t-company, .tcard:nth-child(4) .t-company { color: var(--ruckus-yellow); }
.tcard:nth-child(1) figcaption, .tcard:nth-child(4) figcaption { border-top-color: rgba(255,255,255,.25); }

/* light cards (cyan, yellow) — dark text */
.tcard:nth-child(2) blockquote, .tcard:nth-child(3) blockquote,
.tcard:nth-child(2) .t-name, .tcard:nth-child(3) .t-name,
.tcard:nth-child(2) .t-company, .tcard:nth-child(3) .t-company { color: var(--ruckus-black); }
/* Mike's per-card company colours */
.tcard:nth-child(2) .t-company { color: var(--ruckus-yellow); }   /* Honeywell on cyan */
.tcard:nth-child(3) .t-company { color: var(--ruckus-cyan); }     /* Olea Edge on yellow */
.tcard:nth-child(2) .t-role, .tcard:nth-child(3) .t-role { color: rgba(0,0,0,.7); }
.tcard:nth-child(2) figcaption, .tcard:nth-child(3) figcaption { border-top-color: rgba(0,0,0,.15); }
.t-logo {
  height: 40px;
  display: flex; align-items: center; justify-content: flex-start;
}
.t-logo img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}
/* Air Canada wordmark is very wide — give it a touch more room, slightly smaller cap height */
.tcard:nth-child(4) .t-logo { height: 30px; }
.tcard:nth-child(4) .t-logo img { max-width: 220px; }
/* placeholder fallback (only if a logo is ever missing) */
.t-logo span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .6;
}
.tcard blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--ruckus-black);
  margin: 0;
  flex: 1;
}
.tcard blockquote::before { content: "“"; }
.tcard blockquote::after { content: "”"; }
.tcard figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 2px solid rgba(0,0,0,.12);
  padding-top: 18px;
}
.t-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ruckus-black);
}
.t-role {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-700);
}
.t-company {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ruckus-magenta);
  margin-top: 2px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--ruckus-black);
  color: #fff;
  padding: 140px 0;
  text-align: left;
}
.cta-content { max-width: 1000px; }
.cta .section-num { color: rgba(255,255,255,.4); }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 120px);
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: lowercase;
  margin: 0 0 32px;
  color: #fff;
}
.cta h2 .accent { color: var(--ruckus-magenta); }
.cta-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
  max-width: 540px;
}
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: lowercase;
  letter-spacing: -.02em;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid var(--ruckus-magenta);
  padding-bottom: 4px;
  margin-bottom: 48px;
  transition: color .2s, border-color .2s;
}
.cta-email-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ruckus-yellow);
  margin-bottom: 12px;
}
.cta-email-icon { font-size: .82em; opacity: .9; }
.cta-email-arrow {
  font-size: .82em;
  transition: transform .2s var(--ease-out);
}
.cta-email:hover .cta-email-arrow { transform: translateX(5px); }
.cta-email:hover { color: var(--ruckus-magenta); }
.cta-actions {
  margin-top: 40px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ruckus-black);
  color: #fff;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; } }

.foot-brand .foot-logo-img {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 0 22px;
}
.foot-brand h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: lowercase;
  margin: 0 0 16px;
}
.foot-brand h3 .accent { color: var(--ruckus-magenta); }
.foot-brand p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  max-width: 340px;
  margin: 0;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col li, .foot-col a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-transform: lowercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .15s;
  line-height: 1.45;
}
.foot-col a:hover { color: var(--ruckus-magenta); }

.foot-fine {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
}
.foot-fine .accent { color: var(--ruckus-magenta); }
