/* Quit Playin Media · house stylesheet */

:root {
  --navy-950: #030b22;
  --navy-900: #06163d;
  --navy-800: #0b2050;
  --navy-700: #16295a;
  --paper: #f3f1ec;
  --paper-2: #e6e2d8;
  --ink: #06163d;
  --red: #c8102e;
  --red-deep: #a6192e;
  --grey: #8a94a8;
  --grey-2: #5a6275;
  --line: #1b2b55;
  --line-strong: rgba(241, 238, 231, 0.32);
  --line-ink: #d9d6ce;

  --f-display: "Archivo", "Arial Narrow", sans-serif;
  --f-body: "Schibsted Grotesk", system-ui, sans-serif;
  --f-label: "Michroma", "Eurostile", "Archivo", sans-serif;
  --f-serif: "Newsreader", Georgia, "Times New Roman", serif;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;
  --cut: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--red); color: #fff; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- type primitives ---------- */

.label {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.6;
}
.label--red { color: var(--red); }
.label--grey { color: var(--grey); }

.display {
  font-family: var(--f-display);
  font-weight: 800;
  font-variation-settings: "wdth" 70;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.9;
  margin: 0;
}
.condensed {
  font-variation-settings: "wdth" 62;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.tnum { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4 { margin: 0; }
p { margin: 0 0 1em; }

/* red full stop, as in the logo tagline */
.dot { color: var(--red); }

/* ---------- slate bar + header ---------- */

.slate {
  border-bottom: 1px solid var(--line);
  background: var(--navy-950);
  color: var(--grey);
}
.slate .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 9px;
}
.slate span { white-space: nowrap; }
.slate .rec::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: 1px;
}
@keyframes blink { 50% { opacity: 0.15; } }
@media (prefers-reduced-motion: reduce) { .slate .rec::before { animation: none; } }
@media (max-width: 760px) { .slate .hide-sm { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 24px; width: auto; transform: translateY(6%); }
@media (max-width: 1100px) { .brand img { height: 20px; } }
@media (max-width: 640px) { .brand img { height: 24px; transform: none; } }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav a {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  opacity: 0.78;
  transition: opacity 0.2s;
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--line-strong);
    padding: 9px 12px;
    font-family: var(--f-label);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-950);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
  .nav .btn { margin-top: 18px; }
}

/* ---------- buttons ---------- */

.btn {
  --bg: var(--paper);
  --fg: var(--navy-900);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 24px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: background 0.2s, color 0.2s;
}
.btn .arr { display: inline-block; width: 18px; height: 1px; background: currentColor; position: relative; transition: width 0.25s; }
.btn .arr::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr { width: 28px; }
.btn:hover { --bg: var(--red); --fg: #fff; }
.btn--red { --bg: var(--paper); --fg: var(--navy-900); }
.btn--red:hover { --bg: var(--red); --fg: #fff; }
.paper .btn--red, .btn--ink { --bg: var(--ink); --fg: var(--paper); }
.paper .btn--red:hover, .btn--ink:hover { --bg: var(--red); --fg: #fff; }
.btn--ghost { --bg: transparent; --fg: var(--paper); box-shadow: inset 0 0 0 1px var(--line-strong); clip-path: none; }
.btn--ghost:hover { --bg: rgba(241, 238, 231, 0.06); }
.btn--sm { padding: 11px 16px; font-size: 10px; }

.textlink {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}
.hero video, .hero .poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.55) 0%, rgba(5, 11, 24, 0.15) 32%, rgba(5, 11, 24, 0.55) 62%, rgba(5, 11, 24, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 11, 24, 0.7) 0%, rgba(5, 11, 24, 0) 60%);
}
/* viewfinder marks */
.vf { position: absolute; inset: clamp(14px, 2.4vw, 32px); pointer-events: none; z-index: 1; }
.vf i { position: absolute; width: 26px; height: 26px; border-color: rgba(241, 238, 231, 0.7); border-style: solid; border-width: 0; }
.vf i:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.vf i:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.vf i:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.vf i:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.vf .tc {
  position: absolute; top: 4px; right: 40px;
  font-family: var(--f-label); font-size: 10.5px; letter-spacing: 0.18em;
  color: rgba(241, 238, 231, 0.85);
}
.vf .cam { position: absolute; top: 4px; left: 40px; font-family: var(--f-label); font-size: 10.5px; letter-spacing: 0.18em; color: rgba(241, 238, 231, 0.85); }

.hero-copy { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vh, 96px); }
.hero-copy .label { margin-bottom: 26px; display: block; }
.hero h1 {
  font-size: clamp(56px, 9.2vw, 152px);
  line-height: 0.86;
  max-width: 13ch;
  animation: wipe 0.7s cubic-bezier(.2,.7,.1,1) 0.15s both;
}
.hero h1 .serif {
  text-transform: none;
  font-weight: 400;
  font-size: 0.86em;
  letter-spacing: -0.02em;
}
.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-top: clamp(28px, 4vw, 48px);
}
.hero-foot p { font-size: clamp(16px, 1.35vw, 19px); color: rgba(241, 238, 231, 0.86); margin: 0; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .hero { min-height: min(88vh, 760px); }
  .hero-foot { grid-template-columns: 1fr; }
  .vf .cam { display: none; }
}

/* ---------- ticker (credits strip) ---------- */

.credits {
  border-block: 1px solid var(--line);
  background: var(--navy-950);
  overflow: hidden;
}
.credits .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.credits .cell {
  padding: 22px var(--gutter);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.credits .cell:last-child { border-right: 0; }
.credits .big { font-size: clamp(30px, 3.4vw, 46px); line-height: 1; }
@media (max-width: 760px) {
  .credits .row { grid-template-columns: repeat(2, 1fr); }
  .credits .cell:nth-child(2) { border-right: 0; }
  .credits .cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- section scaffolding ---------- */

.section { padding-block: clamp(80px, 11vw, 160px); position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: clamp(44px, 6vw, 80px);
  align-items: start;
}
.section-head .idx { padding-top: 10px; border-top: 1px solid var(--line-strong); }
.section-head h2 { font-size: clamp(38px, 6vw, 92px); }
.section-head .intro { max-width: 560px; margin-top: 22px; color: rgba(241, 238, 231, 0.78); font-size: 18px; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 14px; } }

.paper { background: var(--paper); color: var(--ink); }
.paper .section-head .idx { border-top-color: var(--line-ink); }
.paper .section-head .intro { color: rgba(11, 26, 58, 0.72); }
.paper .label--grey { color: var(--grey-2); }

/* ---------- manifesto ---------- */

.manifesto { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 24px; }
.manifesto blockquote {
  margin: 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(34px, 5.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 15ch;
}
.manifesto .body {
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  max-width: 980px;
  color: rgba(241, 238, 231, 0.8);
}
.manifesto .sig { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.manifesto .sig img { height: 34px; width: auto; }
@media (max-width: 760px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto .body { grid-template-columns: 1fr; }
}

/* ---------- services index ---------- */

.lanes { border-top: 1px solid var(--line-strong); }
.lane {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1.1fr) minmax(0, 1fr) 200px;
  gap: 24px;
  align-items: start;
  padding-block: clamp(28px, 3.4vw, 44px);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.lane .num { font-size: 13px; color: var(--grey); padding-top: 10px; }
.lane h3 { font-size: clamp(34px, 4.4vw, 68px); transition: color 0.2s; }
.lane .for { display: block; margin-top: 14px; color: var(--grey); }
.lane p { color: rgba(241, 238, 231, 0.78); margin: 6px 0 0; }
.lane .price { text-align: right; padding-top: 8px; }
.lane .price strong { display: block; font-size: 34px; line-height: 1; margin-top: 8px; }
.lane:hover h3 { color: #fff; }
.lane:hover .num { color: var(--red); }
@media (max-width: 900px) {
  .lane { grid-template-columns: 44px minmax(0, 1fr); }
  .lane .desc, .lane .price { grid-column: 2; }
  .lane .price { text-align: left; }
}

/* ---------- featured work ---------- */

.feature-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.feature-top h2 { font-size: clamp(40px, 6.4vw, 104px); }
.feature-top h2 .blue { color: #2f6bff; }
.feature-top .dek { color: rgba(241, 238, 231, 0.8); font-size: 18px; }
.feature-top .meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 18px 0 26px; }
@media (max-width: 900px) { .feature-top { grid-template-columns: 1fr; } }

/* contact-sheet strip */
.sheet {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 26vw, 380px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.sheet::-webkit-scrollbar { height: 6px; }
.sheet::-webkit-scrollbar-thumb { background: var(--line-strong); }
.frame { scroll-snap-align: start; margin: 0; }
.frame .img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-800);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.frame:hover img { transform: scale(1.025); }
.frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  color: var(--grey);
}
.frame figcaption b { color: var(--paper); font-weight: 400; }
.sheet-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.sheet-controls .arrows { display: flex; gap: 8px; }
.sheet-controls button {
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.sheet-controls button:hover { background: rgba(241, 238, 231, 0.08); }

/* cards row */
.cards-block {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  margin-top: clamp(80px, 9vw, 130px);
  align-items: start;
}
.cards-block h3 { font-size: clamp(30px, 3.6vw, 52px); }
.cards-block p { color: rgba(241, 238, 231, 0.78); margin-top: 18px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cards figure { margin: 0; }
.cards img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--navy-800); }
.cards figure:nth-child(even) { transform: translateY(36px); }
.cards figcaption { margin-top: 10px; color: var(--grey); }
@media (max-width: 900px) {
  .cards-block { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards figure:nth-child(even) { transform: none; }
}

/* motion piece */
.motion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  margin-top: clamp(100px, 10vw, 150px);
}
.motion .player {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  background: var(--navy-950);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}
.motion video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.motion h3 { font-size: clamp(30px, 3.6vw, 52px); margin-top: 16px; }
.motion p { color: rgba(241, 238, 231, 0.78); margin-top: 18px; max-width: 520px; }
@media (max-width: 900px) {
  .motion { grid-template-columns: 1fr; }
  .motion .player { justify-self: start; }
}

/* ---------- standards ---------- */

.standards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-ink);
}
.standard {
  padding: clamp(28px, 3.4vw, 48px) clamp(0px, 3vw, 44px) clamp(28px, 3.4vw, 48px) 0;
  border-bottom: 1px solid var(--line-ink);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
}
.standard:nth-child(odd) { border-right: 1px solid var(--line-ink); }
.standard:nth-child(even) { padding-left: clamp(20px, 3vw, 44px); }
.standard .n { font-size: 56px; line-height: 0.8; color: var(--ink); }
.standard h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.05; margin-bottom: 12px; }
.standard p { color: rgba(11, 26, 58, 0.74); margin: 0; }
@media (max-width: 760px) {
  .standards { grid-template-columns: 1fr; }
  .standard:nth-child(odd) { border-right: 0; }
  .standard:nth-child(even) { padding-left: 0; }
}

/* ---------- rate card ---------- */

.ratecard-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 18px;
}
.tabs { display: flex; flex-wrap: wrap; gap: 0; }
.tab {
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 12px 18px 14px;
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  cursor: pointer;
  margin-bottom: -20px;
}
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--red); }
.tab:hover { color: var(--ink); }
.panel { padding-top: clamp(32px, 4vw, 56px); }
.panel[hidden] { display: none; }
.panel-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(28px, 3vw, 44px);
}
.panel-intro h3 { font-size: clamp(30px, 3.6vw, 52px); }
.panel-intro p { color: rgba(11, 26, 58, 0.76); margin: 0; }
@media (max-width: 760px) { .panel-intro { grid-template-columns: 1fr; } }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-ink);
}
.tier {
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid var(--line-ink);
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.tier:last-child { border-right: 0; }
.tier.pick { background: var(--ink); color: var(--paper); }
.tier.pick .btn--red { --bg: var(--paper); --fg: var(--ink); }
.tier.pick .btn--red:hover { --bg: var(--red); --fg: #fff; }
.tier.pick .label--grey { color: var(--grey); }
.tier.pick li { border-top-color: var(--line); }
.tier.pick li::before { background: var(--red); }
.tier .name { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.tier .amt {
  font-size: clamp(46px, 4.6vw, 70px);
  line-height: 0.9;
  margin: 18px 0 4px;
}
.tier .amt sup { font-size: 0.42em; vertical-align: 0.9em; margin-right: 2px; font-variation-settings: "wdth" 100; }
.tier .terms { min-height: 2.8em; }
.tier ul { list-style: none; margin: 22px 0 26px; padding: 0; font-size: 15px; line-height: 1.45; }
.tier li { position: relative; padding: 10px 0 10px 18px; border-top: 1px solid var(--line-ink); }
.tier li::before { content: ""; position: absolute; left: 0; top: 18px; width: 7px; height: 1px; background: var(--ink); }
.tier .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 1000px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: 1px solid var(--line-ink); }
  .tier:last-child { border-bottom: 0; }
}

.fineprint {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--line-ink);
  font-size: 15px;
  color: rgba(11, 26, 58, 0.78);
}
.fineprint h4 { margin-bottom: 12px; }
.fineprint table { width: 100%; border-collapse: collapse; }
.fineprint td { padding: 7px 0; border-bottom: 1px solid var(--line-ink); vertical-align: top; }
.fineprint td:last-child { text-align: right; white-space: nowrap; padding-left: 12px; color: var(--ink); }
.fineprint ul { margin: 0; padding-left: 18px; }
.fineprint li { margin-bottom: 8px; }
@media (max-width: 900px) { .fineprint { grid-template-columns: 1fr; } }

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: s;
}
.step {
  padding: 30px clamp(12px, 2vw, 28px) 0 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  top: -4px; left: 0;
  width: 7px; height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}
.step .n { color: var(--grey); }
.step h3 { font-size: clamp(24px, 2.4vw, 34px); margin: 18px 0 12px; }
.step p { color: rgba(241, 238, 231, 0.76); font-size: 16px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- original series teaser ---------- */

.series {
  position: relative;
  background: #030712;
  overflow: hidden;
  isolation: isolate;
}
.series::before {
  content: "";
  position: absolute; inset: -50%;
  z-index: -1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -1%); }
}
@media (prefers-reduced-motion: reduce) { .series::before { animation: none; } }
.series .inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.series h2 { font-size: clamp(40px, 6vw, 96px); }
.series h2 span { display: block; }
.series h2 .dim { color: rgba(241, 238, 231, 0.32); }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.countdown div { padding: 18px 16px; border-right: 1px solid var(--line); }
.countdown div:last-child { border-right: 0; }
.countdown b { display: block; font-size: clamp(34px, 3.6vw, 54px); line-height: 1; font-weight: 800; }
.signup { display: flex; gap: 0; border: 1px solid var(--line-strong); }
.signup input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  color: var(--paper);
  font: inherit;
  font-size: 16px;
}
.signup input::placeholder { color: var(--grey); }
.signup input:focus { outline: none; }
.signup:focus-within { border-color: var(--paper); }
.signup .btn { clip-path: none; }
@media (max-width: 900px) { .series .inner { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line-ink); }
.faq details { border-bottom: 1px solid var(--line-ink); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  padding: 26px 0;
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .n { color: var(--grey-2); font-weight: 400; }
.faq summary .pm { position: relative; width: 16px; height: 16px; justify-self: end; }
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; background: var(--ink); transition: transform 0.25s;
}
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary .pm::after { transform: rotate(0deg); }
.faq details[open] summary .pm::before { background: var(--red); }
.faq .a { padding: 0 44px 30px 72px; max-width: 860px; color: rgba(11, 26, 58, 0.78); }
@media (max-width: 760px) {
  .faq summary { grid-template-columns: 36px minmax(0, 1fr) 20px; }
  .faq .a { padding: 0 0 26px 52px; }
}

/* ---------- inquiry ---------- */

.inquire {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
}
.inquire .aside h2 { font-size: clamp(40px, 5.6vw, 88px); }
.inquire .aside p { color: rgba(241, 238, 231, 0.8); margin-top: 22px; max-width: 420px; }
.inquire .aside .direct { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 18px; }
.inquire .aside .direct a { text-decoration: none; }
@media (max-width: 900px) { .inquire { grid-template-columns: 1fr; } }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; margin-bottom: 26px; }
.field label, .field legend { margin-bottom: 10px; color: var(--grey); padding: 0; }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  font: inherit;
  font-size: 17px;
  padding: 10px 0 12px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--paper) 50%), linear-gradient(135deg, var(--paper) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field select option { background: var(--navy-900); color: var(--paper); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--paper); }
.field .help { font-size: 13.5px; color: var(--grey); margin-top: 8px; }
.field input:user-invalid, .field select:user-invalid { border-bottom-color: var(--red); }
fieldset.field { border: 0; margin: 0 0 26px; padding: 0; min-width: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  padding: 11px 15px;
  border: 1px solid var(--line-strong);
  font-size: 14.5px;
  transition: background 0.2s, border-color 0.2s;
}
.chip input:checked + span { background: var(--paper); color: var(--navy-900); border-color: var(--paper); }
.chip input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }
.cond { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; padding: 26px 0 4px; border-top: 1px dashed var(--line); }
.cond[hidden] { display: none; }
.cond .cond-title { grid-column: 1 / -1; margin-bottom: 20px; color: var(--red); }
.form .consent { font-size: 13.5px; color: var(--grey); margin-top: 18px; }
.form .consent a { color: var(--paper); }
.hp { position: absolute; left: -9999px; }
@media (max-width: 640px) {
  .form, .cond { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding-top: clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.foot-grid h4 { margin-bottom: 18px; color: var(--grey); }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-grid a { text-decoration: none; opacity: 0.85; }
.foot-grid a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }
.foot-grid .tag { font-size: 20px; line-height: 1.3; max-width: 320px; margin-top: 22px; }
.bigmark {
  display: block;
  width: 100%;
  opacity: 0.08;
  margin-bottom: -2px;
}
.legal {
  border-top: 1px solid var(--line);
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
  color: var(--grey);
}
.legal a { color: var(--grey); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- case study ---------- */

.cs-hero { padding-top: clamp(56px, 8vw, 110px); }
.cs-hero h1 { font-size: clamp(48px, 9vw, 150px); max-width: 12ch; margin-top: 26px; }
.cs-hero .dek { font-family: var(--f-serif); font-style: italic; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.25; max-width: 30ch; margin-top: 30px; color: rgba(241, 238, 231, 0.9); }
.cs-spec {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 72px);
}
.cs-spec div { padding: 18px 16px 18px 0; border-right: 1px solid var(--line); }
.cs-spec div + div { padding-left: 16px; }
.cs-spec div:last-child { border-right: 0; }
.cs-spec dt { color: var(--grey); margin-bottom: 8px; }
.cs-spec dd { margin: 0; font-size: 15.5px; }
@media (max-width: 900px) {
  .cs-spec { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cs-spec div { border-bottom: 1px solid var(--line); }
  .cs-spec div:nth-child(2n) { border-right: 0; }
  .cs-spec div + div { padding-left: 0; }
  .cs-spec div:nth-child(2n) { padding-left: 16px; }
}
.cs-wide { margin-top: clamp(40px, 5vw, 72px); }
.cs-wide img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 45%; }
.cs-wide figcaption { margin-top: 12px; color: var(--grey); display: flex; justify-content: space-between; gap: 16px; }
.cs-body {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  gap: 24px;
  margin-top: clamp(64px, 8vw, 120px);
}
.cs-body h2 { font-size: clamp(28px, 3vw, 42px); margin: 0 0 20px; }
.cs-body section + section { margin-top: clamp(48px, 6vw, 80px); }
.cs-body p, .cs-body li { font-size: 18.5px; line-height: 1.6; color: rgba(241, 238, 231, 0.86); }
.cs-body ul { padding: 0; list-style: none; margin: 0; }
.cs-body li { padding: 16px 0; border-top: 1px solid var(--line); }
.cs-body li b { color: var(--paper); display: block; margin-bottom: 4px; }
.cs-body .side { position: sticky; top: 100px; align-self: start; }
@media (max-width: 900px) {
  .cs-body { grid-template-columns: 1fr; }
  .cs-body .side { position: static; }
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(64px, 8vw, 110px);
}
.cs-grid figure { margin: 0; }
.cs-grid img { width: 100%; height: auto; background: var(--navy-800); }
.cs-grid .c4 { grid-column: span 4; }
.cs-grid .c5 { grid-column: span 5; }
.cs-grid .c7 { grid-column: span 7; }
.cs-grid .c3 { grid-column: span 3; }
.cs-grid figcaption { margin-top: 10px; color: var(--grey); }
.cs-grid .drop { margin-top: 90px; }
@media (max-width: 760px) {
  .cs-grid .c4, .cs-grid .c5, .cs-grid .c7 { grid-column: span 12; }
  .cs-grid .c3 { grid-column: span 6; }
  .cs-grid .drop { margin-top: 0; }
}

/* ---------- simple pages ---------- */

.doc { padding-block: clamp(64px, 8vw, 120px); }
.doc .wrap { max-width: 820px; }
.doc h1 { font-size: clamp(40px, 6vw, 80px); margin: 20px 0 36px; }
.doc h2 { font-size: 22px; font-weight: 800; margin: 40px 0 12px; }
.doc p, .doc li { color: rgba(241, 238, 231, 0.84); }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }

/* ---------- reveal ---------- */

.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }
.no-js .rv { opacity: 1; transform: none; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--paper); color: var(--ink); padding: 12px 16px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* signature move: diagonal wipe at the cut angle, hero only */
@keyframes wipe {
  from { clip-path: polygon(0 0, 0 0, -12% 100%, -12% 100%); }
  to { clip-path: polygon(0 0, 112% 0, 100% 100%, -12% 100%); }
}
@media (prefers-reduced-motion: reduce) { .hero h1 { animation: none; } }
.section-head .idx::before, .cut::before {
  content: ""; display: inline-block; width: 9px; height: 10px; margin-right: 10px; vertical-align: -1px;
  background: url("/assets/brand/qp-cut-red.svg") center / contain no-repeat;
}
.paper .btn--red.btn--sm, .tier .btn { font-size: 10px; }

/* nav CTA keeps its own button colors */
.nav a.btn { color: var(--fg); opacity: 1; }
@media (max-width: 900px) { .nav a.btn { width: auto; padding: 14px 18px; border-bottom: 0; } }

/* rate card tabs scroll sideways on phones instead of wrapping */
@media (max-width: 760px) {
  .ratecard-head { flex-wrap: nowrap; }
  .ratecard-head > .label { display: none; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; width: 100%; }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { white-space: nowrap; padding-inline: 12px; }
  .slate .wrap > span:first-child { display: none; }
}

/* photography */
.photos-block {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  margin-top: clamp(100px, 10vw, 150px);
  align-items: start;
}
.photos-block h3 { font-size: clamp(30px, 3.6vw, 52px); }
.photos-block p { color: rgba(241, 238, 231, 0.78); margin-top: 18px; }
.photos3 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photos3 figure { margin: 0; overflow: hidden; }
.photos3 figure:first-child { grid-column: 1 / -1; }
.photos3 figure:not(:first-child) img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.photos3 figcaption, .gallery figcaption { margin-top: 10px; color: var(--grey); }
.gallery { columns: 3 320px; column-gap: 18px; margin-top: 40px; }
.gallery figure { break-inside: avoid; margin: 0 0 26px; }
.gallery img { width: 100%; background: var(--navy-800); }
@media (max-width: 900px) { .photos-block { grid-template-columns: 1fr; } }
