:root {
  font-family: "Inter", "PT Sans", "Helvetica Neue", sans-serif;
  color: #1f1f1f;
  background-color: #f5f3f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 50%) #f5f3f1;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.copy {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(34, 34, 34, 0.1);
}

.hero {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  margin-bottom: 26px;
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c6c6c;
}

h1 {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.doc {
  font-size: 1rem;
  line-height: 1.75;
  color: #2c2c2c;
}

.doc p {
  margin-top: 0;
  margin-bottom: 16px;
  text-align: justify;
}

@media (max-width: 720px) {
  .copy {
    padding: 24px;
    border-radius: 14px;
  }

  .page {
    padding: 32px 12px;
  }
}
