﻿/*
Theme Name: VLP Alliance Website v3 Improved
Theme URI: https://vlpalliance.com/
Author: VLP Alliance
Description: Custom one-page website theme for VLP Alliance and VLP Design Group. Full CSS is included in root style.css for reliable WordPress display.
Version: 3.1.0
License: Proprietary
Text Domain: vlp-alliance
*/

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-label: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --ink: #111111;
  --muted: #606060;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: #dddddd;
  --red: #b4121b;
  --charcoal: #111111;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 4px;
  background: var(--red);
  transform-origin: left center;
  transition: width 120ms linear;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 76px;
  height: 46px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--red);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.94rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 650;
  padding-right: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #111111;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-block: 6px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 146px clamp(20px, 7vw, 96px) 76px;
  isolation: isolate;
  --mx: 0px;
  --my: 0px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: translate3d(calc(var(--mx) * -0.015), calc(var(--my) * -0.015), 0) scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.18) 68%),
    radial-gradient(ellipse at 72% 54%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28) 88%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}

.hero-content {
  width: min(920px, 100%);
  transform: translate3d(calc(var(--mx) * 0.01), calc(var(--my) * 0.01), 0);
}

.hero-rail {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  top: 22%;
  bottom: 18%;
  width: 6px;
  background: var(--red);
  transform: translateX(-28px) scaleY(0);
  transform-origin: top;
  animation: railDrop 900ms cubic-bezier(0.19, 1, 0.22, 1) 220ms forwards;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 14vw, 13.5rem);
  line-height: 0.78;
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-label);
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-text {
  max-width: 660px;
  color: #222222;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(690px, 100%);
  margin-top: 38px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.hero-proof span {
  flex: 1 1 180px;
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::before {
  content: "";
  width: 2px;
  height: 76px;
  background: var(--red);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--charcoal);
  font-weight: 750;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-102%);
  transition: transform 240ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.button:hover::before {
  transform: translateX(0);
}

.button.primary:hover,
.button.secondary:hover {
  color: #ffffff;
  border-color: var(--red);
}

.button.primary {
  background: var(--charcoal);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
}

.intro,
.edge-section,
.lead-capture,
.section,
.content-sources,
.services,
.community-section,
.approach,
.restore-section,
.credentials-section,
.inquiry-panel,
.contact {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 92px);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.intro p:last-child,
.approach-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
  color: #ffffff;
  border-block: 1px solid #000000;
}

.metric-band div {
  min-height: 178px;
  padding: 32px clamp(20px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  align-content: space-between;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.metric-band div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.metric-band div:hover::after {
  transform: scaleX(1);
}

.metric-band strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
}

.metric-band span {
  max-width: 260px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section-note {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.identity-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #0d0d0d;
  color: #ffffff;
}

.identity-panel {
  min-height: 540px;
  display: grid;
  align-content: end;
  padding: clamp(42px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(180, 18, 27, 0.2), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 68px);
  opacity: 0.72;
  transform: scale(1.03);
  transition: transform 600ms cubic-bezier(0.19, 1, 0.22, 1), opacity 260ms ease;
}

.identity-panel.design::before {
  background:
    linear-gradient(315deg, rgba(180, 18, 27, 0.26), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 68px);
}

.identity-panel:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.identity-panel > * {
  position: relative;
  z-index: 1;
}

.identity-panel h2 {
  max-width: 620px;
}

.identity-panel p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.edge-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.edge-lead {
  position: sticky;
  top: 130px;
  align-self: start;
}

.edge-grid {
  display: grid;
  gap: 18px;
}

.edge-grid article {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(180, 18, 27, 0.08), transparent 38%),
    #f7f7f7;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1), border-color 260ms ease, background 260ms ease;
}

.edge-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

.edge-grid article:hover {
  transform: translateX(10px);
  border-color: rgba(180, 18, 27, 0.36);
  background:
    linear-gradient(135deg, rgba(180, 18, 27, 0.14), transparent 44%),
    #ffffff;
}

.edge-grid article:hover::before {
  transform: scaleX(1);
}

.edge-grid span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.edge-grid p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.68;
}

.lead-capture {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  background: #f5f5f5;
  border-bottom: 1px solid var(--line);
}

.lead-copy p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stage-card {
  min-height: 286px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  font: inherit;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
  transition: transform 240ms cubic-bezier(0.19, 1, 0.22, 1), border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.stage-card:hover,
.stage-card.is-selected {
  transform: translateY(-8px);
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.stage-card span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.stage-card strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.15;
}

.stage-card small {
  color: inherit;
  opacity: 0.72;
  line-height: 1.55;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card,
.source-grid article,
.service-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.work-card {
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  background: #eeeeee;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1), filter 260ms ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--red);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.work-card:hover,
.source-grid article:hover,
.service-list article:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 18, 27, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.13);
}

.work-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.08);
}

.work-card:hover::before {
  transform: scaleX(1);
}

.work-card span,
.work-card h3,
.work-card p {
  margin-inline: clamp(22px, 3vw, 32px);
}

.work-card span {
  display: inline-block;
  margin-top: 24px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  margin-top: 20px;
  margin-bottom: 12px;
}

.project-meta {
  min-height: 52px;
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 clamp(22px, 3vw, 32px) 18px;
  padding: 0;
  list-style: none;
}

.scope-list li {
  padding: 6px 8px;
  background: #f2f2f2;
  color: var(--red);
  border: 1px solid #e3e3e3;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card p:last-child {
  margin-bottom: 30px;
}

.work-card p,
.source-grid p,
.service-list p,
.steps p,
address span {
  color: var(--muted);
  line-height: 1.65;
}

.content-sources {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.source-grid article {
  padding: clamp(24px, 3vw, 34px);
  min-height: 250px;
  display: grid;
  align-content: start;
}

.source-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-grid h3 {
  margin: 22px 0 12px;
}

.services {
  background: #f3f3f3;
  border-block: 1px solid var(--line);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.08);
}

.service-list article {
  border: 0;
  box-shadow: none;
  padding: clamp(22px, 3vw, 32px);
}

.service-list ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 2px;
  background: var(--red);
}

.community-section {
  background: #111111;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(180, 18, 27, 0.22), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100px);
  pointer-events: none;
}

.community-section > * {
  position: relative;
}

.community-section .section-note {
  color: rgba(255, 255, 255, 0.72);
}

.tab-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.tab-list {
  display: grid;
  align-content: stretch;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.tab-button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  padding: 24px;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.tab-button:hover,
.tab-button.is-active {
  background: var(--red);
  color: #ffffff;
  padding-left: 34px;
}

.tab-panel {
  align-content: end;
  min-height: 520px;
  padding: clamp(32px, 6vw, 76px);
  animation: tabFade 320ms ease;
}

.partner-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin-bottom: 26px;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.partner-logo-wide {
  width: min(360px, 100%);
  height: 128px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.partner-logo-light {
  width: min(460px, 100%);
  height: 104px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.tab-panel span {
  color: #ff4a55;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tab-panel h3 {
  max-width: 760px;
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.tab-panel p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.tab-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  background: var(--surface);
}

.restore-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  background:
    linear-gradient(135deg, rgba(180, 18, 27, 0.08), transparent 34%),
    #ffffff;
  border-top: 1px solid var(--line);
}

.restore-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.restore-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.restore-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.restore-copy li {
  min-height: 88px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: #111111;
  color: #ffffff;
  border-left: 4px solid var(--red);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.credentials-section {
  overflow: hidden;
  background: #f5f5f5;
  border-block: 1px solid var(--line);
}

.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(120px, 18vw);
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.credential-badge {
  width: 260px;
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.credential-badge strong {
  color: var(--red);
  font-family: var(--font-label);
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.credential-badge small {
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.credential-badge.logo-badge {
  justify-items: start;
}

.credential-badge.logo-badge img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  background: #000000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.credential-badge.wide-logo-badge img {
  width: 150px;
  height: 58px;
  border-radius: 0;
  background: #000000;
  object-fit: contain;
  padding: 5px;
}

.credential-badge.cure-logo-badge img {
  width: 172px;
  height: 48px;
  border-radius: 0;
  background: #ffffff;
  object-fit: contain;
  padding: 6px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.steps li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  transition: border-color 200ms ease, transform 200ms ease;
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li:hover {
  border-color: rgba(180, 18, 27, 0.5);
  transform: translateX(8px);
}

.steps span {
  color: var(--red);
  font-weight: 800;
}

.steps p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 8vw, 96px);
  background: var(--charcoal);
  color: #ffffff;
  min-height: 560px;
  align-items: center;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: end;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.inquiry-panel h2 {
  max-width: 900px;
}

.inquiry-actions {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  background: #111111;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.inquiry-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.inquiry-actions .button.primary {
  border-color: #ffffff;
}

.lead-form {
  width: 100%;
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.lead-form select option {
  color: #111111;
}

.lead-form textarea {
  resize: vertical;
  min-height: 118px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #ff4a55;
  background: rgba(255, 255, 255, 0.12);
}

.lead-form .button {
  width: max-content;
  z-index: 0;
}

.contact .section-kicker,
.contact a {
  color: #ff4a55;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

address {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 8px;
  font-style: normal;
  font-size: 1.05rem;
}

.contact-logo {
  display: block;
  width: 124px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 2px;
}

address strong {
  font-size: 1.35rem;
}

address a {
  width: max-content;
  border-bottom: 1px solid rgba(255, 74, 85, 0.58);
  transition: color 180ms ease, border-color 180ms ease;
}

address a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

body.animations-ready [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--delay, 0ms);
}

body.animations-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 7vw, 96px);
  background: #000000;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer,
.contact {
  position: relative;
}

.brand-copy span,
.nav-links,
.nav-cta,
.eyebrow,
.section-kicker,
.hero-proof span,
.scroll-cue,
.button,
.metric-band span,
.work-card span,
.project-meta,
.scope-list,
.source-grid span,
.stage-card,
.lead-form label,
.floating-cta {
  font-family: var(--font-label);
}

.metric-band strong,
.edge-grid span,
.stage-card span {
  font-family: var(--font-display);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.06) 49% 49.15%, transparent 49.15%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100px);
  pointer-events: none;
}

.contact > * {
  position: relative;
}

.site-footer a {
  color: #ffffff;
}

.floating-cta {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-cta:hover {
  transform: translateY(-3px);
  background: #111111;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .nav-cta {
    align-self: stretch;
  }

  .hero {
    min-height: 860px;
    padding-top: 184px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 68%, rgba(255, 255, 255, 0.28) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
  }

  .intro,
  .edge-section,
  .lead-capture,
  .tab-shell,
  .identity-split,
  .approach,
  .restore-section,
  .inquiry-panel,
  .contact,
  .work-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .stage-grid {
    grid-template-columns: 1fr;
  }

  .restore-copy ul {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
  }

  .tab-button {
    padding: 18px;
  }

  .tab-button:hover,
  .tab-button.is-active {
    padding-left: 18px;
  }

  .tab-panel {
    min-height: 480px;
  }

  .edge-lead {
    position: static;
  }

  .identity-panel {
    min-height: 430px;
  }

  .metric-band,
  .service-list {
    grid-template-columns: 1fr;
  }

  .metric-band div {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@keyframes heroDrift {
  from {
    transform: translate3d(calc(var(--mx) * -0.015), calc(var(--my) * -0.015), 0) scale(1.04);
  }

  to {
    transform: translate3d(calc(var(--mx) * -0.015), calc(var(--my) * -0.015), 0) scale(1.1);
  }
}

@keyframes railDrop {
  to {
    transform: translateX(-28px) scaleY(1);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.42);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes tabFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body.animations-ready [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    display: none;
  }

  .nav-links {
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    min-height: 780px;
  }

  .button {
    width: 100%;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    flex-direction: column;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
  }
}
