



@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/newsreader-v26-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/newsreader-v26-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-v20-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}



:root {
  --paper: #fbf9f4;
  --cream: #f5efe1;
  --ink: #1b1813;
  --muted: #6e675b;
  --rule: #e5e0d3;
  --field-border: #918a7d;
  
  --link-underline: #918a7d;
  --accent: #a63d10;

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  
  --measure: 35rem;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--cream);
  color: var(--accent);
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 0;
  z-index: 10;
}


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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--link-underline);
  transition: color 120ms ease, text-decoration-color 120ms ease;
}

a:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}



.site-header {
  border-bottom: 1px solid var(--rule);
}


.site-header .wrap {
  max-width: 72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  gap: 0 1rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}


.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 0 1.4rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}



.hero {
  padding: 4.5rem 1.25rem 3.25rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}


.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 2.9rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.hero .intro {
  margin-top: 1.4rem;
  color: var(--ink);
}

.hero .actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--ink);
  transition: background 120ms ease, color 120ms ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}




.project {
  position: relative;
  margin-top: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 3%, var(--paper));
  transition: background 200ms ease;
}


.project-banner {
  display: block;
  padding: 1.1rem 1.25rem;
  background: color-mix(in srgb, var(--accent) 9%, var(--paper));
}


.shot {
  border: 1px solid color-mix(in srgb, var(--ink) 22%, var(--paper));
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.shot::before {
  content: "";
  display: block;
  height: 22px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(3.5px 3.5px at 15px 11px, color-mix(in srgb, var(--ink) 32%, #fff) 49%, transparent 51%),
    radial-gradient(3.5px 3.5px at 29px 11px, color-mix(in srgb, var(--ink) 32%, #fff) 49%, transparent 51%),
    radial-gradient(3.5px 3.5px at 43px 11px, color-mix(in srgb, var(--ink) 32%, #fff) 49%, transparent 51%),
    color-mix(in srgb, var(--ink) 4%, #fff);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 30rem) {
  .project-banner {
    padding: 0.85rem 0.9rem;
  }
}

@media (hover: hover) {
  .project:hover {
    background: color-mix(in srgb, var(--ink) 4.5%, var(--paper));
  }
}

@media (prefers-reduced-motion: reduce) {
  .project {
    transition: none;
  }
}

.project-body {
  padding: 1.35rem 1.5rem 1.45rem;
}

.project-head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.project-chip {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(-1px);
}

.project-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
}

.project-title a {
  text-decoration: none;
}


.project-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
}

.project:has(a:hover) .project-title a {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.project:has(a:focus-visible) {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.project-title a:focus-visible {
  outline: none;
}

.project-specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.5rem;
  row-gap: 0.55rem;
  align-items: baseline;
  margin-top: 1.05rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
}

.project-specs dt {
  color: var(--muted);
}

.project-specs dd {
  color: var(--ink);
}

@media (max-width: 30rem) {
  .project-specs {
    grid-template-columns: 1fr;
    row-gap: 0.15rem;
  }

  .project-specs dd {
    margin-bottom: 0.6rem;
  }

  .project-body {
    padding: 1.25rem 1.15rem 1.4rem;
  }
}


.group-label {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 2.4rem;
}



.claim-list {
  list-style: none;
  margin-top: 1.4rem;
  border-top: 1px solid var(--rule);
}

.claim-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
}

.lead-in {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: normal;
  margin-right: 0.15rem;
}

.group-note {
  margin-top: 0.4rem;
  color: var(--muted);
}


.cta-line {
  margin-top: 1.9rem;
}

.cta-button {
  margin-top: 1rem;
}




main > section {
  padding: 3.25rem 0;
  border-top: 1px solid var(--rule);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

section p + p {
  margin-top: 1.1rem;
}




.price-shared {
  margin-bottom: 1.5rem;
}

.price-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.price-list > li {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.price-name {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
}


.price-tag {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
}

.price-note {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--sans);
  
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.fine-print {
  margin-top: 1.5rem;
  color: var(--ink);
}


.after-launch {
  margin-top: 2.75rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--rule);
}


.after-launch .group-label {
  margin-top: 0;
  margin-bottom: 0.6rem;
}


.care-list {
  list-style: none;
  margin: 0.9rem 0 1.1rem;
}

.care-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-top: 0.45rem;
}

.care-list li::before {
  content: "·";
  position: absolute;
  left: 0.15rem;
  color: var(--muted);
}



.process-list {
  list-style: none;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}

.process-list li:first-child {
  border-top: 1px solid var(--rule);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--muted);
  padding-top: 0.35rem;
}

.process-list h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
}

.process-list p {
  margin-top: 0.3rem;
}



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

.faq-list details:first-child {
  border-top: 1px solid var(--rule);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
  list-style: none;
  cursor: pointer;
  transition: color 120ms ease;
}

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

.faq-list summary::after {
  content: "+";
  flex: none;
  color: var(--muted);
  transition: color 120ms ease;
}

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

.faq-list summary:hover,
.faq-list summary:hover::after {
  color: var(--accent);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}


.faq-list details[open] summary {
  padding-bottom: 0.35rem;
}

.faq-list details > p {
  padding-bottom: 1.15rem;
}



.form-lead {
  margin-top: 2.5rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--rule);
}

.contact-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 1.1rem;
  max-width: 34rem;
}

.contact-form .field {
  display: grid;
  gap: 0.35rem;
}

.contact-form label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form .optional {
  font-weight: 400;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  
  font-size: 1rem;
  min-height: 44px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--field-border);
  border-radius: 4px;
  padding: 0.55rem 0.7rem;
  width: 100%;
}


.contact-form .vh-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
}

.form-hint {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}


.field-error {
  display: none;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}


.contact-form :is(input, textarea):user-invalid {
  border-color: var(--accent);
}

.contact-form :is(input, textarea):user-invalid + .field-error {
  display: block;
}

.form-privacy {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}





.signoff {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.signoff img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.signoff-email {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}


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

.signoff-note {
  margin-top: 0.9rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}


.signoff-label {
  display: inline-block;
  min-width: 6rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (max-width: 34rem) {
  .signoff {
    grid-template-columns: 92px 1fr;
    gap: 1.1rem;
  }

  .signoff-label {
    display: block;
    min-width: 0;
  }
}



.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2.25rem 0 3rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--muted);
}



@media (max-width: 27rem) {
  
  .site-nav .nav-secondary {
    display: none;
  }
}

@media (max-width: 34rem) {
  body {
    font-size: 1.125rem;
  }

  
  .site-nav {
    gap: 0 1.1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .price-list > li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .price-name {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
  }

  .price-tag,
  .price-note {
    margin-top: 0;
  }
}
