/* Save Time with AI — cool paper, black ink, deep blue. Phone first. */

:root {
  --paper: #f5f7fa;
  --paper-deep: #e8eef4;
  --ink: #0b0d10;
  --ink-soft: #4b5563;
  --accent: #1e4e8c;
  --accent-hover: #2a63b0;
  --dark: #0b0d10;
  --on-dark: #f5f7fa;
  --on-dark-soft: #b7c3d4;
  --border: #d5dce6;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --measure: 40rem;
  --wide: 64rem;
  --header-h: 4.75rem;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, li, legend { overflow-wrap: break-word; }

@media (min-width: 768px) {
  body { font-size: 1.2rem; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
h1, h2, h3, p, ul, ol, figure, blockquote, fieldset { margin: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
h1, h2 { max-width: 100%; }
h1 { font-size: clamp(2.15rem, 7.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.875rem, 4.4vw, 3rem); }
h3 { font-size: 1.35rem; }
ul, ol { padding: 0; }
button, input { font: inherit; }

.skip {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  transform: translateY(-150%);
}
.skip:focus { transform: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding-inline: 1.25rem;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "brand"
    "nav"
    "cta";
  align-items: center;
  gap: 0.45rem 1.25rem;
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding: 0.85rem 0 1rem;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1.2;
}
.logo-mark {
  width: 1.85rem;
  height: 1.85rem;
  flex: none;
}

.button--nav { grid-area: cta; width: 100%; }

.nav-desktop {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  font-weight: 600;
}
.nav-desktop a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  text-decoration: none;
}
.nav-desktop a[aria-current="page"] { color: var(--accent); }

@media (min-width: 900px) {
  .header-inner {
    display: flex;
    height: var(--header-h);
    padding: 0;
    gap: 1.5rem;
  }
  .nav-desktop {
    margin-left: auto;
    gap: clamp(1.25rem, 3vw, 2.25rem);
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.7rem;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.18s ease;
  }
  .nav-desktop a:hover::after,
  .nav-desktop a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .button--nav { width: auto; flex: none; }
  .logo-mark { width: 2.15rem; height: 2.15rem; }
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.button:hover { background: var(--accent-hover); transform: translateY(-1px); }
.button:active { transform: none; }

.button:focus-visible,
.nav-desktop a:focus-visible,
.brand:focus-visible,
.text-back:focus-visible,
.teaser-link:focus-visible,
.footer-nav a:focus-visible,
.footer-social a:focus-visible,
.service-strip a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .button:hover { transform: none; }
}

.wrap, .wrap--wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.wrap { max-width: calc(var(--measure) + 2.5rem); }
.wrap--wide { max-width: calc(var(--wide) + 2.5rem); }

.kicker {
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.section { padding: 4rem 0; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }

.section--deep { background: var(--paper-deep); }
.section--dark {
  background: var(--dark);
  color: var(--on-dark);
  border-top-color: var(--dark);
}
.section--dark .kicker,
.section--dark .lede,
.section--dark p { color: var(--on-dark-soft); }
.section--dark h2,
.section--dark h3 { color: var(--on-dark); }
.section--flush { border-top: 0; padding-top: 0; }
.section h2 + .lede { margin-top: 1.15rem; }

.lede { color: var(--ink-soft); max-width: 38rem; }
.stack > * + * { margin-top: 1.15rem; }

.hero { padding: 0; overflow: hidden; }
.hero-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  margin-inline: auto;
  align-items: center;
}
.hero-copy {
  padding: 2.25rem 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 { max-width: 14ch; margin-bottom: 1.25rem; }
.hero .lede { margin-bottom: 1.75rem; font-size: clamp(1.05rem, 2vw, 1.2rem); }
.hero-note { display: block; margin-top: 1.15rem; color: var(--ink-soft); font-size: 1rem; }
.hero-media {
  margin: 0;
  position: relative;
}
.hero-media img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(20rem, 46fr) minmax(0, 54fr);
    gap: 0;
    min-height: 32rem;
    max-height: 38rem;
    align-items: stretch;
  }
  .hero-copy {
    padding: 3.25rem 3rem 3.25rem max(1.5rem, calc((100vw - 72rem) / 2 + 1.5rem));
  }
  .hero-media { min-height: 32rem; }
  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center 18%;
  }
  .hero-media::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: min(8rem, 22%);
    pointer-events: none;
    background: linear-gradient(90deg, var(--paper) 0%, transparent 100%);
  }
}

.page-hero {
  padding: 3.25rem 0 2.75rem;
}
.page-hero h1 {
  margin-bottom: 1.1rem;
  max-width: 16ch;
}
.page-hero .lede {
  margin-bottom: 1.6rem;
  max-width: 34rem;
}
@media (min-width: 768px) {
  .page-hero { padding: 4.75rem 0 3.5rem; }
}

.service-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--dark);
  color: var(--on-dark);
}
.service-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 0.45rem;
  color: var(--on-dark);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-wrap: balance;
  border-right: 1px solid #1c2430;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.service-strip a:last-child { border-right: 0; }
.service-strip a:hover,
.service-strip a:focus-visible {
  color: #fff;
  background: #141820;
}
@media (min-width: 768px) {
  .service-strip a {
    min-height: 3.4rem;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

.walkaway-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}
.walkaway-head h2 {
  max-width: 14ch;
  margin-inline: auto;
}
.walkaway-head .lede {
  margin: 1.2rem auto 0;
}
.walkaway-grid {
  display: grid;
  grid-template-areas:
    "hout"
    "o1"
    "o2"
    "o3"
    "o4"
    "o5"
    "hdel"
    "d1"
    "d2"
    "d3"
    "d4"
    "d5";
  max-width: 54rem;
  margin-inline: auto;
}
.hout { grid-area: hout; }
.hdel { grid-area: hdel; }
.o1 { grid-area: o1; }
.o2 { grid-area: o2; }
.o3 { grid-area: o3; }
.o4 { grid-area: o4; }
.o5 { grid-area: o5; }
.d1 { grid-area: d1; }
.d2 { grid-area: d2; }
.d3 { grid-area: d3; }
.d4 { grid-area: d4; }
.d5 { grid-area: d5; }
.walkaway-h {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  padding: 1.25rem 0 0.35rem;
}
.hout { padding-top: 0; }
.walkaway-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1.05rem 0;
  border-top: 1px solid var(--border);
  line-height: 1.4;
}
.o5, .d5 { border-bottom: 1px solid var(--border); }
.walkaway-item svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--accent);
}
.walkaway-item span { min-width: 0; }

@media (min-width: 800px) {
  .walkaway { padding-top: 5rem; padding-bottom: 5rem; }
  .walkaway-head { margin-bottom: 3.5rem; }
  .walkaway-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hout hdel"
      "o1 d1"
      "o2 d2"
      "o3 d3"
      "o4 d4"
      "o5 d5";
    column-gap: 4.5rem;
    align-items: stretch;
  }
  .walkaway-h { padding-top: 0; padding-bottom: 0.5rem; }
  .walkaway-item {
    min-height: 4.5rem;
    padding: 0.9rem 0;
  }
}

.problem { text-align: center; }
.problem .kicker { margin-bottom: 0.75rem; }
.problem h2 { margin-inline: auto; }
.problem p {
  margin-inline: auto;
  max-width: 38rem;
}

.solution { text-align: center; }
.solution-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: calc(var(--wide) + 2.5rem);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.solution-copy {
  max-width: 32rem;
  width: 100%;
}
.solution-copy h2 {
  max-width: 16ch;
  margin-inline: auto;
}
.solution-copy .lede {
  margin: 1.15rem auto 0;
}

.arch {
  width: 100%;
  max-width: 28rem;
  padding: 1.25rem 1.1rem 1.4rem;
  background: var(--paper-deep);
  border: 1px solid var(--border);
  text-align: center;
  margin-inline: auto;
  justify-self: center;
}
.arch-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.arch-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}
.arch-in,
.arch-mid,
.arch-win,
.arch-out li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.arch-in { border-top: 2px solid var(--accent); }
.arch-mid {
  background: var(--dark);
  color: var(--on-dark);
  border-color: var(--dark);
}
.arch-mid .arch-kicker { color: #7eb0e8; }
.arch-mid .arch-title { color: var(--on-dark); }
.arch-mid p { color: var(--on-dark-soft); margin: 0.3rem 0 0; font-size: 0.95rem; }
.arch-win { background: #d5e0ee; border-color: #d5e0ee; }
.arch-win p { margin: 0.3rem 0 0; color: var(--ink); font-size: 0.95rem; }
.arch-then {
  margin: 1rem 0 0.15rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.arch-join,
.arch-split {
  width: 2px;
  height: 1.15rem;
  margin: 0 auto;
  background: var(--accent);
}
.arch-out {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.arch-out .arch-title { font-size: 1.05rem; }

.solution-points {
  list-style: none;
  margin-top: 1.75rem;
  text-align: center;
}
.solution-points li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--border);
}
.solution-points li:last-child { border-bottom: 1px solid var(--border); }
.solution-points h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}
.solution-points p { color: var(--ink-soft); margin: 0; }

@media (min-width: 960px) {
  .solution-grid {
    grid-template-columns: minmax(20rem, 30rem) minmax(22rem, 28rem);
    justify-content: center;
    gap: 3.25rem 3.25rem;
    padding-inline: 2rem;
  }
  .arch {
    max-width: 26rem;
    width: 100%;
    justify-self: center;
    padding: 1.5rem 1.35rem 1.45rem;
  }
  .arch-out .arch-kicker { white-space: nowrap; }
  .arch-split {
    width: auto;
    height: 1.75rem;
    margin: 0;
    background:
      linear-gradient(var(--accent), var(--accent)) 50% 0 / 2px 50% no-repeat,
      linear-gradient(var(--accent), var(--accent)) 50% 50% / 50% 2px no-repeat,
      linear-gradient(var(--accent), var(--accent)) 25% 100% / 2px 50% no-repeat,
      linear-gradient(var(--accent), var(--accent)) 75% 100% / 2px 50% no-repeat;
  }
  .arch-out {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}

@media (min-width: 768px) {
  .arch-title { font-size: 1.25rem; }
}

.hero-still { margin: 0; border-top: 1px solid var(--border); }
.hero-still img {
  width: 100%;
  height: min(62vw, 28rem);
  object-fit: cover;
  object-position: center;
}

.still { margin: 0; border-top: 1px solid var(--border); }
.still img {
  width: 100%;
  height: min(70vw, 26rem);
  object-fit: cover;
}

.spine { list-style: none; margin-top: 2.5rem; }
.spine-step {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 1rem 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}
.spine-step:last-child { padding-bottom: 0; }
.spine-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--accent);
}
.section--dark .spine-num { color: #7eb0e8; }
.spine-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 2.4rem;
  bottom: 0;
  width: 1px;
  background: currentColor;
  opacity: 0.22;
}
.spine h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}
.keep { font-weight: 700; }
.cta-row { margin-top: 2.5rem; }
.walkaway .cta-row,
.solution .cta-row,
.problem .cta-row,
.faq-section .cta-row {
  display: flex;
  justify-content: center;
}

/* How-it-works stages + artifacts */
.stages {
  list-style: none;
  margin-top: 2.5rem;
}
.stage {
  display: grid;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stage:first-child { border-top: 0; padding-top: 0; }
.stage-copy h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0.35rem 0 0.5rem;
}

.artifact {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 1.25rem 1.2rem 1.35rem;
}
.artifact-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.artifact-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.artifact ul { list-style: none; }
.artifact li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem;
  font-size: 1rem;
}
.artifact li span {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.artifact-foot {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

@media (min-width: 900px) {
  .stage {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
    padding: 2.75rem 0;
  }
}

.fit-grid { display: grid; gap: 2.5rem; margin-top: 2rem; }
@media (min-width: 768px) {
  .fit-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.fit-list { list-style: none; }
.fit-list li { padding: 0.85rem 0; border-top: 1px solid var(--border); }
.fit-list li:last-child { border-bottom: 1px solid var(--border); }
.fit-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.pullquote { max-width: 38rem; margin-top: 2rem; }
.pullquote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  font-weight: 500;
}
.pullquote footer {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 1rem;
  font-style: normal;
}
.rule-accent {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  border: 0;
}

.teaser-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--accent);
}

.signoff {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.creds {
  list-style: none;
  margin-top: 2rem;
  max-width: 32rem;
}
.creds li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  font-weight: 600;
}
.creds li:last-child { border-bottom: 1px solid var(--border); }
.page-about {
  background-image:
    linear-gradient(rgba(30, 78, 140, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 78, 140, 0.05) 1px, transparent 1px);
  background-size: 4rem 4rem;
}
.page-about .hero {
  padding: 3rem 0 1.5rem;
}
.page-about .hero h1 {
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  max-width: 12ch;
  line-height: 0.98;
  font-weight: 500;
}
.note-stage {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: calc(var(--wide) + 2.5rem);
  margin: 0 auto 4.5rem;
  padding: 1rem 1.25rem 0;
  align-items: start;
}
.polaroid {
  background: #fff;
  padding: 0.7rem 0.7rem 1.6rem;
  box-shadow: 0 1.25rem 2.75rem rgba(11, 13, 16, 0.14);
  transform: rotate(-1.8deg);
  width: min(100%, 15rem);
  justify-self: center;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.polaroid figcaption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.letter-wrap { position: relative; }
.letter-wrap::before,
.letter-wrap::after {
  content: "";
  position: absolute;
  background: #eef2f6;
  border: 1px solid var(--border);
}
.letter-wrap::before {
  inset: 14px -10px -10px 12px;
  z-index: 0;
}
.letter-wrap::after {
  inset: 7px -5px -5px 6px;
  background: #f7f9fb;
  z-index: 0;
}
.letter {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  box-shadow: 0 1.75rem 3.5rem rgba(11, 13, 16, 0.1);
}
.letter h2 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0.35rem 0 1.5rem;
  max-width: 12ch;
}
.margin-note {
  max-width: 16rem;
  margin-top: 0.5rem;
}
.margin-note span {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
}
.margin-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
@media (min-width: 1000px) {
  .note-stage {
    grid-template-columns: 14rem minmax(0, 1fr) 12rem;
    gap: 1.5rem 2rem;
    padding-top: 1.5rem;
  }
  .polaroid {
    justify-self: start;
    margin-top: 5.5rem;
  }
  .margin-note {
    margin-top: 7rem;
  }
}
.portrait img {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--border);
}
@media (min-width: 800px) {
  .about-hero {
    /* room for a portrait beside the H1 when the photo lands */
  }
}

.rung-still { margin: 2.75rem 0 0; }
.rung-still img { width: 100%; height: min(58vw, 24rem); object-fit: cover; }

.journey {
  display: grid;
  list-style: none;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.journey li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.journey li:last-child { border-bottom: 0; }
.journey span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}
.journey strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
}
.journey small { display: block; color: var(--ink-soft); font-size: 0.95rem; }

@media (min-width: 900px) {
  .journey {
    grid-template-columns: 1fr 1fr 1fr;
    width: calc(100% - 2.5rem);
    max-width: var(--wide);
    margin: 0 auto;
    border: 1px solid var(--border);
    border-top: 1px solid var(--accent);
  }
  .journey li {
    border-bottom: 0;
    border-right: 1px solid var(--border);
    min-height: 6.5rem;
    padding: 1.4rem 1.6rem;
  }
  .journey li:last-child { border-right: 0; }
}

.rung {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 11rem;
}
.rung:nth-child(even) { background: var(--paper-deep); }
.service-strip + .rung { border-top: 0; }
.service-strip + .section { border-top: 0; }
@media (min-width: 768px) { .rung { padding: 6rem 0; } }
@media (min-width: 900px) { .rung { scroll-margin-top: 5.5rem; } }

.assess-steps {
  list-style: none;
  margin-top: 2.15rem;
  max-width: 36rem;
  counter-reset: assess;
}
.assess-steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  counter-increment: assess;
}
.assess-steps li:last-child { border-bottom: 1px solid var(--border); }
.assess-steps li::before {
  content: counter(assess, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1.35;
}
.assess-steps strong {
  grid-column: 2;
  font-size: 1.05rem;
  font-weight: 700;
}
.assess-steps span {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 1rem;
}

.leave-with { list-style: none; margin-top: 1.75rem; max-width: 32rem; }
.leave-with li {
  padding: 0.7rem 0 0.7rem 2.4rem;
  border-top: 1px solid var(--border);
  position: relative;
}
.leave-with li:last-child { border-bottom: 1px solid var(--border); }
.leave-with li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
}
.leave-with li:nth-child(1)::before { content: "01"; }
.leave-with li:nth-child(2)::before { content: "02"; }
.leave-with li:nth-child(3)::before { content: "03"; }
.after-copy p + p { margin-top: 1.1rem; }

.book {
  background: var(--dark);
  color: var(--on-dark);
  padding: 4rem 0 5rem;
  scroll-margin-top: 5.5rem;
}
.book h2 { color: var(--on-dark); }
.book .lede { color: var(--on-dark-soft); margin: 1rem 0 2rem; }
.book-panel {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem 1.75rem;
}
@media (min-width: 768px) {
  .book { padding: 5.5rem 0 6rem; }
  .book-panel { padding: 2.25rem; }
}

.book-page { padding-top: 0.5rem; }
.calendly-wrap {
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  min-height: 44rem;
  background: var(--paper);
  border: 1px solid var(--border);
}
.calendly-inline-widget { min-width: 320px; height: 44rem; }
.fs-sink {
  position: fixed;
  left: -9999px;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
}
.form-sent {
  margin: 0 0 1.15rem;
  padding: 1.1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--accent);
  color: var(--ink);
}
.form-sent p { margin: 0; }
.calendly-embed {
  min-width: 320px;
  height: 44rem;
  margin: 1.15rem 0 0;
  background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
}
.calendly-embed iframe { width: 100%; height: 44rem; border: 0; }
.sched {
  display: grid;
  gap: 1.15rem;
}
.sched-col {
  background: var(--paper-deep);
  border: 1px solid var(--border);
  padding: 1.15rem 1.05rem 1.25rem;
}
.sched-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.sched-tz {
  margin: -0.45rem 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.sched-dates,
.sched-times {
  display: grid;
  gap: 0.45rem;
  max-height: 26rem;
  overflow: auto;
}
.sched-times { grid-template-columns: 1fr 1fr; }
.sched-btn {
  min-height: 3rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  text-align: center;
}
.sched-btn:hover { border-color: var(--accent); }
.sched-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.sched-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.75rem 0.5rem;
  color: var(--ink-soft);
  text-align: center;
}
.sched-note {
  margin: 1.15rem 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1rem;
}
.details-panel .sched-heading { margin-bottom: 1.15rem; }
.details-names {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.details-panel .field-label { margin-top: 0.85rem; }
.details-names .field-label { margin-top: 0; }
.details-panel textarea,
.details-panel input[type="tel"],
.details-panel input[type="text"],
.details-panel input[type="email"] {
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--paper-deep);
  color: var(--ink);
  border-radius: var(--radius);
  font: inherit;
}
.details-panel textarea { min-height: 6.5rem; resize: vertical; }
.details-panel textarea:focus,
.details-panel input[type="tel"]:focus,
.details-panel input[type="text"]:focus,
.details-panel input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.details-panel .button { margin-top: 1.35rem; }
@media (min-width: 800px) {
  .sched {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: start;
  }
  .details-names { grid-template-columns: 1fr 1fr; }
  .sched-dates,
  .sched-times { max-height: 28rem; }
}

.q { border: 0; padding: 0; margin: 0 0 1.75rem; }
.q legend { font-weight: 700; margin-bottom: 0.75rem; padding: 0; }
.q input[type="text"],
.q input[type="email"] {
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--paper-deep);
  color: var(--ink);
  border-radius: var(--radius);
}
.q input[type="text"]:focus,
.q input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.field-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0.85rem 0 0.5rem;
}
.choices { display: grid; gap: 0.5rem; }
.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--paper-deep);
  min-height: 3rem;
  cursor: pointer;
}
.choice:has(input:checked) {
  border-color: var(--accent);
  background: #d9e4f2;
}
.choice input {
  margin-top: 0.3rem;
  accent-color: var(--accent);
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}

.scheduler-slot {
  min-height: 14rem;
  border: 1px dashed var(--border);
  background: var(--paper-deep);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-soft);
}
.text-back {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal {
  padding: 3rem 0 5rem;
}
.legal h1 { margin-bottom: 0.75rem; }
.legal .lede { margin-bottom: 2.5rem; }
.legal h2 {
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
}
.legal p + p { margin-top: 1rem; }
.legal ul {
  margin: 1rem 0 0 1.2rem;
  padding: 0;
}
.legal li { margin: 0.4rem 0; }
.legal a { color: var(--accent); font-weight: 600; }

.site-footer {
  background: var(--dark);
  color: var(--on-dark-soft);
  border-top: 1px solid #1c2430;
  padding: 2.5rem 0 3rem;
}
.footer-inner {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}
.footer-id {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  color: var(--on-dark);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  text-decoration: none;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--on-dark); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--on-dark-soft);
  text-decoration: none;
}
.footer-social a:hover { color: var(--on-dark); }
.footer-social svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas: "id nav";
    gap: 0.35rem 2rem;
    align-items: center;
  }
  .footer-id { grid-area: id; }
  .footer-nav {
    grid-area: nav;
    justify-content: flex-end;
  }
}



.helps-intro { max-width: 40rem; }
.cred-note {
  color: var(--ink-soft);
  max-width: 38rem;
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.benefits {
  list-style: none;
  display: grid;
  gap: 0;
  margin-top: 2.25rem;
}
.benefits li {
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
}
.benefits li:last-child { border-bottom: 1px solid var(--border); }
.benefits h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}
.benefits p { color: var(--ink-soft); margin: 0; }
@media (min-width: 800px) {
  .benefits {
    grid-template-columns: 1fr 1fr;
    gap: 0 3.5rem;
  }
  .benefits li:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}

.faq {
  margin-top: 2.25rem;
}
.faq > div {
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
}
.faq > div:last-child { border-bottom: 1px solid var(--border); }
.faq dt {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.faq dd {
  margin: 0;
  color: var(--ink-soft);
  max-width: 38rem;
}


.layers-section {
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.layers {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.75rem;
}
.layer-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}
.layer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-radius: 0.45rem;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
  box-sizing: border-box;
}
.layer span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0;
  font-weight: 600;
}
.layer-4 { width: 58%; background: #fff; border: 1px solid var(--border); color: var(--ink); }
.layer-3 { width: 72%; background: #d5e0ee; color: var(--ink); }
.layer-2 { width: 86%; background: var(--accent); color: #fff; }
.layer-1 { width: 100%; background: var(--dark); color: #fff; }
.layer-copy {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 1.35rem;
}
.layer-copy li {
  padding-left: 1.15rem;
  border-left: 2px solid var(--accent);
}
.layer-copy h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 0.3rem;
}
.layer-copy p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
@media (min-width: 900px) {
  .layers {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 4rem;
  }
  .layer { padding: 1.15rem 1.35rem; }
  .layer-copy {
    gap: 0;
    flex-direction: column-reverse;
    display: flex;
  }
  .layer-copy li {
    min-height: 4.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 0 0.65rem 1.25rem;
  }
}

.faq-section { text-align: center; }
.faq-section h2 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 500;
  margin-bottom: 2.25rem;
  letter-spacing: -0.03em;
}
.faq-grid {
  display: grid;
  grid-template-areas:
    "f1" "f2" "f3" "f4" "f5" "f6" "f7" "f8" "f9"
    "g1" "g2" "g3" "g4" "g5" "g6" "g7" "g8" "g9";
  max-width: 64rem;
  margin: 0 auto;
  text-align: left;
}
.f1 { grid-area: f1; } .f2 { grid-area: f2; } .f3 { grid-area: f3; }
.f4 { grid-area: f4; } .f5 { grid-area: f5; } .f6 { grid-area: f6; }
.f7 { grid-area: f7; } .f8 { grid-area: f8; } .f9 { grid-area: f9; }
.g1 { grid-area: g1; } .g2 { grid-area: g2; } .g3 { grid-area: g3; }
.g4 { grid-area: g4; } .g5 { grid-area: g5; } .g6 { grid-area: g6; }
.g7 { grid-area: g7; } .g8 { grid-area: g8; } .g9 { grid-area: g9; }
.faq-grid details {
  border-top: 1px solid var(--border);
}
.g9 { border-bottom: 1px solid var(--border); }
.faq-grid summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.85rem 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  text-align: left;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  flex: none;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  max-width: 36rem;
  padding-right: 1.5rem;
}
@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "f1 g1"
      "f2 g2"
      "f3 g3"
      "f4 g4"
      "f5 g5"
      "f6 g6"
      "f7 g7"
      "f8 g8"
      "f9 g9";
    column-gap: 3.75rem;
    align-items: stretch;
  }
  .f9 { border-bottom: 1px solid var(--border); }
  .faq-grid details {
    display: flex;
    flex-direction: column;
  }
}
