/* SweeCrimeM — The Press Floor · Premium dark theme · Build 28 Jul 2026 */

:root {
  --press: #060608;
  --graphite: #0F1115;
  --card: #161A21;
  --card-elevated: #1C2129;
  --newsprint: #F4EFE6;
  --magenta: #F04C7A;
  --magenta-soft: #FF6B94;
  --accent: #5C6370;
  --accent-hover: #6E7582;
  --accent-text: #FFFFFF;
  --zinc: #A4A9B3;
  --edge: rgba(244, 239, 230, 0.14);
  --edge-strong: rgba(244, 239, 230, 0.22);
  --magenta-glow: rgba(240, 76, 122, 0.12);
  --text-muted: rgba(244, 239, 230, 0.84);
  --text-soft: rgba(244, 239, 230, 0.68);
  --font-display: 'Epilogue', system-ui, sans-serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;
  --font-mono: 'Red Hat Mono', monospace;
  --max-width: 76rem;
  --header-h: 4.75rem;
  --cookie-h: 0px;
  --radius: 4px;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(240, 76, 122, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--press);
  color: var(--newsprint);
}

body.has-cookie-banner {
  --cookie-h: 7.5rem;
  padding-bottom: var(--cookie-h);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.82; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.875rem, 6vw, 5.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.4375rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--magenta);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--zinc);
}

/* Surfaces */
.surface-press {
  background: var(--press);
  color: var(--newsprint);
}

.surface-graphite {
  background: linear-gradient(180deg, var(--graphite) 0%, #0C0E12 100%);
  color: var(--newsprint);
}

.surface-news { background: var(--newsprint); color: var(--press); }
.surface-magenta { background: var(--magenta); color: var(--press); }

.surface-press p,
.surface-graphite p {
  color: var(--text-muted);
}

.surface-news::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.surface-news { position: relative; overflow: hidden; }

/* Layout */
.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 8vw, 8.75rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.hairline {
  height: 1px;
  background: var(--edge);
  border: none;
}

.hairline--magenta { background: rgba(240, 76, 122, 0.35); }

/* Registration crosshair */
.reg-mark {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}

.reg-mark::before,
.reg-mark::after {
  content: '';
  position: absolute;
  background: var(--magenta);
  opacity: 0.7;
}

.reg-mark::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.reg-mark::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.reg-mark span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240, 76, 122, 0.5);
  border-radius: 50%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6, 6, 8, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.site-header.is-stuck {
  background: rgba(6, 6, 8, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(244, 239, 230, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.site-header.is-stuck .logo-text,
.site-header.is-stuck .site-nav a:not(.btn) { color: var(--newsprint); }

.site-header.is-stuck .logo-sub,
.site-header.is-stuck .site-nav a:not(.btn):hover { color: var(--zinc); }

.site-header.is-stuck .site-nav .btn--primary {
  color: var(--accent-text);
}

.site-header.is-stuck .site-nav .btn--primary:hover {
  color: var(--accent-text);
  opacity: 1;
}

.site-header.is-stuck .nav-toggle span { background: var(--newsprint); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--newsprint);
}

.logo-mark { width: 2.25rem; height: 2.25rem; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  display: block;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zinc);
  display: block;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--newsprint);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(239, 233, 221, 0.2);
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--newsprint);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.2s, filter 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--accent-text);
  filter: none;
  opacity: 1;
  box-shadow: 0 6px 24px rgba(92, 99, 112, 0.28);
}

.btn--secondary {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}

.btn--secondary:hover {
  opacity: 1;
  box-shadow: 0 0 0 1px currentColor;
}

/* Hero — The First Proof */
.hero-press {
  position: relative;
  min-height: calc(100svh - var(--cookie-h));
  display: flex;
  flex-direction: column;
}

.hero-press__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-press__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-press__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.55) 0%, rgba(6, 6, 8, 0.78) 55%, rgba(6, 6, 8, 0.94) 100%),
    linear-gradient(135deg, rgba(6, 6, 8, 0.92) 0%, rgba(6, 6, 8, 0.45) 50%, rgba(6, 6, 8, 0.82) 100%);
  z-index: 1;
}

.hero-press__sheen {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 76, 122, 0.08));
  z-index: 2;
  pointer-events: none;
}

.hero-press__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: calc(var(--header-h) + 1.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-press__topbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-press__topbar .mono-label {
  color: var(--text-soft);
}

.hero-press__stage {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 34%);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  margin-top: auto;
}

.hero-press__panel {
  background: rgba(6, 6, 8, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--edge-strong);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(244, 239, 230, 0.07);
}

.hero-press__aside {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--edge-strong);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  max-height: min(520px, 55vh);
  align-self: end;
}

.hero-press__aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-press__content {
  position: relative;
  padding-left: 2.5rem;
}

.hero-press__content .reg-mark {
  position: absolute;
  left: 0;
  top: 0.35rem;
}

.hero-press__content h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.375rem);
  line-height: 1.12;
  color: var(--newsprint);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-press__content h1 em {
  font-style: normal;
  color: var(--magenta-soft);
}

.hero-press__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.hero-press__run-strip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--zinc);
  padding: 0.875rem 0;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  margin-bottom: 1.75rem;
}

.hero-press__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-press__trust {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--zinc);
  padding-top: 1rem;
  border-top: 1px solid var(--edge);
  margin-bottom: 0;
}

/* Proof cards */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--edge);
  border: 1px solid var(--edge-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.proof-card {
  padding: 0;
  position: relative;
  background: var(--card);
  display: flex;
  flex-direction: column;
  transition: background 0.25s, box-shadow 0.25s;
}

.proof-card:hover {
  background: var(--card-elevated);
  box-shadow: inset 0 0 0 1px rgba(240, 76, 122, 0.18);
}

.proof-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--edge);
}

.proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.proof-card:hover .proof-card__media img {
  transform: scale(1.04);
}

.proof-card__body {
  padding: 1.75rem 2rem 2rem;
}

.proof-card .reg-mark { margin-bottom: 1.25rem; }

.proof-card h3 {
  font-size: 1.125rem;
  color: var(--newsprint);
}

.proof-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Press rail */
.press-rail__num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--magenta);
  letter-spacing: 0.1em;
  padding-top: 0.25rem;
}

.press-rail__body h3 { margin-bottom: 0.5rem; }

.press-rail__body p {
  color: var(--text-muted);
}

.press-rail__body p:last-child { margin-bottom: 0; }

/* Press rows — full width capabilities */
.press-row {
  display: grid;
  grid-template-columns: 8rem 7rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--edge);
  position: relative;
  transition: background 0.25s, box-shadow 0.25s;
}

.press-row__thumb {
  width: 7rem;
  height: 5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--edge);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.press-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.press-row:hover .press-row__thumb img {
  transform: scale(1.06);
}

.press-row__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: rgba(240, 76, 122, 0.25);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.press-row__ghost {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 500;
  color: rgba(239, 233, 221, 0.03);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.press-row:hover {
  background: rgba(240, 76, 122, 0.03);
  box-shadow: inset 0 0 0 1px rgba(240, 76, 122, 0.22);
}

.press-row h3 {
  color: var(--newsprint);
}

.press-row .text-muted {
  color: var(--text-muted);
}

/* Two column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split--reverse .split__media { order: 2; }

.frost-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--edge-strong);
  box-shadow: var(--shadow-card);
}

.frost-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.frost-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 6, 8, 0.35) 100%);
  pointer-events: none;
  transition: box-shadow 0.3s;
}

.frost-card:hover::after {
  box-shadow: inset 0 0 0 1px var(--magenta);
}

/* Work cards */
.work-card {
  border: 1px solid var(--edge-strong);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.work-card:hover {
  border-color: rgba(240, 76, 122, 0.28);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.work-card + .work-card { margin-top: 1.5rem; }

.work-card--media {
  display: grid;
  grid-template-columns: minmax(220px, 32%) 1fr;
  gap: 0;
  padding: 0;
}

.work-card__media {
  overflow: hidden;
  min-height: 100%;
  border-right: 1px solid var(--edge);
}

.work-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-card:hover .work-card__media img {
  transform: scale(1.04);
}

.work-card__body {
  padding: 2rem;
}

.work-card h3 {
  color: var(--newsprint);
}

.work-card p {
  color: var(--text-muted);
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--edge); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: inherit;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--magenta);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question::after { content: '−'; }

.faq-answer {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
}

.faq-item:not(.is-open) .faq-answer { display: none; }

/* Forms */
.form-block {
  padding: 2.5rem;
  border-radius: var(--radius);
}

.form-block--dark {
  background: var(--card);
  border: 1px solid var(--edge-strong);
  box-shadow: var(--shadow-card);
  color: var(--newsprint);
}

.form-block--dark > h2 {
  color: var(--newsprint);
}

.form-block--dark > p {
  color: var(--text-muted);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(10, 10, 12, 0.18);
  border-radius: 2px;
  background: #fff;
  color: var(--press);
}

.form-block--dark .form-group label {
  color: var(--newsprint);
}

.form-block--dark .form-group input,
.form-block--dark .form-group select,
.form-block--dark .form-group textarea {
  background: var(--graphite);
  border: 1px solid var(--edge-strong);
  color: var(--newsprint);
}

.form-block--dark .form-group input::placeholder,
.form-block--dark .form-group textarea::placeholder {
  color: var(--text-soft);
}

.form-block--dark .form-group select option {
  background: var(--graphite);
  color: var(--newsprint);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--magenta);
  outline-offset: 1px;
}

.form-block--dark .form-group input:focus,
.form-block--dark .form-group select:focus,
.form-block--dark .form-group textarea:focus {
  outline-color: rgba(244, 239, 230, 0.45);
  border-color: rgba(244, 239, 230, 0.35);
}

.form-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.form-check input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  padding: 0;
  accent-color: var(--magenta);
}

.form-check label {
  display: block;
  flex: 1;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.55;
}

.form-block--dark .form-check label {
  color: var(--text-muted);
}

.form-block--dark .form-check label a {
  color: var(--newsprint);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  border-bottom: 1px solid var(--edge);
  position: relative;
  overflow: hidden;
}

.page-hero--visual {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero--visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 6, 8, 0.94) 0%, rgba(6, 6, 8, 0.82) 55%, rgba(6, 6, 8, 0.72) 100%),
    var(--page-hero-image) center / cover no-repeat;
  z-index: 0;
}

.page-hero--visual .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 48rem;
  color: var(--newsprint);
}

/* Legal prose */
.legal-prose h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-prose h2:first-child { margin-top: 0; }

.legal-prose ul, .legal-prose ol {
  margin: 0 0 1rem 1.25rem;
}

.legal-prose li { margin-bottom: 0.5rem; }

.disclaimer-box {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--magenta);
  background: rgba(240, 76, 122, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.disclaimer-box .split {
  gap: 1.5rem;
}

.disclaimer-box .frost-card img {
  aspect-ratio: 4 / 3;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--edge);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zinc);
  margin-bottom: 0.875rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a { font-size: 0.9375rem; text-decoration: none; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--edge);
  font-size: 0.8125rem;
  color: var(--zinc);
  line-height: 1.6;
}

.footer-bottom p { margin-bottom: 0.75rem; }

.footer-clarifier {
  font-size: 0.75rem;
  color: var(--zinc);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--edge);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 1.25rem;
  background: var(--graphite);
  border-top: 1px solid var(--edge);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
}

.cookie-banner:not(.is-visible) {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 20rem;
  font-size: 0.875rem;
  color: rgba(239, 233, 221, 0.9);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.cookie-customise {
  width: 100%;
  padding-top: 1rem;
  display: none;
}

.cookie-customise.is-open { display: block; }

.cookie-customise label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Reveal — JS only */
.js .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal:not(.is-visible) {
    opacity: 0.001;
    transform: translateY(16px);
  }
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Utility */
.text-zinc { color: var(--zinc); }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1.5rem; }
.text-center { text-align: center; }

h1, h2, h3 {
  color: var(--newsprint);
}

.section h2 {
  color: var(--newsprint);
}

.neighbourhood-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  background: linear-gradient(180deg, var(--graphite) 0%, var(--press) 100%);
  border-top: 1px solid var(--edge);
}

.cta-band h2 {
  max-width: 32rem;
  margin-inline: auto;
}

.service-detail {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--edge);
}

.service-detail:last-child { border-bottom: none; }

.service-card {
  border: 1px solid var(--edge-strong);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  border-color: rgba(244, 239, 230, 0.22);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(244, 239, 230, 0.08);
}

.service-card--media {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  gap: 0;
  padding: 0;
}

.service-card__media {
  overflow: hidden;
  border-right: 1px solid var(--edge);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 2rem;
}

.service-card__body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

.service-card__body p:last-child {
  margin-bottom: 0;
}

.press-rail {
  display: grid;
  grid-template-columns: auto 7rem 1fr;
  gap: 0 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--edge);
  align-items: center;
}

.press-rail__thumb {
  width: 7rem;
  height: 5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--edge);
}

.press-rail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__meta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}

.contact-dl dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zinc);
  margin-top: 1rem;
}

.contact-dl dt:first-child { margin-top: 0; }

.contact-dl dd {
  font-size: 1rem;
  margin-left: 0;
  margin-bottom: 0.25rem;
}

.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page--visual {
  min-height: calc(100svh - var(--header-h));
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(6, 6, 8, 0.88) 100%),
    var(--page-hero-image) center / cover no-repeat;
}

.thanks-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
  .split, .neighbourhood-strip { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .hero-press__stage { grid-template-columns: 1fr; }
  .hero-press__aside { display: none; }
  .press-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .press-row__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .press-row__ghost { display: none; }
  .work-card--media { grid-template-columns: 1fr; }
  .work-card__media { border-right: none; border-bottom: 1px solid var(--edge); }
  .service-card--media { grid-template-columns: 1fr; }
  .service-card__media { border-right: none; border-bottom: 1px solid var(--edge); }
  .press-rail {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .press-rail__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--newsprint);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 8px 32px rgba(10, 10, 12, 0.15);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li { border-bottom: 1px solid rgba(10, 10, 12, 0.08); }
  .site-nav a {
    display: block;
    padding: 0.875rem 0;
    color: var(--press);
  }

  .nav-cta .btn { width: 100%; margin-top: 0.5rem; }

  .hero-press { min-height: auto; }
  .hero-press__inner { min-height: auto; padding-bottom: 2rem; }
  .hero-press__content { padding-left: 2rem; }
  .hero-press__panel { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
