:root {
  --paper: #f4f1ea;
  --ink: #1a1814;
  --ink-secondary: #5c574f;
  --ink-tertiary: #8a8378;
  --accent: #3d4f5f;
  --accent-warm: #6b4c3b;
  --highlight: #e8dfc8;
  --rule: #d8d2c6;
  --max-width: 68rem;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1c1b19;
    --ink: #e8e4dc;
    --ink-secondary: #9a9488;
    --ink-tertiary: #6b655c;
    --accent: #7a9bb5;
    --accent-warm: #c4a882;
    --highlight: #3a3528;
    --rule: #2e2c28;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  text-decoration: none;
}

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

.site-header {
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner,
.site-main,
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.site-nav a {
  color: var(--ink-secondary);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-main {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 56rem) {
  .hero {
    grid-template-columns: 1fr 16.5rem;
    gap: 3rem;
  }
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.2rem;
  color: var(--ink-secondary);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-secondary);
  background: color-mix(in srgb, var(--highlight) 40%, var(--paper));
}

.badge--soon {
  font-weight: 500;
}

.hero__shot {
  justify-self: center;
  width: min(100%, 16.5rem);
  border-radius: 1.75rem;
  box-shadow:
    0 1px 2px color-mix(in srgb, var(--ink) 8%, transparent),
    0 18px 48px color-mix(in srgb, var(--ink) 14%, transparent);
}

.section {
  margin-bottom: 4rem;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.section__intro {
  color: var(--ink-secondary);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56rem) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  padding: 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--paper) 80%, var(--highlight));
}

.feature h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.feature p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-secondary);
  line-height: 1.55;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 48rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.25rem;
  border-top: 3px solid var(--accent);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--highlight);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.step h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-secondary);
}

.gallery {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 40rem) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  margin: 0;
}

.gallery__item img {
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--ink) 10%, transparent);
}

.gallery__item figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-tertiary);
  text-align: center;
}

.translations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.translation {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-secondary);
  background: var(--paper);
}

.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.page-header p {
  margin: 0;
  color: var(--ink-secondary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--ink-secondary);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.faq__item h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.faq__item p {
  margin: 0;
  color: var(--ink-secondary);
}

.contact-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--rule);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--highlight) 35%, var(--paper));
  max-width: 42rem;
}

.contact-card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.contact-card p {
  margin: 0;
  color: var(--ink-secondary);
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-tertiary);
}

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

.site-footer nav {
  display: flex;
  gap: 1.25rem;
}

.site-footer a {
  color: var(--ink-secondary);
  text-decoration: none;
}

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