:root {
  --bg: #f4f1ea;
  --ink: #1b1812;
  --muted: rgba(27, 24, 18, 0.58);
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --page-pad: clamp(14px, 1.9vw, 32px);
  --nav-h: clamp(14px, 1.8vh, 22px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

::selection {
  background: var(--ink);
  color: var(--bg);
}

.simple-page {
  display: grid;
  grid-template-rows: var(--nav-h) 1fr;
  gap: clamp(8px, 1.2vh, 14px);
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  padding: clamp(10px, 1.6vh, 18px) var(--page-pad) clamp(16px, 2.8vh, 34px);
  overflow: hidden;
  background: var(--bg);
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--nav-h);
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: revealDown 520ms var(--ease) both;
}

.single {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  justify-items: center;
  gap: clamp(12px, 1.8vh, 22px);
  width: 100%;
  min-height: 0;
}

.image-plate {
  width: 100%;
  max-width: 1880px;
  height: clamp(420px, 66vh, 700px);
  margin: 0;
  overflow: hidden;
  animation: imageArrive 700ms var(--ease) 80ms both;
}

.image-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.95) contrast(1.03);
}

.copy {
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1.1vh, 14px);
  width: 100%;
  text-align: center;
  animation: copyArrive 620ms var(--ease) 160ms both;
}

.copy h1 {
  max-width: min(1040px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.25vw, 46px);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: 0;
}

.copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(9px, 0.76vw, 11px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes imageArrive {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes copyArrive {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealDown {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1500px) {
  .copy h1 {
    font-size: clamp(38px, 2.65vw, 52px);
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .simple-page {
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .single {
    gap: 10px;
  }

  .image-plate {
    height: clamp(360px, 61vh, 470px);
  }

  .copy h1 {
    max-width: min(1000px, 100%);
    font-size: clamp(27px, 3.05vw, 40px);
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 14px;
    --nav-h: 12px;
  }

  .simple-page {
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 22px;
  }

  .topline {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .single {
    gap: 14px;
  }

  .image-plate {
    width: 100%;
    height: clamp(320px, 56vh, 500px);
  }

  .image-plate img {
    object-position: center 42%;
  }

  .copy {
    gap: 10px;
  }

  .copy h1 {
    max-width: 360px;
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.03;
  }

  .copy p {
    font-size: 9px;
  }
}

@media (max-height: 700px) and (max-width: 720px) {
  .simple-page {
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .single {
    gap: 10px;
  }

  .image-plate {
    height: clamp(280px, 50vh, 350px);
  }

  .copy h1 {
    font-size: clamp(22px, 6.2vw, 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
