/* ─────────────────────────────────────────────
   DMDY PRODUCTION — Stylesheet
   ───────────────────────────────────────────── */

/* Fonts */
@font-face {
  font-family: 'HERBI';
  src: url('../fonts/HERBI-Regular.otf') format('opentype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Kilimanjaro';
  src: url('../fonts/Kilimanjaro_Sans.otf') format('opentype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Kilimanjaro';
  src: url('../fonts/Kilimanjaro_Sans_Slanted_Tall.otf') format('opentype');
  font-weight: normal; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'SN';
  src: url('../fonts/SeriouslyNostalgic-Regular.otf') format('opentype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'SN';
  src: url('../fonts/SeriouslyNostalgicItal-Reg.otf') format('opentype');
  font-weight: normal; font-style: italic; font-display: swap;
}

/* ── Custom Properties ─────────────────────── */
:root {
  --blue:  #244090;
  --pink:  #f7c4c7;
  --white: #f5f4f0;
  --black: #0c0c0c;
  /* light "gradient world" palette */
  --ink:   #1c2b52;                 /* primary dark text */
  --ink-2: rgba(28, 43, 82, .62);   /* muted text */
  --ink-3: rgba(28, 43, 82, .40);   /* labels */
  --line:  rgba(28, 43, 82, .14);   /* hairline borders */
  --ease:  cubic-bezier(.4, 0, .2, 1);
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
html { min-height: 100%; }
body {
  /* One continuous page gradient. Starts at the intro's cool lavender (so the hero
     emerges with no colour jolt) and warms down to a soft brand pink at the footer.
     Scrolls WITH the page (not fixed) so the whole document reads as a single
     top-to-bottom gradient rather than a repeating per-screen wash. */
  background: linear-gradient(180deg,
    #cdcbe8 0%,
    #cbc9e6 20%,
    #d2cce1 52%,
    #e6cdda 82%,
    #f2cdd3 100%);
  background-attachment: scroll;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: 'Kilimanjaro', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scroll Nav (home — hidden until scroll) ─ */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 13px 22px 13px 28px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(28, 43, 82, .14);
  /* hidden state — soft "dynamic island" pop-in */
  opacity: 0;
  transform: translateX(-50%) translateY(-14px) scale(.92);
  pointer-events: none;
  transition: opacity .45s var(--ease),
              transform .6s cubic-bezier(.34, 1.4, .56, 1);
}
.site-nav.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.nav-logo-img {
  display: block;
  height: 19px;
  aspect-ratio: 810 / 388;
  background-color: var(--blue);
  -webkit-mask: url(../images/logo.png) center / contain no-repeat;
  mask: url(../images/logo.png) center / contain no-repeat;
  opacity: .92;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.nav-links a {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.current { color: var(--ink); }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  width: auto;
  height: 90vh;
  margin: 16px;
  border-radius: 26px;
  overflow: hidden;
  background: #060606;
  box-shadow: 0 24px 60px rgba(28, 43, 82, .22);
  touch-action: pan-y;
  cursor: grab;
}
.hero:active { cursor: grabbing; }

.hero-logo {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: clamp(100px, 11vw, 160px);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  animation: logoFadeIn 1.1s ease .4s both;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Carousel ──────────────────────────────── */
.slides-track {
  position: absolute;
  inset: 0;
  display: flex;
  /* width set dynamically by JS based on slide count */
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.slides-track.is-dragging { transition: none; }

.slide {
  flex-shrink: 0;
  /* width set dynamically by JS */
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide img,
.slide video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.slide-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.28) 0%, transparent 18%),
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.28) 100%);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}
.cdot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(245, 244, 240, .28);
  border: none;
  cursor: pointer; padding: 0;
  transition: background .3s, transform .3s;
}
.cdot.active { background: var(--white); transform: scale(1.7); }

/* ── Marquee ───────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  padding: 18px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0 30px;
  white-space: nowrap;
  opacity: .7;
}
.marquee-sep {
  color: rgba(28, 43, 82, .24);
  padding: 0 2px;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Home: About Split ─────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }

.about-left {
  background: var(--white);
  color: var(--black);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 55vh;
}
.about-heading {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: .01em;
  line-height: .96;
  color: var(--blue);
}
.about-body { max-width: 400px; }
.about-body p {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(12, 12, 12, .6);
  margin-bottom: 18px;
}
.about-body p strong { color: var(--black); font-weight: normal; font-style: italic; }
.about-cta {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s;
  cursor: pointer;
}
.about-cta:hover { opacity: .5; }
.about-cta::after { content: '→'; font-family: sans-serif; }

.about-right {
  background: var(--blue);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.services-list { list-style: none; }
.services-list li {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: .02em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
  cursor: default;
}
.services-list li:first-child { border-top: 1px solid var(--line); }
.services-list li:hover { color: var(--blue); padding-left: 8px; }

.work-link {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  transition: opacity .2s;
  cursor: pointer;
}
.work-link:hover { opacity: .55; }
.work-link::after { content: '→'; font-family: sans-serif; }

/* ── Footer ────────────────────────────────── */
footer {
  padding: 30px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo-img { height: 18px; filter: brightness(0); opacity: .4; }
.footer-copy {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .1em;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--blue); }

/* ── Inner Nav (work / about / contact) ────── */
.inner-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 13px 22px 13px 28px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(28, 43, 82, .14);
}
.inner-nav-logo {
  display: block;
  height: 19px;
  aspect-ratio: 810 / 388;
  background-color: var(--blue);
  -webkit-mask: url(../images/logo.png) center / contain no-repeat;
  mask: url(../images/logo.png) center / contain no-repeat;
  opacity: .92;
}
.inner-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.inner-nav-links a {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}
.inner-nav-links a:hover,
.inner-nav-links a.current { color: var(--ink); }

/* ── Page Headers ──────────────────────────── */
.page-header {
  padding: 92px 40px 44px;
  border-bottom: 1px solid var(--line);
}
.page-header-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(44px, 6.5vw, 84px);
  letter-spacing: .01em;
  line-height: .94;
  color: var(--ink);
}
.page-header h1 em { font-style: normal; color: var(--blue); }

/* ── Work Grid ─────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: transparent;
  padding: 24px;
}
.work-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: #111;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(28, 43, 82, .16);
}
.work-cell img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}
.work-cell:hover img { transform: scale(1.05); }

.cell-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}
.work-cell:hover .cell-gradient { opacity: 1; }

.cell-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  transform: translateY(8px);
  opacity: 0;
  transition: all .4s ease;
  z-index: 3;
}
.work-cell:hover .cell-info { transform: translateY(0); opacity: 1; }

.cell-client {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 5px;
}
.cell-name {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .02em;
  color: var(--white);
}
.cell-type {
  font-family: 'Kilimanjaro', sans-serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(245, 244, 240, .4);
  margin-top: 4px;
}

/* ── About Page ────────────────────────────── */
.about-page-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 40px;
}
.about-page-body p {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 16px;
  line-height: 1.74;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.about-page-body p strong { color: var(--ink); font-weight: normal; }
.about-page-body .about-cta { color: var(--blue); }

.about-location-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  margin-top: 44px;
}
.about-location-city {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  letter-spacing: .03em;
  color: var(--blue);
}

/* ── Contact ───────────────────────────────── */
.contact-section {
  padding: 88px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  min-height: 82vh;
}
.contact-heading {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(38px, 5.2vw, 68px);
  letter-spacing: .01em;
  line-height: .96;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-heading em { font-style: normal; color: var(--blue); }
.contact-sub {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 340px;
  margin-bottom: 40px;
}
.contact-email {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: .04em;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 64, 144, .28);
  padding-bottom: 10px;
  display: inline-block;
  transition: opacity .2s;
}
.contact-email:hover { opacity: .6; }

.contact-form { display: flex; flex-direction: column; gap: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-input,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .25s;
  resize: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--blue); }
.form-textarea { height: 88px; }
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(28, 43, 82, .3);
  font-style: italic;
}
.form-submit {
  align-self: flex-start;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  margin-top: 4px;
}
.form-submit:hover {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

/* ── Work Strip ────────────────────────────── */
.work-strip-section {
  position: relative;
  /* height calculated by JS */
}
.work-strip-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
  cursor: grab;
  user-select: none;
}
.work-strip-sticky:active { cursor: grabbing; }
.work-strip-header {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.work-strip-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.work-strip-all {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: opacity .2s;
}
.work-strip-all:hover { opacity: .6; }
.work-strip-track {
  display: flex;
  gap: 14px;
  flex: 1;
  padding: 16px;
  will-change: transform;
}
.strip-card {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 3 / 4;
  background: #111;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(28, 43, 82, .16);
  cursor: pointer;
}
.strip-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
.strip-card:hover img { transform: scale(1.04); }

/* ── Home Split (About + Services) ─────────── */
.home-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-top: 1px solid var(--line);
}
.home-split-left {
  padding: 64px 48px 64px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-split-right {
  padding: 64px 40px 64px 48px;
}
.home-split-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.home-split-heading {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: .01em;
  line-height: .98;
  color: var(--blue);
  margin-bottom: 26px;
}
.home-split-body {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 16px;
  max-width: 420px;
}
.home-split-body strong { color: var(--ink); font-weight: normal; }
.home-split-cta {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  transition: opacity .2s;
}
.home-split-cta:hover { opacity: .55; }
.home-split-cta::after { content: '→'; font-family: sans-serif; }

.home-services { list-style: none; }
.home-services li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 24px);
  color: var(--ink);
  cursor: default;
  transition: color .2s;
}
.home-services li:first-child { border-top: 1px solid var(--line); }
.home-services li:hover { color: var(--blue); }
.hsvc-plus {
  font-family: 'Kilimanjaro', sans-serif;
  font-style: normal;
  font-size: 18px;
  color: var(--ink-3);
  transition: color .2s;
  flex-shrink: 0;
}
.home-services li:hover .hsvc-plus { color: var(--blue); }

/* ── Home Contact ──────────────────────────── */
.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.home-contact-left { display: flex; flex-direction: column; }
.home-contact-label {
  font-family: 'Kilimanjaro', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.home-contact-heading {
  font-family: 'SN', Georgia, serif;
  font-style: italic;
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: .01em;
  line-height: .96;
  color: var(--ink);
}
.home-contact-heading em { font-style: normal; color: var(--blue); }

/* ── Thanks page ───────────────────────────── */
.thanks-section {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 44px;
}
.thanks-section .page-header-label { margin-bottom: 18px; }
.thanks-section .contact-heading { margin-bottom: 22px; }
.thanks-section .contact-sub { margin-bottom: 34px; max-width: 420px; }
.thanks-section .home-split-cta { align-self: flex-start; }

/* ── Intro: scroll-scrubbed chrome ─────────── */
.intro {
  position: relative;
  height: 190vh;            /* 90vh pinned scrub + the stage then scrolls off with the page */
  background: transparent;
}
.intro-stage {
  position: sticky;         /* pins for the scrub, then scrolls away naturally (1× scroll speed) */
  top: 0;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* pink (opaque→transparent) over light-blue→dark-blue base, per the brand PSD;
     the bottom quarter eases back up into the site's pastel wash so the intro's
     trailing edge blends into the page background — one continuous gradient. */
  background:
    linear-gradient(180deg, rgba(247, 197, 199, 1) 0%, rgba(247, 197, 199, 0) 52%),
    linear-gradient(180deg, #406ab3 0%, #1e3d72 56%, #1e3d72 72%, #8e9bd0 89%, #cdcbe8 100%);
}
/* reduced motion: static one-screen panel that scrolls away normally
   (sticky inside a one-screen parent never pins, so no stage override needed) */
.intro.reduced { height: 100vh; }
.intro-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.intro-canvas {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateZ(0);        /* own compositor layer — smoother under the fixed-overlay scroll */
  backface-visibility: hidden;
}
.intro-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  z-index: 2;
  opacity: 0;
  animation: introFade 1s ease 1.4s forwards;
  transition: opacity .35s ease;
}
.intro-cue.is-hidden { opacity: 0 !important; }
.intro-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .7);
  animation: cueScroll 1.8s ease-in-out infinite;
}
@keyframes cueScroll {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(11px); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes introFade { to { opacity: 1; } }

/* ── Motion: Reveal on scroll ──────────────── */
.js .reveal:not(.has-items) {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--reveal-ease), transform .9s var(--reveal-ease);
  will-change: opacity, transform;
}
.js .reveal:not(.has-items).in { opacity: 1; transform: none; }
.js .reveal.has-items .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--reveal-ease), transform .85s var(--reveal-ease);
  will-change: opacity, transform;
}
.js .reveal.has-items.in .reveal-item { opacity: 1; transform: none; }

/* ── Motion: Custom Cursor ─────────────────── */
.cursor-enabled,
.cursor-enabled a,
.cursor-enabled button,
.cursor-enabled .strip-card,
.cursor-enabled .work-cell,
.cursor-enabled .home-services li,
.cursor-enabled .hero { cursor: none; }
.cursor-enabled input,
.cursor-enabled textarea { cursor: text; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, .65);
  transition: width .35s var(--ease), height .35s var(--ease),
              background-color .35s var(--ease), border-color .35s var(--ease),
              opacity .3s ease;
}
.cursor-ring.is-hover { width: 70px; height: 70px; background: rgba(255, 255, 255, .1); }
.cursor-ring.is-down  { width: 28px; height: 28px; }
.cursor-dot.is-hidden,
.cursor-ring.is-hidden { opacity: 0; }

/* ── Motion: Page Transition ───────────────── */
/* Enter: blue panel covers from first paint, lifts away (pure CSS, JS-independent) */
.js.pt-enter::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #f7c5c7 0%, #406ab3 55%, #1e3d72 100%);
  z-index: 9000;
  pointer-events: none;
  transform: translateY(0);
  animation: ptLift .62s cubic-bezier(.76, 0, .24, 1) .05s forwards;
}
@keyframes ptLift { to { transform: translateY(-100%); } }

/* Exit: blue panel sweeps up to cover before navigation (driven by JS) */
.pt-leave::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #f7c5c7 0%, #406ab3 55%, #1e3d72 100%);
  z-index: 9000;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .6s cubic-bezier(.76, 0, .24, 1);
}
.pt-leave.pt-leave-go::before { transform: translateY(0); }

/* ── Responsive ────────────────────────────── */
@media (max-width: 900px) {
  .about-split,
  .work-grid,
  .about-page-body,
  .contact-section,
  .home-split,
  .home-contact { grid-template-columns: 1fr; }

  .work-cell { aspect-ratio: 4/3; }

  .about-left,
  .about-right { padding: 60px 28px; min-height: auto; }

  .page-header,
  .about-page-body,
  .contact-section { padding-left: 28px; padding-right: 28px; }

  .site-nav, .inner-nav {
    top: 12px;
    gap: 13px;
    padding: 9px 13px 9px 17px;
  }
  .nav-links, .inner-nav-links { gap: 15px; padding-left: 14px; }
  .nav-logo-img, .inner-nav-logo { height: 14px; }

  footer {
    padding: 24px 28px;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .form-row { grid-template-columns: 1fr; }

  .contact-section { min-height: auto; }

  .thanks-section { padding: 100px 28px; min-height: auto; }

  .home-split-left { padding: 60px 28px 48px; border-right: none; border-bottom: 1px solid var(--line); }
  .home-split-right { padding: 48px 28px 60px; }

  .home-contact { padding: 60px 28px; gap: 48px; }

  /* Work strip: disable scroll-linking, use native overflow scroll */
  .work-strip-section { height: auto !important; }
  .work-strip-sticky {
    position: relative;
    height: auto;
    overflow: hidden;
    cursor: default;
  }
  .work-strip-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
    padding-bottom: 0;
    scrollbar-width: none;
  }
  .work-strip-track::-webkit-scrollbar { display: none; }
  .strip-card {
    height: calc(64vw * 4 / 3);
    width: 64vw;
    aspect-ratio: unset;
    flex-shrink: 0;
  }
  .work-strip-header { padding: 20px 28px; }
}

/* ── Motion: Reduced-motion safety ─────────── */
@media (prefers-reduced-motion: reduce) {
  .js .reveal:not(.has-items),
  .js .reveal.has-items .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .js.pt-enter::after { animation: none !important; display: none !important; }
  .pt-leave::before   { display: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .cursor-enabled, .cursor-enabled * { cursor: auto; }
  .intro-cue { display: none !important; }
}
