:root {
  --font-heading: "Futura PT", Futura, "Avenir Next", "Century Gothic", Arial, sans-serif;
  --font-body: "Acumin Pro", Inter, Arial, sans-serif;
  --color-black: #0b0b0c;
  --color-white: #ffffff;
  --color-gray: #686b70;
  --color-graphite: #1f2024;
  --color-red: #ed1c24;
  --accent-red: var(--color-red);
  --ink: var(--color-black);
  --ink-2: var(--color-graphite);
  --muted: var(--color-gray);
  --paper: #f6f6f4;
  --white: var(--color-white);
  --line: #dedede;
  --teal: var(--accent-red);
  --coral: var(--accent-red);
  --gold: var(--accent-red);
  --mint: #f1f1f1;
  --shadow: 0 18px 60px rgba(23, 23, 23, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 14vw, 7rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 6vw, 3.4rem);
}

h3 {
  font-size: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 23, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-logo {
  width: clamp(150px, 34vw, 220px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--white);
}

.brand-mark small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--white);
}

.site-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(360px, calc(100vw - 2rem));
  display: none;
  padding: 0.75rem;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  padding: 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--gold);
}

body[data-page="home"] .site-header .brand-mark,
body[data-page="home"] .hero-home .eyebrow,
body[data-page="home"] .hero-home h1,
body[data-page="home"] .hero-home .lede,
body[data-page="home"] .hero-home .hero-actions,
body[data-page="home"] .hero-home .hero-proof,
body[data-page="home"] .hero-home .hero-media {
  animation: hero-reveal 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body[data-page="home"] .hero-home .eyebrow {
  animation-delay: 80ms;
}

body[data-page="home"] .hero-home h1 {
  animation-delay: 160ms;
}

body[data-page="home"] .hero-home .lede {
  animation-delay: 240ms;
}

body[data-page="home"] .hero-home .hero-actions {
  animation-delay: 320ms;
}

body[data-page="home"] .hero-home .hero-proof {
  animation-delay: 390ms;
}

body[data-page="home"] .hero-home .hero-media {
  animation-delay: 220ms;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  min-height: 70vh;
}

.hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero-home {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.hero-inner {
  padding: 4rem 0 2.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 3vw, 1.35rem);
}

.hero-inner .lede {
  color: var(--color-graphite);
}

.hero-media {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink-2);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.eyebrow,
.kicker {
  margin-bottom: 0.8rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-home .eyebrow {
  color: var(--gold);
}

.lede {
  margin-bottom: 0;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

a.button::after {
  content: "->";
  display: inline-block;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.button-primary {
  background: var(--gold);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(23, 23, 23, 0.22);
}

.hero-home .button-secondary {
  background: var(--white);
  color: var(--ink);
}

.hero-home .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-band .button-primary,
.recommendation-content .button-secondary {
  background: var(--gold);
  color: var(--white);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

a.button:hover::after,
a.button:focus-visible::after {
  transform: translateX(4px);
}

.button:focus-visible,
.text-link:focus-visible,
.teaser-option:focus-visible,
.filter-button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.42);
  outline-offset: 3px;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.25rem 0;
}

.audience-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: -2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.audience-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.audience-strip strong {
  padding: 0.45rem 0.6rem;
  color: var(--white);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.hero-proof,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-proof div,
.proof-grid div {
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof strong,
.proof-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-proof span,
.proof-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.intro-strip h2,
.split-section h2,
.ai-overview h2,
.contact-panel h2,
.intake-layout h2 {
  max-width: 12ch;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

.intro-strip {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.problem-solution {
  display: grid;
  gap: 1rem;
}

.feature-panel {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-panel.is-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.feature-panel h2 {
  max-width: 13ch;
}

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

.feature-panel.is-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-panel ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  list-style: none;
}

.feature-panel li {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.service-grid,
.service-bucket-grid,
.audience-card-grid,
.package-grid,
.agent-grid,
.addon-grid,
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.service-bucket,
.audience-card-grid article,
.package-card,
.agent-card,
.addon-card,
.portfolio-card,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card,
.service-bucket,
.audience-card-grid article,
.package-card,
.portfolio-card,
.addon-card,
.agent-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.service-bucket:hover,
.audience-card-grid article:hover,
.package-card:hover,
.portfolio-card:hover,
.addon-card:hover,
.agent-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-card,
.service-bucket,
.audience-card-grid article,
.package-card,
.agent-card,
.addon-card {
  padding: 1.2rem;
}

.service-card h2,
.service-bucket h2,
.package-card h2,
.agent-card h2,
.addon-card h2,
.portfolio-card h2,
.process-list h2 {
  font-size: 1.35rem;
}

.service-card p,
.service-bucket p,
.audience-card-grid span,
.package-card p,
.agent-card p,
.addon-card p,
.portfolio-card p,
.process-list p,
.contact-panel p,
.intake-layout p,
.ai-overview p {
  color: var(--muted);
}

.service-card ul,
.service-bucket ul,
.package-card ul {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.service-bucket {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.service-bucket::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--accent-red);
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.service-bucket h2 {
  transition: transform 180ms ease, color 180ms ease;
}

.service-bucket:hover::before,
.service-bucket:focus-within::before {
  transform: scaleX(1);
}

.service-bucket:hover h2,
.service-bucket:focus-within h2 {
  color: var(--accent-red);
  transform: translateX(4px);
}

.service-bucket:focus-within,
.package-card:focus-within,
.portfolio-card:focus-within,
.simple-process li:focus-within {
  border-color: var(--accent-red);
  box-shadow: 0 18px 48px rgba(237, 28, 36, 0.12);
}

.service-bucket ul {
  margin-top: 0;
}

.service-bucket .text-link {
  margin-top: auto;
}

.audience-card-grid article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.audience-card-grid strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.service-meta {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
  padding: 0.85rem;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-meta p {
  margin: 0;
}

.service-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent-red);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.package-card:hover::before,
.package-card:focus-within::before,
.package-card.is-recommended::before {
  opacity: 1;
  transform: translateY(0);
}

.package-card.is-recommended {
  border-color: var(--accent-red);
  box-shadow: 0 18px 48px rgba(237, 28, 36, 0.14);
}

.package-card.is-featured {
  border-color: var(--teal);
  box-shadow: 0 12px 34px rgba(237, 28, 36, 0.13);
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  color: var(--ink) !important;
  font-size: 1.35rem;
  font-weight: 900;
}

.package-card-top {
  display: grid;
  gap: 0.4rem;
}

.package-facts {
  display: grid;
  gap: 0.65rem;
}

.package-facts p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.package-facts strong {
  color: var(--ink);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.package-facts span {
  color: var(--muted);
}

.package-button {
  margin-top: auto;
}

.package-button::after {
  content: "->";
}

.timeline,
.card-meta {
  color: var(--teal) !important;
  font-size: 0.95rem;
  font-weight: 850;
}

.card-meta {
  margin-top: 1rem;
}

.service-card .text-link {
  display: inline-flex;
  margin-top: 0.5rem;
}

.pricing-note,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.package-ladder {
  display: grid;
  gap: 0.55rem;
}

.ladder-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.75rem;
  align-items: center;
  padding: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.ladder-item:hover,
.ladder-item:focus-visible {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.ladder-item span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 950;
}

.ladder-item small {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.simple-process {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.simple-process li {
  position: relative;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.simple-process li::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.simple-process li:hover,
.simple-process li:focus-visible,
.simple-process li:focus-within {
  border-color: var(--accent-red);
  box-shadow: 0 14px 38px rgba(23, 23, 23, 0.1);
  transform: translateY(-2px);
}

.simple-process li:hover::after,
.simple-process li:focus-visible::after,
.simple-process li:focus-within::after {
  transform: scaleX(1);
}

.simple-process li:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.42);
  outline-offset: 3px;
}

.simple-process span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--coral);
  font-weight: 950;
}

.simple-process h2 {
  font-size: 1.2rem;
}

.simple-process p {
  color: var(--muted);
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.process-list span {
  color: var(--coral);
  font-size: 1rem;
  font-weight: 950;
}

.ai-overview {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fit-grid {
  display: grid;
  gap: 1rem;
}

.fit-card {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-card h2 {
  font-size: 1.2rem;
}

.fit-card p {
  color: var(--muted);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  font-weight: 900;
}

td {
  color: var(--muted);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.portfolio-card div {
  padding: 1.15rem;
}

.case-details {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.case-details div {
  padding: 0;
}

.case-details dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-details dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.portfolio-card .text-link {
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-card:hover .text-link,
.portfolio-card:focus-within .text-link {
  opacity: 1;
  transform: translateX(3px);
}

.package-teaser {
  display: grid;
  gap: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-teaser h2 {
  max-width: 14ch;
}

.package-teaser-panel {
  display: grid;
  gap: 1rem;
}

.teaser-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.teaser-option {
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.teaser-option:hover,
.teaser-option:focus-visible,
.teaser-option[aria-pressed="true"] {
  border-color: var(--accent-red);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.teaser-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.teaser-result span {
  color: var(--accent-red);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.teaser-result strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.teaser-result p {
  color: rgba(255, 255, 255, 0.72);
}

.teaser-result .button {
  width: fit-content;
}

.reveal-item,
.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-card {
  transform: translateY(16px);
}

.reveal-item.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-bucket.reveal-card.is-visible:hover,
.service-bucket.reveal-card.is-visible:focus-within,
.audience-card-grid article.reveal-card.is-visible:hover,
.audience-card-grid article.reveal-card.is-visible:focus-within,
.package-card.reveal-card.is-visible:hover,
.package-card.reveal-card.is-visible:focus-within,
.portfolio-card.reveal-card.is-visible:hover,
.portfolio-card.reveal-card.is-visible:focus-within,
.simple-process li.reveal-card.is-visible:hover,
.simple-process li.reveal-card.is-visible:focus-visible,
.simple-process li.reveal-card.is-visible:focus-within {
  transform: translateY(-2px);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-button {
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.filter-button[aria-pressed="true"],
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

details {
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.cta-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: 2rem auto 4rem;
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.cta-band h2 {
  max-width: 12ch;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .eyebrow {
  color: var(--gold);
}

.cta-band .button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.intake-layout,
.contact-layout,
.contact-panel {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.intake-form {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intake-wizard {
  position: relative;
}

.wizard-progress {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wizard-progress span {
  color: var(--teal);
  font-weight: 950;
}

.wizard-progress div {
  height: 8px;
  overflow: hidden;
  background: var(--mint);
  border-radius: 999px;
}

.wizard-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
  transition: width 160ms ease;
}

.wizard-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step legend {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.wizard-step legend strong {
  font-size: 1.45rem;
  line-height: 1.08;
}

.wizard-step legend small {
  color: var(--muted);
  font-size: 0.98rem;
}

.wizard-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wizard-actions .button {
  width: auto;
  margin-top: 0;
}

.wizard-actions .button[hidden] {
  display: none;
}

.wizard-actions .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.intake-benefits {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.intake-benefits span {
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 850;
}

label small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.4;
}

label.has-error span {
  color: var(--coral);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: #f7f7f7;
  font: inherit;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.14);
}

textarea {
  resize: vertical;
}

.intake-form .button {
  width: 100%;
  margin-top: 1.2rem;
}

.recommendation-panel {
  margin-top: 1.25rem;
}

.recommendation-panel[hidden] {
  display: none;
}

.recommendation-content {
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.recommendation-content p,
.recommendation-content li {
  color: rgba(255, 255, 255, 0.76);
}

.recommendation-content .price,
.recommendation-content .timeline {
  color: var(--white) !important;
}

.recommendation-content .eyebrow {
  color: var(--gold);
}

.recommendation-content ul {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.recommendation-content .button {
  width: auto;
}

.contact-panel {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-actions {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.25rem;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list strong {
  color: var(--ink);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand .brand-logo {
  width: min(220px, 70vw);
  height: 48px;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer p,
.site-footer small,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (min-width: 760px) {
  .hero-home {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .hero-media {
    min-height: 520px;
  }

  .hero-media img {
    min-height: 520px;
  }

  .service-grid,
  .service-bucket-grid,
  .audience-card-grid,
  .simple-process,
  .agent-grid,
  .addon-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading,
  .intro-strip,
  .split-section,
  .ai-overview,
  .package-teaser,
  .intake-layout,
  .contact-layout,
  .contact-panel,
  .cta-band,
  .footer-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .cta-band {
    align-items: center;
  }

  .cta-actions {
    justify-content: flex-end;
  }

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

  label:has(textarea) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

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

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

  .reveal-item,
  .reveal-card,
  body[data-page="home"] .site-header .brand-mark,
  body[data-page="home"] .hero-home .eyebrow,
  body[data-page="home"] .hero-home h1,
  body[data-page="home"] .hero-home .lede,
  body[data-page="home"] .hero-home .hero-actions,
  body[data-page="home"] .hero-home .hero-proof,
  body[data-page="home"] .hero-home .hero-media {
    opacity: 1 !important;
    transform: none !important;
  }
}
