:root {
  --pink: #F892D5;
  --hot-pink: #FF2AAD;
  --pink-soft: #FDE3F2;
  --cream: #F4EFE8;
  --black: #0A0A0A;
  --white: #FBFBFB;
  --ink-soft: #6B6B6B;
  --line: 2px solid var(--black);
  --display: "Archivo Narrow", "Space Grotesk", "Arial Narrow", system-ui, sans-serif;
  --display-tight: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --text: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --display-fat: "Archivo Black", "Arial Black", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--text);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ---------- Header ---------- */
.site-header {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(16px, 4.8vw, 70px);
  position: fixed;
  pointer-events: auto;
  right: 0;
  top: 0;
  z-index: 1000;
}

.brand-lockup {
  align-items: start;
  display: grid;
  max-width: clamp(220px, 19vw, 300px);
  pointer-events: auto;
}

.brand-logo,
.mobile-brand-logo,
.footer-logo {
  display: block;
  height: auto;
  width: 100%;
}

.brand-logo {
  filter: drop-shadow(0 4px 0 rgba(10, 10, 10, .16));
}

.rolling-line {
  align-items: baseline;
  display: block;
  max-width: 100%;
}

.word-roller {
  align-items: baseline;
  color: var(--hot-pink);
  display: block;
  height: 1.04em;
  overflow: hidden;
  width: 100%;
}

.word-roller-current {
  display: block;
  line-height: 1;
  opacity: 1;
  transition: opacity .18s ease;
  will-change: opacity;
}

.word-roller.is-exiting .word-roller-current {
  opacity: 0;
}

.word-roller.is-entering .word-roller-current {
  opacity: 0;
  transition: none;
}

.word-roller[data-word-theme*="fabulous"] {
  color: #b84cff;
}

.word-roller[data-word-theme*="magnetic"] {
  color: #ff6fcf;
}

.word-roller[data-word-theme*="iconic"] {
  color: #8b5cf6;
}

.word-roller[data-word-theme*="ambitious"] {
  color: #ff4f8b;
}

.word-roller[data-word-theme*="profitable"] {
  color: #d946ef;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  pointer-events: auto;
}

.desktop-nav a,
.button {
  align-items: center;
  border: var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .04em;
  min-height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.desktop-nav a {
  background: rgba(251, 251, 251, .82);
  backdrop-filter: blur(8px);
}

.desktop-nav a:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--black);
  transform: translateY(-2px);
}

.button-xl {
  font-size: 15px;
  min-height: 56px;
  padding: 0 32px;
}

.menu-toggle {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  display: none;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 120;
  cursor: pointer;
  pointer-events: auto;
}

.menu-toggle span {
  background: var(--black);
  display: block;
  height: 2px;
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
  width: 22px;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Panel ---------- */
.mobile-panel {
  background: var(--pink);
  inset: 0;
  opacity: 0;
  padding: 28px 32px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-16px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
}

.menu-open .mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-brand,
.footer-mark {
  align-items: center;
  display: flex;
}

.mobile-brand {
  max-width: min(420px, calc(100vw - 64px));
}

.mobile-panel .mobile-brand {
  display: none;
}

.footer-mark {
  max-width: min(520px, 100%);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 118px;
}

.mobile-panel nav a {
  font-family: var(--display);
  font-size: clamp(40px, 11vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.mobile-socials {
  bottom: 34px;
  display: flex;
  gap: 22px;
  font-family: var(--display);
  font-size: 22px;
  left: 32px;
  position: absolute;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
  min-height: 100vh;
  padding: 110px clamp(16px, 4.8vw, 70px) 0;
  position: relative;
}

.drag-note {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  left: clamp(16px, 4.8vw, 70px);
  margin: 0;
  position: absolute;
  top: 96px;
  z-index: 4;
}

.drag-note::before {
  content: "↓ ";
}

.hero-stage {
  height: min(720px, calc(100vh - 200px));
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero h1 {
  color: var(--black);
  display: grid;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 108px);
  font-weight: 900;
  gap: .05em;
  letter-spacing: 0;
  line-height: .86;
  margin: 40px 0 0;
  max-width: min(1280px, calc(100vw - 140px));
  position: relative;
  z-index: 10;
}

.hero-static {
  display: block;
  font-family: var(--display-fat);
}

.hero h1 .rolling-line {
  align-items: baseline;
  display: block;
  font-family: var(--display-fat);
  font-weight: 900;
  max-width: 100%;
}

.hero h1 .word-roller {
  width: 100%;
}

/* ---------- Sticker Cards ---------- */
.sticker-card {
  border: var(--line);
  cursor: grab;
  position: absolute;
  touch-action: none;
  user-select: none;
  z-index: 5;
}

.sticker-card.dragging {
  cursor: grabbing;
  z-index: 20;
}

.sticker-card:focus-visible {
  outline: 4px solid var(--hot-pink);
  outline-offset: 6px;
}

.sticker-card-a {
  background: var(--pink);
  border-radius: 34px;
  height: 320px;
  left: 2vw;
  padding: 60px 38px 28px;
  top: 320px;
  width: 380px;
}

.sticker-card-a h2 {
  font-family: var(--display-fat);
  font-size: 56px;
  letter-spacing: 0;
  line-height: .92;
  margin: 0 0 16px;
}

.sticker-card-a p {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  max-width: 280px;
}

.sticker-card-a i,
.sticker-card-d i {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  display: block;
  height: 22px;
}

.sticker-card-a i {
  bottom: 28px;
  left: 38px;
  position: absolute;
  width: 200px;
}

.sticker-card-a i::after {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  content: "";
  display: block;
  height: 22px;
  left: 18px;
  position: absolute;
  top: 36px;
  width: 140px;
}

.sticker-icon {
  border: var(--line);
  border-radius: 999px;
  height: 56px;
  left: 32px;
  object-fit: cover;
  position: absolute;
  top: 24px;
  width: 56px;
  animation: iconWiggle 4s ease-in-out infinite alternate;
}

.sticker-card-b {
  align-items: center;
  background: var(--black);
  border-radius: 32px;
  bottom: -28px;
  display: flex;
  height: 400px;
  justify-content: center;
  left: 34vw;
  width: 240px;
}

.vertical-text {
  background: var(--pink);
  border: var(--line);
  border-radius: 999px;
  color: var(--black);
  font-family: var(--display-fat);
  font-size: 22px;
  height: 320px;
  letter-spacing: 0;
  padding: 28px 14px;
  text-align: center;
  writing-mode: vertical-rl;
}

.sticker-card-b b {
  background: var(--hot-pink);
  border-radius: 999px;
  height: 280px;
  margin-left: 16px;
  width: 28px;
}

.sticker-card-b b:nth-of-type(2) {
  background: var(--white);
  height: 130px;
  margin-left: 8px;
  transform: translateY(72px);
}

.sticker-card-b em {
  background: var(--pink);
  border: var(--line);
  border-radius: 999px;
  bottom: 24px;
  height: 44px;
  left: 50px;
  position: absolute;
  width: 44px;
}

.sticker-card-c {
  align-items: center;
  background: var(--cream);
  border-radius: 32% 28% 35% 24%;
  display: grid;
  height: 210px;
  justify-items: center;
  left: 58vw;
  padding: 28px;
  text-align: center;
  top: 250px;
  width: 260px;
}

.sticker-card-c span,
.sticker-card-d span,
.sticker-card-e span {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .9;
}

.sticker-card-c strong {
  font-family: var(--display-fat);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1;
}

.sticker-card-d {
  background: var(--pink);
  border-radius: 28px;
  height: 280px;
  padding: 36px 32px;
  right: 4vw;
  top: 420px;
  width: 270px;
}

.sticker-card-d strong {
  display: block;
  font-family: var(--display-fat);
  font-size: 26px;
  letter-spacing: 0;
  line-height: .98;
  margin: 14px 0 24px;
}

.sticker-card-d i {
  margin-top: 12px;
  width: 80%;
}

.sticker-card-e {
  align-content: center;
  background: var(--hot-pink);
  border-radius: 30% 35% 28% 42%;
  bottom: 10px;
  display: grid;
  height: 200px;
  justify-items: center;
  right: 2vw;
  text-align: center;
  width: 230px;
}

.sticker-card-e strong {
  color: var(--white);
  font-family: var(--display-fat);
  font-size: 60px;
  letter-spacing: 0;
  line-height: .85;
  -webkit-text-stroke: 1px var(--black);
}

.sticker-card-e small {
  color: var(--black);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  max-width: 170px;
}

/* ---------- Hero ticker ---------- */
.hero-ticker {
  border-top: var(--line);
  border-bottom: var(--line);
  contain: layout paint;
  overflow: hidden;
  background: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  margin: 24px 0 0;
  min-height: 60px;
  position: relative;
}

.hero-ticker-track {
  align-items: center;
  gap: 36px;
  animation: marquee 32s linear infinite;
  display: inline-flex;
  left: 0;
  min-width: max-content;
  padding: 16px 0;
  position: absolute;
  top: 0;
}

.hero-ticker-track span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-ticker-track span:nth-child(2n) {
  color: var(--hot-pink);
}

/* ---------- Intro / About ---------- */
.intro {
  background: var(--black);
  color: var(--white);
  min-height: 660px;
  padding: 130px clamp(24px, 6vw, 90px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1400px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 64px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--white);
}

.intro h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 50px;
  max-width: 1100px;
}

.inline-diamond,
.inline-heart,
.inline-pill {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
}

.inline-diamond {
  color: var(--hot-pink);
  font-size: .8em;
  margin: 0 .08em;
  transform: translateY(-.05em);
}

.inline-heart {
  background: var(--hot-pink);
  border-radius: 999px;
  color: var(--white);
  font-size: .42em;
  margin: 0 .08em;
  padding: .25em .45em;
  transform: translateY(-.15em);
}

.inline-pill {
  border: 2px solid currentColor;
  border-radius: 999px;
  font-family: var(--display-fat);
  font-size: .9em;
  letter-spacing: 0;
  padding: .04em .35em .08em;
}

/* ---------- Case Studies ---------- */
.proof {
  background: var(--cream);
  padding: 120px clamp(24px, 6vw, 90px) 130px;
}

.case-head {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin: 0 auto 70px;
  max-width: 1400px;
}

.case-head h2 {
  font-family: var(--display-fat);
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .88;
  margin: 0;
}

.case-head p {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 14px;
  max-width: 360px;
}

.case-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1400px;
}

.case-card {
  display: grid;
  gap: 14px;
}

.case-art {
  align-content: end;
  border: var(--line);
  border-radius: 18px;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  padding: 22px 24px;
  position: relative;
  transition: transform .25s ease;
}

.case-card:hover .case-art {
  transform: translateY(-6px) rotate(-1deg);
}

.case-art strong {
  font-family: var(--display-fat);
  font-size: clamp(120px, 14vw, 180px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .78;
}

.case-art__pill {
  align-self: start;
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  color: var(--black);
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.art-one { background: var(--pink); }
.art-two { background: var(--black); color: var(--white); }
.art-three { background: var(--hot-pink); color: var(--white); }
.art-four { background: var(--white); }

.case-card h3 {
  font-family: var(--display-fat);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1;
  margin: 6px 0 0;
}

.case-card p {
  color: var(--ink-soft);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

/* ---------- Booking ---------- */
.booking {
  align-items: center;
  background: var(--pink);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  min-height: 720px;
  padding: 120px clamp(24px, 6vw, 90px);
}

.booking-note {
  max-width: 720px;
}

.booking-eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 32px;
}

.booking-note h2 {
  font-family: var(--display-fat);
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .85;
  margin: 0 0 28px;
}

.booking-note p {
  color: var(--black);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 36px;
  max-width: 580px;
}

.booking-cal {
  background: var(--white);
  border: var(--line);
  border-radius: 24px;
  padding: 28px;
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 var(--black);
}

.cal-head {
  align-items: center;
  display: flex;
  font-family: var(--display-fat);
  font-size: 18px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-nav {
  font-family: var(--display);
  font-size: 22px;
}

.cal-grid {
  display: grid;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.cal-grid span {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  padding: 8px 0;
}

.cal-d {
  font-family: var(--display-fat);
  font-size: 12px !important;
  letter-spacing: .12em;
  opacity: .6;
}

.cal-grid .muted {
  opacity: .25;
}

.cal-grid .hot {
  background: var(--hot-pink);
  color: var(--white);
}

.cal-foot {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  margin: 16px 0 0;
  text-align: center;
  opacity: .7;
}

/* ---------- Sex Sells ---------- */
.sells {
  background: var(--black);
  color: var(--white);
  padding: 130px clamp(24px, 6vw, 90px);
  overflow: hidden;
}

.sells-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 420px);
  margin: 0 auto;
  max-width: 1400px;
}

.sells-copy h2 {
  font-family: var(--display-fat);
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .82;
  margin: 0;
  color: var(--pink);
}

.sells-sub {
  font-family: var(--display-fat);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .82;
  margin: 8px 0 50px;
  color: var(--white);
}

.sells-copy p {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 18px;
  max-width: 720px;
}

.sells-copy p em {
  color: var(--pink);
  font-style: italic;
}

.sells-cta {
  color: var(--hot-pink) !important;
  font-family: var(--display-fat) !important;
  font-size: 28px !important;
  font-weight: 900;
  letter-spacing: 0;
  margin: 30px 0 30px !important;
  text-transform: none;
}

/* Rotating seal sticker */
.sells-seal {
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  max-width: 380px;
  position: relative;
  width: 100%;
}

.sells-seal__ring {
  animation: spin 18s linear infinite;
  inset: 0;
  position: absolute;
}

.sells-seal__ring::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><path id='c' d='M50,50 m-42,0 a42,42 0 1,1 84,0 a42,42 0 1,1 -84,0'/></defs><text font-family='Archivo Black,Arial Black,sans-serif' font-size='8.4' fill='%23F892D5' letter-spacing='2.4'><textPath href='%23c' startOffset='0'>PINK MAYHEM %E2%80%A2 PINK MAYHEM %E2%80%A2 PINK MAYHEM %E2%80%A2</textPath></text></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.sells-seal__ring span {
  display: none;
}

.sells-seal__core {
  align-items: center;
  background: var(--hot-pink);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-family: var(--display-fat);
  font-size: clamp(60px, 8vw, 120px);
  height: 56%;
  justify-content: center;
  left: 22%;
  position: absolute;
  top: 22%;
  width: 56%;
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* ---------- Services ---------- */
.services {
  background: var(--white);
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 130px clamp(24px, 6vw, 90px);
}

.services h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 70px;
  max-width: 1100px;
}

.service-grid {
  display: grid;
  gap: 32px 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  border-top: var(--line);
  padding-top: 22px;
  transition: transform .25s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
}

.service-grid span {
  color: var(--hot-pink);
  font-family: var(--display-fat);
  font-size: 18px;
  letter-spacing: .04em;
}

.service-grid h3 {
  font-family: var(--display-fat);
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: 0;
  line-height: 1;
  margin: 18px 0 14px;
}

.service-grid p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
  max-width: 380px;
}

/* ---------- Featured / Press marquee ---------- */
.featured {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 110px;
}

.featured h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 70px clamp(24px, 6vw, 90px);
  max-width: 720px;
}

.press-track {
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  border-top: 1px solid rgba(255, 255, 255, .4);
  contain: layout paint;
  overflow: hidden;
  padding: 28px 0;
  white-space: nowrap;
}

.press-track div {
  animation: marquee 28s linear infinite;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  min-width: max-content;
}

.press-track span {
  font-family: var(--display-fat);
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: 0;
  line-height: 1;
}

.press-track span:nth-child(2n) {
  color: var(--hot-pink);
  font-size: clamp(28px, 4vw, 56px);
}

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

@keyframes rollWords {
  0%, 11% { transform: translateY(0); }
  16%, 27% { transform: translateY(-1.18em); }
  32%, 43% { transform: translateY(-2.36em); }
  48%, 59% { transform: translateY(-3.54em); }
  64%, 75% { transform: translateY(-4.72em); }
  80%, 91% { transform: translateY(-5.9em); }
  96%, 100% { transform: translateY(-7.08em); }
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream);
  padding: 130px clamp(24px, 6vw, 90px);
  position: relative;
}

.testimonial-track {
  margin: 0 auto;
  max-width: 1100px;
  min-height: 360px;
  position: relative;
}

.testimonial {
  display: grid;
  gap: 24px;
}

.testimonial[hidden] {
  display: none;
}

.quote-mark {
  color: var(--hot-pink);
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: .6;
  margin: 0;
}

.testimonial p:not(.quote-mark) {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.quote-meta strong {
  font-family: var(--display-fat);
  font-size: 20px;
  letter-spacing: 0;
}

.quote-meta span {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 16px;
}

.quote-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 50px;
}

.dot {
  background: transparent;
  border: var(--line);
  border-radius: 999px;
  cursor: pointer;
  height: 14px;
  padding: 0;
  transition: background .15s ease, transform .15s ease;
  width: 14px;
}

.dot:hover {
  background: var(--pink);
}

.dot.is-active {
  background: var(--hot-pink);
  transform: scale(1.2);
}

/* ---------- Contact ---------- */
.contact {
  align-items: center;
  background: linear-gradient(135deg, #f58bd3 0%, #c084fc 48%, #ff6fcf 100%);
  color: var(--black);
  display: flex;
  justify-content: center;
  min-height: 900px;
  overflow: hidden;
  padding: 130px clamp(24px, 6vw, 90px);
  position: relative;
  scroll-margin-top: 96px;
}

.apply-now-wall {
  display: grid;
  gap: 26px;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  padding: 64px 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.apply-row {
  animation: applyNowDrift 8s ease-in-out infinite alternate;
  display: flex;
  gap: .22em;
  margin-left: -12vw;
  white-space: nowrap;
  will-change: transform;
}

.apply-row span {
  font-family: var(--display-fat);
  font-size: clamp(86px, 13vw, 220px);
  letter-spacing: 0;
  line-height: .78;
  text-transform: uppercase;
}

.apply-row--outline span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .86);
}

.apply-row--solid span {
  color: rgba(10, 10, 10, .92);
}

.apply-row--reverse {
  animation-direction: alternate-reverse;
  margin-left: -28vw;
}

.apply-row--slow {
  animation-duration: 11s;
  margin-left: -4vw;
}

.contact-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: clamp(26px, 4vw, 52px);
  box-shadow: 14px 14px 0 var(--black);
  display: grid;
  gap: clamp(38px, 5vw, 70px);
  grid-template-columns: minmax(0, .68fr) minmax(440px, 580px);
  max-width: 1220px;
  padding: clamp(34px, 5vw, 78px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.contact-copy {
  min-width: 0;
}

.contact-copy h2 {
  font-family: var(--display-fat);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
  margin: 0 0 28px;
  max-width: 360px;
}

.contact-sub {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 36px;
  max-width: 480px;
}

.contact-phone {
  font-family: var(--display-fat);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}

.contact-phone a:hover {
  color: var(--pink);
}

.contact-form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .field-wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form span em {
  color: var(--hot-pink);
  font-style: normal;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  color: var(--black);
  min-height: 54px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}

.contact-form textarea {
  border-radius: 24px;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--hot-pink) 50%), linear-gradient(135deg, var(--hot-pink) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--hot-pink);
  outline: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(10, 10, 10, .45);
}

.form-status {
  color: var(--hot-pink);
  font-family: var(--display-fat);
  font-size: 16px;
  grid-column: 1 / -1;
  margin: 0;
  min-height: 22px;
}

@keyframes applyNowDrift {
  from {
    transform: translate3d(-4vw, -8px, 0);
  }
  to {
    transform: translate3d(4vw, 8px, 0);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  border-top: var(--line);
  padding: 80px clamp(24px, 6vw, 90px) 40px;
}

.footer-top {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  padding-bottom: 60px;
  border-bottom: var(--line);
}

.newsletter label {
  display: grid;
  gap: 12px;
}

.newsletter span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.newsletter-row {
  align-items: stretch;
  display: flex;
  gap: 10px;
}

.newsletter-row input {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  flex: 1;
  min-height: 48px;
  padding: 8px 20px;
}

.newsletter-row input:focus {
  border-color: var(--hot-pink);
  outline: 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr .8fr .8fr;
  margin-top: 50px;
}

.footer-contact a {
  font-family: var(--display-fat);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5;
}

.footer-contact a:hover {
  color: var(--hot-pink);
}

.footer-grid nav {
  display: grid;
  gap: 12px;
}

.footer-grid nav a {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-grid nav a:hover {
  color: var(--hot-pink);
}

.footer-copy {
  border-top: 1px solid rgba(0, 0, 0, .15);
  color: var(--ink-soft);
  display: flex;
  font-size: 14px;
  gap: 20px;
  justify-content: space-between;
  margin: 60px 0 0;
  padding-top: 30px;
}

.footer-copy span {
  text-align: right;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-stage {
    height: 660px;
    min-height: 660px;
  }

  .hero h1 {
    font-size: clamp(48px, 10.5vw, 82px);
    max-width: calc(100vw - 48px);
  }

  .hero h1 .rolling-line {
    display: grid;
    gap: 0;
  }

  .hero h1 .word-roller {
    height: 2.08em;
    width: 100%;
  }

  .sticker-card-a {
    height: 270px;
    left: 4vw;
    top: 330px;
    width: 300px;
  }

  .sticker-card-a h2 {
    font-size: 36px;
  }

  .sticker-card-b {
    bottom: 20px;
    height: 290px;
    left: 50vw;
    width: 170px;
  }

  .vertical-text {
    height: 210px;
    font-size: 16px;
  }

  .sticker-card-b b {
    height: 220px;
    width: 22px;
  }

  .sticker-card-c {
    height: 150px;
    left: 50vw;
    top: 260px;
    width: 170px;
  }

  .sticker-card-d,
  .sticker-card-e {
    display: none;
  }

  .case-grid,
  .booking,
  .sells-grid,
  .testimonials,
  .contact,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-head {
    align-items: start;
    display: grid;
  }

  .case-art {
    min-height: 320px;
  }

  .booking-cal {
    transform: rotate(0);
  }

  .sells-seal {
    margin-top: 40px;
    max-width: 280px;
  }

  .contact {
    gap: 40px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .contact-copy h2 {
    font-size: clamp(44px, 8vw, 64px);
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 15px;
  }

  .brand-lockup {
    max-width: 210px;
  }

  .menu-toggle {
    position: fixed;
    right: 24px;
    top: 12px;
  }

  .hero {
    padding: 96px 15px 0;
  }

  .hero-stage {
    height: 540px;
    min-height: 540px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: .9;
  }

  .drag-note {
    top: 78px;
    left: 16px;
  }

  .hero-ticker-track {
    animation: none;
    min-width: 0;
    overflow: hidden;
    position: static;
    width: 100%;
  }

  .hero-ticker-track span:nth-child(n+8) {
    display: none;
  }

  .sells-seal {
    overflow: hidden;
  }

  .press-track div {
    animation: none;
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }

  .press-track span:nth-child(n+8) {
    display: none;
  }

  .mobile-panel {
    padding: 28px 24px;
  }

  .mobile-brand {
    max-width: min(300px, calc(100vw - 48px));
  }

  .sticker-card {
    pointer-events: none;
  }

  .sticker-card-a {
    border-radius: 24px;
    height: 200px;
    left: 16px;
    padding: 48px 22px 16px;
    top: 310px;
    width: 210px;
  }

  .sticker-card-a h2 {
    font-size: 24px;
  }

  .sticker-card-a p,
  .sticker-card-a i,
  .sticker-icon {
    display: none;
  }

  .sticker-card-b {
    bottom: 32px;
    height: 230px;
    left: 44vw;
    width: 140px;
  }

  .sticker-card-b b:nth-of-type(2) {
    height: 100px;
  }

  .sticker-card-c {
    height: 125px;
    left: 56vw;
    padding: 18px;
    top: 240px;
    width: 140px;
  }

  .sticker-card-c span {
    font-size: 22px;
  }

  .sticker-card-c strong {
    font-size: 16px;
  }

  .intro,
  .services,
  .proof,
  .booking,
  .sells,
  .featured,
  .testimonials,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact {
    min-height: auto;
    padding: 86px 20px;
  }

  .contact-card {
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--black);
    padding: 30px;
  }

  .contact-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .contact-sub {
    font-size: 18px;
  }

  .contact-phone {
    font-size: 20px;
  }

  .featured h2 {
    margin-left: 20px;
  }

  .eyebrow {
    margin-bottom: 42px;
  }

  .case-grid {
    gap: 36px;
  }

  .case-art {
    min-height: 260px;
  }

  .footer-copy {
    flex-direction: column;
    gap: 12px;
  }

  .footer-copy span {
    text-align: left;
  }

  .sells-cta {
    font-size: 22px !important;
  }
}

/* =================================================================
   MOTION & ANIMATIONS
   Stickers float (via CSS `translate`). Drag JS uses inline translate
   which overrides keyframes; .dragging pauses the float on grab.
   ================================================================= */

.sticker-card {
  will-change: translate, transform;
}

.sticker-card-a { animation: floatA 8s ease-in-out infinite alternate; }
.sticker-card-b { animation: floatB 7s ease-in-out infinite alternate; }
.sticker-card-c { animation: floatC 6.5s ease-in-out infinite alternate; }
.sticker-card-d { animation: floatD 9s ease-in-out infinite alternate; }
.sticker-card-e { animation: floatE 7.5s ease-in-out infinite alternate; }

.sticker-card.dragging {
  animation-play-state: paused;
}

/* Float keyframes animate `transform` (rotation + small jitter).
   JS drag uses the separate `translate` CSS property so they compose. */
@keyframes floatA {
  0%   { transform: rotate(-23deg) translate(-6px,  8px); }
  100% { transform: rotate(-19deg) translate(12px, -14px); }
}

@keyframes floatB {
  0%   { transform: rotate(-6deg) translate(5px, -5px); }
  100% { transform: rotate(2deg)  translate(-9px, 11px); }
}

@keyframes floatC {
  0%   { transform: rotate(7deg)  translate(-10px, -4px); }
  100% { transform: rotate(13deg) translate(12px,  10px); }
}

@keyframes floatD {
  0%   { transform: rotate(35deg) translate(6px,  6px); }
  100% { transform: rotate(41deg) translate(-12px, -10px); }
}

@keyframes floatE {
  0%   { transform: rotate(-17deg) translate(-4px, 10px); }
  100% { transform: rotate(-11deg) translate(10px, -10px); }
}

/* Sticker entrance — pop in with stagger */
.sticker-card {
  opacity: 0;
  scale: 0.55;
  transition: opacity .6s ease, scale .7s cubic-bezier(.34, 1.6, .5, 1);
}

.sticker-card.is-in {
  opacity: 1;
  scale: 1;
}

/* Hero text entrance (home hero only — subpages have their own .page-title) */
.hero h1,
.hero .drag-note {
  opacity: 0;
  translate: 0 32px;
  animation: heroIn 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero h1 { animation-delay: 0.15s; }
.hero .drag-note { animation-delay: 0.65s; }

@keyframes heroIn {
  to { opacity: 1; translate: 0 0; }
}

/* Drag-note arrow bounce */
.drag-note::before {
  display: inline-block;
  animation: arrowBounce 1.4s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

@keyframes blobMorph {
  0%, 100% { border-radius: 43% 57% 56% 44% / 54% 43% 57% 46%; }
  25%      { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
  50%      { border-radius: 35% 65% 65% 35% / 45% 50% 50% 55%; }
  75%      { border-radius: 55% 45% 40% 60% / 40% 60% 40% 60%; }
}

/* Inline diamond — gentle pulse + spin */
.inline-diamond {
  animation: diamondSpin 4s ease-in-out infinite;
}

@keyframes diamondSpin {
  0%, 100% { transform: translateY(-0.05em) rotate(0deg)   scale(1); }
  50%      { transform: translateY(-0.05em) rotate(180deg) scale(1.18); }
}

/* Inline heart — heartbeat */
.inline-heart {
  animation: heartbeat 1.8s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 28%, 56%, 100% { transform: translateY(-0.15em) scale(1); }
  14%, 42%           { transform: translateY(-0.15em) scale(1.18); }
}

/* Sticker icon wiggle */
@keyframes iconWiggle {
  from { transform: rotate(6deg); }
  to   { transform: rotate(20deg); }
}

/* Sells seal core — gentle scale pulse */
.sells-seal__core {
  animation: corePulse 3.2s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 42, 173, 0.0); }
  50%      { transform: scale(1.06); box-shadow: 0 0 0 18px rgba(255, 42, 173, 0.0); }
}

/* Quote mark — slow breathing */
.quote-mark {
  animation: quoteBreath 4.5s ease-in-out infinite;
  transform-origin: top left;
}

@keyframes quoteBreath {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.08); opacity: .82; }
}

/* Active testimonial dot — pulse ripple */
.dot.is-active {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1.2);
    box-shadow: 0 0 0 0 rgba(255, 42, 173, .55);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 0 12px rgba(255, 42, 173, 0);
  }
}

/* Hover-pause for marquees */
.press-track:hover > div,
.hero-ticker:hover .hero-ticker-track {
  animation-play-state: paused;
}

/* Button hover micro — subtle nudge */
.button:hover,
.desktop-nav a:hover {
  animation: buttonNudge .35s ease-out;
}

@keyframes buttonNudge {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-4px) rotate(-1.5deg); }
  100% { transform: translateY(-2px) rotate(0); }
}

/* Case card hover — extend existing transition */
.case-art {
  will-change: transform;
}

.case-card:hover .case-art {
  transform: translateY(-8px) rotate(-1.2deg);
  box-shadow: 12px 12px 0 var(--black);
}

/* Service cards subtle accent on hover */
.service-grid article:hover {
  border-top-color: var(--hot-pink);
}

.service-grid article:hover span {
  animation: numberFlip .5s ease-out;
}

@keyframes numberFlip {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); color: var(--black); }
  100% { transform: scale(1); }
}

/* Sells "Step into the mayhem." CTA — slow flash */
.sells-cta {
  animation: ctaFlash 3.5s ease-in-out infinite;
}

@keyframes ctaFlash {
  0%, 100% { color: var(--hot-pink); }
  50%      { color: var(--pink); }
}

/* Booking calendar — float in place */
.booking-cal {
  animation: calFloat 6s ease-in-out infinite alternate;
}

@keyframes calFloat {
  from { transform: rotate(1deg)  translate(0, 0); }
  to   { transform: rotate(3deg)  translate(-6px, -8px); }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  translate: 0 44px;
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    translate 1s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
}

.reveal.is-revealed {
  opacity: 1;
  translate: 0 0;
}

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .sticker-card {
    opacity: 1;
    scale: 1;
  }

  .reveal {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 560px) {
  /* Tame the float on phones — stickers are smaller */
  .sticker-card-a,
  .sticker-card-b,
  .sticker-card-c {
    animation-duration: 5s;
  }
}

/* =================================================================
   SUBPAGES
   ================================================================= */

/* Page hero — shared by every subpage. Big editorial title, breadcrumb. */
.page-hero {
  background: var(--white);
  padding: 160px clamp(24px, 6vw, 90px) 90px;
  position: relative;
}

.page-hero--dark {
  background: var(--black);
  color: var(--white);
}

.page-hero--pink {
  background: var(--pink);
}

.page-hero--cream {
  background: var(--cream);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 50px;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumb a:hover {
  color: var(--hot-pink);
}

.breadcrumb span[aria-current] {
  color: var(--hot-pink);
}

.page-title {
  font-family: var(--display-fat);
  font-size: clamp(72px, 11vw, 200px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .86;
  margin: 0;
  text-wrap: balance;
}

.page-sub {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 28px 0 0;
  max-width: 820px;
}

/* Diamond accent — small SVG-look diamond */
.diamond-accent {
  color: var(--hot-pink);
  display: inline-block;
  font-size: .7em;
  margin: 0 .12em;
  transform: translateY(-0.1em);
}

/* ============== Services subpage ============== */
.services-list {
  background: var(--white);
  padding: 100px clamp(24px, 6vw, 90px) 130px;
}

.services-list ol {
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.services-list li {
  border-top: var(--line);
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 80px;
  gap: 60px;
  padding: 50px 0;
  align-items: start;
  transition: background .25s ease, padding-left .25s ease;
}

.services-list li:last-child {
  border-bottom: var(--line);
}

.services-list li:hover {
  background: linear-gradient(90deg, var(--pink-soft) 0%, transparent 80%);
  padding-left: 24px;
}

.services-list .num {
  font-family: var(--display-fat);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  color: var(--hot-pink);
}

.services-list .copy {
  display: grid;
  gap: 18px;
}

.services-list h2 {
  font-family: var(--display-fat);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
}

.services-list p {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: 760px;
}

.services-list .deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.services-list .deliverables span {
  border: 1.5px solid var(--black);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 12px;
  text-transform: uppercase;
}

.services-list .arrow {
  font-family: var(--display-fat);
  font-size: 32px;
  justify-self: end;
  align-self: center;
  transition: transform .25s ease;
}

.services-list li:hover .arrow {
  transform: translateX(6px);
}

/* ============== Case studies subpage ============== */
.case-page {
  background: var(--cream);
  padding: 90px clamp(24px, 6vw, 90px) 130px;
}

.case-page .filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 50px;
  max-width: 1400px;
}

.filter-pills button,
.filter-pills a {
  background: transparent;
  border: var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 8px 18px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.filter-pills button:hover,
.filter-pills a:hover,
.filter-pills .is-active {
  background: var(--black);
  color: var(--white);
}

.case-page .case-grid {
  max-width: 1400px;
}

.case-page--big-grid .case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-page .case-card-link {
  display: block;
  text-decoration: none;
}

/* ============== About subpage ============== */
.about-pillars {
  background: var(--white);
  padding: 120px clamp(24px, 6vw, 90px);
}

.about-pillars .pillars {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1400px;
}

.about-pillars .pillar {
  display: grid;
  gap: 22px;
}

.about-pillars .pillar-num {
  font-family: var(--display-fat);
  font-size: 18px;
  color: var(--hot-pink);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-pillars .pillar h3 {
  font-family: var(--display-fat);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .95;
  margin: 0;
}

.about-pillars .pillar h3 em {
  color: var(--hot-pink);
  font-style: normal;
}

.about-pillars .pillar p {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  max-width: 380px;
}

.about-story {
  background: var(--cream);
  padding: 120px clamp(24px, 6vw, 90px);
}

.about-story .story-inner {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1400px;
}

.about-story h2 {
  font-family: var(--display-fat);
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .88;
  margin: 0;
}

.about-story .story-body p {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 20px;
}

.about-story .story-body p em {
  color: var(--hot-pink);
  font-style: italic;
}

/* Numbers strip */
.numbers-strip {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 90px clamp(24px, 6vw, 90px);
}

.numbers-strip .stat {
  border-right: 1px solid rgba(255, 255, 255, .2);
  padding: 0 28px;
}

.numbers-strip .stat:last-child {
  border-right: 0;
}

.numbers-strip .stat strong {
  color: var(--pink);
  display: block;
  font-family: var(--display-fat);
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .88;
}

.numbers-strip .stat span {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 14px;
  text-transform: uppercase;
}

/* ============== Contact subpage ============== */
.contact-page {
  background: var(--cream);
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  padding: 90px clamp(24px, 6vw, 90px) 130px;
}

.contact-page .copy {
  align-self: start;
}

.contact-page h2 {
  font-family: var(--display-fat);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .92;
  margin: 0 0 28px;
}

.contact-page .copy p {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 30px;
}

.contact-page .contact-list {
  border-top: var(--line);
  display: grid;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
}

.contact-page .contact-list dt {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-page .contact-list dd {
  font-family: var(--display-fat);
  font-size: 24px;
  letter-spacing: 0;
  margin: 4px 0 0;
}

.contact-page .contact-list dd a:hover {
  color: var(--hot-pink);
}

.contact-page .form-card {
  background: var(--white);
  border: var(--line);
  border-radius: 28px;
  padding: 40px 42px;
  position: relative;
}

.contact-page .form-card::before {
  content: "♥";
  background: var(--hot-pink);
  border: var(--line);
  border-radius: 999px;
  color: var(--white);
  font-size: 28px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 36px;
  top: -28px;
  transform: rotate(8deg);
}

.contact-page .form-card form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-page .form-card label {
  display: grid;
  gap: 8px;
}

.contact-page .form-card .span-2 {
  grid-column: 1 / -1;
}

.contact-page .form-card span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-page .form-card span em {
  color: var(--hot-pink);
  font-style: normal;
  font-weight: 500;
}

.contact-page .form-card input,
.contact-page .form-card textarea,
.contact-page .form-card select {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  min-height: 52px;
  padding: 12px 16px;
  resize: vertical;
}

.contact-page .form-card input:focus,
.contact-page .form-card textarea:focus,
.contact-page .form-card select:focus {
  border-color: var(--hot-pink);
  outline: 0;
}

.contact-page .consent {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: 14px;
}

.contact-page .consent input {
  flex: 0 0 18px;
  height: 18px !important;
  min-height: 0 !important;
  width: 18px;
  margin-top: 4px;
}

.contact-page .form-card button {
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-page .form-status {
  color: var(--hot-pink);
}

/* ============== Newsroom / Blog ============== */
.news-page {
  background: var(--white);
  padding: 90px clamp(24px, 6vw, 90px) 130px;
}

.featured-post {
  background: var(--black);
  border-radius: 24px;
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto 70px;
  max-width: 1400px;
  min-width: 0;
  overflow: hidden;
}

.featured-post .featured-art {
  align-content: end;
  background: var(--hot-pink);
  color: var(--white);
  display: grid;
  min-height: 380px;
  min-width: 0;
  padding: 36px;
  position: relative;
}

.featured-post .featured-art::after {
  background: var(--pink);
  border: var(--line);
  border-radius: 999px;
  content: "";
  height: 120px;
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
}

.featured-post .featured-art strong {
  font-family: var(--display-fat);
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .88;
  overflow-wrap: anywhere;
}

.featured-post .featured-body {
  padding: 44px 50px 44px 10px;
  align-self: center;
  min-width: 0;
}

.featured-post .tag {
  background: var(--hot-pink);
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 14px;
  text-transform: uppercase;
}

.featured-post h2 {
  font-family: var(--display-fat);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 20px 0 18px;
}

.featured-post h2 a:hover {
  color: var(--pink);
}

.featured-post p {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 18px;
}

.featured-post .meta {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  opacity: .7;
  text-transform: uppercase;
}

.news-grid {
  display: grid;
  gap: 50px 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1400px;
}

.news-card {
  display: grid;
  gap: 18px;
}

.news-card .news-art {
  border: var(--line);
  border-radius: 18px;
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover .news-art {
  transform: translateY(-6px) rotate(-.8deg);
  box-shadow: 10px 10px 0 var(--black);
}

.news-card .news-art strong {
  font-family: var(--display-fat);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .88;
}

.news-card .news-art .tag {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  color: var(--black);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
}

.news-card .bg-1 { background: var(--pink); }
.news-card .bg-2 { background: var(--black); color: var(--white); }
.news-card .bg-3 { background: var(--hot-pink); color: var(--white); }
.news-card .bg-4 { background: var(--cream); }
.news-card .bg-5 { background: var(--white); }

.news-card h3 {
  font-family: var(--display-fat);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.news-card h3 a:hover {
  color: var(--hot-pink);
}

.news-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.news-card .meta {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .6;
  text-transform: uppercase;
}

/* ============== Shared CTA strip ============== */
.cta-strip {
  align-items: center;
  background: var(--pink);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 90px clamp(24px, 6vw, 90px);
}

.cta-strip h2 {
  font-family: var(--display-fat);
  font-size: clamp(48px, 5.5vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .92;
  margin: 0;
  max-width: 1100px;
}

.cta-strip h2 em {
  color: var(--white);
  font-style: italic;
}

.cta-strip .button {
  font-size: 16px;
  min-height: 60px;
  padding: 0 36px;
}

/* ============== Responsive overrides for subpages ============== */
@media (max-width: 1180px) {
  .case-page .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .services-list li {
    gap: 28px;
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .services-list .arrow {
    display: none;
  }
  .services-list .num { font-size: 44px; }
  .about-pillars .pillars,
  .about-story .story-inner,
  .contact-page,
  .featured-post,
  .cta-strip {
    grid-template-columns: 1fr;
  }
  .numbers-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 0;
  }
  .numbers-strip .stat:nth-child(2) {
    border-right: 0;
  }
  .featured-post .featured-body {
    padding: 32px 36px 40px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 120px 20px 60px;
  }
  .page-title {
    font-size: clamp(44px, 14vw, 60px);
    line-height: .9;
    overflow-wrap: anywhere;
  }
  .page-sub {
    font-size: 20px;
  }
  .services-list,
  .case-page,
  .about-pillars,
  .about-story,
  .contact-page,
  .news-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .services-list li {
    padding: 32px 0;
    grid-template-columns: 1fr;
  }
  .services-list .num {
    font-size: 36px;
  }
  .contact-page .form-card {
    padding: 32px 24px;
  }
  .contact-page .form-card form {
    grid-template-columns: 1fr;
  }
  .featured-post .featured-art {
    min-height: 280px;
    padding: 28px 24px;
  }
  .featured-post .featured-art strong {
    font-size: clamp(44px, 13vw, 60px);
    white-space: nowrap;
  }
  .featured-post h2 {
    font-size: clamp(30px, 10vw, 42px);
  }
}
