@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope.woff') format('woff');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --background: #f5f4f0;
  --foreground: #182c40;
  --paper: #fff;
  --primary: #294d70;
  --primary-foreground: #fff;
  --muted-foreground: #526273;
  --border: #d7dde2;
  --ring: #294d70;
  --radius: 0.8rem;
  --font-sans: Manrope, system-ui, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: #121e2b;
    --foreground: #f2f0e9;
    --paper: #203245;
    --primary: #a9ceed;
    --primary-foreground: #121e2b;
    --muted-foreground: #b9c7d4;
    --border: #3b5064;
    --ring: #a9ceed;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font:
    400 1.125rem/1.65 Manrope,
    system-ui,
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
}
button,
input {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.skip {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 10;
  background: var(--paper);
  padding: 1rem;
}
.skip:focus {
  top: 1rem;
}
.site-header,
.site-footer {
  max-width: 1320px;
  margin: auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-decoration: none;
}
.wordmark img {
  border-radius: 9px;
}
.site-header nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  font-size: 1rem;
  font-weight: 600;
}
.site-header nav a {
  text-decoration: none;
}
.site-header nav a:hover {
  text-decoration: underline;
}
.hero {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 64px;
  padding: 70px 48px 90px;
}
h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.15rem);
  line-height: 1.06;
  letter-spacing: -0.065em;
  font-weight: 800;
  margin: 0 0 30px;
}
p {
  margin: 0 0 20px;
}
.intro {
  font-size: 1.22rem;
  line-height: 1.65;
}
.hero-copy > p {
  max-width: 470px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-height: 56px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin: 12px 0 24px;
  transition: transform 0.15s;
}
.button:hover {
  transform: translateY(-2px);
}
.availability {
  font-size: 1rem;
  color: var(--muted-foreground);
}
.availability strong {
  font-weight: 700;
}
.hero-photo {
  margin: 0;
  align-self: center;
}
.hero-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 43% 50%;
  border-radius: 3px;
}
.hero-photo figcaption {
  padding-top: 16px;
  font-size: 1rem;
  color: var(--muted-foreground);
  text-align: right;
}
.quiet-note {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}
.quiet-note p {
  margin: 0;
}
.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  flex-wrap: wrap;
}
.site-footer .wordmark {
  font-size: 1.2rem;
}
.site-footer p {
  margin: 0;
  color: var(--muted-foreground);
}
.site-footer nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}
.site-footer small {
  width: 100%;
  font-size: 1rem;
  color: var(--muted-foreground);
}
.article {
  max-width: 830px;
  margin: 45px auto 90px;
  padding: 0 32px;
}
.article h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
}
.article h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin: 42px 0 14px;
}
.article ul,
.article ol {
  padding-left: 1.5rem;
}
.article li {
  margin: 12px 0;
}
.article .lead {
  font-size: 1.2rem;
  color: var(--muted-foreground);
}
.article a {
  font-weight: 600;
}
.steps {
  max-width: 1224px;
  margin: 85px auto;
  padding: 0 48px;
}
.steps h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 1.15;
  max-width: 650px;
  margin: 0 0 40px;
}
.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  border-top: 2px solid var(--border);
  padding-top: 20px;
}
.step h3 {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
  margin: 16px 0 10px;
}
.step p {
  color: var(--muted-foreground);
}
.example {
  max-width: 1224px;
  margin: 80px auto;
  padding: 48px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}
.example h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin: 0 0 25px;
}
.example img {
  width: 100%;
  box-shadow: 0 12px 50px #00000013;
}
.example .text-link {
  color: var(--primary);
  font-weight: 700;
}
.detail-row {
  max-width: 1224px;
  margin: 0 auto 80px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.detail-row h2 {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}
.detail-row p {
  color: var(--muted-foreground);
}
@media (max-width: 800px) {
  .site-header,
  .site-footer {
    padding: 24px;
  }
  .site-header nav {
    gap: 18px;
    font-size: 1rem;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 35px 24px 48px;
  }
  .hero-copy > p {
    max-width: 620px;
  }
  .hero-photo img {
    aspect-ratio: 4/3;
    object-position: center;
  }
  .hero-photo figcaption {
    text-align: left;
  }
  h1 {
    max-width: 650px;
    font-size: clamp(3rem, 10vw, 4.5rem);
  }
  .steps {
    padding: 0 24px;
    margin: 55px auto;
  }
  .step-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .step h3 {
    margin-top: 10px;
  }
  .example {
    padding: 28px 24px;
    margin: 45px 0;
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .example img {
    max-width: 380px;
    margin: auto;
  }
  .detail-row {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .article {
    padding: 0 24px;
    margin-top: 25px;
  }
  .site-footer {
    gap: 20px;
  }
  .site-footer nav {
    margin-left: 0;
  }
  .wordmark {
    font-size: 1.35rem;
  }
  .site-footer p {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .site-header {
    flex-wrap: wrap;
    gap: 18px;
  }
  .site-header nav {
    margin-left: 0;
    width: 100%;
  }
  .button {
    font-size: 1rem;
    gap: 15px;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
.article ol {
  list-style: decimal;
}
.article ul {
  list-style: disc;
}
.article li::marker {
  color: var(--primary);
  font-weight: 700;
}

/* Display type recalls printed photo captions; body type stays easy to read. */
@font-face { font-family: 'Bricolage Display'; src: url('/fonts/bricolage-display.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
:root { color-scheme: light dark; --paper: #fffdf8; }
@media (prefers-color-scheme: dark) { :root { --paper: #203245; } }
h1, h2, .wordmark { font-family: 'Bricolage Display', Manrope, sans-serif; font-weight: 600; }
.site-header { min-height: 80px; padding-top: 16px; padding-bottom: 16px; }
.wordmark { font-size: 1.95rem; letter-spacing: -.02em; }
.hero { padding-top: 48px; padding-bottom: 76px; gap: 72px; grid-template-columns: 1fr 1.06fr; }
h1 { font-size: clamp(3.25rem, 5.5vw, 5.2rem); line-height: 1.04; letter-spacing: -.045em; max-width: 10ch; }
.hero-copy .intro { max-width: 34ch; font-size: 1.25rem; line-height: 1.6; }
.hero-photo img { aspect-ratio: 1 / 1.04; border-radius: 2px; }
.button { border-radius: 5px; gap: 16px; font-size: 1rem; }
.steps { display: grid; grid-template-columns: 1fr 1.06fr; gap: 72px; margin-top: 60px; margin-bottom: 96px; }
.steps h2 { max-width: 12ch; font-size: clamp(2.6rem, 4vw, 3.5rem); line-height: 1.09; }
.step-list { display: flex; flex-direction: column; gap: 26px; }
.step { border: 0; padding: 0; }
.step h3 { margin: 0 0 8px; font-size: 1.12rem; }
.step p { margin-bottom: 0; max-width: 43ch; }
.example { border-radius: 2px; }
.example img { max-width: 370px; margin: auto; }
.article h1 { max-width: 15ch; }
.article h2 { scroll-margin-top: 24px; }
.site-footer nav { flex-wrap: wrap; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px 52px; }
  h1 { font-size: clamp(3rem, 10vw, 4.3rem); max-width: 12ch; }
  .hero-photo img { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; gap: 12px; margin: 40px auto 56px; }
  .steps h2 { max-width: 17ch; margin-bottom: 20px; font-size: 2.6rem; }
  .wordmark { font-size: 1.65rem; }
}
@media (max-width: 390px) {
  .site-header { gap: 12px; }
  .site-header nav { width: auto; margin-left: auto; gap: 14px; }
  .site-header .wordmark { font-size: 1.4rem; }
  .button { max-width: 100%; padding: 14px 16px; font-size: 1rem; gap: 10px; }
}

h1, h2 { letter-spacing: -.025em; }
.article { overflow-wrap: anywhere; }

.wordmark img { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; }
@media (max-width: 390px) { .site-header { align-items: flex-start; } .site-header nav { margin-left: 0; width: 100%; } }
