/* WingZ custom sections, injected after the hero animation:
   1) .wz2-band  — "MADE WITH WINGZ" typographic statement (showcase header)
   2) .wz2-show  — scroll-pinned project showcase: each project pins full-screen,
      a giant title marquee slides behind a centered media, and projects hand off
      with a vertical-blinds reveal. Original implementation of the effect; the
      project content is placeholder and meant to be swapped.
   Dark theme. Brand orange = #F96029. */

:root { --wz2-orange: #F96029; }

/* ---------------------------------------------------------------- *
 * 1. MADE WITH WINGZ — typographic band (showcase header)
 * ---------------------------------------------------------------- */
.wz2-band {
  position: relative;
  width: 100vw;
  max-width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  /* transparent over the page's black base so it matches the section above
     (no orange glow, no seam line) */
  background: transparent;
  overflow: hidden;
}
.wz2-band-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 58vh;
  padding: clamp(52px, 8vh, 96px) 32px clamp(36px, 5vh, 60px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.wz2-corner {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}
.wz2-head {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  text-align: right;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 50px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  text-transform: uppercase;
}
.wz2-head span { display: block; }
.wz2-head .accent { color: var(--wz2-orange); }
.wz2-meta-col {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.wz2-tag {
  margin: 0;
  max-width: 30ch;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.wz2-tag b { color: rgba(255, 255, 255, 0.95); font-weight: 700; }

/* ---------------------------------------------------------------- *
 * 2. Scroll-pinned project showcase
 * ---------------------------------------------------------------- */
.wz2-show {
  position: relative;
  width: 100vw;
  max-width: 100%;
  align-self: stretch;
  background: #0a0a0b;
  /* height is set inline by JS = (100 + N*90)vh */
}
.wz2-show-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0b;
}

.wz2-proj {
  position: absolute;
  inset: 0;
  /* reveal is a vertical-blinds clip-path "comb", set per-frame by JS.
     k>0 start fully clipped (inline style) until the scroll handler runs. */
  will-change: clip-path;
}

/* background (blurred media or accent gradient) */
.wz2-proj-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.wz2-proj-bg.is-img {
  transform: scale(1.14);
  filter: blur(34px) brightness(0.42) saturate(1.15);
}
.wz2-proj-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.62));
}

/* giant sliding title behind the media */
.wz2-marq {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.wz2-marq-in {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: wz2-slide 30s linear infinite;
}
.wz2-marq-in span {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-weight: 800;
  font-size: clamp(84px, 17vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  padding: 0 0.1em;
}
@keyframes wz2-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* centered project media */
.wz2-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--ms, 1));
  width: min(64vw, 1000px);
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 50px 130px -40px rgba(0,0,0,0.85);
}
.wz2-media img,
.wz2-media video,
.wz2-media .wz2-media-grad {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wz2-media-grad {
  background: radial-gradient(120% 120% at 25% 20%, var(--accent, #444), #111 72%);
}

/* corner labels + meta */
.wz2-proj-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 3vw, 40px);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.wz2-proj-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 26px clamp(20px, 3vw, 40px);
  color: #fff;
}
.wz2-meta-name {
  flex: 1;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wz2-meta-cat {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}
.wz2-meta-year {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------------------------------------------------------------- *
 * Project 01 — Alestine live hero (cursor lens reveal)
 * Text sizes use container query units so the mini-site scales with
 * the media frame on any screen.
 * ---------------------------------------------------------------- */
.wz2-media.is-live {
  container-type: size;
  container-name: alz;
  cursor: none;
  background: #06070a;
}
.alz {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: none;
}
.alz-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.alz-reveal {
  /* hidden until JS positions the lens mask */
  -webkit-mask-image: radial-gradient(circle 1px at -999px -999px, #000, rgba(0,0,0,0));
          mask-image: radial-gradient(circle 1px at -999px -999px, #000, rgba(0,0,0,0));
  will-change: mask-image;
  transform: scale(1.02);   /* a hair of parallax "depth" inside the lens */
}
.alz-scrim-top {
  position: absolute; inset: 0 0 auto 0; height: 44%;
  background: linear-gradient(180deg, rgba(4,5,9,0.72), rgba(4,5,9,0));
  pointer-events: none; z-index: 3;
}
.alz-scrim-bottom {
  position: absolute; inset: auto 0 0 0; height: 64%;
  background: linear-gradient(0deg, rgba(4,5,9,0.88), rgba(4,5,9,0.30) 44%, rgba(4,5,9,0));
  pointer-events: none; z-index: 3;
}
.alz-word {
  position: absolute; top: 0; bottom: 0; right: 3cqi;
  display: flex; align-items: center;
  writing-mode: vertical-rl;
  font-family: "Inter", sans-serif; font-weight: 800;
  font-size: clamp(18px, 6cqi, 60px); letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none; z-index: 2;
}
.alz-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 4cqi 5cqi; pointer-events: none;
}
.alz-logo {
  font-family: "Inter", sans-serif; font-weight: 800; letter-spacing: 0.02em;
  color: #fff; font-size: clamp(11px, 2.8cqi, 22px);
}
.alz-logo sup { font-size: 0.5em; opacity: 0.7; }
.alz-links { display: flex; gap: 3.4cqi; }
.alz-links span {
  position: relative;
  font-family: "Geist Mono", ui-monospace, monospace; font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(8px, 1.6cqi, 13px);
  text-transform: uppercase; letter-spacing: 0.1em;
  pointer-events: auto; cursor: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.alz-links span::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  height: 1px; width: 0; background: #18d0ff;
  box-shadow: 0 0 7px rgba(24, 208, 255, 0.9);
  transition: width 0.3s cubic-bezier(0.5, 0, 0.2, 1);
}
.alz-links span:hover {
  color: #18d0ff;
  text-shadow: 1px 0 rgba(255, 60, 90, 0.7), -1px 0 rgba(24, 208, 255, 0.7), 0 0 10px rgba(24, 208, 255, 0.5);
}
.alz-links span:hover::after { width: 100%; }
.alz-copy {
  position: absolute; left: 0; bottom: 0; z-index: 4;
  max-width: 66cqi; padding: 5cqi 5cqi 5.5cqi; pointer-events: none;
}
.alz-eyebrow {
  display: inline-flex; align-items: center; gap: 1.6cqi;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(8px, 1.5cqi, 12px); letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff;
  background: rgba(6, 9, 13, 0.62);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--accent, #ff5a2c);
  padding: 1.5cqi 2.6cqi; border-radius: 4px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  margin-bottom: 2.6cqi;
}
.alz-eye-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent, #ff5a2c);
  box-shadow: 0 0 10px var(--accent, #ff5a2c);
  animation: alz-blink 1.6s steps(1) infinite;
}
@keyframes alz-blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.25; } }
.alz-head {
  font-family: "Inter", sans-serif; font-weight: 700;
  font-size: clamp(13px, 3.7cqi, 34px); line-height: 1.08;
  letter-spacing: -0.02em; color: #fff; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.alz-sub {
  margin-top: 2.2cqi; max-width: 48cqi;
  font-family: "Inter", sans-serif;
  font-size: clamp(9px, 1.7cqi, 15px); line-height: 1.45;
  color: rgba(255, 255, 255, 0.74);
}
/* cyberpunk CTA — chamfered geometry, neon border, fill sweep, corner brackets */
.alz-cta {
  position: relative; display: inline-flex; align-items: center; gap: 2.6cqi;
  margin-top: 4.4cqi; padding: 2.7cqi 4.4cqi;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(9px, 1.7cqi, 14px); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #eafdff; text-decoration: none;
  pointer-events: auto; cursor: none; overflow: hidden; isolation: isolate;
  background: rgba(7, 12, 17, 0.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(120, 230, 255, 0.55);
  -webkit-clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
          clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  box-shadow: 0 0 0 rgba(80, 200, 255, 0);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}
.alz-cta-fill {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, #18d0ff 0%, #6e7bff 48%, #ff5a2c 100%);
  transform: translateX(-101%); transition: transform 0.45s cubic-bezier(0.5, 0, 0.2, 1);
}
.alz-cta-scan {
  position: absolute; left: 0; right: 0; top: -40%; height: 40%; z-index: -1;
  background: linear-gradient(180deg, rgba(120, 230, 255, 0) 0%, rgba(120, 230, 255, 0.22) 50%, rgba(120, 230, 255, 0) 100%);
  animation: alz-cta-scan 3.2s linear infinite;
}
@keyframes alz-cta-scan { to { transform: translateY(360%); } }
.alz-cta-txt { position: relative; }
.alz-cta-ico { position: relative; display: inline-flex; transition: transform 0.3s ease; }
.alz-cta-ico svg { width: clamp(13px, 2.4cqi, 18px); height: auto; }
/* corner brackets */
.alz-cta-c {
  position: absolute; width: 7px; height: 7px; border: 1px solid var(--accent, #ff5a2c);
  opacity: 0.9; transition: all 0.3s ease;
}
.alz-cta-c.tl { top: 4px; left: 4px; border-right: 0; border-bottom: 0; }
.alz-cta-c.br { bottom: 4px; right: 4px; border-left: 0; border-top: 0; }
.alz-cta:hover {
  color: #04121a; border-color: transparent;
  box-shadow: 0 12px 40px -8px rgba(80, 200, 255, 0.55), 0 0 0 1px rgba(120, 230, 255, 0.4);
}
.alz-cta:hover .alz-cta-fill { transform: translateX(0); }
.alz-cta:hover .alz-cta-ico { transform: translateX(4px); }
.alz-cta:hover .alz-cta-c { border-color: #04121a; width: 11px; height: 11px; }
/* the custom lens cursor */
.alz-cursor {
  position: absolute; left: 0; top: 0; z-index: 6;
  width: calc(var(--r, 90px) * 2); height: calc(var(--r, 90px) * 2);
  border-radius: 50%;
  border: 1.5px solid rgba(120, 230, 255, 0.85);
  box-shadow: 0 0 26px rgba(80, 200, 255, 0.35), inset 0 0 34px rgba(255, 90, 44, 0.16);
  mix-blend-mode: screen; pointer-events: none;
  opacity: 0; transition: opacity 0.4s ease;
  will-change: transform;
}
.alz.is-ready .alz-cursor { opacity: 1; }
.alz-cursor::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%); box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}
.alz-cursor::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 1px solid rgba(255, 90, 44, 0.35);
}
.alz-cursor-l {
  position: absolute; left: 50%; top: 100%;
  transform: translate(-50%, 8px);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(7px, 1.2cqi, 11px); letter-spacing: 0.2em;
  white-space: nowrap; color: rgba(165, 235, 255, 0.95);
  text-shadow: 0 0 8px rgba(80, 200, 255, 0.6);
}
.alz-hint {
  position: absolute; right: 5cqi; bottom: 5cqi; z-index: 5;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(8px, 1.4cqi, 12px); letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.32); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 1.6cqi 2.6cqi; border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px; transition: opacity 0.4s ease;
}
.alz.is-hover .alz-hint { opacity: 0; }

/* ---------------------------------------------------------------- *
 * Project 02 — DreamHouse loading transition
 * Phase A: the film plays clipped inside the wordmark on black (a black
 * multiply layer hides the video everywhere except the white glyphs).
 * Phase B (.is-loaded): the black layer fades, the video fills the frame,
 * and an aligned white title + nav + tagline settle in.
 * ---------------------------------------------------------------- */
.wz2-media.is-dream { background: #000; }
.dh {
  position: absolute; inset: 0; overflow: hidden;
  background: #000; isolation: isolate;
  container-type: size; container-name: dh;
}
.dh-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.09);
  transition: transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dh.is-loaded .dh-vid { transform: scale(1); }
.dh-grade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 28%, rgba(0,0,0,0.12) 64%, rgba(0,0,0,0.62));
  opacity: 0; transition: opacity 1.1s ease;
}
.dh.is-loaded .dh-grade { opacity: 1; }
/* the title shared between phases — identical metrics so the swap is seamless */
.dh-textmask, .dh-title {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.dh-textmask span, .dh-title span {
  font-family: "Inter", "Inter Placeholder", sans-serif; font-weight: 600;
  font-size: clamp(30px, 14cqi, 168px); letter-spacing: -0.035em;
  line-height: 1; white-space: nowrap;
}
.dh-textmask {
  background: #000; mix-blend-mode: multiply;       /* black hides video, white text reveals it */
  transition: opacity 0.9s ease;
}
.dh-textmask span { color: #fff; }
.dh.is-loaded .dh-textmask { opacity: 0; }
.dh-title {
  z-index: 3; opacity: 0; pointer-events: none;
  transform: translateY(0);   /* starts centered, aligned with the masked text */
  transition: opacity 1s ease 0.15s, transform 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s;
}
.dh-title span { color: #fff; text-shadow: 0 6px 50px rgba(0, 0, 0, 0.45); }
/* on reveal the title lifts up so it sits centered above the journal stack */
.dh.is-loaded .dh-title { opacity: 1; transform: translateY(-8%); }
/* nav + tagline (phase B) */
.dh-nav {
  position: absolute; top: 0; right: 0; z-index: 4;
  display: flex; align-items: center; gap: 3cqi; padding: 4cqi 5cqi;
  opacity: 0; transition: opacity 0.8s ease 0.25s;
}
.dh.is-loaded .dh-nav { opacity: 1; }
.dh-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.dh-links { display: flex; gap: 3cqi; }
.dh-links span {
  font-family: "Inter", sans-serif; font-size: clamp(8px, 1.7cqi, 14px);
  color: #fff; letter-spacing: 0.01em;
}
.dh-tag {
  position: absolute; top: 0; left: 0; z-index: 4;
  max-width: 44cqi; padding: 4cqi 5cqi;
  font-family: "Inter", sans-serif; font-weight: 400;
  font-size: clamp(10px, 2cqi, 18px); line-height: 1.32; color: #fff;
  opacity: 0; transition: opacity 0.8s ease 0.35s;
}
.dh.is-loaded .dh-tag { opacity: 1; }
/* loader (phase A) */
.dh-loader {
  position: absolute; left: 0; right: 0; bottom: 6cqi; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 2cqi;
  transition: opacity 0.5s ease;
}
.dh.is-loaded .dh-loader { opacity: 0; }
.dh-loader-bar {
  position: relative; width: 32cqi; height: 1px;
  background: rgba(255, 255, 255, 0.22); overflow: hidden;
}
.dh-loader-bar i {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: #fff; box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
.dh-loader-pct {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(8px, 1.4cqi, 12px); letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.78);
}
.dh-loader-pct b { color: #fff; font-weight: 500; }
/* journal cards (phase B, bottom-left) */
.dh-journal {
  position: absolute; left: 0; bottom: 0; z-index: 4;
  width: min(42cqi, 380px); padding: 0 5cqi 5cqi;
  display: flex; flex-direction: column; gap: 1.8cqi;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.dh.is-loaded .dh-journal { opacity: 1; transform: none; }
.dh-jrow {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.9cqi;
  transition: border-color 0.3s ease;
}
.dh-jrow:hover { border-color: rgba(255, 255, 255, 0.7); }
.dh-jhead {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.dh-jlabel {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(8px, 1.35cqi, 12px); letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.62);
}
.dh-jlabel b { color: #fff; font-weight: 600; letter-spacing: 0.02em; }
.dh-jplus {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(12px, 1.9cqi, 16px); line-height: 1;
  color: rgba(255, 255, 255, 0.7); transition: transform 0.3s ease, color 0.3s ease;
}
.dh-jrow:hover .dh-jplus { transform: rotate(90deg); color: #fff; }
.dh-jtext {
  margin-top: 1.1cqi; max-width: 34cqi;
  font-family: "Inter", sans-serif;
  font-size: clamp(9px, 1.45cqi, 13px); line-height: 1.42;
  color: rgba(255, 255, 255, 0.74);
}

/* ---------------------------------------------------------------- *
 * Project 03 — Tideline surf-coach hero (Mattis-style framed box)
 * B&W footage that colours on hover; the box unfolds from a line and the
 * content + hand-drawn signature animate in. Loops as a start animation.
 * ---------------------------------------------------------------- */
.wz2-media.is-surf { background: #0a0c0e; }
.surf {
  position: absolute; inset: 0; overflow: hidden;
  background: #0a0c0e; container-type: size; container-name: surf;
}
.surf-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.04);
  filter: grayscale(1) contrast(1.06) brightness(0.78);
  transition: filter 0.9s ease, transform 6s ease;
}
.surf:hover .surf-vid { filter: grayscale(0) contrast(1.02) brightness(0.92); transform: scale(1.08); }
.surf-tint {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,8,10,0.5), rgba(6,8,10,0.28) 38%, rgba(6,8,10,0.62));
}
/* nav */
.surf-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 4cqi 5cqi;
}
.surf-brand { font-family: "Inter", sans-serif; font-weight: 800; color: #fff; font-size: clamp(12px, 2.5cqi, 22px); }
.surf-brand sup { font-size: 0.5em; opacity: 0.7; }
.surf-navlinks { display: flex; align-items: center; gap: 2.6cqi; }
.surf-navlinks > span {
  font-family: "Inter", sans-serif; font-size: clamp(8px, 1.5cqi, 13px);
  color: rgba(255, 255, 255, 0.86); text-transform: uppercase; letter-spacing: 0.06em;
}
.surf-book {
  background: #fff; color: #0a0c0e !important; font-weight: 600;
  padding: 1.4cqi 2.6cqi; border-radius: 999px; text-transform: none !important; letter-spacing: 0 !important;
}
/* the framed box that unfolds */
.surf-box {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.72);   /* scaled down relative to the frame */
  width: min(74cqi, 760px); z-index: 3;
  padding: 5cqi 5.5cqi;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 11, 14, 0.28);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  clip-path: inset(50% 0 50% 0);                 /* collapsed to a centre line */
  transition: clip-path 0.9s cubic-bezier(0.7, 0, 0.16, 1);
}
.surf.is-open .surf-box { clip-path: inset(0 0 0 0); }
/* selection-style handles */
.surf-h { position: absolute; width: 5px; height: 5px; background: #fff; border-radius: 50%; }
.surf-h.tl { top: 0; left: 0; } .surf-h.tr { top: 0; right: 0; }
.surf-h.bl { bottom: 0; left: 0; } .surf-h.br { bottom: 0; right: 0; }
.surf-h.tm { top: 0; left: 50%; transform: translateX(-50%); }
.surf-h.bm { bottom: 0; left: 50%; transform: translateX(-50%); }
.surf-h.lm { left: 0; top: 50%; transform: translateY(-50%); }
.surf-h.rm { right: 0; top: 50%; transform: translateY(-50%); }
/* staggered content */
.surf-inner > * {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.surf.is-open .surf-inner > * { opacity: 1; transform: none; }
.surf.is-open .surf-eyebrow { transition-delay: 0.46s; }
.surf.is-open .surf-word    { transition-delay: 0.56s; }
.surf.is-open .surf-mid     { transition-delay: 0.72s; }
.surf.is-open .surf-tags    { transition-delay: 0.9s; }
.surf-eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(8px, 1.4cqi, 12px); letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.66); text-transform: uppercase; margin-bottom: 2cqi;
}
.surf-word {
  font-family: "Inter", sans-serif; font-weight: 800; color: #fff;
  font-size: clamp(24px, 7.5cqi, 86px); line-height: 0.92; letter-spacing: -0.03em;
  display: flex; align-items: flex-start; gap: 1.4cqi;
}
.surf-word sup { font-size: 0.26em; font-weight: 600; opacity: 0.8; margin-top: 0.4em; }
.surf-word-sub {
  align-self: flex-end; font-size: 0.2em; font-weight: 600; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.82); margin-bottom: 0.7em;
}
.surf-mid {
  position: relative; margin-top: 3cqi;
  display: grid; grid-template-columns: 1.1fr auto; gap: 3cqi; align-items: start;
}
.surf-desc {
  margin: 0; max-width: 42cqi;
  font-family: "Inter", sans-serif; font-size: clamp(9px, 1.6cqi, 14px);
  line-height: 1.5; color: rgba(255, 255, 255, 0.82);
}
.surf-credit-wrap { display: flex; flex-direction: column; gap: 2.2cqi; align-items: flex-start; }
.surf-credit { display: flex; align-items: center; gap: 1.6cqi; }
.surf-ava {
  width: clamp(22px, 4.4cqi, 40px); height: clamp(22px, 4.4cqi, 40px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2a3b44, #0f1518);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Geist Mono", monospace; font-size: clamp(8px, 1.5cqi, 13px);
  color: #fff; letter-spacing: 0.04em;
}
.surf-credit-n {
  display: flex; flex-direction: column; line-height: 1.25;
  font-family: "Inter", sans-serif; font-size: clamp(9px, 1.6cqi, 14px); color: #fff; font-weight: 600;
}
.surf-credit-n b { font-weight: 400; color: rgba(255, 255, 255, 0.6); font-size: 0.86em; }
/* personal note (orange) */
.surf-note {
  margin: 0; max-width: 30cqi;
  font-family: "Inter", sans-serif; font-style: italic; font-weight: 500;
  font-size: clamp(10px, 1.75cqi, 16px); line-height: 1.42;
  color: #ff7a3c;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.surf.is-open .surf-note { opacity: 1; transform: none; transition-delay: 1s; }
.surf-note span {
  display: block; margin-top: 0.8cqi;
  font-style: normal; font-weight: 600; letter-spacing: 0.02em;
}
/* tags */
.surf-tags { margin-top: 3.4cqi; display: flex; gap: 2.4cqi; }
.surf-tags span {
  position: relative; font-family: "Inter", sans-serif; font-weight: 600;
  font-size: clamp(9px, 1.7cqi, 15px); color: #fff; text-transform: uppercase; letter-spacing: 0.03em;
}
.surf-tags span:not(:last-child)::after {
  content: "/"; position: absolute; right: -1.5cqi; color: rgba(255, 255, 255, 0.4); font-weight: 400;
}
/* footer flavour */
.surf-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; justify-content: space-between; padding: 4cqi 5cqi;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(8px, 1.3cqi, 11px); letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------------------------------------------------------------- *
 * Responsive
 * ---------------------------------------------------------------- */
@media (max-width: 760px) {
  .wz2-band-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 26px;
    min-height: auto;
  }
  .wz2-corner { grid-column: 1; grid-row: 1; justify-self: start; }
  .wz2-head { grid-column: 1; grid-row: 2; text-align: left; }
  .wz2-meta-col {
    grid-column: 1; grid-row: 3;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 20px;
    justify-content: flex-start;
  }
  .wz2-tag { max-width: none; }
  /* Render the mini-site at a fixed desktop REFERENCE width (900px) so its
     container-query (cqi) type keeps desktop proportions and the clamp() px
     floors stop kicking in, then scale the whole frame down to fit. Without this
     the container shrank to ~86vw, the cqi values fell under the px floors, and
     small elements (nav, eyebrow, CTA) looked oversized while others shrank.
     --fit is set by wingz-sections.js (= 0.86 * viewport / 900). */
  .wz2-media {
    width: 900px;
    transform: translate(-50%, -50%) scale(calc(var(--ms, 1) * var(--fit, 1)));
  }
  .wz2-marq-in span { font-size: clamp(64px, 22vw, 150px); }
  .wz2-proj-meta { flex-wrap: wrap; gap: 8px 16px; }
}
