/*
 * Every style for the site. Propshaft serves this file digest-stamped; there is
 * no preprocessing step and no build. Keep it small enough to read in one go.
 */

:root {
  --ink: #1a1c22;
  --paper: #ece9e2;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ece9e2;
    --paper: #16181d;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.home {
  margin: 0 auto;
  max-width: 72rem;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.home h1 {
  margin: 0 0 clamp(1rem, 3vw, 2rem);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* The intrinsic width/height on the tag reserve the space; these keep the
   image responsive without reintroducing layout shift. */
.home__hero {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-video {
  margin: clamp(1rem, 3vw, 2rem) 0 0;
}

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