:root {
  --background: #f7f7f4;
  --foreground: #050505;
  --muted: #5f5f5a;
  --line: rgba(0, 0, 0, 0.20);
  --panel: rgba(247, 247, 244, 0.94);

  --font-display: "avenir-lt-pro", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "graphie", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -4rem;
  z-index: 0;
  background-image: url("terrain.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(247, 247, 244, 0.28), rgba(247, 247, 244, 0.12) 38%, rgba(247, 247, 244, 0.02) 70%),
    linear-gradient(to bottom, rgba(247, 247, 244, 0.22), rgba(247, 247, 244, 0.36));
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero {
  width: min(100%, 980px);
  text-align: center;
  padding: clamp(2.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
  font-size: clamp(4.25rem, 13vw, 10.5rem);
}

.tagline {
  margin: clamp(0.6rem, 1.5vw, 1rem) 0 0;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(1.35rem, 3.4vw, 3rem);
}

.statement {
  width: max-content;
  max-width: 100%;
  margin: clamp(4rem, 10vw, 8rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--panel);
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 8px;
  box-shadow:
    0 1.5rem 3.5rem rgba(5, 5, 5, 0.08),
    0 0.25rem 1rem rgba(5, 5, 5, 0.04);
}

.statement p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.statement p + p {
  margin-top: 1rem;
}

.contact {
  margin-top: clamp(4rem, 9vw, 7rem);
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.03em;
}

.contact a {
  color: var(--foreground);
  text-decoration: none;
  border-bottom: 0.08em solid transparent;
}

.contact a:hover,
.contact a:focus-visible {
  border-bottom-color: currentColor;
}

.meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  body::before {
    background-size: auto 115%;
    opacity: 0.15;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .statement {
    width: 100%;
    background: rgba(247, 247, 244, 0.96);
  }

  .statement p {
    white-space: normal;
  }
}
