:root {
  --paper: #fbfaf8;
  --ink: #171615;
  --muted: #69635f;
  --line: rgba(23, 22, 21, 0.12);
  --glow: rgba(239, 75, 34, 0.18);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

header {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  padding: clamp(20px, 4vw, 42px);
}

nav a,
.email {
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.email:hover,
.email:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100svh;
  padding: clamp(28px, 6vw, 76px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(251, 250, 248, 0.94) 37%, rgba(251, 250, 248, 0.28) 76%),
    radial-gradient(circle at 74% 52%, var(--glow), transparent 34%);
  content: "";
}

.hero img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

h1,
p {
  margin: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 32rem;
  margin-top: 1.5rem;
  color: #34302d;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.email {
  width: max-content;
  margin-top: 2rem;
  color: var(--ink);
}

.policy {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 140px 0 80px;
}

.policy h1 {
  max-width: 100%;
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.policy p {
  margin-top: 1.25rem;
  color: #34302d;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 680px) {
  header {
    padding: 22px;
  }

  .hero {
    padding: 22px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 248, 0.72) 0%, var(--paper) 70%),
      radial-gradient(circle at 70% 26%, var(--glow), transparent 38%);
  }

  .hero img {
    height: 52%;
    opacity: 0.88;
    object-position: 70% center;
  }
}
