@font-face {
  font-family: "Jersey 15";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/jersey-15-latin.woff2") format("woff2");
}

:root {
  --paper: #faf6ee;
  --paper-deep: #f2e8d8;
  --ink: #19120c;
  --muted: #5b5148;
  --line: #2a1b10;
  --accent: #cf3f0d;
  --magenta: #c8245c;
  --cyan: #2bbfc7;
  --gold: #f1a029;
  --content: 1080px;
  --narrow: 780px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgb(250 246 238 / 94%), rgb(250 246 238 / 94%)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgb(63 35 15 / 3%) 3px 4px),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), var(--narrow));
  margin-inline: auto;
}

.eyebrow,
.meta-line,
.site-nav,
.footer-nav,
.card-kicker {
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1;
}

.lead {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.header-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 260px;
  height: auto;
  object-fit: contain;
  image-rendering: pixelated;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
  font-size: 1.2rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  text-decoration: none;
}

.site-nav a:not(.button) {
  padding-inline: 4px;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call.button {
  display: none;
}

.signal-line {
  position: relative;
  height: 4px;
  background: var(--line);
}

.signal-line::before,
.signal-line::after,
.signal-node {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border: 2px solid var(--line);
  content: "";
}

.signal-line::before {
  left: 18%;
  background: var(--gold);
}

.signal-node {
  left: 50%;
  background: var(--magenta);
}

.signal-line::after {
  right: 18%;
  background: var(--cyan);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 2px solid var(--line);
  box-shadow: 4px 4px 0 var(--line);
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--line);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  box-shadow: none;
  font-size: 1.08rem;
}

.hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(78px, 10vw, 128px);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(36px, 7vw, 80px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.hero-art {
  width: min(100%, 470px);
  height: auto;
  margin-inline: auto;
  image-rendering: pixelated;
}

.hero .meta-line {
  display: flex;
  margin: 24px 0 0;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}

.hero .meta-line::before {
  color: var(--accent);
  content: "◆";
  font-size: 0.8rem;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.08rem;
}

.hero-fit {
  max-width: 690px;
  margin: -10px 0 30px;
  color: var(--muted);
  font-size: 1.02rem;
}

.pricing-hero {
  padding-bottom: clamp(44px, 6vw, 68px);
}

.pricing-hero-layout {
  display: grid;
  align-items: start;
  gap: 26px 54px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.pricing-hero-copy h1,
.pricing-hero-copy h2 {
  max-width: 680px;
}

.pricing-hero-copy > h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.pricing-hero-copy .lead {
  max-width: 700px;
}

.pricing-hero .button-row {
  margin-top: 28px;
}

.pricing-note {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  grid-column: 1 / -1;
}

.pricing-path {
  margin: 2px 0 0;
  padding: 0;
  border: 2px solid var(--line);
  background: rgb(250 246 238 / 82%);
  list-style: none;
}

.pricing-path li {
  --path-color: var(--gold);
  display: grid;
  padding: 18px 20px;
  align-items: start;
  gap: 16px;
  border-bottom: 1px solid rgb(42 27 16 / 28%);
  grid-template-columns: 46px minmax(0, 1fr);
}

.pricing-path li:nth-child(2) {
  --path-color: var(--magenta);
}

.pricing-path li:nth-child(3) {
  --path-color: var(--cyan);
}

.pricing-path li:last-child {
  border-bottom: 0;
}

.pricing-path-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--path-color);
  color: var(--ink);
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.pricing-path h2,
.pricing-path h3 {
  margin: 0 0 2px;
  font-size: 1.55rem;
}

.pricing-path p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-compact {
  padding: clamp(48px, 6vw, 72px) 0;
}

.section-tint {
  border-block: 1px solid rgb(42 27 16 / 22%);
  background: rgb(242 232 216 / 46%);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(38px, 6vw, 58px);
  align-items: center;
  gap: 18px;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  text-align: center;
}

.section-heading::before,
.section-heading::after {
  height: 3px;
  background: var(--line);
  content: "";
}

.section-heading h2 {
  margin: 0;
}

.section-intro {
  max-width: 720px;
  margin: -30px auto 46px;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

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

.service-card,
.scope-card,
.care-card {
  position: relative;
  padding: 30px;
  border: 2px solid var(--line);
  background: rgb(250 246 238 / 80%);
}

.service-card {
  min-height: 260px;
}

.card-icon {
  width: auto;
  height: auto;
  max-height: 72px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
  image-rendering: pixelated;
}

.service-card:nth-child(1) {
  border-top: 8px solid var(--gold);
}

.service-card:nth-child(2) {
  border-top: 8px solid var(--magenta);
}

.service-card:nth-child(3) {
  border-top: 8px solid var(--cyan);
}

.service-card:nth-child(2) .feature-list li::before {
  background: var(--magenta);
}

.service-card:nth-child(3) .feature-list li::before {
  background: var(--cyan);
}

.direct-note {
  margin: 48px auto 0;
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.accent-note {
  color: var(--accent);
}

.scope-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.scope-card.featured::before {
  position: absolute;
  top: -17px;
  left: 50%;
  padding: 4px 18px;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  content: "Most common";
  font-family: "Jersey 15", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scope-card .card-icon {
  width: auto;
  height: auto;
  max-height: 62px;
  margin-inline: auto;
  object-position: center;
}

.scope-card .scope-time {
  margin-bottom: 20px;
  font-family: "Jersey 15", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.scope-card .best-for {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid var(--line);
  font-weight: 700;
}

.care-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-card {
  min-height: 220px;
  padding: 26px;
}

.care-card > :last-child {
  margin-bottom: 0;
}

.pricing-hours-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  text-align: center;
}

.pricing-page .section-heading {
  margin-bottom: 36px;
}

.pricing-page .section-intro {
  margin: -18px auto 32px;
}

.care-price {
  margin-bottom: 22px;
  font-family: "Jersey 15", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--line);
  background: var(--gold);
  content: "";
}

.care-card:nth-child(2) .feature-list li::before {
  background: var(--magenta);
}

.care-card:nth-child(3) .feature-list li::before {
  background: var(--cyan);
}

.faq-list {
  border-top: 2px solid var(--line);
}

.faq-list details {
  border-bottom: 2px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 54px 22px 0;
  cursor: pointer;
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: 0.035em;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--accent);
  content: "+";
  font-size: 2rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -2px 54px 22px 0;
  color: var(--muted);
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 2px solid var(--line);
}

.site-footer-home,
.site-footer-landscape {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgb(250 246 238 / 0%) 0%, rgb(242 232 216 / 52%) 100%);
}

.site-footer-compact {
  padding-top: 28px;
}

.site-footer-compact .footer-bottom {
  padding-top: 0;
}

.footer-cta {
  position: relative;
  display: grid;
  align-items: start;
  align-content: start;
  gap: 32px;
  padding: 12px 0 36px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-scene {
  position: relative;
  left: 50%;
  width: max(100vw, 900px);
  margin-top: 24px;
  transform: translateX(-50%);
  line-height: 0;
}

.footer-art {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.footer-copy,
.footer-actions {
  position: relative;
  z-index: 1;
}

.footer-copy {
  max-width: 560px;
  padding: 2px 0 24px;
}

.footer-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.footer-copy p {
  max-width: 500px;
  margin-bottom: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-home .footer-bottom,
.site-footer-landscape .footer-bottom {
  padding: 20px 0 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.legal {
  padding: 64px 0 96px;
}

.legal h2 {
  margin-top: 48px;
  font-size: 2rem;
}

.legal .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.intake-page {
  padding: clamp(56px, 8vw, 88px) 0 clamp(72px, 10vw, 112px);
}

.intake-layout {
  display: grid;
  align-items: start;
  gap: clamp(40px, 7vw, 76px);
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
}

.intake-copy h1 {
  max-width: 560px;
  font-size: clamp(3.5rem, 7vw, 5.7rem);
}

.intake-copy .lead {
  margin-bottom: 22px;
}

.intake-direct {
  color: var(--muted);
}

.intake-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 2px solid var(--line);
  background: rgb(250 246 238 / 84%);
  box-shadow: 8px 8px 0 var(--line);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: "Jersey 15", "Arial Narrow", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.form-hint,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 28px;
  margin: 20px 0 0;
  font-weight: 700;
}

.form-status-success {
  padding: 22px;
  border: 2px solid var(--line);
  background: rgb(43 191 199 / 16%);
}

.form-status-error {
  color: #9b2400;
}

.form-status a {
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
}

.not-found .button-row {
  justify-content: center;
}

@media (max-width: 900px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 1.08rem;
  }

  .hero-grid,
  .pricing-hero-layout,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-art {
    width: min(80%, 430px);
  }

  .grid-3,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .scope-card,
  .care-card {
    min-height: 0;
  }

  .footer-cta {
    padding-bottom: 32px;
  }

  .intake-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 110px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    min-height: 92px;
  }

  .brand img {
    width: 205px;
    height: auto;
  }

  .header-call.button {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    margin-left: auto;
    padding: 9px 15px;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .signal-line::before {
    left: 12%;
  }

  .signal-line::after {
    right: 12%;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-art {
    width: min(100%, 390px);
    margin-top: -18px;
  }

  .section-heading {
    gap: 10px;
    grid-template-columns: 26px minmax(0, auto) 26px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .footer-cta {
    padding: 4px 0 32px;
    grid-template-columns: 1fr;
  }

  .footer-copy {
    max-width: 520px;
  }

  .footer-actions {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.3rem, 17vw, 4.75rem);
  }

  .brand img {
    width: 190px;
  }

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

  .service-card,
  .scope-card,
  .care-card {
    padding: 24px;
  }

  .intake-form {
    padding: 22px;
    box-shadow: 5px 5px 0 var(--line);
  }

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

  .footer-cta {
    padding: 0 0 28px;
    grid-template-columns: 1fr;
  }

  .footer-copy {
    padding-bottom: 0;
  }

  .footer-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .footer-scene {
    width: 760px;
  }

  .footer-art {
    width: 100%;
    height: auto;
  }

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

@media (max-width: 360px) {
  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 150px;
  }

  .header-call {
    padding-inline: 10px;
    font-size: 0.96rem;
  }
}

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