:root {
  color-scheme: light;
  --plum-950: #2d0d2e;
  --plum-900: #3a113b;
  --plum-800: #4a174b;
  --plum-700: #5f2860;
  --plum-100: #f1e7f1;
  --gold: #e3aa3b;
  --gold-700: #87570e;
  --gold-100: #faedcf;
  --ivory: #fff8f0;
  --ivory-2: #fbefdf;
  --white: #ffffff;
  --ink: #1e1820;
  --muted: #71626f;
  --sage: #6c8f7a;
  --coral: #bd684d;
  --steel: #59717c;
  --line: rgba(74, 23, 75, 0.16);
  --line-dark: rgba(255, 248, 240, 0.16);
  --shadow: 10px 10px 0 rgba(227, 170, 59, 0.28), 0 22px 70px rgba(45, 13, 46, 0.16);
  --shadow-tight: 8px 8px 0 rgba(227, 170, 59, 0.28), 0 12px 32px rgba(45, 13, 46, 0.12);
  --shadow-gold: 10px 10px 0 rgba(227, 170, 59, 0.36), 0 22px 52px rgba(45, 13, 46, 0.18);
  --shadow-gold-hover: 14px 14px 0 rgba(227, 170, 59, 0.46), 0 26px 60px rgba(45, 13, 46, 0.2);
  --shadow-gold-large: 16px 16px 0 rgba(227, 170, 59, 0.34), 0 30px 72px rgba(45, 13, 46, 0.2);
  --panel-border: rgba(45, 13, 46, 0.88);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(74, 23, 75, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 23, 75, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -1;
}

a {
  color: inherit;
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 20;
}

.skip-link:focus {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  top: 1rem;
}

.site-header {
  background: rgba(255, 248, 240, 0.9);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 74px;
  padding: 0 24px;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  gap: 0.78rem;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
  width: 112px;
}

.brand-mark strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1;
}

.brand-mark small {
  color: var(--plum-700);
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 0.18rem;
  margin-left: auto;
}

.primary-nav a,
.mobile-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--plum-100);
  color: var(--plum-900);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  text-decoration: none;
}

.nav-cta,
.button--primary {
  background: var(--plum-800);
  color: var(--white);
  box-shadow: 6px 6px 0 rgba(227, 170, 59, 0.28), 0 10px 22px rgba(45, 13, 46, 0.16);
}

.button--secondary {
  background: rgba(255, 248, 240, 0.16);
  border: 1px solid rgba(255, 248, 240, 0.34);
  color: var(--white);
}

.interior-hero .button--secondary,
.content-band .button--secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--plum-900);
}

.menu-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--plum-900);
  display: none;
  font: 800 0.9rem Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  min-height: 42px;
  padding: 0 0.9rem;
}

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
}

.hero-section {
  background: var(--plum-950);
  display: grid;
  min-height: min(760px, calc(100vh - 74px));
  overflow: hidden;
  place-items: stretch;
  position: relative;
}

.hero-video,
.hero-veil {
  inset: 0;
  position: absolute;
}

.hero-video {
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  width: 100%;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(45, 13, 46, 0.96) 0%, rgba(45, 13, 46, 0.88) 42%, rgba(45, 13, 46, 0.26) 100%),
    radial-gradient(circle at 80% 8%, rgba(227, 170, 59, 0.28), transparent 24%),
    radial-gradient(circle at 64% 80%, rgba(108, 143, 122, 0.22), transparent 28%);
}

.hero-media {
  inset: 0;
  min-height: 100%;
  position: absolute;
}

.hero-content {
  align-self: center;
  color: var(--white);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  max-width: 760px;
  padding: 9vw 24px 8vw;
  position: relative;
  width: min(100%, calc(var(--max) / 2 + 24px));
  z-index: 1;
}

.eyebrow {
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: Manrope, Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
}

h1 {
  font-size: clamp(2.85rem, 5.1vw, 5.9rem);
  line-height: 0.92;
  margin-bottom: 1.45rem;
  max-width: 740px;
}

h2 {
  color: var(--plum-900);
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.1;
}

.hero-copy,
.interior-hero p,
.section-grid p,
.case-copy p,
.content-measure p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-copy {
  color: rgba(255, 248, 240, 0.84);
}

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

.recovery-visual {
  background: rgba(255, 248, 240, 0.88);
  border: 1px solid rgba(255, 248, 240, 0.56);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 1rem;
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 40vw);
  z-index: 1;
  backdrop-filter: blur(22px);
}

.visual-topline,
.visual-footer,
.visual-row {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1.5fr 0.8fr 0.7fr 0.9fr;
}

.visual-topline,
.visual-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0.4rem;
}

.visual-topline strong,
.visual-footer strong {
  color: var(--plum-900);
}

.visual-topline span,
.visual-footer span,
.stat-tile span,
.visual-row small,
.route-group a,
.related-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.visual-meter {
  background: rgba(74, 23, 75, 0.12);
  border-radius: 99px;
  height: 8px;
  margin: 0.5rem 0 1rem;
  overflow: hidden;
}

.visual-meter span {
  background: linear-gradient(90deg, var(--plum-800), var(--gold));
  display: block;
  height: 100%;
}

.visual-board {
  display: grid;
  gap: 0.45rem;
}

.visual-row {
  animation: rise 560ms ease both;
  animation-delay: calc(var(--delay) * 80ms);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(74, 23, 75, 0.12);
  border-radius: 7px;
  padding: 0.85rem;
}

.visual-row span,
.visual-row strong,
.visual-row em {
  font-size: 0.82rem;
  font-style: normal;
}

.visual-row em {
  color: var(--plum-800);
  font-weight: 900;
}

.proof-strip {
  background: var(--plum-900);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(1.5rem, 3vw, 2.75rem) auto 0;
  max-width: var(--max);
  position: relative;
  transform: none;
  z-index: 2;
  width: calc(100% - 48px);
}

.stat-tile {
  border-right: 1px solid var(--line-dark);
  display: grid;
  gap: 0.35rem;
  min-height: 150px;
  padding: 1.3rem;
}

.stat-tile strong {
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.stat-tile small {
  color: rgba(255, 248, 240, 0.72);
}

.section-grid,
.workflow-section,
.case-section,
.sitemap-preview,
.content-band,
.seo-intent-band,
.proof-link-band,
.faq-section,
.case-study-proof,
.pricing-band,
.related-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 5rem 24px;
}

.seo-page-stack {
  display: block;
}

.seo-intent-band {
  display: grid;
  gap: 2rem;
}

.seo-intent-band .section-heading p,
.faq-section .section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.seo-card-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.seo-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
  min-height: 230px;
  padding: 1.35rem;
}

.seo-card h3,
.faq-item h3 {
  color: var(--plum-900);
}

.seo-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}

.proof-link-band {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(74, 23, 75, 0.96), rgba(45, 13, 46, 0.98)),
    linear-gradient(90deg, rgba(227, 170, 59, 0.16), transparent);
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.proof-link-band h2 {
  color: inherit;
}

.proof-link-band p {
  color: rgba(255, 248, 240, 0.78);
  font-size: 1.06rem;
  line-height: 1.65;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mini-proof-grid .stat-tile {
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.14);
}

.proof-hero-grid {
  background: var(--plum-900);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 5rem;
}

.proof-hero-grid .stat-tile {
  min-height: 140px;
}

.case-study-narrative {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 5rem;
}

.case-study-narrative--tight {
  margin-top: 5rem;
}

.case-study-copy-block {
  display: grid;
  gap: 1rem;
}

.case-study-copy-block p,
.glendale-proof-copy p,
.breakdown-section p,
.case-study-bottom-line p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.glendale-proof-panel {
  background:
    linear-gradient(135deg, rgba(74, 23, 75, 0.96), rgba(45, 13, 46, 0.98)),
    radial-gradient(circle at 88% 12%, rgba(227, 170, 59, 0.28), transparent 26%);
  color: var(--white);
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 5rem;
  padding: 2rem;
}

.glendale-proof-panel h2,
.case-study-bottom-line h2 {
  color: inherit;
}

.glendale-proof-copy p {
  color: rgba(255, 248, 240, 0.78);
}

.proof-callout {
  border-left: 4px solid var(--gold);
  margin-top: 2rem;
  padding-left: 1rem;
}

.proof-callout span,
.proof-reasons span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.proof-callout strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.18;
}

.glendale-scorecard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.glendale-scorecard .stat-tile {
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.14);
}

.verified-office-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: -2.5rem 0 5rem;
}

.verified-office-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
  min-height: 250px;
  padding: 1.35rem;
}

.verified-office-grid h3 {
  color: var(--plum-900);
  margin-bottom: 0.75rem;
}

.verified-office-grid strong {
  color: var(--plum-950);
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.verified-office-grid p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.verified-office-card--pending {
  opacity: 0.82;
}

.proof-reasons {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.proof-reasons article {
  background: var(--white);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  min-height: 240px;
  padding: 1.35rem;
  box-shadow: var(--shadow-gold);
}

.proof-reasons h3 {
  color: var(--plum-900);
}

.proof-reasons p {
  color: var(--muted);
  line-height: 1.55;
}

.section-grid {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.comparison-panel {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-panel div {
  min-height: 260px;
  padding: 2rem;
}

.comparison-panel div:first-child {
  background: var(--ivory-2);
}

.comparison-panel div:last-child {
  background: var(--plum-800);
  color: var(--white);
}

.comparison-panel div:last-child h3 {
  color: var(--gold);
}

.comparison-panel p,
.workflow-step p,
.office-stack p,
.price-card p,
.related-card p,
.plain-list {
  color: inherit;
  line-height: 1.55;
}

.section-heading {
  max-width: 760px;
}

.workflow-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.workflow-step {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 300px;
  padding: 1.4rem;
}

.workflow-step span,
.price-card span {
  color: var(--gold-700);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.case-section {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.office-stack {
  display: grid;
  gap: 0.75rem;
}

.office-stack article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: var(--shadow-tight);
}

.office-stack span {
  color: var(--gold-700);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.office-stack strong {
  color: var(--plum-900);
  display: block;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.about-page-stack {
  display: grid;
  gap: 5rem;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 24px 5rem;
}

.about-definition-panel {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold-large);
  color: var(--ink);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.about-definition-panel h2 {
  color: var(--plum-950);
  max-width: 880px;
}

.about-definition-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
  max-width: 880px;
}

.about-two-column {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.about-icp-band {
  background:
    linear-gradient(135deg, rgba(74, 23, 75, 0.96), rgba(45, 13, 46, 0.98)),
    linear-gradient(90deg, rgba(227, 170, 59, 0.18), transparent);
  border: 2px solid rgba(227, 170, 59, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow-gold-large);
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.7fr 1.3fr;
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.about-icp-band h2 {
  color: inherit;
}

.about-icp-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-icp-list li {
  background: rgba(255, 248, 240, 0.1);
  border: 1px solid rgba(255, 248, 240, 0.18);
  border-radius: 8px;
  color: rgba(255, 248, 240, 0.86);
  font-weight: 800;
  line-height: 1.45;
  padding: 1rem;
}

.about-story-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.about-story-grid article {
  background: var(--white);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  min-height: 250px;
  padding: 1.35rem;
}

.about-story-grid h3 {
  color: var(--plum-900);
}

.about-story-grid p {
  color: var(--muted);
  line-height: 1.6;
}

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

.about-facts-section {
  display: grid;
  gap: 1.5rem;
}

.about-facts-table-wrap {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold-large);
  overflow-x: auto;
}

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

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

.about-facts-table tr:last-child th,
.about-facts-table tr:last-child td {
  border-bottom: 0;
}

.about-facts-table th {
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  width: 230px;
}

.about-facts-table td {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.text-link {
  color: var(--plum-800);
  font-weight: 900;
}

.sitemap-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.route-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.route-group a {
  border-top: 1px solid var(--line);
  display: block;
  padding: 0.7rem 0;
  text-decoration: none;
}

.route-group a:hover,
.related-card:hover {
  color: var(--plum-800);
}

.interior-hero {
  margin: 0 auto;
  max-width: var(--max);
  padding: 7rem 24px 4rem;
}

.interior-hero h1 {
  color: var(--plum-900);
  max-width: 900px;
}

.content-measure {
  max-width: 720px;
}

.plain-list li {
  margin-bottom: 0.75rem;
}

.proof-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

.proof-table > div {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr 1fr;
}

.proof-table span {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 1rem;
}

.proof-table div:first-child span {
  background: var(--plum-900);
  color: var(--white);
  font-weight: 900;
}

.breakdown-section {
  padding-top: 5rem;
}

.breakdown-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

.breakdown-table > div {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr 0.9fr;
}

.breakdown-table span {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 1rem;
}

.breakdown-table div:first-child span {
  background: var(--plum-100);
  color: var(--plum-900);
  font-weight: 900;
}

.case-study-bottom-line {
  align-items: center;
  background: var(--gold-100);
  border: 2px solid rgba(183, 125, 25, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.9fr 1.1fr auto;
  margin-top: 5rem;
  padding: 1.5rem;
}

.case-study-bottom-line p {
  margin-bottom: 0;
}

.pricing-band {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

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

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
}

.site-footer {
  background: var(--plum-950);
  color: var(--white);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 1.4fr) repeat(6, minmax(130px, 1fr));
  margin: 0 auto;
  max-width: var(--max);
  padding: 4rem 24px;
}

.brand-mark--footer .brand-logo {
  filter: brightness(0) invert(1);
}

.brand-mark--footer small,
.footer-brand p,
.footer-column a,
.fine-print {
  color: rgba(255, 248, 240, 0.72);
  line-height: 1.5;
}

.fine-print {
  font-size: 0.82rem;
}

.footer-column h2 {
  color: var(--gold);
  font-size: 1rem;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  text-decoration: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-bg-video,
  .hero-video {
    display: none;
  }

  .visual-row {
    animation: none;
  }
}

@media (max-width: 980px) {
  .primary-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header[data-open="true"] .mobile-nav:not([hidden]) {
    display: grid;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(45, 13, 46, 0.95), rgba(45, 13, 46, 0.78)),
      radial-gradient(circle at 76% 8%, rgba(227, 170, 59, 0.22), transparent 28%);
  }

  .hero-media {
    inset: auto;
    order: 2;
    padding: 0 24px 2rem;
    position: relative;
  }

  .hero-content {
    margin-left: 0;
    order: 1;
    padding-bottom: 2rem;
    width: 100%;
  }

  .recovery-visual {
    inset: auto;
    margin: 0 auto;
    max-width: 560px;
    position: relative;
    transform: none;
    width: 100%;
  }

  .proof-strip,
  .proof-hero-grid,
  .section-grid,
  .about-two-column,
  .about-icp-band,
  .about-story-grid,
  .about-workflow-grid,
  .seo-card-grid,
  .proof-link-band,
  .mini-proof-grid,
  .faq-grid,
  .case-study-narrative,
  .glendale-proof-panel,
  .glendale-scorecard,
  .verified-office-grid,
  .proof-reasons,
  .case-study-bottom-line,
  .case-section,
  .sitemap-grid,
  .footer-grid,
  .workflow-grid,
  .pricing-band,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    transform: none;
  }

  .comparison-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding-bottom: 2rem;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    padding: 0 16px;
  }

  .brand-logo {
    width: 96px;
  }

  .brand-mark small {
    display: none;
  }

  .hero-content,
  .interior-hero,
  .about-page-stack,
  .section-grid,
  .workflow-section,
  .case-section,
  .sitemap-preview,
  .content-band,
  .seo-intent-band,
  .proof-link-band,
  .faq-section,
  .case-study-proof,
  .pricing-band,
  .related-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .button {
    width: 100%;
  }

  .visual-topline,
  .visual-footer,
  .visual-row {
    grid-template-columns: 1fr;
  }

  .visual-row {
    gap: 0.25rem;
  }

  .proof-strip {
    width: 100%;
  }

  .proof-table {
    font-size: 0.85rem;
  }

  .proof-hero-grid,
  .glendale-proof-panel,
  .case-study-bottom-line {
    margin-left: -16px;
    margin-right: -16px;
  }

  .glendale-proof-panel,
  .case-study-bottom-line {
    padding-left: 16px;
    padding-right: 16px;
  }

  .verified-office-grid {
    margin-left: -16px;
    margin-right: -16px;
  }

  .breakdown-table {
    font-size: 0.85rem;
  }

  .about-page-stack {
    gap: 3.5rem;
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-definition-panel,
  .about-icp-band,
  .about-story-grid article,
  .about-facts-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
  }

  .about-facts-table {
    min-width: 680px;
  }
}

body {
  background: var(--plum-950);
}

body::before {
  display: none;
}

.site-bg-video,
.site-bg-veil,
.site-bg-warm {
  inset: 0;
  pointer-events: none;
  position: fixed;
}

.site-bg-video {
  background: var(--plum-950);
  height: 100vh;
  object-fit: cover;
  opacity: 0.72;
  width: 100vw;
  z-index: -4;
}

.site-bg-veil {
  background:
    linear-gradient(180deg, rgba(45, 13, 46, 0.68), rgba(45, 13, 46, 0.44) 42%, rgba(45, 13, 46, 0.74)),
    linear-gradient(90deg, rgba(45, 13, 46, 0.72), rgba(45, 13, 46, 0.2));
  z-index: -3;
}

.site-bg-warm {
  background: linear-gradient(180deg, rgba(227, 170, 59, 0.12), transparent 34%, rgba(108, 143, 122, 0.1));
  z-index: -2;
}

.site-header {
  backdrop-filter: none;
  background: rgba(255, 248, 240, 0.98);
  border-bottom: 2px solid rgba(227, 170, 59, 0.58);
  box-shadow: 0 10px 0 rgba(227, 170, 59, 0.18);
}

.nav-shell {
  max-width: 1360px;
}

.brand-mark,
.primary-nav a,
.mobile-nav a,
.menu-button {
  color: var(--plum-900);
}

.site-header .brand-mark strong,
.site-header .brand-mark small {
  display: none;
}

.brand-mark small {
  color: var(--gold-700);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.mobile-nav a:hover {
  background: var(--gold-100);
  color: var(--plum-950);
}

.menu-button {
  border-color: rgba(45, 13, 46, 0.22);
}

.mobile-nav[hidden] {
  display: none;
}

.nav-cta,
.button {
  border: 2px solid rgba(255, 248, 240, 0.18);
  gap: 0.55rem;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button--primary {
  background: var(--plum-900);
  border-color: rgba(227, 170, 59, 0.45);
  box-shadow: 6px 6px 0 rgba(227, 170, 59, 0.32), 0 12px 28px rgba(45, 13, 46, 0.18);
}

.button--primary::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 0;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: width 420ms ease, height 420ms ease, opacity 240ms ease;
  width: 0;
  z-index: -1;
}

.button--primary:hover {
  color: var(--plum-950);
  transform: translateY(-2px);
}

.button--primary:hover::before {
  height: 320px;
  opacity: 1;
  width: 320px;
}

.button--secondary {
  background: rgba(255, 248, 240, 0.08);
  border-color: rgba(255, 248, 240, 0.28);
  color: var(--white);
}

.button--secondary:hover {
  background: rgba(255, 248, 240, 0.16);
  transform: translateY(-2px);
}

.button-arrow {
  fill: currentColor;
  height: 1rem;
  transition: transform 220ms ease, opacity 220ms ease;
  width: 1rem;
}

.button-arrow--left {
  opacity: 0;
  transform: translateX(-14px);
}

.button:hover .button-arrow--left {
  opacity: 1;
  transform: translateX(0);
}

.button:hover .button-arrow--right {
  opacity: 0;
  transform: translateX(14px);
}

.hero-section {
  background: transparent;
  min-height: clamp(720px, calc(100vh - 74px), 900px);
  padding: 5vw 24px 6vw;
}

.hero-video {
  opacity: 0.72;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(45, 13, 46, 0.82), rgba(45, 13, 46, 0.54) 48%, rgba(45, 13, 46, 0.12)),
    linear-gradient(0deg, rgba(45, 13, 46, 0.58), transparent 42%);
}

.hero-blur-mask {
  backdrop-filter: blur(14px);
  bottom: 0;
  height: 24%;
  left: 0;
  mask-image: linear-gradient(to top, black 0%, transparent 76%);
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(2.75rem, 4vw, 5rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  margin: 0 auto;
  max-width: 1360px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-content {
  align-self: center;
  margin: 0;
  max-width: 820px;
  padding: 0;
  width: 100%;
}

.hero-content h1,
.interior-hero h1 {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  color: rgba(255, 248, 240, 0.86);
  max-width: 700px;
}

.hero-trust-row {
  border-top: 1px solid rgba(255, 248, 240, 0.16);
  color: rgba(255, 248, 240, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 1.1rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
}

.hero-trust-row span::before {
  color: var(--gold);
  content: "✓ ";
}

.hero-proof-card {
  background: var(--white);
  background-color: var(--white);
  border: 2px solid rgba(45, 13, 46, 0.92);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(227, 170, 59, 0.34), 0 28px 76px rgba(45, 13, 46, 0.2);
  color: var(--ink);
  display: grid;
  gap: 0.82rem;
  overflow: hidden;
  padding: 1.35rem;
  position: relative;
}

.hero-proof-card::before {
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--plum-800));
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.proof-card-kicker {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding-top: 0.4rem;
}

.proof-card-kicker span {
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-card-kicker strong {
  background: rgba(92, 123, 90, 0.14);
  border: 1px solid rgba(92, 123, 90, 0.24);
  border-radius: 999px;
  color: var(--plum-900);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.35rem 0.55rem;
  white-space: nowrap;
}

.proof-card-amount {
  color: var(--plum-950);
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4.55rem, 5.1vw, 5.25rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
  margin-top: 0.25rem;
}

.hero-proof-card h2 {
  color: var(--plum-900);
  font-size: clamp(1.72rem, 1.65vw, 1.95rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.proof-card-copy {
  color: rgba(45, 13, 46, 0.74);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.48;
  margin: 0;
}

.proof-card-metrics {
  border: 1px solid rgba(45, 13, 46, 0.16);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.proof-card-metrics div {
  background: var(--ivory);
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem 0.68rem;
}

.proof-card-metrics div + div {
  border-left: 1px solid rgba(45, 13, 46, 0.14);
}

.proof-card-metrics strong {
  color: var(--plum-950);
  font-size: 1.35rem;
  line-height: 1;
}

.proof-card-metrics span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.proof-card-path {
  background: var(--plum-950);
  border-radius: 8px;
  color: var(--white);
  counter-reset: proof-path;
  display: grid;
  gap: 0.38rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0.68rem;
}

.proof-card-path span {
  align-items: center;
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.12);
  border-radius: 7px;
  display: grid;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 0.65rem;
  grid-template-columns: auto 1fr;
  line-height: 1.1;
  padding: 0.52rem 0.58rem;
}

.proof-card-path span::before {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--plum-950);
  content: counter(proof-path);
  counter-increment: proof-path;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  height: 1.35rem;
  justify-content: center;
  width: 1.35rem;
}

.proof-card-link {
  align-items: center;
  color: var(--plum-950);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 950;
  gap: 0.35rem;
  text-decoration: none;
  width: max-content;
}

.proof-card-link span {
  color: var(--gold-700);
}

.proof-card-note {
  border-top: 1px solid rgba(45, 13, 46, 0.14);
  color: rgba(45, 13, 46, 0.56);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.35;
  margin: 0;
  padding-top: 0.65rem;
}

.proof-strip {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  max-width: 1360px;
  transform: none;
}

.stat-tile {
  border-color: rgba(45, 13, 46, 0.14);
}

.stat-tile strong {
  color: var(--plum-900);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.stat-tile span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
}

.stat-tile small {
  color: var(--muted);
}

.section-grid,
.workflow-section,
.case-section,
.sitemap-preview,
.content-band,
.seo-intent-band,
.proof-link-band,
.faq-section,
.case-study-proof,
.pricing-band,
.related-section {
  max-width: 1360px;
  position: relative;
}

.seo-intent-band,
.workflow-section,
.faq-section,
.related-section,
.case-study-proof,
.content-band {
  background: transparent;
  border-top: 0;
  color: var(--white);
  margin-top: clamp(1.5rem, 3vw, 3.75rem);
}

.section-heading h2,
.seo-intent-band h2,
.workflow-section h2,
.faq-section h2,
.related-section h2,
.case-study-proof h2,
.content-band h2,
.interior-hero h1 {
  color: var(--white);
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.42);
}

.hero-content .eyebrow,
.interior-hero .eyebrow,
.section-heading .eyebrow,
.proof-copy .eyebrow {
  color: var(--gold);
}

.section-heading p,
.seo-intent-band .section-heading p,
.faq-section .section-heading p {
  color: rgba(255, 248, 240, 0.76);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.seo-card,
.faq-item,
.workflow-step,
.price-card,
.related-card,
.definition-card,
.route-group,
.office-stack article {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.seo-card:hover,
.faq-item:hover,
.workflow-step:hover,
.price-card:hover,
.related-card:hover {
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-3px);
}

.seo-card h3,
.faq-item h3,
.workflow-step h3,
.price-card h3,
.related-card h3 {
  color: var(--plum-900);
}

.seo-card p,
.faq-item p,
.price-card p,
.related-card p {
  color: var(--muted);
}

.hub-link-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  margin-top: 1.2rem;
}

.workflow-grid {
  gap: 1rem;
}

.workflow-step {
  min-height: 260px;
}

.workflow-step span,
.price-card span {
  color: var(--gold-700);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.definition-card {
  max-width: 920px;
  padding: 2rem;
}

.definition-card h2 {
  color: var(--plum-950);
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  line-height: 1.03;
  max-width: 840px;
  text-shadow: none;
}

.definition-card .eyebrow {
  color: var(--gold-700);
}

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

.interior-hero {
  background: transparent;
  border-bottom: 0;
  max-width: none;
  padding: 7rem max(24px, calc((100vw - 1360px) / 2)) 4.5rem;
}

.interior-hero p {
  color: rgba(255, 248, 240, 0.82);
  max-width: 820px;
}

.interior-hero .button--secondary,
.content-band .button--secondary {
  background: rgba(255, 248, 240, 0.08);
  border-color: rgba(255, 248, 240, 0.28);
  color: var(--white);
}

.proof-link-band {
  background: transparent;
  border-bottom: 0;
  border-top: 0;
  grid-template-columns: 0.85fr 1.15fr;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1360px) / 2));
  padding-right: max(24px, calc((100vw - 1360px) / 2));
}

.proof-drawer-stack {
  display: grid;
  gap: 1rem;
}

.proof-drawer {
  align-items: center;
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  min-height: 132px;
  padding: 1.15rem;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.proof-drawer:hover {
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-3px);
}

.proof-file-tab {
  align-items: center;
  background: var(--plum-900);
  border-radius: 6px;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  min-height: 38px;
  padding: 0 0.75rem;
  text-transform: uppercase;
}

.proof-drawer-copy {
  display: grid;
  gap: 0.25rem;
}

.proof-drawer-copy span {
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-drawer-copy strong {
  color: var(--plum-900);
  font-size: 1.42rem;
}

.proof-drawer-action {
  color: var(--plum-800);
  font-size: 0.88rem;
  font-weight: 900;
}

.pricing-band {
  gap: 1rem;
}

.comparison-panel {
  border: 2px solid var(--panel-border);
  box-shadow: var(--shadow-gold);
}

.comparison-panel div:first-child {
  background: var(--ivory);
}

.comparison-panel div:last-child {
  background: var(--plum-900);
}

.comparison-table,
.calculator-panel,
.breakdown-table,
.proof-table {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  color: var(--ink);
}

.comparison-table {
  display: grid;
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
  width: 100%;
}

.comparison-table > div,
.calculator-panel label,
.calculator-result {
  border-color: rgba(45, 13, 46, 0.14);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.15fr) minmax(0, 1.15fr);
}

.comparison-table > div:first-child {
  background: var(--plum-900);
  color: var(--white);
}

.comparison-table span {
  border-bottom: 1px solid rgba(45, 13, 46, 0.14);
  border-right: 1px solid rgba(45, 13, 46, 0.14);
  display: block;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.48;
  min-width: 0;
  padding: 1.15rem;
}

.comparison-table [role="columnheader"] {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-table > div:not(:first-child) span:first-child {
  background: var(--white);
  color: var(--plum-900);
  font-weight: 950;
}

.comparison-table > div:last-child span {
  border-bottom: 0;
}

.comparison-table span:last-child {
  border-right: 0;
}

.calculator-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1.15rem;
}

.calculator-panel label {
  background: var(--white);
  border: 1px solid rgba(45, 13, 46, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 0.5rem;
  min-width: 0;
  padding: 1rem;
}

.calculator-panel label span {
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calculator-panel input {
  appearance: none;
  background: var(--ivory);
  border: 1px solid rgba(45, 13, 46, 0.18);
  border-radius: 7px;
  color: var(--plum-950);
  font: 900 1.6rem/1 Manrope, Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  min-height: 52px;
  min-width: 0;
  padding: 0 0.8rem;
  width: 100%;
}

.calculator-panel label:last-of-type {
  grid-column: 1 / -1;
}

.calculator-result {
  align-items: center;
  background: var(--plum-900);
  border: 1px solid rgba(227, 170, 59, 0.28);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  gap: 1rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 1rem;
}

.calculator-result span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calculator-result strong {
  font-size: 1.05rem;
  line-height: 1.25;
  max-width: 420px;
  text-align: right;
}

.glendale-proof-panel,
.proof-hero-grid {
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold-large);
}

.glendale-proof-panel {
  align-items: center;
  background: var(--ivory);
  color: var(--ink);
}

.proof-hero-grid {
  background: var(--ivory);
  color: var(--ink);
}

.proof-strip .stat-tile,
.proof-hero-grid .stat-tile,
.glendale-scorecard .stat-tile {
  background: var(--white);
  border-color: rgba(45, 13, 46, 0.16);
  color: var(--ink);
}

.glendale-scorecard {
  align-self: center;
  gap: 1rem;
}

.glendale-scorecard .stat-tile {
  align-content: center;
  border: 2px solid rgba(45, 13, 46, 0.16);
  border-radius: 8px;
  min-height: 158px;
  padding: 1.15rem;
}

.verified-office-grid article {
  border: 2px solid var(--panel-border);
  box-shadow: var(--shadow-gold);
}

.proof-strip .stat-tile strong,
.proof-hero-grid .stat-tile strong,
.glendale-scorecard .stat-tile strong {
  color: var(--plum-950);
}

.proof-strip .stat-tile span,
.proof-strip .stat-tile small,
.proof-hero-grid .stat-tile span,
.proof-hero-grid .stat-tile small,
.glendale-scorecard .stat-tile span,
.glendale-scorecard .stat-tile small {
  color: var(--muted);
}

.glendale-proof-panel h2 {
  color: var(--plum-950);
  text-shadow: none;
}

.glendale-proof-copy p {
  color: var(--muted);
}

.proof-callout span {
  color: var(--gold-700);
}

.proof-callout strong {
  color: var(--plum-950);
}

.case-study-copy-block article {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  padding: 1rem;
}

.case-study-copy-block h3 {
  color: var(--plum-900);
}

.case-study-copy-block p,
.breakdown-section p {
  color: var(--muted);
}

.related-card span {
  color: var(--gold-700);
  font-weight: 900;
  text-transform: uppercase;
}

.knowledge-band {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  max-width: none;
  padding: 0 max(24px, calc((100vw - 1360px) / 2)) 2rem;
  position: relative;
  width: 100%;
}

.knowledge-answer-card {
  background: var(--ivory);
  border: 2px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-gold-large);
  color: var(--ink);
  min-width: 0;
  padding: clamp(1.35rem, 2.6vw, 2.25rem);
  scroll-margin-top: 110px;
}

.knowledge-answer-card h2 {
  color: var(--plum-950);
  font-size: clamp(2.1rem, 3.3vw, 3.65rem);
  line-height: 1.02;
  margin-bottom: 1rem;
  text-shadow: none;
}

.knowledge-answer-card p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 980px;
}

.knowledge-answer-card--hub {
  background:
    linear-gradient(135deg, var(--ivory), var(--white)),
    radial-gradient(circle at 92% 12%, rgba(227, 170, 59, 0.2), transparent 28%);
}

.knowledge-meta {
  border-top: 1px solid rgba(45, 13, 46, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.knowledge-meta span {
  background: rgba(227, 170, 59, 0.18);
  border: 1px solid rgba(135, 87, 14, 0.2);
  border-radius: 999px;
  color: var(--plum-900);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.45rem 0.7rem;
}

.knowledge-section-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.knowledge-index {
  display: grid;
  gap: 1rem;
  scroll-margin-top: 110px;
}

.knowledge-index-heading {
  padding: 1.25rem 0 0.25rem;
}

.knowledge-index-heading h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 2.6vw, 2.7rem);
  margin-bottom: 0;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.42);
}

.knowledge-link-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
}

.knowledge-link-grid--hub {
  align-items: stretch;
}

.knowledge-card {
  min-height: 220px;
  min-width: 0;
}

.knowledge-card h4 {
  color: var(--plum-900);
  font-size: 1.24rem;
  line-height: 1.12;
  margin: 0 0 0.7rem;
}

.site-footer {
  background: rgba(255, 248, 240, 0.94);
  border-top: 4px solid var(--gold);
  color: var(--ink);
}

.footer-column h2 {
  color: var(--plum-900);
}

.brand-mark--footer .brand-logo {
  filter: none;
}

.brand-mark--footer small,
.footer-brand p,
.footer-column a,
.fine-print {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-section {
    padding: 4rem 24px 3rem;
  }

  .hero-shell,
  .proof-link-band,
  .proof-drawer,
  .knowledge-section-grid,
  .knowledge-link-grid,
  .hub-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 0;
  }

  .hero-proof-card {
    order: 1;
  }

  .hero-media {
    display: none;
  }

  .proof-strip {
    transform: none;
  }

  .site-header[data-open="true"] .mobile-nav:not([hidden]) {
    background: var(--ivory);
    border-top: 1px solid rgba(45, 13, 46, 0.16);
    display: grid;
  }
}

@media (max-width: 620px) {
  .hero-section,
  .interior-hero,
  .section-grid,
  .workflow-section,
  .case-section,
  .sitemap-preview,
  .content-band,
  .seo-intent-band,
  .knowledge-band,
  .proof-link-band,
  .faq-section,
  .case-study-proof,
  .pricing-band,
  .related-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1,
  .interior-hero h1 {
    font-size: 2.6rem;
    line-height: 0.98;
  }

  .hero-proof-card,
  .seo-card,
  .faq-item,
  .workflow-step,
  .price-card,
  .related-card,
  .definition-card,
  .knowledge-answer-card,
  .proof-drawer {
    box-shadow: 7px 7px 0 rgba(227, 170, 59, 0.36), 0 18px 42px rgba(45, 13, 46, 0.16);
  }

  .proof-card-kicker,
  .proof-card-metrics {
    grid-template-columns: 1fr;
  }

  .proof-card-kicker {
    align-items: flex-start;
    display: grid;
    justify-content: stretch;
  }

  .proof-card-kicker strong,
  .proof-card-link {
    white-space: normal;
  }

  .proof-card-amount {
    font-size: 3.65rem;
  }

  .hero-proof-card h2 {
    font-size: 1.55rem;
  }

  .proof-card-metrics div + div {
    border-left: 0;
    border-top: 1px solid rgba(45, 13, 46, 0.14);
  }

  .comparison-table {
    display: grid;
    gap: 0.8rem;
    overflow: visible;
  }

  .comparison-table > div {
    background: var(--ivory);
    border: 1px solid rgba(45, 13, 46, 0.14);
    border-radius: 8px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .comparison-table > div:first-child {
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .comparison-table span {
    border-right: 0;
    padding: 0.9rem;
  }

  .comparison-table span::before {
    color: var(--gold-700);
    display: block;
    font-size: 0.72rem;
    font-weight: 950;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
  }

  .comparison-table span:nth-child(1)::before {
    content: "Question";
  }

  .comparison-table span:nth-child(2)::before {
    content: "Typical alternative";
  }

  .comparison-table span:nth-child(3)::before {
    content: "LIZ";
  }

  .calculator-panel {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .calculator-panel label:last-of-type {
    grid-column: auto;
  }

  .calculator-result {
    align-items: flex-start;
    display: grid;
    grid-column: auto;
  }

  .calculator-result strong {
    max-width: none;
    text-align: left;
  }

  .proof-drawer-action {
    justify-self: start;
  }
}
