:root {
  --purple-950: #1b0b35;
  --purple-900: #2a0f55;
  --purple-800: #3d1478;
  --purple-700: #5420a0;
  --yellow-500: #ffcf24;
  --yellow-600: #f2b900;
  --cream-100: #fff9e8;
  --cream-200: #f5ecd2;
  --ink: #15121b;
  --muted: #5f586b;
  --line: #ded2b4;
  --white: #fffefa;
  --danger: #c9392d;
  --shadow: 0 22px 70px rgba(27, 11, 53, 0.22);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.48;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: var(--yellow-500);
  color: var(--purple-950);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--yellow-500);
  color: var(--purple-950);
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 249, 232, 0.96);
  border-bottom: 1px solid rgba(61, 20, 120, 0.18);
  backdrop-filter: blur(16px);
}

.top-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 1rem;
  background: var(--purple-900);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.top-strip a {
  color: var(--yellow-500);
  text-decoration: none;
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px) 1fr;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  width: min(520px, 100%);
  justify-self: center;
  grid-column: 2;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.35rem;
  font-weight: 800;
  color: var(--purple-900);
  grid-column: 1;
  grid-row: 1;
}

.nav-call {
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}

.nav-links a,
.site-footer a,
.contact-list a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.nav-call,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.05;
  text-align: center;
}

.nav-call,
.button-primary {
  background: var(--yellow-500);
  color: var(--purple-950);
  border-color: var(--yellow-500);
  box-shadow: 0 10px 0 var(--purple-950);
}

.button-primary:hover,
.nav-call:hover {
  background: var(--white);
  transform: translateY(1px);
  box-shadow: 0 7px 0 var(--purple-950);
}

.button-secondary {
  background: rgba(255, 254, 250, 0.12);
  color: var(--white);
  border-color: rgba(255, 254, 250, 0.72);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--purple-950);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--purple-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 11, 53, 0.78) 0%, rgba(27, 11, 53, 0.56) 50%, rgba(27, 11, 53, 0.44) 100%),
    url("assets/p1-imagemain.jpg") center / cover no-repeat;
  transform: none;
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 5.4rem 0 4.2rem;
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--yellow-500);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: "Archivo Black", "Source Sans 3", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  font-size: 5.3rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.1rem;
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--purple-950);
  font-size: 1.35rem;
  line-height: 1.08;
}

.hero-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  font-size: 1.42rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(255, 207, 36, 0.45);
  background: rgba(27, 11, 53, 0.64);
}

.hero-proof div {
  padding: 1rem;
  border-right: 1px solid rgba(255, 207, 36, 0.45);
}

.hero-proof div:last-child {
  border-right: 0;
}

.proof-number {
  display: block;
  color: var(--yellow-500);
  font-family: "Archivo Black", "Source Sans 3", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 254, 250, 0.84);
  font-size: 0.98rem;
  font-weight: 700;
}

.urgent-band {
  background: var(--yellow-500);
  color: var(--purple-950);
  border-top: 4px solid var(--purple-950);
  border-bottom: 4px solid var(--purple-950);
}

.band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.band-inner p {
  margin: 0;
  font-family: "Archivo Black", "Source Sans 3", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.band-inner ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1.35rem;
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-weight: 800;
}

.quick-forms {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem;
}

.quick-forms-copy {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quick-forms-copy h2 {
  margin-bottom: 0;
  color: var(--purple-950);
  font-size: 2.1rem;
}

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

.quick-form-link {
  min-height: 150px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid var(--purple-950);
  border-radius: 8px;
  background: var(--yellow-500);
  color: var(--purple-950);
  text-decoration: none;
  box-shadow: 0 10px 0 var(--purple-950);
}

.quick-form-link span {
  font-family: "Archivo Black", "Source Sans 3", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.quick-form-link strong {
  font-size: 1.02rem;
}

.quick-form-link:hover {
  background: var(--white);
  transform: translateY(1px);
  box-shadow: 0 7px 0 var(--purple-950);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.4rem 1.2rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 3rem;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 9rem;
}

.section-copy p:not(.eyebrow),
.forms-section p,
.final-cta p,
.family-copy p,
.section-heading {
  color: var(--muted);
}

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

.process-card,
.service-card,
.location-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(61, 20, 120, 0.08);
}

.process-card {
  min-height: 220px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.process-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  background: var(--purple-800);
  color: var(--yellow-500);
  border-radius: 50%;
  font-family: "Archivo Black", "Source Sans 3", sans-serif;
}

.process-card p,
.service-card p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.family-section {
  background: var(--purple-900);
  color: var(--white);
}

.family-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.6rem 1.2rem;
}

.family-copy h2 {
  color: var(--white);
}

.family-copy p {
  color: rgba(255, 254, 250, 0.82);
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.impact-list p {
  margin: 0;
  padding-left: 1rem;
  border-left: 5px solid var(--yellow-500);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 1.8rem;
}

.forms-section {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 1.5rem;
  background: var(--purple-800);
  color: var(--white);
  border: 4px solid var(--yellow-500);
}

.forms-section h2 {
  color: var(--white);
}

.forms-section p {
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.84);
}

.forms-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-download-card {
  min-height: 205px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 207, 36, 0.5);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.form-download-card h3 {
  color: var(--purple-950);
}

.form-download-card p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.form-download-card .button {
  width: 100%;
  margin-top: auto;
}

.location-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.location-card {
  padding: 1.6rem;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--purple-800);
}

.map-wrap {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.faq-section {
  padding-top: 2.5rem;
}

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

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--purple-950);
  font-weight: 900;
}

.faq-list p {
  padding-top: 0.7rem;
}

.final-cta {
  padding: 5rem 1.2rem;
  background:
    linear-gradient(90deg, rgba(27, 11, 53, 0.96), rgba(61, 20, 120, 0.72)),
    url("assets/cta.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin-bottom: 1.5rem;
  color: rgba(255, 254, 250, 0.84);
  font-size: 1.35rem;
  font-weight: 800;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.2rem 5.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0.2rem 0 0;
}

.site-footer div:last-child {
  display: flex;
  gap: 1rem;
  font-weight: 800;
  color: var(--purple-800);
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr;
  background: var(--purple-950);
  border-top: 3px solid var(--yellow-500);
}

.mobile-action-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  color: var(--white);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
}

.mobile-action-bar a:last-child {
  background: var(--yellow-500);
  color: var(--purple-950);
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand {
    width: min(340px, 100%);
    grid-column: 1;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.98rem;
  }

  .nav-call {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .hero {
    min-height: 70vh;
  }

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

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .band-inner,
  .quick-forms,
  .split-section,
  .family-section,
  .service-grid,
  .forms-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .band-inner {
    align-items: flex-start;
  }

  .section-copy {
    position: static;
  }

  .quick-form-actions {
    grid-template-columns: 1fr;
  }

  .family-copy {
    padding: 2.4rem 1.2rem;
  }

  .forms-downloads {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .top-strip span,
  .top-strip a {
    white-space: nowrap;
  }

  .top-strip span:last-child {
    display: none;
  }

  .nav-call {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.15rem;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(27, 11, 53, 0.78) 0%, rgba(27, 11, 53, 0.62) 58%, rgba(27, 11, 53, 0.86) 100%),
      url("assets/p1-imagemain.jpg") center / cover no-repeat;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    width: min(100% - 1.5rem, var(--max));
    padding: 2.25rem 0 2.4rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof,
  .process-grid,
  .impact-list {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 207, 36, 0.45);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .band-inner {
    display: grid;
  }

  .band-inner ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    width: 100%;
    max-width: 100%;
    padding: 4rem 0.85rem;
  }

  .section > *,
  .split-section > * {
    min-width: 0;
    max-width: 100%;
  }

  .section p,
  .section h2 {
    overflow-wrap: break-word;
  }

  .forms-section {
    margin-left: 0.85rem;
    margin-right: 0.85rem;
    padding: 1.2rem;
  }

  .service-card img {
    height: 200px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    display: grid;
  }

  .mobile-action-bar {
    display: grid;
  }

  .mobile-action-bar a {
    font-size: 0.92rem;
  }
}

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