/* ===========================================================
   UPPERSKY MEDIA — styles
   Light editorial site with dark hero/CTA bookends
   Palette: white #ffffff, ink #0a0b0e, lime #d4ff3d, sky #2f9bd6
   =========================================================== */

:root{
  --bg-light: #ffffff;
  --bg-soft:  #f5f6f8;
  --bg-dark:  #0a0b0e;
  --bg-dark-2:#111317;

  --ink:      #0a0b0e;
  --ink-2:    #2a2c30;
  --ink-3:    #6b6f76;

  --on-dark:    #ffffff;
  --on-dark-2:  rgba(255,255,255,.78);
  --on-dark-3:  rgba(255,255,255,.5);

  --line:       rgba(0,0,0,.10);
  --line-dark:  rgba(255,255,255,.12);

  --yellow:    #d4ff3d;
  --yellow-2:  #b9e132;
  --sky:       #2f9bd6;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --easing: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-light);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.container{ max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.visually-hidden{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
::selection{ background: var(--yellow); color: #0a0b0e; }

/* ===================== DESKTOP MENU TAB ===================== */
.menu-tab{
  position: fixed;
  top: 0; left: 0;
  z-index: 60;
  background: var(--yellow);
  color: #0a0b0e;
  border-radius: 0;
  padding: 14px 0 18px;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 4px 4px 14px rgba(0,0,0,.25);
  transition: background .25s ease;
}
.menu-tab__emblem{
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}
.menu-tab__label{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .42em;
  line-height: 1;
  padding: 6px 0 8px;
}
.menu-tab:hover{ background: #e4ff5a; }
.menu-tab[aria-expanded="true"]{ background: #fff; }

/* ===================== MOBILE HEADER ===================== */
.m-header{
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,11,14,.55) 0%, rgba(10,11,14,0) 100%);
  backdrop-filter: blur(2px);
}
.m-header__logo{
  width: 38px; height: 38px;
  display: grid; place-items: center;
}
.m-header__logo img{
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  mix-blend-mode: difference;
}
.m-header__burger{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  gap: 5px;
  padding: 10px 8px;
  border-radius: 4px;
  background: var(--yellow);
}
.m-header__burger span{
  display: block;
  width: 22px;
  height: 2px;
  background: #0a0b0e;
  border-radius: 2px;
  transition: transform .3s var(--easing), opacity .2s ease;
  transform-origin: center;
}
.m-header__burger span + span{ margin-top: 4px; }
.m-header__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.m-header__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.m-header__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ===================== TOP-RIGHT CTA ===================== */
.top-cta{
  position: fixed;
  top: 22px; right: 22px;
  z-index: 60;
  background: transparent;
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 12px;
  padding: 11px 18px;
  border: 1.5px solid var(--yellow);
  border-radius: 6px;
  transition: transform .25s var(--easing), background .25s, color .25s;
}
.top-cta:hover{ transform: translateY(-2px); background: var(--yellow); color: #0a0b0e; }

/* ===================== DRAWER ===================== */
.drawer{
  position: fixed;
  inset: 0 auto 0 0;
  width: 33.333vw;
  min-width: 320px;
  max-width: 520px;
  background: linear-gradient(180deg, #0e0f13 0%, #0a0b0e 100%);
  color: var(--on-dark);
  border-right: 1px solid var(--line-dark);
  z-index: 80;
  transform: translateX(-105%);
  transition: transform .55s var(--easing);
  display: flex;
}
.drawer.is-open{ transform: translateX(0); }
.drawer__inner{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 36px 28px 56px;
  gap: 28px;
  overflow-y: auto;
}
.drawer__head{
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}
.drawer__brand{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .25em;
  font-size: 15px;
}
.drawer__brand sup{ color: var(--yellow); margin-left: 2px; }
.drawer__logo{ height: 38px; width: auto; display: block; }
.drawer__close{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.drawer__close:hover{ background: var(--yellow); color: #0a0b0e; transform: rotate(90deg); }
.drawer__close svg{ width: 18px; height: 18px; }

.drawer__nav{ flex: 1; }
.drawer__nav ul{ list-style: none; margin: 0; padding: 0; }
.drawer__nav a{
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--on-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transition: color .25s ease, padding-left .35s var(--easing);
}
.drawer__nav a .num{
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--on-dark-3);
  letter-spacing: .25em;
}
.drawer__nav a:hover{ color: var(--yellow); padding-left: 14px; }
.drawer__nav a::after{
  content: '';
  position: absolute; right: 0; top: 50%;
  width: 0; height: 1px; background: var(--yellow);
  transition: width .35s var(--easing);
}
.drawer__nav a:hover::after{ width: 36px; }

.drawer__foot{
  border-top: 1px solid var(--line-dark);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: flex-end;
}
.drawer__label{
  font-size: 11px; letter-spacing: .25em; color: var(--on-dark-3); text-transform: uppercase;
  margin-bottom: 6px;
}
.drawer__email{
  font-family: 'Oswald', sans-serif;
  font-size: 18px; letter-spacing: .04em;
}
.drawer__email:hover{ color: var(--yellow); }
.drawer__socials{ display: flex; gap: 10px; }
.drawer__socials a{
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; letter-spacing: .15em;
  transition: background .2s, color .2s;
}
.drawer__socials a:hover{ background: var(--yellow); color: #0a0b0e; }

.drawer-scrim{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.drawer-scrim.is-open{ opacity: 1; pointer-events: auto; }

/* ===========================================================
   SKY STAGE — shared bg image for hero + strategies
   =========================================================== */
.sky-stage{
  position: relative;
  isolation: isolate;
  background: var(--bg-dark);
  overflow: hidden;
}
.sky-stage__bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-dark);
}
.sky-stage__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.sky-stage__overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* keep image readable but visible — soft darken only at very bottom */
    linear-gradient(180deg,
      rgba(10,11,14,0)   0%,
      rgba(10,11,14,0)   60%,
      rgba(10,11,14,.25) 80%,
      rgba(10,11,14,.45) 100%);
}
.sky-stage__fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48vh;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,.05) 30%,
    rgba(255,255,255,.35) 60%,
    rgba(255,255,255,.85) 88%,
    var(--bg-light)       100%);
  z-index: 1;
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  min-height: 55vh;
  min-height: 55svh;
  display: flex;
  justify-content: center;
}
.hero__inner{
  width: 100%;
  padding: clamp(80px, 14vh, 160px) var(--pad) clamp(40px, 6vh, 80px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* ===================== STRATEGIES (editorial) ===================== */
.strategies{
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 100px) 0 clamp(80px, 14vh, 160px);
  color: var(--on-dark);
}
.strategies__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
}
.strategies__col--left{
  padding-top: 0;
}
.quote-head{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: .005em;
  margin: 0 0 28px;
  text-transform: uppercase;
  color: var(--on-dark);
}
.tagline{
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.35;
  margin: 0;
  color: var(--yellow);
  letter-spacing: .015em;
}

.strategies__col--right{
  position: relative;
}
.dots{
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.dot{
  --d: clamp(70px, 9vw, 130px);
  width: var(--d);
  height: var(--d);
  border-radius: 50%;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}
.dot--video{
  background-image: none;
  background-color: #000;
}
.dot__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.dot::after{
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(0,0,0,.15));
  mix-blend-mode: overlay;
}

.cms-title{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .03em;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--on-dark);
}
.cms-copy{
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-dark-2);
  margin: 0 0 28px;
  max-width: 50ch;
}
.cms-rule{
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 35%, rgba(255,255,255,.18) 36%, rgba(255,255,255,.18) 100%);
}

/* ===================== SCRUB VIDEO ===================== */
.scrub-section{
  position: relative;
  height: 320vh;             /* scroll distance for the scrub */
  background: #000;
  color: #fff;
  margin-bottom: -1px;       /* avoid sub-pixel seam against next section */
}
.scrub-stage{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.scrub-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.scrub-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.scrub-headers{
  position: absolute;
  top: clamp(150px, 22vh, 260px);
  left: 50%;
  transform: translateX(-50%);
  width: 96vw;
  max-width: 1500px;
  height: clamp(80px, 13vw, 200px);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.scrub-headers__line{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 1;
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s var(--easing), transform .35s var(--easing);
  white-space: nowrap;
}
.scrub-headers__line.is-active{
  opacity: 1;
  transform: translateY(0);
}
.scrub-headers__line:nth-child(2){
  color: var(--yellow);
}

.scrub-card{
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  bottom: clamp(40px, 8vh, 100px);
  max-width: min(420px, 38vw);
  padding: 18px 22px 18px 26px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  color: #0a0b0e;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 3;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s var(--easing), transform .6s var(--easing);
}
.scrub-card::before{
  content: '';
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 3px;
  background: var(--yellow);
}
.scrub-card.is-visible{
  opacity: 1;
  transform: translateX(0);
}

/* Right-side promise tag, paired with the card */
.scrub-tag{
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(40px, 8vh, 100px);
  max-width: min(360px, 32vw);
  text-align: right;
  color: #0a0b0e;
  z-index: 3;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s var(--easing), transform .6s var(--easing);
  pointer-events: none;
}
.scrub-tag.is-visible{ opacity: 1; transform: translateX(0); }
.scrub-tag__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 11px;
  text-transform: uppercase;
  color: #0a0b0e;
  margin: 0 0 12px;
}
.scrub-tag__eyebrow::after{
  content: '';
  width: 22px;
  height: 1px;
  background: #0a0b0e;
}
.scrub-tag__copy{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 28px);
  letter-spacing: .015em;
  line-height: 1.15;
  color: #0a0b0e;
  margin: 0;
}
.scrub-tag__copy em{
  font-style: italic;
  color: #0a0b0e;
  font-weight: 400;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 .12em;
}
.scrub-card__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 10px;
  color: #6c6f77;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.scrub-card__eyebrow::before{
  content: '';
  width: 18px;
  height: 1px;
  background: #0a0b0e;
}
.scrub-card__title{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: .015em;
  line-height: 1.05;
  margin: 0 0 8px;
  color: #0a0b0e;
}
.scrub-card__copy{
  font-size: 13px;
  line-height: 1.55;
  color: #2b2d33;
  margin: 0;
  max-width: 36ch;
}
/* Stats variant — number-led horizontal rows */
.scrub-card--stats{ max-width: min(380px, 36vw); padding: 20px 24px 20px 26px; }
.scrub-stats{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}
.scrub-stat{
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,.10);
}
.scrub-stat:first-child{ border-top: 0; padding-top: 4px; }
.scrub-stat:last-child{ padding-bottom: 4px; }
.scrub-stat__num{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 3.4vw, 48px);
  letter-spacing: .005em;
  line-height: .9;
  color: #0a0b0e;
  font-feature-settings: 'tnum' 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}
.scrub-stat__plus{
  font-size: .55em;
  margin-right: 4px;
  color: var(--yellow);
  font-weight: 400;
  -webkit-text-stroke: 1px #0a0b0e;
  align-self: center;
  line-height: 1;
}
.scrub-stat__meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.scrub-stat__label{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #0a0b0e;
  line-height: 1.1;
}
.scrub-stat__unit{
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: none;
  color: #6c6f77;
  line-height: 1.2;
}
.scrub-card__list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.scrub-card__row{
  display: grid;
  grid-template-columns: 26px minmax(64px, auto) 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.scrub-card__row:first-child{ border-top: 0; padding-top: 0; }
.scrub-card__num{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .26em;
  color: #6c6f77;
}
.scrub-card__name{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em;
  color: #0a0b0e;
  line-height: 1;
}
.scrub-card__desc{
  font-size: 11.5px;
  line-height: 1.4;
  color: #2b2d33;
}

/* ===================== BEFORE / AFTER SLIDER ===================== */
.ba-section{
  background: var(--bg-light);
  padding: clamp(40px, 6vh, 80px) 40px;
}
.ba-section__inner{
  max-width: 1600px;
  margin: 0 auto;
}
.ba-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 24 / 9;
  max-height: clamp(280px, 56vh, 520px);
  overflow: hidden;
  background: #0a0b0e;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  border-radius: 4px;
  isolation: isolate;
}
.ba-slider__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider__img--after{ z-index: 1; }
.ba-slider__img--before{
  z-index: 2;
  /* Make the "before" visually distinct from the "after" */
  filter: grayscale(.92) brightness(.62) contrast(.95);
  /* Reveal only up to the slider position */
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}
.ba-slider__handle{
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos, 50%);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
}
.ba-slider__line{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.25), 0 6px 24px rgba(0,0,0,.4);
}
.ba-slider__knob{
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0a0b0e;
  border: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform .25s var(--easing), background .25s var(--easing);
}
.ba-slider__knob svg{ width: 22px; height: 22px; }
.ba-slider__knob:hover{ transform: scale(1.06); background: #e4ff5a; }
.ba-slider__knob:focus-visible{ outline: 2px solid #fff; outline-offset: 3px; }

.ba-slider__label{
  position: absolute;
  bottom: clamp(14px, 2vh, 22px);
  z-index: 3;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 11px;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 12px;
  background: rgba(10,11,14,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2px;
  pointer-events: none;
}
.ba-slider__label--before{ left: clamp(14px, 2vw, 22px); }
.ba-slider__label--after { right: clamp(14px, 2vw, 22px); color: #0a0b0e; background: rgba(216,255,46,.92); }

/* ===================== EDITORIAL GALLERY ===================== */
.gallery-section{
  background: var(--bg-light);
  padding: clamp(40px, 6vh, 80px) 40px clamp(60px, 9vh, 110px);
  color: var(--ink);
}
.gallery-section__inner{
  max-width: 1600px;
  margin: 0 auto;
}
.gallery-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.gallery-section__copy{
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: clamp(80px, 12vh, 140px);
}
.gallery-section__eyebrow{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.gallery-section__title{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .015em;
  line-height: 1.05;
  margin: 4px 0 12px;
  color: var(--ink);
  max-width: 16ch;
}
.gallery-section__title em{
  font-style: italic;
  color: var(--ink);
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 .12em;
  font-weight: 400;
}
.gallery-section__lede{
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  max-width: 46ch;
}

.gallery-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1vw, 18px);
}
.gallery-item{
  position: relative;
  margin: 0;
  background: #0a0b0e;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;             /* eliminate inline image baseline gap */
}
.gallery-item img{
  width: 100%;
  height: auto;               /* preserve original aspect ratio */
  display: block;
  transition: transform .8s var(--easing);
}
.gallery-item:hover img{ transform: scale(1.04); }
.gallery-item__caption{
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
  line-height: 1;
}
.gallery-item__tag{
  align-self: flex-start;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  background: rgba(10,11,14,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2px;
}
.gallery-item__tag--lead{
  background: var(--yellow);
  color: #0a0b0e;
}

/* ===================== CREATIVE STRIP (full-width compact preview) ===================== */
.creative-strip{
  background: var(--bg-light);
  color: var(--ink);
  padding: clamp(48px, 8vh, 90px) var(--pad) clamp(36px, 5vh, 60px);
}
.creative-strip__inner{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 2.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.creative-strip__head{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.creative-strip__eyebrow{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.creative-strip__title{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: .015em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.creative-strip__list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  border-top: 1px solid var(--line);
  padding-top: clamp(18px, 2vh, 26px);
}
.creative-strip__item{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 2px 0;
  border-top: 2px solid transparent;
  transition: border-color .25s var(--easing);
}
.creative-strip__item:hover{ border-top-color: var(--yellow); }
.creative-strip__num{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--ink-3);
}
.creative-strip__name{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .02em;
  line-height: 1;
  color: var(--ink);
}
.creative-strip__desc{
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-2);
}

/* ===================== BIG QUOTE (white section) ===================== */
.big-quote-section{
  background: var(--bg-light);
  color: var(--ink);
  padding: clamp(80px, 16vh, 180px) var(--pad);
  text-align: center;
}
.big-quote p{
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 50px);
  line-height: 1.25;
  letter-spacing: .005em;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
}
.big-quote em{
  color: var(--ink);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 .12em;
}

/* ===================== SERVICES (white) ===================== */
.services{
  background: var(--bg-light);
  color: var(--ink);
  padding: clamp(40px, 8vh, 80px) 0 clamp(80px, 14vh, 140px);
  position: relative;
  border-top: 1px solid var(--line);
}
.services__head{
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-bottom: clamp(40px, 6vh, 70px);
}
.badge{
  display: inline-block;
  padding: 10px 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 12px;
  border-radius: 4px;
  position: relative;
}
.badge--yellow{
  background: var(--yellow);
  color: #0a0b0e;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding-right: 30px;
}
.badge--ghost{
  background: rgba(0,0,0,.04);
  border: 1px solid var(--line);
  color: var(--ink-3);
}

.services__stage{
  position: relative;
  min-height: clamp(360px, 50vh, 560px);
  display: grid;
  place-items: center;
  margin: 30px 0 60px;
}
.stage-plane{
  position: absolute;
  width: min(58%, 600px);
  left: -4%;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.22));
  height: auto;
  display: block;
  pointer-events: none;
}
.stage-tags{
  position: absolute;
  right: clamp(0px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.tag{
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 56px);
  letter-spacing: .04em;
  line-height: 1.05;
  color: var(--ink);
  position: relative;
  padding: 4px 12px 4px 0;
  opacity: 0;
  transform: translateX(20px);
  z-index: 1;
}
.tag::before{
  content: '';
  position: absolute;
  inset: 6% -6px 14% -10px;
  background: var(--yellow);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .5s var(--easing);
}
.tag.is-lit::before{ transform: scaleX(1); }

.services__detail{
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.5fr);
  gap: clamp(28px, 4vw, 64px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.services__icons{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc{
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(0,0,0,.03);
  border: 1px solid var(--line);
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
  transition: background .25s var(--easing), color .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
}
.svc:hover{
  color: var(--ink);
  border-color: var(--ink);
  transform: translateX(4px);
}
.svc.is-active{
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0b0e;
  transform: translateX(4px);
}
.svc__ico{ width: 28px; height: 28px; flex: 0 0 auto; }
.svc__ico svg{ width: 100%; height: 100%; }
.svc span{
  font-family: 'Oswald', sans-serif;
  letter-spacing: .2em;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.svc-panel{
  position: relative;
  min-height: 240px;
  padding: 4px 0;
}
.svc-info{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s var(--easing), transform .35s var(--easing);
}
.svc-info.is-active{
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.svc-info__eyebrow{
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.svc-info__title{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: .015em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.svc-info__copy{
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 52ch;
}
.svc-info__list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.svc-info__list li{
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--ink-2);
}
.svc-info__list li::before{
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 14px; height: 1px;
  background: var(--yellow);
}

/* ===================== PROCESS (white) ===================== */
.process{
  background: var(--bg-light);
  color: var(--ink);
  padding: clamp(80px, 14vh, 160px) 0;
  border-top: 1px solid var(--line);
}
.section-head{
  text-align: center;
  margin-bottom: clamp(40px, 8vh, 90px);
}
.eyebrow{
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .35em;
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.section-head h2{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}
.steps{
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
}
.step{
  position: relative;
  display: flex;
  flex-direction: column;
}
.step__num{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: background .35s var(--easing), color .35s var(--easing), border-color .35s var(--easing), transform .35s var(--easing);
  flex: 0 0 auto;
}
.step:hover .step__num{
  background: var(--yellow);
  color: #0a0b0e;
  border-color: var(--yellow);
  transform: scale(1.06);
}
.step__bar{
  position: absolute;
  top: 28px;
  left: 56px;
  right: -28px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
  z-index: 1;
}
.step__bar span{
  display: block; height: 100%; width: 0%;
  background: var(--yellow);
  transition: width 1.1s var(--easing);
}
.step.is-revealed .step__bar span{ width: 100%; }
.step:last-child .step__bar{ display: none; }
.step h3{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: .02em;
  color: var(--ink);
}
.step p{
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ===================== COLOPHON (CTA + footer in one cinematic block) ===================== */
.colophon{
  position: relative;
  isolation: isolate;
  background: #0a0b0e;
  color: var(--on-dark);
  overflow: hidden;
  padding: clamp(80px, 14vh, 160px) clamp(24px, 4vw, 64px) clamp(28px, 4vh, 48px);
}
.colophon__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(.55) saturate(.9);
  pointer-events: none;
}
.colophon__overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,11,14,.55) 0%, rgba(10,11,14,.6) 35%, rgba(10,11,14,.85) 100%),
    radial-gradient(60% 80% at 8% 0%, rgba(216,255,46,.12), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(255,255,255,.08), transparent 70%);
  pointer-events: none;
}
.colophon__inner{
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vh, 100px);
}

/* INVITATION */
.colophon__invite{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 920px;
}
.colophon__status{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--on-dark);
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.colophon__pulse{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(216,255,46,.7);
  animation: colophonPulse 2.2s var(--easing) infinite;
}
@keyframes colophonPulse{
  0%   { box-shadow: 0 0 0 0 rgba(216,255,46,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(216,255,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,255,46,0); }
}
.colophon__h{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: .96;
  letter-spacing: .01em;
  margin: 6px 0 18px;
  color: var(--on-dark);
  max-width: 18ch;
}
.colophon__h em{
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
}
.colophon__cta{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow);
  color: #0a0b0e;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 28px 18px 28px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .25s var(--easing), background .25s var(--easing);
}
.colophon__cta svg{ width: 18px; height: 18px; transition: transform .25s var(--easing); }
.colophon__cta:hover{ transform: translateY(-3px); background: #e4ff5a; }
.colophon__cta:hover svg{ transform: translateX(4px); }
.colophon__contact{
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--on-dark-2);
  margin-top: 8px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  transition: color .25s var(--easing), border-color .25s var(--easing);
}
.colophon__contact:hover{ color: var(--yellow); border-color: var(--yellow); }

/* WORDMARK MOMENT */
.colophon__wordmark{
  display: block;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 16vw, 280px);
  line-height: .82;
  letter-spacing: .005em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.55);
  text-decoration: none;
  margin: 0;
  transition: color .35s var(--easing), -webkit-text-stroke-color .35s var(--easing);
  white-space: nowrap;
  overflow: hidden;
}
.colophon__wordmark:hover{
  color: var(--yellow);
  -webkit-text-stroke-color: var(--yellow);
}
.colophon__dot{ color: var(--yellow); -webkit-text-fill-color: var(--yellow); }

/* INFO GRID */
.colophon__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding-top: clamp(28px, 4vh, 44px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.colophon__col{
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.colophon__h-mini{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--on-dark-3);
  position: relative;
  padding-bottom: 10px;
}
.colophon__h-mini::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 18px; height: 1px;
  background: var(--yellow);
}
.colophon__col ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.colophon__col li{
  font-size: 14px;
  color: var(--on-dark);
  letter-spacing: .015em;
}
.colophon__col a{
  color: var(--on-dark);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  transition: color .25s var(--easing);
}
.colophon__col a:hover{ color: var(--yellow); }
.colophon__social a span{ color: var(--yellow); transition: transform .25s var(--easing); }
.colophon__social a:hover span{ transform: translate(2px, -2px); }

.colophon__clock{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--yellow);
  font-feature-settings: 'tnum' 1;
}
.colophon__clock-meta{
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}

/* BOTTOM BAR */
.colophon__bar{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  color: var(--on-dark-3);
}
.colophon__copy{ font-family: 'Oswald', sans-serif; letter-spacing: .04em; }
.colophon__tag{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .06em;
  color: var(--yellow);
  text-align: center;
  white-space: nowrap;
}
.colophon__top-link{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--on-dark);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  transition: background .25s var(--easing), color .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
}
.colophon__top-link svg{ width: 14px; height: 14px; transition: transform .25s var(--easing); }
.colophon__top-link:hover{
  background: var(--yellow);
  color: #0a0b0e;
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.colophon__top-link:hover svg{ transform: translateY(-2px); }

/* ===================== FOOTER ===================== */
.footer{
  position: relative;
  background: #0a0b0e;
  color: var(--on-dark);
  padding: clamp(60px, 10vh, 120px) 0 clamp(28px, 4vh, 48px);
  overflow: hidden;
}
.footer::before{
  /* faint topographic glow */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 12% 0%, rgba(216,255,46,.10), transparent 60%),
    radial-gradient(50% 70% at 95% 100%, rgba(255,255,255,.05), transparent 70%);
  pointer-events: none;
}
.footer__top{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.footer__brand{
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}
.footer__eyebrow{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--yellow);
}
.footer__wordmark{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: .015em;
  line-height: .85;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin: 0;
}
.footer__wordmark-dot{ color: var(--yellow); }
.footer__wordmark:hover{ color: var(--yellow); }
.footer__lede{
  font-size: 14px;
  line-height: 1.65;
  color: var(--on-dark-2);
  margin: 0;
  max-width: 44ch;
}
.footer__col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__h{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--on-dark-3);
  position: relative;
  padding-bottom: 12px;
}
.footer__h::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 22px; height: 1px;
  background: var(--yellow);
}
.footer__col ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__col a{
  color: var(--on-dark);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .015em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;          /* prevent the link from stretching to row width */
  transition: color .25s var(--easing), padding .25s var(--easing);
}
.footer__col a::before{
  content: '';
  position: absolute;
  left: -14px; top: 50%;
  width: 8px; height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--easing);
}
.footer__col a:hover{
  color: var(--yellow);
  padding-left: 14px;
}
.footer__col a:hover::before{ transform: scaleX(1); }
.footer__social a span{ color: var(--yellow); transition: transform .25s var(--easing); }
.footer__social a:hover span{ transform: translate(2px, -2px); }

.footer__rule{
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(40px, 6vh, 70px) 0 clamp(22px, 3vh, 36px);
  padding: 0 var(--pad);
}
.footer__rule-line{
  flex: 1 1 auto;
  height: 1px;
  background: var(--line-dark);
}
.footer__tag{
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .04em;
  color: var(--yellow);
  white-space: nowrap;
}

.footer__bottom{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: var(--on-dark-3);
  letter-spacing: .04em;
}
.footer__copy, .footer__meta{ font-family: 'Oswald', sans-serif; }
.footer__top-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--on-dark);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition: background .25s var(--easing), color .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
}
.footer__top-link svg{ width: 14px; height: 14px; }
.footer__top-link:hover{
  background: var(--yellow);
  color: #0a0b0e;
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ===================== REVEAL ===================== */
[data-reveal]{ opacity: 0; transform: translateY(30px); }

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 960px){
  .strategies__inner{ grid-template-columns: 1fr; gap: 60px; }
  .strategies__col--left{ padding-top: 0; }

  .services__detail{ grid-template-columns: 1fr; gap: 32px; }
  .services__icons{ flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .svc{ flex: 1 1 calc(50% - 4px); padding: 12px 14px; }
  .svc span{ font-size: 11px; letter-spacing: .18em; }
  .svc-panel{ min-height: 0; }

  .steps{ grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .step__bar{ display: none; }

  .stage-tags{ right: 8px; }

  /* Footer — collapse to 2x2 grid */
  .footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand{ grid-column: 1 / -1; }

  /* Editorial gallery — stack copy on top, keep 2x2 image grid */
  .gallery-layout{ grid-template-columns: 1fr; gap: 32px; }
  .gallery-section__copy{ position: static; }
  .gallery-section__title{ max-width: none; }

  /* Colophon — 2x2 grid */
  .colophon__grid{ grid-template-columns: 1fr 1fr; gap: 32px 36px; }
  .colophon__bar{ grid-template-columns: 1fr 1fr; }
  .colophon__tag{ grid-column: 1 / -1; order: -1; text-align: left; }
}

/* Mobile breakpoint — swap to mobile header */
@media (max-width: 768px){
  /* hide desktop chrome */
  .menu-tab{ display: none; }
  .top-cta{ display: none; }

  /* show mobile header */
  .m-header{ display: flex; }

  .drawer{ width: 86vw; min-width: 0; }
  .drawer__inner{ padding: 22px 22px 22px 28px; }
  .drawer__nav a{ font-size: clamp(28px, 8vw, 42px); }
}

/* Phone */
@media (max-width: 640px){
  :root{ --pad: 20px; }

  .m-header{ padding: 12px 16px; }
  .m-header__logo{ width: 34px; height: 34px; }
  .m-header__burger{ width: 42px; height: 42px; }

  .hero{ min-height: 50vh; min-height: 50svh; }
  .hero__inner{
    padding-top: clamp(80px, 14vh, 140px);
    padding-bottom: 30px;
  }

  .strategies{ padding: clamp(30px, 6vh, 60px) 0 clamp(60px, 10vh, 120px); }
  .strategies__inner{ gap: 44px; }
  .quote-head{ font-size: clamp(20px, 6vw, 28px); margin-bottom: 20px; }
  .tagline{ font-size: clamp(15px, 4.2vw, 18px); }
  .dots{ gap: 10px; margin-bottom: 28px; }
  .dot{ --d: clamp(58px, 22vw, 96px); }
  .cms-title{ font-size: clamp(20px, 5.6vw, 28px); }
  .cms-copy{ font-size: 14px; }

  .big-quote-section{ padding: clamp(60px, 12vh, 120px) var(--pad); }
  .big-quote p{ font-size: clamp(22px, 7vw, 32px); max-width: 18ch; }

  .creative-strip__inner{ grid-template-columns: 1fr; gap: 22px; }
  .creative-strip__list{ grid-template-columns: repeat(2, 1fr); gap: 14px 18px; padding-top: 18px; }

  .scrub-section{ height: 260vh; }
  .scrub-card{
    max-width: calc(100% - 40px);
    left: 20px; right: 20px;
    bottom: clamp(20px, 4vh, 50px);
    padding: 18px;
  }
  .scrub-headers__line{ font-size: clamp(52px, 14vw, 100px); }

  .services{ padding: clamp(30px, 6vh, 60px) 0 clamp(60px, 10vh, 120px); }
  .services__head{ flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 30px; }
  .services__detail{ padding-top: 28px; }
  .svc{ flex: 1 1 100%; }

  .services__stage{
    height: auto;
    flex-direction: column;
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding: 10px 0 30px;
  }
  .stage-plane{
    position: relative;
    transform: none;
    left: auto; top: auto;
    width: 100%;
    margin: 0 auto;
  }
  .stage-tags{
    position: relative;
    right: auto; top: auto; transform: none;
    text-align: left;
    display: flex; flex-wrap: wrap; gap: 6px 14px;
  }
  .tag{ font-size: clamp(22px, 7vw, 30px); padding: 2px 10px 2px 0; }

  .process{ padding: clamp(60px, 10vh, 100px) 0; }
  .section-head{ margin-bottom: 50px; }
  .section-head h2{ font-size: clamp(26px, 7vw, 38px); }
  .steps{ grid-template-columns: 1fr; gap: 0; padding-left: 4px; }
  .step{ padding-left: 36px; padding-bottom: 28px; border-left: 2px solid var(--line); position: relative; }
  .step:last-child{ padding-bottom: 0; }
  .step__num{ position: absolute; left: -23px; top: 0; width: 44px; height: 44px; font-size: 14px; margin: 0; }
  .step__bar{ display: none; }
  .step h3{ font-size: 18px; margin-bottom: 6px; }
  .step p{ font-size: 13px; }

  /* Editorial gallery — tighter padding on phone */
  .gallery-section{ padding: 36px 20px clamp(50px, 8vh, 80px); }
  .gallery-grid{ gap: 8px; }
  .gallery-section__title{ font-size: clamp(22px, 6.4vw, 30px); }
  .gallery-section__lede{ font-size: 14px; }

  /* Colophon — single column, centered bar */
  .colophon{ padding: clamp(60px, 10vh, 100px) 20px clamp(24px, 4vh, 36px); }
  .colophon__inner{ gap: 50px; }
  .colophon__h{ font-size: clamp(34px, 9vw, 54px); }
  .colophon__wordmark{ font-size: clamp(56px, 22vw, 140px); }
  .colophon__grid{ grid-template-columns: 1fr 1fr; gap: 24px; }
  .colophon__col--time{ grid-column: 1 / -1; }
  .colophon__bar{ grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .colophon__tag{ text-align: left; }
  .colophon__top-link{ justify-self: start; }
}

/* Tiny phones */
@media (max-width: 380px){
  :root{ --pad: 16px; }
  .quote-head{ font-size: 20px; }
  .cms-title{ font-size: 22px; }
  .big-quote p{ font-size: 24px; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal]{ opacity: 1; transform: none; }
  .tag{ opacity: 1; transform: none; }
  .tag::before{ transform: scaleX(1); }
}
