:root {
  --slab: #cfcbc4;
  --mag: #e31c79;
  --night: #1c1c1c;
  --wash: #a8c5d4;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--slab);
  color: var(--night);
  font-family: Figtree, sans-serif;
  padding-bottom: 88px;
}
::selection { background: var(--mag); color: #fff; }
a { color: var(--mag); }
img { display: block; max-width: 100%; }

/* top: only a thin mag bar — brand lives in the hero */
.strip {
  height: 10px;
  background: var(--mag);
}

/* bottom dock — not a header masthead */
.dock {
  position: sticky;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: stretch;
  background: var(--night);
  color: #fff;
}
.dock .brand {
  flex: 0 0 auto;
  background: var(--mag);
  color: #fff;
  text-decoration: none;
  font-family: Anton, sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.dock nav {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.dock nav a {
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 14px;
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,.12);
}
.dock nav a.on { background: var(--wash); color: var(--night); }
.dock .more {
  border: 0;
  background: var(--wash);
  color: var(--night);
  font-family: Anton, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 0 16px;
  cursor: pointer;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--mag);
  color: #fff;
  display: none;
  padding: 28px 22px;
  overflow: auto;
}
.sheet.open { display: block; }
.sheet a {
  display: block;
  font-family: Anton, sans-serif;
  font-size: clamp(32px, 8vw, 56px);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.05;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 6px 0;
}
.sheet .x {
  float: right;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--night);
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: 18px;
  cursor: pointer;
}

/* zig hero: text slab left, photo parallelogram right */
.zig {
  display: grid;
  min-height: calc(100svh - 58px);
}
@media (min-width: 900px) {
  .zig { grid-template-columns: 1.05fr 0.95fr; }
}
.zig-copy {
  background: var(--mag);
  color: #fff;
  padding: 36px 22px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}
@media (min-width: 900px) {
  .zig-copy { padding: 48px 40px 56px; }
}
.tag {
  align-self: flex-start;
  background: var(--night);
  color: var(--wash);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
}
.zig h1 {
  font-family: Anton, sans-serif;
  font-size: clamp(72px, 16vw, 160px);
  line-height: 0.85;
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.zig p {
  margin: 0;
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}
.acts { display: flex; flex-wrap: wrap; gap: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: Anton, sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 0;
  cursor: pointer;
}
.btn-night { background: var(--night); color: #fff; }
.btn-wash { background: var(--wash); color: var(--night); }
.btn-mag { background: var(--mag); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.zig-pic {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--night);
}
.zig-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  filter: contrast(1.05) saturate(0.95);
}
@media (min-width: 900px) {
  .zig-pic img {
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    min-height: calc(100svh - 58px);
  }
}
.zig-pic .cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--wash);
  color: var(--night);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 10px;
}

/* staircase blocks — alternate sides */
.step {
  display: grid;
  border-top: 3px solid var(--night);
}
@media (min-width: 880px) {
  .step { grid-template-columns: 1fr 1fr; min-height: 420px; }
  .step.reverse .step-txt { order: 2; }
}
.step-pic { min-height: 260px; overflow: hidden; }
.step-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.step-txt {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--white);
}
@media (min-width: 880px) { .step-txt { padding: 40px; } }
.step-txt .n {
  font-family: Anton, sans-serif;
  font-size: 64px;
  line-height: 0.8;
  color: var(--mag);
}
.step-txt h2 {
  font-family: Anton, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.step-txt p { margin: 0; font-size: 16px; line-height: 1.5; max-width: 42ch; }
.step.wash .step-txt { background: var(--wash); }
.step.night .step-txt { background: var(--night); color: #fff; }
.step.night .step-txt .n { color: var(--mag); }
.step.night a { color: var(--wash); }

/* inner page */
.banner {
  display: grid;
}
@media (min-width: 860px) {
  .banner { grid-template-columns: 0.85fr 1.15fr; min-height: 48vh; }
}
.banner-lab {
  background: var(--night);
  color: #fff;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.banner-lab span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wash);
}
.banner-lab h1 {
  font-family: Anton, sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  filter: contrast(1.04);
}

.stack {
  padding: 28px 18px 28px;
  max-width: 820px;
}
@media (min-width: 800px) { .stack { padding: 40px 40px 36px; } }
.stack p { font-size: 17px; line-height: 1.65; margin: 0 0 16px; }
.stack h2 {
  font-family: Anton, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 32px 0 10px;
  color: var(--mag);
}
.stack h3 {
  font-family: Anton, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 22px 0 8px;
  color: var(--night);
}
.stack ul, .stack ol { padding-left: 20px; line-height: 1.65; margin: 0 0 16px; }
.stack li { margin-bottom: 6px; }
.midshot {
  margin: 8px 0 0;
  border-top: 3px solid var(--night);
}
.midshot img {
  width: 100%;
  height: min(48vh, 420px);
  object-fit: cover;
  filter: contrast(1.04);
}
.midshot .caprow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--night);
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.midshot .caprow a { color: var(--wash); }
.wide-stack {
  padding: 8px 18px 100px;
  max-width: 820px;
}
@media (min-width: 800px) { .wide-stack { padding: 8px 40px 120px; } }
.note {
  background: var(--wash);
  padding: 16px 18px;
  margin: 0 0 22px;
  font-weight: 600;
  border-left: 6px solid var(--mag);
}

.foot {
  background: var(--night);
  color: #fff;
  padding: 32px 18px 90px;
}
@media (min-width: 800px) { .foot { padding: 40px 40px 100px; } }
.foot a { color: var(--wash); text-decoration: none; }
.foot a:hover { color: #fff; }
.foot .grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) { .foot .grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot h4 {
  font-family: Anton, sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  color: var(--mag);
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 14px; }
.legal {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.faq details { border-top: 2px solid var(--night); padding: 12px 0; }
.faq summary {
  font-family: Anton, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mag);
}
form { display: grid; gap: 8px; }
label { font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
input, textarea {
  border: 2px solid var(--night);
  background: #fff;
  padding: 12px;
  font: inherit;
}

.two {
  display: grid;
  gap: 16px;
  padding: 24px 18px 100px;
}
@media (min-width: 860px) {
  .two { grid-template-columns: 1fr 1fr; padding: 32px 40px 120px; gap: 24px; }
}
.box {
  background: #fff;
  padding: 24px;
  border-top: 6px solid var(--mag);
}

/* cookie = bottom dock twin, full width, not a ticket */
.cookie {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 58px;
  background: var(--wash);
  color: var(--night);
  display: none;
  padding: 14px 16px;
  border-top: 3px solid var(--mag);
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie h2 {
  font-family: Anton, sans-serif;
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cookie p { margin: 0; flex: 1 1 200px; font-size: 13px; line-height: 1.4; }
.cookie a { color: var(--mag); font-weight: 800; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  border: 0;
  padding: 12px 14px;
  cursor: pointer;
  font-family: Anton, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#cookieAll { background: var(--mag); color: #fff; }
#cookieNec { background: var(--night); color: #fff; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--night);
  color: #fff;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stats b {
  display: block;
  font-family: Anton, sans-serif;
  font-size: 40px;
  color: var(--mag);
  line-height: 1;
}
.stats span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wash);
}
