/*
Theme Name: BIT Brand Anarchy
Theme URI: https://bitbrandanarchy.com/
Author: BIT Brand Anarchy
Author URI: https://bitbrandanarchy.com/
Description: A brutalist, punk-professional WordPress theme for SEO, AI search, and website builds.
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.1
Text Domain: bit-brand-anarchy
*/

:root {
  --ink: #090909;
  --paper: #f4f0e8;
  --paper-2: #e9e2d0;
  --bone: #fffdf4;
  --white: #ffffff;
  --red: #e11919;
  --yellow: #f8e71c;
  --blue: #17a8ff;
  --green: #14d878;
  --pink: #ff2d95;
  --acid: #c8ff00;
  --muted: #5f594f;
  --line: 3px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --max: 1240px;
  --font-body: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 13px 11px, rgba(9, 9, 9, 0.045) 0 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px, 22px 22px, 22px 22px;
  font-family: var(--font-body);
  line-height: 1.45;
}

body,
.site-header,
.page-hero,
.section,
.site-footer {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  border-bottom: var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.site-header__inner,
.site-footer__inner,
.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.72rem);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-brand__mark {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}

.site-brand__lockup {
  display: block;
  flex: 0 0 auto;
  width: min(224px, 58vw);
  height: auto;
}

.site-menu-toggle {
  display: none;
  min-height: 44px;
  border: 2px solid var(--ink);
  padding: 0 16px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

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

.site-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu__item {
  position: relative;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
}

.nav-dropdown__trigger::after {
  content: " +";
  color: var(--red);
}

.nav-dropdown__trigger {
  border-left: 7px solid var(--red);
}

.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  content: " -";
}

.site-nav a,
.button,
.wp-block-button__link,
.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.site-nav a:hover,
.button:hover,
.wp-block-button__link:hover,
.site-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--yellow);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--acid);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1001;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  gap: 8px;
  padding: 12px;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 130ms ease, transform 130ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 24px;
  width: 22px;
  height: 22px;
  border-top: var(--line);
  border-left: var(--line);
  background: var(--white);
  transform: rotate(45deg);
}

.nav-dropdown__menu a {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: flex-start;
  box-shadow: 3px 3px 0 var(--ink);
}

.site-cta {
  color: var(--acid);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  white-space: nowrap;
}

.site-cta:hover,
.site-cta:focus-visible {
  color: var(--acid);
  background: var(--ink);
  box-shadow: 2px 2px 0 var(--red);
}

.button--red {
  color: var(--bone);
  background: var(--pink);
}

.button--dark {
  color: var(--bone);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.button--red:hover,
.button--red:focus-visible,
.site-footer .button--red:hover,
.site-footer .button--red:focus-visible,
.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.button--hero-secondary {
  border-color: var(--bone);
  color: var(--bone);
  background: transparent;
  box-shadow: 4px 4px 0 var(--pink);
}

.button--hero-secondary:hover,
.button--hero-secondary:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--pink);
}

.button--wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--line);
  background:
    linear-gradient(90deg, rgba(248, 231, 28, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(248, 231, 28, 0.055) 1px, transparent 1px),
    var(--ink);
  background-size: 36px 36px;
  color: var(--bone);
}

.hero::before {
  content: "NOT\A DEAD";
  position: absolute;
  right: min(5vw, 68px);
  top: 74px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(76px, 8vw, 128px);
  aspect-ratio: 1;
  border: 8px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  opacity: 0.9;
  pointer-events: none;
  text-transform: uppercase;
  white-space: pre;
  transform: rotate(-13deg);
}

.hero::after,
.ripped-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  background: repeating-linear-gradient(-45deg, var(--yellow), var(--yellow) 10px, var(--ink) 10px, var(--ink) 20px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  min-height: min(720px, calc(100svh - 76px - 84px));
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px) clamp(16px, 4vw, 64px);
}

.hero__copy::after {
  content: "we map the business before the website";
  width: fit-content;
  margin-top: 18px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(1.4deg);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 2px solid currentColor;
  background: var(--pink);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--yellow);
  transform: rotate(-1.5deg);
}

.eyebrow--ticket {
  border-style: dashed;
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--red);
  transform: rotate(-1deg);
}

.hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.4rem, 8.4vw, 7.25rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 .slash,
.page-hero h1 .slash {
  display: block;
  color: var(--red);
  text-shadow: 5px 5px 0 var(--yellow), 9px 9px 0 var(--pink);
}

.hero__lede,
.page-hero__lede {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 800;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero__media {
  position: relative;
  z-index: 0;
  min-height: clamp(390px, calc(100svh - 210px), 610px);
  background-image: image-set(
    url("assets/seo-not-dead-acid-poster.webp") type("image/webp"),
    url("assets/seo-not-dead-acid-poster.png") type("image/png")
  );
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-left: var(--line);
  filter: contrast(1.08) saturate(1.18);
}

.tour-poster {
  align-self: center;
  justify-self: center;
  width: min(86%, 570px);
  margin: clamp(30px, 5vw, 64px);
  padding: clamp(22px, 4vw, 40px);
  border: 4px solid var(--ink);
  outline: 3px solid var(--bone);
  background:
    linear-gradient(135deg, transparent 0 7%, rgba(255, 255, 255, 0.32) 7% 9%, transparent 9%),
    radial-gradient(circle at 18% 18%, rgba(229, 27, 35, 0.32), transparent 22%),
    repeating-linear-gradient(0deg, rgba(9, 9, 9, 0.08) 0 1px, transparent 1px 5px),
    var(--yellow);
  color: var(--ink);
  box-shadow: 16px 16px 0 var(--red), -10px -10px 0 var(--blue);
  transform: rotate(1.7deg);
}

.tour-poster__date,
.tour-poster__venue,
.tour-poster__fine {
  margin: 0;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.tour-poster__date {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  background: var(--bone);
  box-shadow: 4px 4px 0 var(--ink);
}

.tour-poster__venue {
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
}

.tour-poster h2 {
  margin: 12px 0;
  font-size: clamp(4rem, 9vw, 7.6rem);
  line-height: 0.78;
  text-align: center;
  text-shadow: 4px 4px 0 var(--bone);
}

.tour-poster__lineup {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.tour-poster__lineup li {
  padding: 8px 10px;
  border-block: 2px solid var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.55rem, 3.3vw, 3.25rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.poster-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 74px;
  height: 74px;
  margin: 16px auto 12px;
  padding: 6px;
  border: 3px solid var(--ink);
  background: var(--bone);
}

.poster-qr span {
  background: var(--ink);
}

.poster-qr span:nth-child(2n),
.poster-qr span:nth-child(7),
.poster-qr span:nth-child(13) {
  background: transparent;
}

.tour-poster__fine {
  font-size: clamp(0.74rem, 1.5vw, 0.95rem);
}

.ticker {
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--pink);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: bit-marquee 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  padding: 10px 18px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  text-transform: uppercase;
  white-space: nowrap;
}

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

.section {
  padding: clamp(54px, 8vw, 108px) 0;
  border-bottom: var(--line);
}

.section--dark {
  color: var(--bone);
  background: var(--ink);
}

.section--red {
  color: var(--bone);
  background: var(--red);
}

.section--yellow,
.section--poster {
  background: var(--yellow);
}

.section--yellow {
  background:
    linear-gradient(135deg, rgba(255, 45, 149, 0.18) 0 11%, transparent 11% 100%),
    var(--yellow);
}

.home-process {
  padding: clamp(42px, 5.5vw, 68px) 0;
}

.home-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.home-process__headline {
  display: grid;
  align-content: start;
}

.home-process h2 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 6.6vw, 6.65rem);
}

.home-process__card {
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.home-process__card::before {
  content: "FIT";
  position: absolute;
  top: -18px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 38px;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--bone);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.home-process__card h3 {
  max-width: 13ch;
}

.section--poster {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 9, 9, 0.1) 0 8%, transparent 8% 100%),
    var(--yellow);
}

.section--pricing-plans {
  padding-top: clamp(28px, 4vw, 46px);
}

.section--pricing-plans .section__head {
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.92fr);
  margin-bottom: 24px;
}

.section--pricing-plans .section__head h2 {
  max-width: 860px;
}

.section--poster::before,
.sticker-wall::before {
  content: "BIT BRAND ANARCHY / LIVE IN THE SERPS /";
  position: absolute;
  top: 22px;
  left: -18px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  background: var(--bone);
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section__head > *,
.split > *,
.page-hero .wrap,
.problem-card,
.service-menu-card__title,
.service-menu-card__body {
  min-width: 0;
}

.section__aside {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.section-cta-stack {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.section-cta-stack__lede {
  max-width: 520px;
  margin: 6px 0 0;
  color: var(--bone);
  font-weight: 900;
  line-height: 1.45;
}

h2,
h3,
.card__title {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h3,
.card__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.section__kicker,
.meta {
  margin: 0;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.section--dark .section__kicker,
.section--dark .meta,
.section--red .meta {
  color: var(--paper-2);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid--plans {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: stretch;
}

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

.card,
.post-card,
.price-card,
.team-card {
  position: relative;
  padding: clamp(18px, 2.5vw, 28px);
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.section--yellow .card,
.card--yellow {
  box-shadow: 7px 7px 0 var(--pink);
}

.grid--3 .card:nth-child(2),
.grid--3 .price-card:nth-child(2) {
  transform: rotate(-0.7deg);
}

.grid--3 .card:nth-child(3),
.grid--3 .price-card:nth-child(3) {
  transform: rotate(0.6deg);
}

.sticker-card,
.setlist-card {
  position: relative;
  padding: clamp(18px, 2.5vw, 28px);
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.sticker-card::before,
.setlist-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 22px;
  width: 98px;
  height: 28px;
  border: 2px solid rgba(9, 9, 9, 0.65);
  background: rgba(255, 250, 240, 0.72);
  transform: rotate(-5deg);
}

.sticker-card--tilt {
  transform: rotate(1.4deg);
}

.card--dark {
  color: var(--bone);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--red);
}

.card--yellow {
  background: var(--yellow);
}

.card p,
.post-card p,
.price-card p,
.team-card p {
  margin: 0 0 14px;
}

.about-team {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 19px 18px, rgba(9, 9, 9, 0.055) 0 1px, transparent 1px),
    var(--paper);
}

.about-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(42vw, 520px);
  height: min(24vw, 260px);
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-team .wrap {
  position: relative;
  z-index: 1;
}

.about-team .team-card {
  box-shadow: 7px 7px 0 var(--yellow);
}

.team-card__portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 18px;
  border: var(--line);
  object-fit: cover;
  box-shadow: 5px 5px 0 var(--ink);
}

.team-card__portrait-wrap {
  position: relative;
  margin-bottom: 18px;
}

.team-card__portrait-wrap .team-card__portrait {
  margin-bottom: 0;
}

.team-card__linkedin {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  box-shadow: 3px 3px 0 var(--pink);
  text-decoration: none;
}

.team-card__linkedin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.team-card__linkedin:hover,
.team-card__linkedin:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--pink);
}

.about-work__lede {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.work-steps,
.pledge-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card,
.pledge-card,
.fit-card {
  position: relative;
  padding: clamp(20px, 2.8vw, 32px);
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.work-card:nth-child(2) {
  background: rgba(248, 231, 28, 0.42);
}

.work-card:nth-child(3) {
  background: rgba(23, 168, 255, 0.14);
}

.work-card__number {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  margin: 0 0 16px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--pink);
  color: var(--bone);
  font-weight: 900;
}

.work-card p:not(.work-card__number),
.pledge-card p,
.fit-card p {
  margin: 0;
  font-weight: 820;
  line-height: 1.45;
}

.proof-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 850;
  line-height: 1.35;
}

.proof-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--pink);
  font-weight: 900;
}

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

.pledge-card {
  background: var(--paper);
}

.pledge-card--no,
.fit-card:not(.fit-card--good) {
  box-shadow: 7px 7px 0 var(--red);
}

.pledge-card:not(.pledge-card--no) .check-list li::before {
  content: "+";
  color: var(--yellow);
}

.fit-card--good {
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--pink);
}

.selected-work {
  overflow: hidden;
}

.project-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-strip span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--bone);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-0.7deg);
}

.project-strip span:nth-child(2n) {
  background: var(--ink);
  color: var(--bone);
  transform: rotate(0.8deg);
}

.about-close {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.about-close__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.5fr);
  gap: 28px;
  align-items: center;
}

.about-close__copy {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: clamp(20px, 3vw, 32px);
  border: var(--line);
  background: var(--ink);
  color: var(--bone);
  box-shadow: 8px 8px 0 var(--pink);
}

.about-close__copy p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 900;
  line-height: 1.42;
}

.card__number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--bone);
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.tag {
  display: inline-flex;
  padding: 6px 8px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(64px, 9vw, 118px) 0;
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--bone);
}

.single-post .page-hero h1 {
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

.post-hero-meta {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  justify-items: start;
}

.post-hero-meta .meta {
  line-height: 1;
}

.post-author-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 0;
  border: 0;
  background: var(--ink);
  box-shadow: none;
  color: var(--bone);
  text-decoration: none;
}

.post-author-card:hover,
.post-author-card:focus-visible {
  color: var(--yellow);
}

.post-author-card img {
  width: 54px;
  height: 54px;
  border: 2px solid var(--bone);
  border-radius: 50%;
  object-fit: cover;
}

.post-author-card__text {
  display: grid;
  gap: 2px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.post-author-card__name {
  font-size: 0.95rem;
}

.post-author-card__role {
  color: var(--yellow);
  font-size: 0.72rem;
}

.page-hero--pricing {
  padding: clamp(34px, 4.8vw, 64px) 0 clamp(24px, 3.8vw, 46px);
}

.page-hero--pricing h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 7.2vw, 6.7rem);
}

.page-hero--pricing .page-hero__lede {
  max-width: 780px;
  margin-top: 14px;
}

.page-hero--paper {
  background: var(--paper);
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: start;
}

.manifesto {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 900;
}

.value-copy {
  max-width: 460px;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.32;
}

.origin-story {
  background:
    radial-gradient(circle at 19px 18px, rgba(9, 9, 9, 0.055) 0 1px, transparent 1px),
    var(--paper);
}

.origin-story__lede {
  max-width: 490px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 900;
}

.origin-board {
  position: relative;
  display: grid;
  width: min(100%, 1040px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  border: var(--line);
  background:
    linear-gradient(rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    var(--bone);
  background-size: 24px 24px;
  box-shadow: var(--shadow);
}

.origin-board::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 32px;
  width: 118px;
  height: 29px;
  border: 2px solid rgba(9, 9, 9, 0.72);
  background: rgba(255, 45, 149, 0.36);
  transform: rotate(-4deg);
}

.origin-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 2px solid var(--ink);
  background: rgba(255, 253, 244, 0.86);
  box-shadow: 5px 5px 0 var(--ink);
}

.origin-card--final {
  background: var(--ink);
  color: var(--bone);
}

.origin-card__step {
  width: fit-content;
  margin: 0;
  padding: 5px 9px;
  border: 2px solid currentColor;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.origin-card h3 {
  max-width: 340px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.origin-card p:not(.origin-card__step) {
  margin: auto 0 0;
  font-weight: 850;
  line-height: 1.35;
}

.lineup-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr) minmax(260px, 0.45fr);
  gap: 18px;
  align-items: stretch;
}

.lineup-board__stage {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: var(--line);
  background: var(--ink);
  color: var(--bone);
  box-shadow: 9px 9px 0 var(--red);
}

.lineup-board__stage--side {
  background: var(--bone);
  color: var(--ink);
  box-shadow: 9px 9px 0 var(--blue);
}

.lineup-board__stage ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lineup-board__stage li {
  border-top: 2px solid currentColor;
  padding-top: 9px;
}

.lineup-board__stage a {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 0.83;
  text-decoration: none;
  text-transform: uppercase;
}

.lineup-board__stage--side a {
  font-size: clamp(1.55rem, 3vw, 3rem);
}

.lineup-board__stage a:hover {
  color: var(--yellow);
}

.lineup-board__stage--side a:hover {
  color: var(--red);
}

.price-card__price {
  margin: 18px 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

.grid--plans .price-card__price {
  font-size: clamp(1.65rem, 2.2vw, 2.6rem);
  white-space: nowrap;
}

.price-card__term {
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 2px solid rgba(9, 9, 9, 0.18);
  font-weight: 800;
}

.price-card__best-for {
  min-height: 44px;
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.price-card__intro {
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card__badge {
  position: absolute;
  top: -18px;
  right: 16px;
  display: inline-block;
  margin: 0;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--bone);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--pink);
  transform: rotate(1deg);
}

.price-card--featured {
  transform: rotate(-0.5deg);
}

.pricing-lanes {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.pricing-lane {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 2.6vw, 30px);
  border: var(--line);
  background:
    radial-gradient(circle at 18px 18px, rgba(9, 9, 9, 0.055) 0 1px, transparent 1px),
    var(--paper);
  box-shadow: var(--shadow);
}

.pricing-lane--active {
  background:
    linear-gradient(135deg, rgba(248, 231, 28, 0.22) 0 9%, transparent 9% 100%),
    var(--ink);
  color: var(--bone);
}

.pricing-lane--active .section__kicker,
.pricing-lane--active .meta {
  color: var(--yellow);
}

.pricing-lane--active .price-card {
  color: var(--ink);
}

.pricing-lane__head {
  display: grid;
  max-width: 920px;
  gap: 10px;
}

.pricing-lane__head h3 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
}

.pricing-lane__head p:not(.section__kicker) {
  max-width: 720px;
  margin: 0;
  font-weight: 900;
  line-height: 1.42;
}

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

.custom-growth-card,
.pricing-warning {
  padding: clamp(18px, 2.4vw, 28px);
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--pink);
}

.custom-growth-card {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.custom-growth-card h3 {
  margin: 0;
}

.custom-growth-card p:not(.meta),
.pricing-warning p {
  margin: 0;
  font-weight: 900;
  line-height: 1.45;
}

.pricing-warning {
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--red);
}

.price-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.check-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
}

.price-card li::before,
.check-list li::before {
  content: "X";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.pricing-plans__cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: clamp(22px, 3.2vw, 34px);
  text-align: center;
}

.pricing-plans__cta p {
  max-width: 620px;
  margin: 0;
  font-weight: 900;
}

.pricing-plans__cta .button {
  min-width: min(100%, 320px);
}

.setlist-card {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--bone);
  background-size: 100% 40px;
}

.setlist-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.setlist-card li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 2px solid var(--ink);
  font-weight: 900;
}

.setlist-card span {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--bone);
}

.post-card__link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(42px, 7vw, 78px) 0 clamp(34px, 5vw, 58px);
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}

.blog-hero::after {
  content: "SEO'S\A NOT\A DEAD";
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: clamp(44px, 6vw, 74px);
  z-index: 0;
  display: grid;
  place-items: center;
  width: clamp(128px, 15vw, 190px);
  aspect-ratio: 1.35;
  border: 4px solid var(--red);
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    var(--bone);
  background-size: 14px 14px;
  color: var(--red);
  box-shadow: 6px 6px 0 var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
  white-space: pre;
  transform: rotate(6deg);
}

.blog-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.blog-hero__copy {
  min-width: 0;
}

.blog-hero .eyebrow {
  box-shadow: 4px 4px 0 var(--yellow);
}

.blog-hero h1 {
  max-width: 8.5ch;
  color: var(--bone);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  text-shadow: 4px 4px 0 var(--red);
}

.blog-hero .page-hero__lede {
  max-width: 700px;
  margin-top: 16px;
  padding-left: 18px;
  border-left: 8px solid var(--yellow);
  color: var(--bone);
  background: transparent;
}

.blog-hero__rail {
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--pink);
  padding: clamp(18px, 2.4vw, 26px);
}

.blog-hero__rail p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.12;
}

.blog-hero__rail ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.blog-hero__rail li {
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 7px 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-hero__rail li:nth-child(even) {
  background: var(--acid);
}

.blog-rack {
  position: relative;
  background:
    linear-gradient(135deg, rgba(225, 25, 25, 0.1) 0 12%, transparent 12% 100%),
    var(--bone);
}

.blog-rack__head {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: var(--line);
}

.blog-rack__head p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 900;
}

.blog-grid {
  align-items: stretch;
  gap: clamp(18px, 2vw, 26px);
}

.blog-grid .post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--bone) 0 0) padding-box,
    repeating-linear-gradient(-45deg, var(--ink) 0 6px, var(--yellow) 6px 12px) border-box;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.blog-grid .post-card__ribbon {
  position: absolute;
  top: 13px;
  right: -39px;
  width: 138px;
  padding: 6px 8px;
  border-block: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(34deg);
}

.blog-grid .post-card:hover,
.blog-grid .post-card:focus-within {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.blog-grid .post-card .meta {
  margin-bottom: 18px;
  padding-right: 54px;
  font-size: 0.8rem;
}

.blog-grid .post-card p:not(.meta) {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.blog-grid .post-card__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  text-decoration: none;
}

.blog-grid .post-card__link::after {
  content: " ->";
  color: var(--red);
}

.blog-grid .card__title a,
.blog-grid .post-card__link {
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.blog-grid .card__title {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 0.96;
  text-wrap: balance;
}

.blog-grid .card__title a {
  text-decoration: none;
}

.blog-grid .card__title a:hover,
.blog-grid .card__title a:focus-visible {
  text-decoration: underline;
}

.blog-grid .post-card--featured {
  grid-column: span 2;
  min-height: 360px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(248, 231, 28, 0.88) 0 34%, rgba(255, 253, 244, 0.94) 34% 100%),
    var(--yellow);
  box-shadow: 10px 10px 0 var(--red);
}

.blog-grid .post-card--featured .post-card__ribbon {
  top: 20px;
  right: -34px;
  background: var(--red);
  color: var(--bone);
}

.blog-grid .post-card--featured .card__title {
  max-width: 11ch;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}

.blog-grid .post-card--featured p:not(.meta) {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.content {
  width: min(calc(100% - 32px), 820px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) 0;
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.12vw, 1.18rem);
  line-height: 1.68;
}

.content > *:first-child {
  margin-top: 0;
}

.content p,
.content li {
  line-height: 1.68;
}

.content p {
  margin: 0 0 1.15em;
}

.content .article-lede {
  margin-bottom: clamp(22px, 3vw, 34px);
  padding-left: clamp(16px, 2vw, 22px);
  border-left: 6px solid var(--red);
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 800;
  line-height: 1.34;
}

.content ul,
.content ol {
  margin-top: 0.75em;
  margin-bottom: 1.35em;
}

.content h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.content h2 + p,
.content h3 + p,
.content h2 + ul,
.content h3 + ul,
.content h2 + ol,
.content h3 + ol {
  margin-top: 0.45em;
}

.content p:has(> .button) {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.author-bio-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  margin-top: clamp(42px, 5vw, 72px);
  padding: clamp(20px, 3vw, 30px);
  border-block: var(--line);
  background: rgba(255, 253, 244, 0.52);
}

.author-bio-card img {
  width: clamp(76px, 8vw, 96px);
  height: clamp(76px, 8vw, 96px);
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.author-bio-card__body {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.author-bio-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.author-bio-card p {
  margin: 0;
}

.author-bio-card__role {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.author-bio-card .post-card__link {
  margin-top: 8px;
  padding-top: 10px;
}

.author-hero {
  padding-block: clamp(46px, 7vw, 92px);
}

.author-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.author-hero__copy {
  min-width: 0;
}

.author-hero h1 {
  max-width: 8ch;
}

.author-portrait-card {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  margin: 0;
  padding: 14px;
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.author-portrait-card::before {
  content: "HEAD STRATEGIST";
  position: absolute;
  top: -18px;
  right: 16px;
  z-index: 1;
  border: 2px solid var(--ink);
  padding: 4px 8px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.author-portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.15;
  border: 2px solid var(--ink);
  object-fit: cover;
  object-position: center;
}

.author-portrait-card figcaption {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.author-portrait-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.author-portrait-card span {
  color: var(--muted);
  font-weight: 900;
}

.author-profile-section {
  padding-block: clamp(42px, 6vw, 76px);
}

.author-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.author-profile-card,
.author-about-card,
.author-topic-card {
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.author-profile-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
}

.author-profile-card h2 {
  max-width: 9ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.author-profile-card p,
.author-profile-copy p,
.author-about-card__copy p,
.author-topic-card p {
  margin: 0;
  font-weight: 900;
}

.author-profile-card > p:not(.section__kicker),
.author-topic-card p {
  color: var(--muted);
}

.author-proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.author-proof-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  font-weight: 900;
}

.author-proof-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.58em;
  background: var(--red);
}

.author-profile-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.author-quote-card {
  padding: clamp(18px, 3vw, 30px);
  border: var(--line);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--red);
}

.author-quote-card p {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.author-about-section {
  background: var(--paper);
}

.author-about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  padding: clamp(22px, 4vw, 42px);
}

.author-about-card__headline h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.author-about-card__copy {
  display: grid;
  gap: 16px;
}

.author-personal-card {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--red);
}

.author-personal-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.author-personal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.author-personal-card li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  font-weight: 900;
}

.author-personal-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.58em;
  background: var(--ink);
}

.author-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.author-topic-card {
  padding: clamp(18px, 2.5vw, 28px);
}

.author-topic-card:nth-child(2) {
  box-shadow: 7px 7px 0 var(--pink);
}

.author-topic-card:nth-child(3) {
  box-shadow: 7px 7px 0 var(--blue);
}

.author-topic-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.author-topic-card p {
  margin-top: 12px;
}

.author-posts-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.read-more-section {
  margin-top: clamp(46px, 6vw, 82px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: var(--line);
}

.read-more-section__head {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(18px, 2.8vw, 28px);
}

.read-more-section__head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.read-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.read-more-grid .post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  box-shadow: 5px 5px 0 var(--ink);
}

.read-more-grid .post-card .meta {
  margin-bottom: 12px;
  font-size: 0.76rem;
}

.read-more-grid .card__title {
  font-size: clamp(1.35rem, 1.9vw, 1.95rem);
}

.read-more-grid .post-card p:not(.meta) {
  flex: 1 1 auto;
  font-size: 0.94rem;
  line-height: 1.42;
}

.read-more-grid .post-card__link {
  width: fit-content;
  margin-top: auto;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: var(--line);
  background: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.service-list a::after {
  content: ">";
  color: var(--red);
}

.service-list a:hover {
  background: var(--yellow);
}

.services-catalog {
  align-items: stretch;
}

.section--service-catalog {
  background: var(--yellow);
  padding-top: clamp(24px, 3vw, 38px);
}

.section--service-menu {
  padding-block: clamp(38px, 5vw, 72px);
  color: var(--ink);
  background: #fff;
}

.section--service-menu .section__kicker {
  color: var(--red);
}

.section--service-catalog .section__head {
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.section--service-catalog .section__head h2 {
  max-width: 520px;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  line-height: 1;
}

.section--service-catalog .manifesto {
  max-width: 420px;
  margin: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.35;
}

.service-card {
  scroll-margin-top: 110px;
}

.problem-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(16px, 2vw, 22px);
}

.problem-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 0.98;
}

.problem-card > p:not(.meta) {
  margin: 0;
  font-weight: 700;
}

.problem-card__services {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
}

.problem-card__services p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-card__services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-card__services a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 7px 9px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow: 3px 3px 0 var(--ink);
}

.problem-card__services a::after {
  content: "↓";
  color: var(--red);
  font-weight: 900;
}

.problem-card__services a:hover {
  background: var(--yellow);
}

.service-menu {
  margin-top: 0;
}

.service-menu__head {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(9, 9, 9, 0.55);
}

.service-menu__head h2 {
  max-width: 620px;
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  line-height: 1;
}

.service-menu__grid {
  display: grid;
  gap: 0;
}

.service-menu-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: 16px;
  padding: clamp(14px, 1.8vw, 20px) 0;
  border-bottom: 1px solid rgba(9, 9, 9, 0.28);
  scroll-margin-top: 110px;
  transition: background 180ms ease, outline 180ms ease, padding 180ms ease;
}

.service-menu-card:target {
  padding-right: 14px;
  padding-left: 14px;
  border-left: 6px solid var(--red);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(9, 9, 9, 0.1);
}

.service-menu-card:target h3 {
  color: var(--red);
}

.service-menu-card__title {
  align-self: start;
}

.service-menu-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.55vw, 1.6rem);
  line-height: 1;
}

.service-menu-card__body p {
  margin: 0;
  max-width: 760px;
  font-weight: 700;
}

.services-catalog .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.service-card .check-list {
  margin-top: 16px;
}

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

.faq-item {
  padding: 20px;
  border: var(--line);
  background: var(--bone);
  color: var(--ink);
}

.faq-item h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
}

.portfolio-shot {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 14px;
  margin-bottom: 18px;
  border: var(--line);
  background:
    radial-gradient(circle at 18px 18px, rgba(9, 9, 9, 0.14) 0 2px, transparent 2px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--bone) 0%, var(--paper) 58%, rgba(255, 45, 149, 0.32) 100%);
  background-size: 36px 36px, 28px 28px, 28px 28px, auto;
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
  padding: 18px;
  position: relative;
  text-transform: uppercase;
}

.portfolio-shot::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  height: 86px;
  border: 3px solid var(--ink);
  background:
    linear-gradient(var(--ink), var(--ink)) 18px 20px / calc(100% - 36px) 6px no-repeat,
    linear-gradient(var(--pink), var(--pink)) 18px 44px / 42% 12px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 18px 64px / 68% 10px no-repeat,
    var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.portfolio-shot::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 32px;
  width: 38px;
  height: 38px;
  border: 3px solid var(--ink);
  background: var(--yellow);
}

.sticker-wall {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12px 12px, rgba(9, 9, 9, 0.1) 0 2px, transparent 2px),
    var(--paper);
  background-size: 32px 32px;
}

.sticker-sheet {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.sticker-badge {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: clamp(20px, 4vw, 38px);
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.sticker-badge--big {
  border-radius: 22px;
  background: var(--red);
  color: var(--bone);
  box-shadow: 12px 12px 0 var(--ink);
}

.sticker-badge--blue {
  background: var(--blue);
  transform: rotate(2deg);
}

.sticker-badge span {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 5vw, 5.4rem);
  line-height: 0.82;
}

.sticker-badge strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.04em;
}

.portfolio-shot--yellow {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--bone) 0%, rgba(248, 231, 28, 0.72) 68%, rgba(255, 45, 149, 0.34) 100%);
  background-size: 28px 28px, 28px 28px, auto;
}

.portfolio-shot--yellow::before {
  background:
    linear-gradient(var(--ink), var(--ink)) 18px 20px / calc(100% - 36px) 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 18px 44px / 50% 12px no-repeat,
    linear-gradient(var(--red), var(--red)) 18px 64px / 72% 10px no-repeat,
    var(--paper);
}

.portfolio-shot--yellow::after {
  background: var(--pink);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: var(--line);
  background: var(--bone);
  box-shadow: var(--shadow);
}

.contact-panel__intro {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.contact-panel__intro h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
}

.contact-panel__intro p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.contact-panel__notice {
  margin: 0;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-weight: 900;
}

.contact-panel__notice--success {
  background: var(--yellow);
}

.contact-panel__notice--error {
  background: var(--pink);
}

.contact-panel__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-panel label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel input,
.contact-panel textarea,
.contact-panel select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.contact-panel textarea {
  min-height: 140px;
}

.contact-email-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  border: var(--line);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.contact-email-list__title {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-email-list .contact-email-card {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 2px solid var(--ink);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
}

.contact-email-list .contact-email-card strong,
.contact-email-list .contact-email-card em {
  font-weight: 900;
  font-style: normal;
  text-decoration: none;
}

.contact-email-list .contact-email-card strong {
  display: inline-flex;
  width: fit-content;
  padding: 2px 6px;
  background: var(--ink);
  color: var(--bone);
  text-transform: uppercase;
}

.contact-email-list .contact-email-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-email-list .contact-email-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 3px;
  padding: 3px 7px;
  background: var(--pink);
  color: var(--bone);
  overflow-wrap: anywhere;
}

.contact-email-list .contact-email-card:hover,
.contact-email-list .contact-email-card:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
  text-decoration: none;
}

.site-footer {
  color: var(--bone);
  background: var(--ink);
}

.site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 2px solid rgba(244, 240, 232, 0.24);
}

.site-footer__cta h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
}

.site-footer__cta p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(180px, 0.75fr) minmax(210px, 0.95fr) minmax(190px, 0.8fr);
  gap: clamp(24px, 3.5vw, 42px);
  padding: clamp(30px, 4.5vw, 52px) 0;
}

.site-footer a {
  color: inherit;
  font-weight: 900;
}

.site-footer .button {
  color: var(--ink);
}

.site-footer .button--red {
  color: var(--bone);
}

.site-footer__brand p,
.site-footer__group p {
  margin: 14px 0 0;
  color: var(--paper-2);
  font-weight: 800;
}

.site-footer__group h3 {
  margin-bottom: 12px;
  color: var(--bone);
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
}

.footer-nav {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-nav a:hover,
.site-footer__bottom a:hover {
  color: var(--yellow);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 28px;
  border-top: 2px solid rgba(244, 240, 232, 0.24);
  color: var(--paper-2);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__bottom a {
  text-decoration: none;
}

.site-footer__social-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--bone);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--pink);
}

.site-footer__social-link svg {
  width: 14px;
  height: 14px;
  color: var(--ink);
  fill: var(--ink);
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--pink);
}

.wp-caption,
.wp-caption-text,
.gallery-caption,
.bypostauthor {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .blog-grid.grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-footer__inner,
  .wrap {
    width: min(calc(100vw - 32px), var(--max));
  }

	  .site-header__inner,
	  .site-footer__inner,
	  .site-footer__cta,
	  .about-close__inner,
	  .section__head,
	  .split,
    .home-process__grid,
    .author-hero__grid,
    .author-profile-grid,
    .author-about-card,
	  .hero__grid {
	    grid-template-columns: 1fr;
	  }

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

  .section--service-catalog .section__head {
    grid-template-columns: 1fr;
  }

  .service-menu-card {
    grid-template-columns: 1fr;
  }

  .service-menu__head {
    grid-template-columns: 1fr;
  }

  .service-menu-card__body {
    grid-column: auto;
  }

  .read-more-grid {
    grid-template-columns: 1fr;
  }

  .author-portrait-card {
    justify-self: start;
    width: min(100%, 460px);
    transform: none;
  }

  .author-topic-grid {
    grid-template-columns: 1fr;
  }

  .service-menu__head h2,
  .service-menu-card h3,
  .page-hero__lede,
  .problem-card > p:not(.meta),
  .service-menu-card__body p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-header__inner {
    padding: 12px 0;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-brand {
    font-size: 1.05rem;
  }

  .site-brand__lockup {
    width: min(224px, 62vw);
  }

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

	  .site-nav,
	  .site-nav .nav-menu {
    max-width: 100%;
	    justify-content: flex-start;
	    flex-wrap: wrap;
	  }

  .site-nav,
  .site-cta {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-header.is-menu-open .site-cta {
    display: inline-flex;
  }

  .site-nav .nav-menu {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu__item {
    min-width: 0;
  }

  .site-nav a,
  .site-cta {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.78rem;
    white-space: normal;
  }

	  .site-cta {
	    width: fit-content;
	  }

  .nav-menu__item,
  .nav-dropdown,
  .nav-dropdown__trigger {
    width: 100%;
  }

	  .site-footer__cta {
	    align-items: start;
	  }

	  .site-footer__actions .button {
	    width: fit-content;
	  }

	  .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    position: static;
    display: grid;
    width: min(100%, 360px);
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    min-height: 0;
  }

  .hero__copy {
    padding-block: 36px 26px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
    line-height: 0.9;
  }

  .hero__lede,
  .page-hero__lede {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .blog-hero {
    padding-block: 42px 46px;
  }

  .blog-hero::after {
    right: 20px;
    top: 34px;
    width: 112px;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--yellow);
    font-size: 1.45rem;
    opacity: 0.92;
  }

  .blog-hero .page-hero__lede {
    max-width: 36rem;
  }

  .blog-rack__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-grid.grid--3 {
    grid-template-columns: 1fr;
  }

  .blog-grid .post-card--featured {
    grid-column: auto;
  }

  .blog-grid .post-card--featured .card__title {
    max-width: 13ch;
    font-size: clamp(2.55rem, 10vw, 4.7rem);
  }

  .hero__media {
    min-height: clamp(300px, 58vh, 430px);
    background-position: center;
    background-size: contain;
    background-image: image-set(
      url("assets/seo-not-dead-acid-poster.webp") type("image/webp"),
      url("assets/seo-not-dead-acid-poster.png") type("image/png")
    );
    border-left: 0;
    border-top: var(--line);
  }

	  .grid--3,
	  .grid--plans,
	  .grid--2,
	  .work-steps,
	  .pledge-grid,
	  .about-pledge .pledge-grid,
	  .fit-grid,
	  .grid--plans-compact,
	  .custom-growth-card {
	    grid-template-columns: 1fr;
	  }

  .section--pricing-plans .section__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .section--pricing-plans .section__head h2 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 5rem);
    line-height: 0.9;
  }

  .services-catalog .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .price-card__badge {
    top: 14px;
    right: 14px;
    font-size: 0.72rem;
  }

  .price-card--featured .meta {
    padding-right: 132px;
  }

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

}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero__grid {
    position: relative;
    overflow: visible;
  }

  .hero__copy {
    min-height: 0;
    justify-content: flex-start;
    padding-block: 36px 24px;
  }

	  .site-nav a,
	  .button,
	  .wp-block-button__link,
	  .site-cta {
	    min-height: 44px;
	    padding: 8px 10px;
	    font-size: 0.82rem;
	  }

	  .site-footer__actions {
	    display: grid;
	  }

	  .site-footer__actions .button {
	    width: 100%;
	  }

	  .site-footer__bottom {
	    align-items: flex-start;
	    flex-direction: column;
	  }

	  .hero h1,
  .page-hero h1 {
	    font-size: clamp(2.65rem, 12vw, 3.15rem);
	    line-height: 0.88;
    max-width: 11ch;
    overflow-wrap: normal;
	  }

  .single-post .page-hero h1 {
    margin-bottom: 18px;
  }

  .post-author-card {
    padding-right: 12px;
  }

  .post-author-card img {
    width: 48px;
    height: 48px;
  }

  .author-bio-card {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .author-hero {
    padding-block: 36px 46px;
  }

  .author-hero h1 {
    max-width: 8ch;
  }

  .author-portrait-card {
    padding: 10px;
  }

  .author-portrait-card strong {
    font-size: clamp(1.65rem, 10vw, 2.35rem);
  }

  .author-profile-card,
  .author-about-card,
  .author-topic-card {
    padding: 18px;
  }

  .author-profile-card h2,
  .author-about-card__headline h2 {
    max-width: 9ch;
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .author-quote-card p {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .blog-hero {
    padding-block: 34px 38px;
  }

  .blog-hero::after {
    top: 28px;
    right: 16px;
    width: 86px;
    font-size: 1.08rem;
    transform: rotate(7deg);
  }

  .blog-hero h1 {
    max-width: 8.5ch;
    font-size: clamp(2.8rem, 12vw, 3.65rem);
    text-shadow: 3px 3px 0 var(--red);
  }

  .blog-hero .page-hero__lede {
    margin-top: 16px;
    padding-left: 12px;
    border-left-width: 5px;
    font-size: 0.96rem;
  }

  .blog-hero__rail {
    padding: 16px;
    box-shadow: 5px 5px 0 var(--pink);
  }

  .blog-hero__rail p {
    font-size: 1.08rem;
  }

  .blog-hero__rail ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 14px;
  }

  .blog-hero__rail li {
    padding: 6px 7px;
    font-size: 0.76rem;
  }

  .blog-rack {
    padding-block: 42px 58px;
  }

  .blog-rack__head {
    margin-bottom: 18px;
  }

  .blog-grid .post-card {
    padding: 18px;
  }

  .blog-grid .post-card__ribbon {
    right: -45px;
  }

  .blog-grid .post-card--featured {
    min-height: 0;
    padding: 20px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .blog-grid .post-card--featured .card__title {
    max-width: 11ch;
    font-size: clamp(2.2rem, 11.5vw, 3rem);
  }

  .section--service-catalog .section__head h2 {
    max-width: 13ch;
    font-size: clamp(1.6rem, 7.8vw, 2rem);
    line-height: 1;
  }

  .problem-card {
    padding: 16px;
  }

  .problem-card h3 {
    font-size: clamp(1.1rem, 6vw, 1.45rem);
  }

  .problem-card__services ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .problem-card__services a {
    width: 100%;
    justify-content: space-between;
    font-size: 0.76rem;
  }

  .section--pricing-plans .section__head h2 {
    font-size: clamp(2.9rem, 12.5vw, 3.45rem);
  }

  .home-process {
    padding: 36px 0 42px;
  }

  .home-process h2 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 13vw, 3.7rem);
  }

  .home-process__grid {
    width: min(calc(100vw - 64px), var(--max));
    gap: 18px;
  }

  .home-process__card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 44px;
  }

  .home-process__card p {
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-process__card::before {
    top: -20px;
    left: 16px;
    width: 62px;
    height: 42px;
    transform: rotate(-2deg);
  }

  .section--yellow .card .button {
    width: 100%;
    max-width: 100%;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .price-card__best-for {
    min-height: 0;
  }

  .hero h1 .slash,
  .page-hero h1 .slash {
    text-shadow: 3px 3px 0 var(--yellow), 6px 6px 0 var(--pink);
  }

  .hero__copy::after {
    display: none;
  }

  .hero__lede {
    max-width: 34ch;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 0;
    width: 100%;
    min-height: clamp(220px, 57vw, 320px);
    border: 0;
    border-top: var(--line);
    opacity: 1;
    background-image: image-set(
      url("assets/seo-not-dead-hero-mobile.webp") type("image/webp"),
      url("assets/seo-not-dead-hero.png") type("image/png")
    );
    background-size: cover;
    background-position: 56% center;
    filter: contrast(1.08) saturate(1.14);
  }

  .card,
  .post-card,
  .price-card,
  .team-card {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .origin-board {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .origin-card {
    min-height: 0;
  }
}

/* Homepage hero visual pass overrides. Keep these late so they win older hero rules. */
.hero::before {
  display: none;
}

.hero .hero__lede {
  margin-top: 14px;
}

.hero .hero__actions {
  margin-top: 16px;
}

.hero .button--hero-secondary {
  min-height: 38px;
  border-color: var(--bone);
  padding: 8px 12px;
  color: var(--bone);
  background: var(--ink);
  font-size: 0.82rem;
  box-shadow: 4px 4px 0 var(--pink);
}

.hero .button--hero-secondary:hover,
.hero .button--hero-secondary:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--pink);
}

.ticker span {
  padding-block: 7px;
  font-size: clamp(1rem, 1.75vw, 1.42rem);
}

@media (min-width: 901px) {
  .hero .hero__media {
    overflow: visible;
    background-image: none;
    opacity: 1;
  }

  .hero .hero__media::after {
    content: "";
    position: absolute;
    inset: clamp(30px, 4vw, 58px) clamp(38px, 5vw, 72px);
    border: 3px solid var(--bone);
    background-image: image-set(
      url("assets/seo-not-dead-acid-poster.webp") type("image/webp"),
      url("assets/seo-not-dead-acid-poster.png") type("image/png")
    );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 10px 10px 0 var(--pink), -7px -7px 0 rgba(248, 231, 28, 0.72);
    transform: rotate(-1.4deg);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero .hero__grid {
    overflow: visible;
  }

  .hero .hero__copy {
    min-height: 0;
    justify-content: flex-start;
    padding-block: 36px 24px;
  }

  .hero .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .hero .hero__actions .button {
    width: 100%;
  }

  .hero .hero__media {
    display: none;
  }
}


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