:root {
  --ink: #15201c;
  --pine: #202424;
  --fern: #4d725a;
  --amber: #ffcc10;
  --paper: #f7f3ea;
  --bone: #fffaf0;
  --line: rgba(21, 32, 28, 0.14);
  --brand-red: #cf1731;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 58% 50%;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 204, 16, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(32, 36, 36, 0.94) 0%, rgba(32, 36, 36, 0.7) 42%, rgba(32, 36, 36, 0.3) 100%),
    linear-gradient(180deg, rgba(32, 36, 36, 0.12) 0%, rgba(32, 36, 36, 0.7) 100%);
}

.hero__content {
  width: min(680px, calc(100% - 40px));
  margin: auto 0 auto clamp(20px, 7vw, 104px);
  padding: 96px 0 116px;
  color: var(--bone);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--fern);
}

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

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6vw, 6.8rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-lockup--hero {
  position: absolute;
  top: 28px;
  left: clamp(20px, 7vw, 104px);
  color: var(--bone);
}

.brand-lockup--hero img {
  filter: invert(1);
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.book-card {
  position: absolute;
  right: clamp(22px, 6vw, 86px);
  bottom: clamp(92px, 13vh, 150px);
  width: min(320px, 28vw);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 8px;
  background: var(--bone);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  color: var(--ink);
}

.book-card img {
  display: block;
  width: 100%;
  height: auto;
}

.book-card__stat {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 204, 16, 0.2), transparent 55%),
    var(--bone);
}

.book-card__stat span {
  display: block;
  color: var(--brand-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.92;
}

.book-card__stat p {
  margin: 8px 0 10px;
  color: var(--pine);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.book-card__stat small {
  display: block;
  color: rgba(21, 32, 28, 0.62);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--pulse {
  animation: cta-pulse 900ms ease-in-out 10s 3;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(32, 36, 36, 0);
    transform: translateY(0) scale(1);
  }

  45% {
    box-shadow: 0 0 0 10px rgba(32, 36, 36, 0.16);
    transform: translateY(-1px) scale(1.035);
  }
}

.button--primary {
  background: var(--amber);
  color: #18130d;
}

.button--dark {
  background: var(--pine);
  color: var(--bone);
}

.button--nav {
  min-height: 42px;
}

.button--secondary {
  border-color: rgba(255, 250, 240, 0.52);
  color: var(--bone);
}

.button--outline-dark {
  border-color: rgba(32, 36, 36, 0.32);
  color: var(--pine);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.services-menu {
  position: relative;
  z-index: 5;
}

.services-menu[open] {
  z-index: 20;
}

.services-menu summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(32, 36, 36, 0.26);
  border-radius: 8px;
  color: var(--pine);
  cursor: pointer;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  list-style: none;
}

.services-menu summary::-webkit-details-marker {
  display: none;
}

.services-menu summary::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.services-menu[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.services-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 270px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 18px 44px rgba(21, 32, 28, 0.16);
}

.services-menu__panel a {
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--pine);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.services-menu__panel a:hover {
  background: rgba(255, 204, 16, 0.18);
  text-decoration: none;
}

.services-menu__parent {
  margin-top: 4px;
}

.services-menu__child {
  width: calc(100% - 12px);
  margin-left: 12px;
  padding-left: 18px !important;
  border-left: 2px solid rgba(32, 36, 36, 0.14);
  color: rgba(32, 36, 36, 0.72) !important;
}

.brand-home {
  min-height: 86vh;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  background:
    radial-gradient(circle at 78% -8%, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(135deg, var(--amber) 0%, #ffd944 58%, #ffcc10 100%);
  color: var(--pine);
  overflow: hidden;
}

.brand-home__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-home__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(86vh - 110px);
  margin: 0 auto;
  padding-top: 54px;
}

.brand-home__copy h1 {
  max-width: 560px;
  color: var(--pine);
  font-size: clamp(3.2rem, 5.7vw, 6.25rem);
  line-height: 1.02;
}

.brand-home__copy h1 span {
  display: block;
  white-space: nowrap;
}

.headline-cycle {
  min-width: 5.6em;
  transition: opacity 180ms ease;
}

.headline-cycle.is-changing {
  opacity: 0;
}

.brand-home__copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(32, 36, 36, 0.78);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.62;
}

.amazon-ads-hero {
  min-height: 82vh;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  background:
    radial-gradient(circle at 86% 6%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe16a 56%, #f7f3ea 100%);
  color: var(--pine);
  overflow: hidden;
}

.amazon-ads-hero__nav {
  margin-bottom: clamp(54px, 8vw, 96px);
}

.amazon-ads-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.amazon-ads-hero__copy h1 {
  max-width: 680px;
  color: var(--pine);
  font-size: clamp(3.1rem, 6.2vw, 7.2rem);
  line-height: 0.92;
}

.amazon-ads-hero__copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(32, 36, 36, 0.78);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.68;
}

.amazon-ads-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(32, 36, 36, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 28px 80px rgba(32, 36, 36, 0.15);
}

.amazon-ads-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 6px solid rgba(32, 36, 36, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.amazon-ads-card__label {
  margin: 0 0 18px;
  color: var(--fern);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.amazon-ads-card h2 {
  max-width: 440px;
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 0.98;
}

.amazon-ads-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.amazon-ads-card li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(32, 36, 36, 0.82);
  font-weight: 750;
  line-height: 1.45;
}

.social-media-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffdf5d 48%, #f7f3ea 100%);
}

.digital-marketing-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffdd52 50%, #f7f3ea 100%);
}

.public-relations-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe47a 48%, #f7f3ea 100%);
}

.seo-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe071 48%, #f7f3ea 100%);
}

.branding-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffdc4b 50%, #f7f3ea 100%);
}

.website-builds-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe58a 48%, #f7f3ea 100%);
}

.email-marketing-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe078 48%, #f7f3ea 100%);
}

.error-page {
  min-height: 82vh;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  background:
    radial-gradient(circle at 86% 6%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe16a 56%, #f7f3ea 100%);
  color: var(--pine);
}

.error-page--restricted {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffe47a 48%, #f7f3ea 100%);
}

.error-page__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.58fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(82vh - 132px);
  margin: 0 auto;
}

.error-page__copy h1 {
  max-width: 780px;
  color: var(--pine);
  font-size: clamp(3.2rem, 6.5vw, 7.4rem);
  line-height: 0.92;
}

.error-page__copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(32, 36, 36, 0.78);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.68;
}

.error-page__card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(32, 36, 36, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 28px 80px rgba(32, 36, 36, 0.15);
}

.error-page__code {
  margin: 0 0 24px;
  color: rgba(207, 23, 49, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.8;
}

.error-page__card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.error-page__card p {
  margin: 0 0 18px;
  color: rgba(32, 36, 36, 0.76);
  line-height: 1.62;
}

.error-page__card a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--pine);
  font-weight: 850;
  text-decoration: none;
}

.error-page__card a:hover {
  text-decoration: underline;
}

.out-of-home-hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, var(--amber) 0%, #ffdf66 48%, #f7f3ea 100%);
}

.out-of-home-hero .amazon-ads-hero__grid {
  position: relative;
}

.out-of-home-hero .amazon-ads-hero__copy,
.out-of-home-hero .amazon-ads-card {
  position: relative;
  z-index: 2;
}

.out-of-home-hero .amazon-ads-card {
  background: var(--bone);
}

.out-of-home-hero .amazon-ads-hero__copy p:not(.eyebrow) {
  color: rgba(32, 36, 36, 0.88);
  font-weight: 600;
}

.ooh-hero-bus {
  position: absolute;
  left: clamp(-120px, -7vw, -48px);
  bottom: clamp(174px, 14vw, 210px);
  z-index: 1;
  width: min(54vw, 680px);
  max-width: none;
  opacity: 0.16;
  filter: saturate(0.92) drop-shadow(0 26px 34px rgba(21, 32, 28, 0.18));
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  pointer-events: none;
}

.eyebrow--home-dark {
  color: rgba(32, 36, 36, 0.72);
}

.definition-poster {
  position: relative;
  min-height: 480px;
  transform: translateY(-42px);
}

.definition-poster__diamond {
  position: absolute;
  inset: 15% 10% auto auto;
  width: min(520px, 72%);
  aspect-ratio: 1;
  border: 8px solid var(--pine);
  transform: rotate(45deg);
}

.definition-poster__card {
  position: relative;
  width: min(470px, 86%);
  margin: 22px auto 0;
  padding: 42px 46px 48px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--pine);
  box-shadow: 0 30px 60px rgba(32, 36, 36, 0.18);
  transform: rotate(4deg);
}

.definition-poster__card p {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.definition-poster__card em {
  font-weight: 400;
}

.definition-poster__card ol {
  display: grid;
  gap: 24px;
  margin: 0;
  padding-left: 1.3em;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.32;
}

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

.home-section--audiences {
  border-top: 1px solid rgba(32, 36, 36, 0.12);
}

.home-section--contrast {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 204, 16, 0.18), transparent 42%),
    #eee6d7;
}

.home-section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 92px;
}

.home-section__inner--split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 0.92fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.home-section__intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.72fr);
  column-gap: clamp(40px, 7vw, 96px);
  row-gap: 18px;
  align-items: center;
}

.home-section__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.home-section__intro h2 {
  grid-column: 1;
}

.home-section__intro p:last-child {
  grid-column: 2;
  max-width: 520px;
  margin: 0;
  color: rgba(21, 32, 28, 0.74);
  font-size: 1.06rem;
  line-height: 1.68;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.audience-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 250, 240, 0.78);
}

.audience-grid h3 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(1.32rem, 2vw, 1.8rem);
  line-height: 1.06;
}

.audience-grid p,
.difference-copy p {
  margin: 0;
  color: rgba(21, 32, 28, 0.75);
  line-height: 1.62;
}

.difference-copy {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.signal-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
}

.signal-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
}

.signal-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.signal-icon__field {
  fill: rgba(255, 204, 16, 0.94);
  stroke: var(--pine);
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.signal-icon__line,
.signal-icon__accent {
  fill: none;
  stroke: var(--fern);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-icon__accent {
  stroke: var(--pine);
}

.signal-icon__accent-fill {
  fill: var(--fern);
}

.signal-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--amber);
  font-weight: 900;
}

.signal-grid p {
  margin: 0;
  color: rgba(21, 32, 28, 0.76);
  line-height: 1.6;
}

.intake-section {
  background:
    linear-gradient(180deg, var(--paper), #efe8d9);
  border-top: 1px solid var(--line);
}

.intake-section__inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 96px;
}

.intake-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.intake-heading p:last-child {
  margin: 0;
  color: rgba(21, 32, 28, 0.74);
  font-size: 1.06rem;
  line-height: 1.68;
}

.intake-form,
.thank-you {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 24px 70px rgba(32, 36, 36, 0.08);
}

.intake-form fieldset {
  margin: 0;
  padding: 0 0 32px;
  border: 0;
}

.intake-form fieldset + fieldset {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.intake-form legend {
  margin-bottom: 20px;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 700;
}

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

.intake-form label,
.choice-group {
  display: grid;
  gap: 8px;
  color: rgba(21, 32, 28, 0.78);
  font-weight: 800;
}

.intake-form label + label,
.intake-form .form-grid + label,
.choice-group + .form-grid,
.choice-group + label {
  margin-top: 18px;
}

.intake-form small {
  color: rgba(21, 32, 28, 0.62);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  border: 1px solid rgba(21, 32, 28, 0.2);
  border-radius: 8px;
  background: #fffdf6;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  line-height: 1.45;
}

.intake-form input,
.intake-form select {
  min-height: 48px;
  padding: 0 14px;
}

.intake-form textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  border-color: var(--pine);
  outline: 3px solid rgba(255, 204, 16, 0.42);
}

.choice-group p {
  margin: 0;
  color: rgba(21, 32, 28, 0.78);
}

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

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(21, 32, 28, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  font-weight: 700;
}

.choice-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--pine);
}

.form-error {
  min-height: 24px;
  margin-bottom: 18px;
  scroll-margin-top: 28px;
  color: var(--brand-red);
  font-weight: 800;
}

.intake-form.was-validated input:invalid,
.intake-form.was-validated textarea:invalid,
.intake-form.was-validated select:invalid {
  border-color: var(--brand-red);
}

.choice-group.is-invalid .choice-grid {
  padding: 10px;
  border: 1px solid var(--brand-red);
  border-radius: 8px;
}

.form-submit {
  width: min(260px, 100%);
  margin-top: 8px;
  background: #2f7d4f;
  color: #fffdf6;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(21, 32, 28, 0.48);
}

.thank-you-modal[hidden] {
  display: none;
}

.thank-you-modal__panel {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.thank-you-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21, 32, 28, 0.16);
  border-radius: 999px;
  background: #fffdf6;
  color: var(--ink);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.thank-you h2 {
  margin-bottom: 18px;
  padding-right: 48px;
}

.thank-you > p {
  max-width: 680px;
  margin: 0;
  color: rgba(21, 32, 28, 0.76);
  font-size: 1.08rem;
  line-height: 1.68;
}

.thank-you__schedule {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.thank-you__schedule h3 {
  margin-bottom: 18px;
}

.intake-page {
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px) 88px;
  background:
    radial-gradient(circle at 86% 5%, rgba(255, 204, 16, 0.32), transparent 26%),
    linear-gradient(180deg, #fff8df 0%, var(--paper) 42%, #eee6d7 100%);
}

.intake-page__nav {
  margin-bottom: 64px;
}

.intake-page__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intake-page__hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.7fr);
  grid-template-areas:
    "eyebrow copy"
    "title copy";
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.intake-page__hero .eyebrow {
  grid-area: eyebrow;
}

.intake-page__hero h1 {
  grid-area: title;
  max-width: 780px;
  color: var(--pine);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 1.06;
}

.intake-page__hero h1 span {
  display: block;
}

.intake-page__hero h1 span + span {
  margin-top: 0.18em;
}

.intake-page__hero > p:last-child {
  grid-area: copy;
  margin: 0;
  color: rgba(32, 36, 36, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.intake-form--cards {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.intake-form--cards fieldset {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(21, 32, 28, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(255, 250, 240, 0.9));
  box-shadow: 0 20px 54px rgba(32, 36, 36, 0.07);
}

.intake-form--cards fieldset + fieldset {
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(21, 32, 28, 0.12);
}

.intake-form--cards legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.intake-form--cards legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--pine);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.intake-form--cards .choice-grid label {
  background: #fffdf6;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.intake-form--cards .choice-grid label:has(input:checked) {
  border-color: var(--pine);
  background: rgba(255, 204, 16, 0.18);
}

.intake-form--cards .choice-grid label:hover {
  transform: translateY(-1px);
}

.intake-form--cards .choice-group + .form-grid {
  margin-top: 28px;
}

.intake-form--cards .form-submit {
  justify-self: start;
  margin-top: 8px;
}

.thank-you--cards {
  margin-top: 18px;
  border: 1px solid rgba(21, 32, 28, 0.12);
  background: #fffdf6;
  box-shadow: 0 20px 54px rgba(32, 36, 36, 0.07);
}

.thank-you-modal__panel.thank-you--cards {
  margin-top: 0;
}

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

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.8fr);
  gap: clamp(34px, 6vw, 88px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 48px;
  text-align: left;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.96;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.site-footer__nav h2 {
  margin: 0 0 12px;
  color: rgba(255, 250, 240, 0.58);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0;
  color: var(--bone);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer__name {
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__temp {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.88rem;
}

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

.page-hero {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 204, 16, 0.24), transparent 25%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 243, 234, 0.9)),
    url("./../images/hero-reading-connection.webp");
  background-position: center;
  background-size: cover;
}

.page-hero__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 86px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 92px;
  color: var(--pine);
  font-size: 0.86rem;
  font-weight: 900;
}

.topline a {
  text-decoration: none;
}

.topline a:hover {
  text-decoration: underline;
}

.book-note {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 54px;
  max-width: 820px;
  padding: 26px 28px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.book-note__cover {
  display: block;
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(21, 32, 28, 0.18);
}

.book-note__copy {
  min-width: 0;
}

.book-note .eyebrow {
  margin-bottom: 12px;
}

.book-note p:last-child {
  margin: 0;
  color: rgba(21, 32, 28, 0.78);
  font-size: 1.05rem;
  line-height: 1.68;
}

.listing-snapshot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.listing-snapshot span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  color: rgba(21, 32, 28, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.section__inner--tight {
  padding-top: 62px;
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.section__intro--center {
  align-items: center;
}

h2 {
  max-width: 760px;
  margin: 0;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-title {
  max-width: 760px;
  color: var(--pine);
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.section__copy {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(21, 32, 28, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.pathway__item {
  padding: 28px;
  background: rgba(255, 250, 240, 0.74);
}

.pathway__item span {
  display: block;
  margin-bottom: 16px;
  color: var(--pine);
  font-size: 1.05rem;
  font-weight: 900;
}

.pathway__item p {
  margin: 0;
  color: rgba(21, 32, 28, 0.74);
  line-height: 1.62;
}

.service-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.service-intro--spaced {
  margin-top: 52px;
}

.service-intro .eyebrow {
  margin-bottom: 0;
}

.service-intro p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(21, 32, 28, 0.74);
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.proof-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
}

.proof-card__number {
  display: block;
  margin-bottom: 34px;
  color: var(--amber);
  font-weight: 900;
}

h3 {
  margin: 0 0 12px;
  color: var(--pine);
  font-size: 1.12rem;
}

.proof-card p {
  margin: 0;
  color: rgba(21, 32, 28, 0.76);
  line-height: 1.6;
}

.ebook-ads-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ebook-ads-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
}

.ebook-ads-grid span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ebook-ads-grid h3 {
  margin: 0;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.ebook-ads-grid p {
  margin: 18px 0 0;
  color: rgba(21, 32, 28, 0.74);
  line-height: 1.68;
}

.amazon-ads-note {
  margin-top: 28px;
  padding: 26px 28px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.amazon-ads-note .eyebrow {
  margin-bottom: 12px;
}

.amazon-ads-note p:last-child {
  max-width: 900px;
  margin: 0;
  color: rgba(21, 32, 28, 0.78);
  font-size: 1.05rem;
  line-height: 1.68;
}

.amazon-author-proof {
  display: grid;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 204, 16, 0.14), transparent 48%),
    rgba(255, 250, 240, 0.82);
}

.amazon-author-proof img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(21, 32, 28, 0.18);
}

.amazon-author-proof h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.amazon-author-proof p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(21, 32, 28, 0.76);
  line-height: 1.68;
}

.amazon-author-proof .book-card__stat {
  width: min(280px, 100%);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.media-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.56);
  color: rgba(21, 32, 28, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.as-seen-carousel {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 32px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 204, 16, 0.12), transparent 48%),
    rgba(255, 250, 240, 0.76);
}

.as-seen-carousel__heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(260px, 0.64fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.as-seen-carousel__heading p:last-child {
  margin: 0;
  color: rgba(21, 32, 28, 0.74);
  line-height: 1.62;
}

.as-seen-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.as-seen-carousel__viewport::before,
.as-seen-carousel__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 64px;
  pointer-events: none;
}

.as-seen-carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.98), transparent);
}

.as-seen-carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 240, 0.98), transparent);
}

.as-seen-carousel__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: as-seen-scroll 42s linear infinite;
}

.as-seen-carousel__track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(132px, 13vw, 190px);
  min-height: 74px;
  padding: 0 24px;
  border: 1px solid rgba(21, 32, 28, 0.18);
  border-radius: 8px;
  background: var(--bone);
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 14px 32px rgba(21, 32, 28, 0.08);
}

@keyframes as-seen-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.ooh-proof {
  margin-top: 46px;
}

.ooh-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.ooh-proof figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
}

.ooh-proof__feature {
  grid-column: span 2;
  grid-row: span 2;
}

.ooh-proof img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ooh-proof__feature img {
  aspect-ratio: 16 / 9;
}

.ooh-proof figcaption {
  padding: 13px 14px 15px;
  color: rgba(21, 32, 28, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.website-proof {
  margin-top: 46px;
}

.website-proof--featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 204, 16, 0.12), transparent 36%),
    var(--bone);
}

.website-proof__copy h2 {
  font-size: clamp(2.2rem, 4.1vw, 4.5rem);
}

.website-proof__title {
  max-width: 7.8em;
  line-height: 0.98;
  text-wrap: balance;
}

.website-proof__title span {
  display: block;
  white-space: nowrap;
}

.website-proof__copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(21, 32, 28, 0.76);
  font-size: 1.04rem;
  line-height: 1.72;
}

.website-proof__result {
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 204, 16, 0.15);
  color: var(--pine) !important;
  font-weight: 850;
}

.website-proof__copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.website-proof__copy li {
  position: relative;
  padding-left: 20px;
  color: rgba(21, 32, 28, 0.78);
  font-weight: 750;
  line-height: 1.48;
}

.website-proof__copy li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.website-proof__copy .button {
  margin-top: 28px;
}

.website-proof__mockups {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
}

.browser-frame,
.phone-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(21, 32, 28, 0.16);
}

.lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.lightbox-trigger::after {
  content: "View";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 240, 0.62);
  border-radius: 999px;
  background: rgba(21, 32, 28, 0.76);
  color: var(--bone);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.lightbox-trigger:hover::after,
.lightbox-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(-2px);
}

.lightbox-trigger:focus-visible {
  outline: 3px solid rgba(255, 204, 16, 0.7);
  outline-offset: 4px;
}

@media (hover: none) {
  .lightbox-trigger::after {
    opacity: 0.92;
  }
}

.browser-frame {
  width: min(92%, 740px);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.82);
}

.browser-frame__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(21, 32, 28, 0.25);
}

.phone-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30%, 214px);
  padding: 4px;
  border-color: rgba(21, 32, 28, 0.54);
  border-radius: 34px;
  background: var(--ink);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 12px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-frame .lightbox-trigger {
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border-radius: 29px;
}

.browser-frame img,
.phone-frame img,
.browser-frame .lightbox-trigger img,
.phone-frame .lightbox-trigger img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.browser-frame img,
.browser-frame .lightbox-trigger img {
  height: clamp(320px, 42vw, 540px);
}

.phone-frame img,
.phone-frame .lightbox-trigger img {
  height: 100%;
  border-radius: 29px;
}

.ooh-case {
  align-items: center;
}

.ooh-case__mockups {
  display: grid;
  gap: 16px;
}

.ooh-case__billboard,
.ooh-case__supporting figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(21, 32, 28, 0.14);
}

.ooh-case__billboard img,
.ooh-case__billboard .lightbox-trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

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

.ooh-case__supporting img,
.ooh-case__supporting .lightbox-trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ooh-case figcaption {
  padding: 12px 14px 14px;
  color: rgba(21, 32, 28, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(21, 32, 28, 0.9);
}

.site-lightbox[hidden] {
  display: none;
}

.site-lightbox__inner {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
}

.site-lightbox img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.site-lightbox__caption {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.site-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.38);
  border-radius: 999px;
  background: var(--bone);
  color: var(--pine);
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.site-lightbox__close:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 58px;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(207, 23, 49, 0.2), transparent 42%),
    var(--pine);
  color: var(--bone);
}

.page-cta h2 {
  color: var(--bone);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
}

@media (max-width: 1020px) {
  .book-card {
    display: none;
  }

  .brand-home__grid,
  .amazon-ads-hero__grid,
  .home-section__inner--split,
  .home-section__intro,
  .intake-heading,
  .intake-page__hero {
    grid-template-columns: 1fr;
  }

  .intake-page__hero {
    grid-template-areas:
      "eyebrow"
      "title"
      "copy";
  }

  .definition-poster {
    min-height: 400px;
    transform: translateY(-24px);
  }

  .pathway,
  .audience-grid,
  .ebook-ads-grid,
  .proof-grid,
  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway__item:first-child {
    grid-column: 1 / -1;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .intake-page__hero {
    grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.72fr);
    grid-template-areas:
      "eyebrow copy"
      "title copy";
    gap: 34px;
  }

  .intake-page__hero h1 {
    font-size: clamp(3.3rem, 7vw, 5.4rem);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
  }

  .hero__image {
    object-position: 66% 50%;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(32, 36, 36, 0.94) 0%, rgba(32, 36, 36, 0.7) 58%, rgba(32, 36, 36, 0.58) 100%),
      linear-gradient(90deg, rgba(32, 36, 36, 0.78) 0%, rgba(32, 36, 36, 0.24) 100%);
  }

  .hero__content {
    width: min(100% - 32px, 620px);
    margin: auto 16px 0;
    padding: 78px 0 28px;
  }

  .book-card {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(230px, 62vw);
    margin: 0 16px 58px;
    z-index: 1;
  }

  .book-card__stat {
    padding: 14px 16px 16px;
  }

  .book-card__stat span {
    font-size: 2.1rem;
  }

  .book-card__stat p {
    font-size: 0.84rem;
  }

  .book-card__stat small {
    font-size: 0.72rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

  .lead {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: stretch;
  }

  .services-menu,
  .services-menu summary,
  .nav-actions .button {
    width: 100%;
  }

  .services-menu summary {
    justify-content: center;
  }

  .services-menu__panel {
    position: static;
    margin-top: 8px;
  }

  .brand-home {
    min-height: 0;
    padding: 20px 16px 58px;
  }

  .amazon-ads-hero {
    min-height: 0;
    padding: 20px 16px 58px;
    max-width: 100vw;
  }

  .error-page {
    min-height: 0;
    padding: 20px 16px 58px;
  }

  .brand-home__nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .amazon-ads-hero__nav {
    margin-bottom: 48px;
  }

  .brand-home__grid {
    min-height: 0;
    padding-top: 52px;
  }

  .brand-home__copy,
  .brand-home__copy p:not(.eyebrow),
  .home-section__inner--split > *,
  .difference-copy {
    width: 100%;
    max-width: 330px;
    min-width: 0;
  }

  .brand-home__copy p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
  }

  .amazon-ads-hero__grid {
    gap: 42px;
    min-width: 0;
  }

  .error-page__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
  }

  .amazon-ads-hero__copy,
  .amazon-ads-card,
  .error-page__copy,
  .error-page__card {
    width: 100%;
    min-width: 0;
    max-width: 330px;
  }

  .amazon-ads-hero__copy p:not(.eyebrow) {
    max-width: 330px;
  }

  .brand-home__copy h1 {
    max-width: min(12ch, calc(100vw - 32px));
    font-size: clamp(2.6rem, 12vw, 4.1rem);
    line-height: 1.04;
  }

  .headline-cycle {
    min-width: 0;
  }

  .eyebrow--home-dark {
    max-width: calc(100vw - 32px);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .amazon-ads-hero__copy h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 10vw, 3.55rem);
    line-height: 0.98;
  }

  .error-page__copy h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 12vw, 4.25rem);
    line-height: 0.98;
  }

  .error-page__copy p:not(.eyebrow) {
    max-width: 330px;
    font-size: 1rem;
  }

  .error-page__card {
    padding: 24px;
  }

  .amazon-ads-card {
    padding: 24px;
  }

  .amazon-ads-card h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
  }

  .amazon-ads-card li {
    padding: 13px 14px;
    font-size: 0.92rem;
  }

  .ooh-hero-bus {
    left: -82px;
    bottom: 820px;
    width: min(112vw, 520px);
    opacity: 0.1;
  }

  .definition-poster {
    min-height: 330px;
    transform: none;
  }

  .definition-poster__diamond {
    width: 72%;
    border-width: 5px;
  }

  .definition-poster__card {
    width: 86%;
    margin-left: 6px;
    padding: 28px 22px 32px;
  }

  .definition-poster__card p {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .definition-poster__card ol {
    font-size: 0.98rem;
  }

  .brand-lockup--hero {
    top: 18px;
    left: 16px;
  }

  .brand-lockup span {
    font-size: 0.84rem;
  }

  .section__inner {
    width: min(100% - 32px, 620px);
    padding: 56px 0 68px;
  }

  .page-hero__inner {
    width: min(100% - 32px, 620px);
    padding: 20px 0 58px;
  }

  .topline {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 58px;
  }

  .topline .nav-actions {
    width: 100%;
  }

  .section__intro,
  .home-section__inner--split,
  .ebook-ads-grid,
  .ooh-proof__grid,
  .website-proof--featured,
  .pathway,
  .audience-grid,
  .proof-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .section__intro > *,
  .section__intro h1,
  .section__intro h2,
  .section__copy {
    width: 100%;
    max-width: 330px;
    min-width: 0;
  }

  .section__intro h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    line-height: 1.06;
  }

  .ooh-proof__feature {
    grid-column: auto;
    grid-row: auto;
  }

  .website-proof__mockups {
    min-height: 0;
    padding-bottom: 64px;
  }

  .browser-frame {
    width: 100%;
  }

  .phone-frame {
    width: 34%;
    min-width: 124px;
  }

  .site-lightbox {
    padding: 18px;
  }

  .site-lightbox__close {
    top: 8px;
    right: 8px;
  }

  .ooh-case__supporting {
    grid-template-columns: 1fr;
  }

  .home-section__inner {
    width: min(100% - 32px, 620px);
    padding: 56px 0 68px;
  }

  .home-section__intro h2,
  .home-section__inner--split h2 {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.4vw, 2.18rem);
    line-height: 1.06;
  }

  .home-section__intro,
  .intake-heading,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .home-section__intro .eyebrow,
  .home-section__intro h2,
  .home-section__intro p:last-child {
    grid-column: auto;
    width: 100%;
    max-width: 330px;
  }

  .audience-grid article {
    min-height: 0;
  }

  .intake-section__inner {
    width: min(100% - 32px, 620px);
    padding: 56px 0 68px;
  }

  .intake-form,
  .thank-you {
    padding: 22px;
  }

  .intake-page {
    padding: 20px 16px 58px;
  }

  .intake-page__nav {
    margin-bottom: 48px;
  }

  .intake-page__hero h1 {
    max-width: 9ch;
    font-size: 3rem;
    line-height: 1.04;
  }

  .intake-form--cards {
    padding: 0;
  }

  .intake-form--cards fieldset {
    padding: 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 32px, 620px);
  }

  .site-footer__brand {
    align-items: flex-start;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-title {
    max-width: 10ch;
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .section__copy {
    margin-top: 0;
    font-size: 1rem;
  }

  .pathway {
    margin-top: 28px;
  }

  .book-note {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 330px;
    padding: 22px;
  }

  .book-note__cover {
    width: min(190px, 72%);
    max-width: none;
  }

  .amazon-author-proof {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .amazon-author-proof img {
    width: min(190px, 72%);
  }

  .amazon-author-proof h2,
  .amazon-author-proof p:not(.eyebrow) {
    max-width: 100%;
  }

  .as-seen-carousel {
    max-width: 330px;
    padding: 20px;
  }

  .as-seen-carousel__heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .as-seen-carousel__viewport::before,
  .as-seen-carousel__viewport::after {
    width: 36px;
  }

  .as-seen-carousel__track span {
    min-width: 138px;
    min-height: 62px;
    padding: 0 18px;
    font-size: 1.24rem;
  }

  .book-note__copy,
  .book-note p,
  .listing-snapshot {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .listing-snapshot span {
    max-width: 100%;
    min-height: 34px;
    line-height: 1.25;
  }

  .pathway__item,
  .pathway__item:first-child {
    grid-column: auto;
  }

  .service-intro {
    display: block;
  }

  .service-intro h2 {
    max-width: 330px;
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    line-height: 1.06;
  }

  .service-intro p:last-child {
    margin-top: 12px;
  }

  .service-intro--spaced {
    margin-top: 38px;
  }

  .ebook-ads-grid,
  .proof-grid {
    gap: 14px;
    margin-top: 30px;
  }

  .ebook-ads-grid article,
  .proof-card {
    min-height: 0;
  }

  .page-cta {
    display: block;
  }

  .page-cta .button {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .as-seen-carousel__track {
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }

  .as-seen-carousel__track span:nth-child(n + 11) {
    display: none;
  }
}
