:root {
  color-scheme: light;
  --bg: #f2f3f1;
  --surface: #ffffff;
  --surface-soft: #e9ebe8;
  --ink: #1c1b1a;
  --muted: #68635f;
  --line: #d7d4d0;
  --red: #c41f25;
  --red-dark: #8f161b;
  --brown: #9c7564;
  --brown-dark: #4a332c;
  --blue: #315864;
  --green: #246c59;
  --paper: #fafaf8;
  --shadow: 0 16px 42px rgba(35, 28, 25, 0.09);
  --radius: 6px;
  --max: 1240px;
}

html.theme-dark {
  color-scheme: dark;
  --bg: #151412;
  --surface: #201e1b;
  --surface-soft: #292622;
  --ink: #f5f1ed;
  --muted: #bdb4ad;
  --line: #423d38;
  --red: #ef474c;
  --red-dark: #ff686c;
  --brown: #c59b88;
  --brown-dark: #2c211d;
  --blue: #86b1bd;
  --green: #69b9a2;
  --paper: #191714;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.journalist-mode {
  --shadow: none;
}

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

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

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--red) 58%, white);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  min-height: 36px;
  color: #fff;
  background: var(--brown-dark);
  font-size: 0.78rem;
}

.utility-inner,
.utility-actions {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 36px;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  margin: 0;
  white-space: nowrap;
}

.utility-inner strong {
  color: #f2c9bb;
}

.utility-actions {
  gap: 4px;
}

.utility-button {
  min-height: 36px;
  padding: 0 11px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
}

.utility-button:hover,
.utility-button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
}

.brand img {
  width: 116px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  padding: 11px 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-press-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  color: white;
  background: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
}

.header-press-link:hover {
  background: var(--red-dark);
}

.menu-toggle {
  min-width: 48px;
  min-height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  font-weight: 800;
}

.home-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 140px);
  width: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  gap: 72px;
  align-items: center;
  padding-block: 76px;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before,
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.15rem;
  font-weight: 750;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions,
.actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
.download-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.download-button:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.button-primary,
.download-primary {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.download-primary:hover {
  color: #fff;
  background: var(--red-dark);
}

.button-arrow::after {
  content: "\2192";
  font-size: 1.1rem;
}

.press-finder {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brown);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.finder-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.finder-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 15%, transparent);
}

.field {
  display: grid;
  gap: 7px;
}

.field + .field {
  margin-top: 13px;
}

.field label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.press-finder .button {
  width: 100%;
  margin-top: 16px;
}

.finder-recent {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.finder-recent a {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.82rem;
}

.finder-recent time {
  color: var(--muted);
}

.finder-recent strong {
  line-height: 1.25;
}

.finder-recent span {
  color: var(--red);
  font-weight: 900;
}

.news-wire {
  color: #fff;
  background: var(--red);
}

.wire-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.wire-label {
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wire-story {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 750;
}

.wire-link {
  font-size: 0.78rem;
  font-weight: 900;
}

.section {
  padding-block: 78px;
}

.section-white {
  background: var(--surface);
}

.section-ink {
  color: #fff;
  background: #252322;
}

.section-brown {
  color: #fff;
  background: var(--brown-dark);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h1,
.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.section-head > div > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

.section-brown .section-head > div > p:not(.eyebrow),
.section-ink .section-head > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.news-index {
  border-top: 1px solid var(--line);
}

.news-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 180px 40px;
  align-items: center;
  gap: 24px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding 160ms ease, background 160ms ease;
}

.news-row:hover {
  padding-inline: 16px;
  background: color-mix(in srgb, var(--red) 4%, var(--surface));
}

.news-row time {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.news-row h3 {
  margin: 0;
  font-size: 1.25rem;
}

.news-row .client-name {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-row .journalist-extra {
  grid-column: 2 / -1;
}

.row-arrow {
  color: var(--red);
  font-size: 1.45rem;
  text-align: right;
}

.news-feature {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--surface);
}

.news-feature img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}

.news-feature p {
  color: var(--muted);
}

.meta-line,
.facts,
.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.chip,
.fact {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 850;
}

.chip-red {
  border-color: color-mix(in srgb, var(--red) 35%, var(--line));
  color: var(--red);
  background: color-mix(in srgb, var(--red) 6%, var(--surface));
}

.dossier-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.dossier-focus h2 {
  max-width: 700px;
  font-size: 3.2rem;
}

.dossier-focus p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
}

.download-stack {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.download-stack a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--brown-dark) 90%, black);
  transition: background 160ms ease, padding 160ms ease;
}

.download-stack a:hover {
  padding-left: 26px;
  background: var(--red);
}

.download-stack strong,
.download-stack span {
  display: block;
}

.download-stack span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.download-stack em {
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-tile {
  min-height: 154px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background 160ms ease, transform 160ms ease;
}

.client-tile:hover {
  z-index: 1;
  background: color-mix(in srgb, var(--brown) 8%, var(--surface));
  transform: translateY(-3px);
}

.client-tile img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.theme-dark .client-tile img,
.theme-dark .client-brand img,
.theme-dark .brand img {
  mix-blend-mode: normal;
  background: white;
}

.client-tile footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.client-tile footer span {
  color: var(--muted);
  font-size: 0.72rem;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
  align-items: start;
}

.agency-mark {
  position: sticky;
  top: 130px;
  padding-top: 24px;
  border-top: 6px solid var(--red);
}

.agency-mark strong {
  display: block;
  color: var(--brown);
  font-size: 5.4rem;
  line-height: 0.95;
}

.agency-mark span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy .lead,
.page-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.55;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 144px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle strong {
  color: var(--red);
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.newsletter-signup h2 {
  margin: 0;
  font-size: 2.8rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.newsletter-form input {
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-form .button {
  color: var(--brown-dark);
  background: white;
}

.form-note {
  min-height: 24px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.page-hero {
  padding-block: 58px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.breadcrumb span[aria-hidden="true"] {
  color: var(--brown);
}

.page-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 50px;
  align-items: end;
}

.page-title-grid h1 {
  margin: 0;
  font-size: 3.6rem;
}

.page-title-grid .page-intro {
  margin: 0;
  padding-left: 22px;
  border-left: 3px solid var(--red);
  color: var(--muted);
}

.filter-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brown);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.7fr));
  gap: 13px;
}

.filters .field + .field {
  margin-top: 0;
}

.results-bar {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.results-bar strong {
  color: var(--ink);
}

.tabs {
  display: flex;
  gap: 4px;
  margin: 36px 0 22px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 46px;
  padding: 10px 15px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
}

.tab-button:hover,
.tab-button.is-active {
  border-bottom-color: var(--red);
  color: var(--ink);
}

.press-list {
  border-top: 1px solid var(--line);
}

.press-item {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) minmax(300px, auto);
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
}

.press-item.hidden,
.client-tile.hidden,
.news-row.hidden {
  display: none;
}

.press-date {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.press-main h3 {
  margin: 7px 0;
}

.press-main p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.press-item .download-actions {
  justify-content: flex-end;
  margin: 0;
}

.download-button {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.75rem;
}

.empty-state {
  display: none;
  padding: 30px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.journalist-extra {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  color: var(--ink);
  background: color-mix(in srgb, var(--blue) 8%, var(--surface));
  font-size: 0.82rem;
}

.journalist-mode .journalist-extra {
  display: block;
}

.journalist-extra p {
  margin: 4px 0 0;
}

.brand-profile {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  background: var(--surface);
}

.client-brand {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 16px;
  border: 1px solid var(--line);
  background: white;
}

.client-brand img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.brand-profile h2 {
  margin-bottom: 10px;
}

.brand-profile p {
  color: var(--muted);
}

.brand-count {
  min-width: 110px;
  color: var(--red);
  text-align: center;
}

.brand-count strong,
.brand-count span {
  display: block;
}

.brand-count strong {
  font-size: 3.2rem;
  line-height: 1;
}

.brand-count span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 58px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 122px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brown);
  border-radius: var(--radius);
  background: var(--surface);
}

.side-panel h2 {
  font-size: 1.35rem;
}

.side-panel p {
  color: var(--muted);
  font-size: 0.88rem;
}

.file-list {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.file-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.file-line strong,
.file-line span {
  display: block;
}

.file-line span,
.file-line em {
  color: var(--muted);
  font-style: normal;
}

.article {
  max-width: 820px;
}

.article h1 {
  margin-top: 20px;
  font-size: 2.65rem;
}

.article .article-title {
  margin-top: 20px;
  font-size: 2.65rem;
}

.article h2 {
  margin-top: 46px;
  font-size: 1.7rem;
}

.article p,
.article li {
  font-size: 1.02rem;
}

.article-lead {
  padding: 20px 0 20px 22px;
  border-left: 4px solid var(--red);
  font-size: 1.15rem !important;
}

.article-image {
  width: 100%;
  max-height: 500px;
  margin: 32px 0;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.agenda-grid,
.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agenda-card,
.service-card,
.contact-card {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.agenda-card time {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-card p,
.service-card p,
.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 2rem;
}

.quote-block {
  margin: 54px 0;
  padding: 42px;
  border-left: 8px solid var(--red);
  color: #fff;
  background: var(--brown-dark);
}

.quote-block blockquote {
  max-width: 900px;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.35;
}

.quote-block cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-style: normal;
}

.trust-list {
  columns: 3;
  column-gap: 40px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  break-inside: avoid;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.newsletter-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.newsletter-model {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.model-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.model-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.model-type {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mail-preview-stage {
  min-height: 680px;
  padding: 28px;
  background: var(--surface-soft);
}

.mail-mini {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid #d8d5d0;
  color: #24211f;
  background: #fff;
}

.mail-mini-top {
  padding: 12px 18px;
  color: #706b67;
  background: #f4f4f2;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  text-align: center;
}

.mail-mini-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 4px solid #c41f25;
}

.mail-mini-brand img {
  width: 88px;
}

.mail-mini-brand span {
  color: #9c7564;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
}

.mail-mini-hero {
  padding: 30px 24px;
  color: #fff;
  background: #4a332c;
}

.mail-mini-hero.red {
  background: #c41f25;
}

.mail-mini-hero p {
  margin: 0 0 8px;
  font-family: Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: bold;
  text-transform: uppercase;
}

.mail-mini-hero h3 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.mail-mini-body {
  padding: 22px;
  font-family: Arial, sans-serif;
}

.mail-mini-body > p {
  color: #665f5a;
  font-size: 0.76rem;
}

.mail-story {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e2de;
}

.mail-story img {
  width: 80px;
  height: 66px;
  object-fit: cover;
}

.mail-story h4 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  line-height: 1.25;
}

.mail-story p {
  margin: 0;
  color: #746d68;
  font-size: 0.68rem;
}

.mail-agenda {
  margin-top: 20px;
  padding: 16px;
  border-left: 4px solid #c41f25;
  background: #f3f3f1;
}

.mail-agenda strong,
.mail-agenda span {
  display: block;
}

.mail-agenda span {
  margin-top: 3px;
  color: #6f6864;
  font-size: 0.68rem;
}

.mail-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 15px;
  color: #fff;
  background: #c41f25;
  font-size: 0.72rem;
  font-weight: bold;
}

.event-date-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  margin: 6px 0 20px;
}

.event-date-number {
  padding: 13px 8px;
  color: #c41f25;
  border: 2px solid #c41f25;
  text-align: center;
}

.event-date-number strong,
.event-date-number span {
  display: block;
}

.event-date-number strong {
  font-size: 2.2rem;
  line-height: 1;
}

.event-date-number span {
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
}

.event-date-copy h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.event-date-copy p {
  margin: 0;
  color: #6f6864;
  font-size: 0.72rem;
}

.model-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.model-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.email-page {
  min-height: 100vh;
  color: #26211f;
  background: #e8e9e7;
  font-family: Arial, Helvetica, sans-serif;
}

.email-preview-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 22px;
  border-bottom: 1px solid #d4d4d1;
  color: #25211f;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.email-preview-toolbar strong {
  font-size: 0.85rem;
}

.email-preview-toolbar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #cfcac6;
  border-radius: 4px;
  background: white;
  font-size: 0.76rem;
  font-weight: bold;
}

.email-canvas {
  width: min(680px, calc(100% - 32px));
  margin: 38px auto 70px;
  border: 1px solid #d7d2ce;
  background: white;
  box-shadow: 0 16px 42px rgba(35, 28, 25, 0.12);
}

.email-preheader {
  padding: 12px 24px;
  color: #706a66;
  background: #f4f4f2;
  font-size: 0.72rem;
  text-align: center;
}

.email-brandbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 34px;
  border-bottom: 5px solid #c41f25;
}

.email-brandbar img {
  width: 118px;
}

.email-brandbar span {
  color: #9c7564;
  font-size: 0.72rem;
  font-weight: bold;
  text-transform: uppercase;
}

.email-banner {
  padding: 46px 42px;
  color: white;
  background: #4a332c;
}

.email-banner.event {
  background: #c41f25;
}

.email-banner p {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.email-banner h1 {
  max-width: 560px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.35rem;
  line-height: 1.1;
}

.email-content {
  padding: 38px 42px;
}

.email-content > p {
  color: #655e59;
  font-size: 0.92rem;
  line-height: 1.6;
}

.email-section-title {
  margin: 34px 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c41f25;
  color: #c41f25;
  font-size: 0.78rem;
  font-weight: bold;
  text-transform: uppercase;
}

.email-story-full {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e2dedb;
}

.email-story-full img {
  width: 138px;
  height: 104px;
  object-fit: cover;
}

.email-story-full h2 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.email-story-full p {
  margin: 0;
  color: #706964;
  font-size: 0.8rem;
  line-height: 1.5;
}

.email-story-full a,
.email-button {
  display: inline-block;
  margin-top: 12px;
  color: #c41f25;
  font-size: 0.76rem;
  font-weight: bold;
}

.email-event-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.email-event-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 16px;
  border-left: 4px solid #c41f25;
  background: #f4f4f2;
}

.email-event-line time {
  color: #c41f25;
  font-size: 0.78rem;
  font-weight: bold;
}

.email-event-line strong,
.email-event-line span {
  display: block;
}

.email-event-line span {
  margin-top: 4px;
  color: #746d68;
  font-size: 0.76rem;
}

.email-button {
  padding: 12px 18px;
  color: white;
  background: #c41f25;
}

.email-event-feature {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
}

.email-date-card {
  padding: 20px 10px;
  border: 3px solid #c41f25;
  color: #c41f25;
  text-align: center;
}

.email-date-card strong,
.email-date-card span {
  display: block;
}

.email-date-card strong {
  font-size: 3.1rem;
  line-height: 1;
}

.email-date-card span {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: bold;
  text-transform: uppercase;
}

.email-event-feature h2 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
}

.email-event-feature p {
  margin: 0;
  color: #6d6560;
  font-size: 0.86rem;
}

.email-program {
  margin: 22px 0;
  border-top: 1px solid #dedad6;
}

.email-program div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #dedad6;
}

.email-program time {
  color: #c41f25;
  font-weight: bold;
}

.email-program span {
  color: #645d58;
}

.email-footer {
  padding: 28px 34px;
  color: #d9cfca;
  background: #4a332c;
  font-size: 0.72rem;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 66px;
}

.contact-details {
  padding-top: 22px;
  border-top: 6px solid var(--red);
}

.contact-details address {
  margin: 30px 0;
  color: var(--muted);
  font-style: normal;
}

.contact-details a {
  color: var(--red);
  font-weight: 800;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .field + .field {
  margin-top: 0;
}

.form-grid .field-full {
  grid-column: 1 / -1;
}

.contact-form .form-note {
  color: var(--green);
}

.site-footer {
  color: #eee7e2;
  background: #252322;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(180px, 0.5fr));
  gap: 48px;
  padding-block: 56px;
}

.footer-brand img {
  width: 120px;
  padding: 7px;
  background: white;
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: #bdb5af;
  font-size: 0.82rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: white;
}

.footer-column a {
  display: block;
  padding: 4px 0;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #44403d;
  color: #9d9690;
  font-size: 0.72rem;
}

@media (max-width: 1080px) {
  .site-nav {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav a::after {
    right: 12px;
    left: 12px;
  }

  .header-press-link {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 38px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .dossier-focus {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .press-item {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .press-item .download-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .newsletter-choice {
    grid-template-columns: 1fr;
  }

  .mail-preview-stage {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .utility-inner > p:nth-of-type(2) {
    display: none;
  }

  .header-press-link {
    display: none;
  }

  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    justify-self: end;
  }

  .home-hero::before {
    display: none;
  }

  .hero-grid,
  .dossier-focus,
  .about-band,
  .newsletter-signup,
  .page-title-grid,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
    padding-block: 58px;
  }

  .press-finder,
  .side-panel,
  .agency-mark {
    position: static;
  }

  .wire-inner {
    grid-template-columns: auto 1fr;
  }

  .wire-link {
    display: none;
  }

  .news-row {
    grid-template-columns: 88px minmax(0, 1fr) 32px;
  }

  .news-row .client-name {
    grid-column: 2;
  }

  .news-row .row-arrow {
    grid-row: 1 / 3;
    grid-column: 3;
  }

  .dossier-focus h2 {
    font-size: 2.5rem;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band {
    gap: 40px;
  }

  .agency-mark strong {
    font-size: 4rem;
  }

  .newsletter-signup {
    gap: 30px;
  }

  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-profile {
    grid-template-columns: 180px 1fr;
  }

  .brand-count {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-align: left;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agenda-grid,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-list {
    columns: 2;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .utility-inner > p {
    display: none;
  }

  .utility-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .utility-button {
    width: 100%;
    min-height: 40px;
  }

  .site-nav {
    min-height: 72px;
  }

  .brand img {
    width: 102px;
  }

  .main-nav {
    top: 72px;
    right: 12px;
    left: 12px;
  }

  .home-hero {
    min-height: auto;
  }

  h1,
  .page-title-grid h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy .lead,
  .page-lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .download-button {
    width: 100%;
  }

  .press-finder {
    padding: 20px;
  }

  .finder-recent a {
    grid-template-columns: 56px 1fr;
  }

  .finder-recent span {
    display: none;
  }

  .wire-inner {
    gap: 12px;
  }

  .wire-label {
    padding-right: 12px;
  }

  .section {
    padding-block: 58px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .section-head .button {
    width: auto;
  }

  .news-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
  }

  .news-feature img {
    height: 175px;
  }

  .news-row {
    min-height: 0;
    grid-template-columns: 1fr 28px;
    gap: 8px 14px;
    padding: 18px 4px;
  }

  .news-row time,
  .news-row .client-name,
  .news-row h3 {
    grid-column: 1;
  }

  .news-row h3 {
    font-size: 1.05rem;
  }

  .news-row .row-arrow {
    grid-row: 1 / 4;
    grid-column: 2;
  }

  .news-row .journalist-extra {
    grid-column: 1 / -1;
  }

  .dossier-focus h2 {
    font-size: 2rem;
  }

  .download-stack a {
    min-height: 76px;
  }

  .client-grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-tile {
    min-height: 135px;
    padding: 12px;
  }

  .client-tile img {
    height: 62px;
  }

  .client-tile footer {
    display: block;
  }

  .client-tile footer span {
    display: block;
    margin-top: 3px;
  }

  .principles,
  .filters,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-signup h2 {
    font-size: 2rem;
  }

  .page-hero {
    padding-block: 36px;
  }

  .page-title-grid {
    gap: 24px;
  }

  .page-title-grid .page-intro {
    padding-left: 14px;
  }

  .filters {
    gap: 12px;
  }

  .press-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .press-item .download-actions {
    grid-column: 1;
  }

  .brand-profile {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }

  .brand-count {
    grid-column: 1;
  }

  .article h1 {
    font-size: 2rem;
  }

  .article .article-title {
    font-size: 2rem;
  }

  .quote-block {
    padding: 28px 22px;
  }

  .quote-block blockquote {
    font-size: 1.35rem;
  }

  .trust-list {
    columns: 1;
  }

  .model-head,
  .model-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mail-preview-stage {
    padding: 12px;
  }

  .mail-mini-hero,
  .mail-mini-body {
    padding: 20px 16px;
  }

  .mail-story {
    grid-template-columns: 64px 1fr;
  }

  .mail-story img {
    width: 64px;
    height: 58px;
  }

  .event-date-block {
    grid-template-columns: 82px 1fr;
  }

  .contact-layout {
    gap: 38px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }

  .email-preview-toolbar {
    padding-inline: 12px;
  }

  .email-canvas {
    width: calc(100% - 16px);
    margin-top: 16px;
  }

  .email-brandbar {
    padding: 18px 20px;
  }

  .email-banner {
    padding: 34px 24px;
  }

  .email-banner h1 {
    font-size: 1.85rem;
  }

  .email-content {
    padding: 28px 22px;
  }

  .email-story-full,
  .email-event-feature {
    grid-template-columns: 1fr;
  }

  .email-story-full img {
    width: 100%;
    height: 180px;
  }

  .email-date-card {
    max-width: 130px;
  }

  .email-event-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
