:root {
  --screen: #eee9e1;
  --dark: #556847;
  --dark-text: #f5f1ea;
  --dark-muted: rgba(245, 241, 234, 0.72);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  background: var(--dark);
  color: var(--dark-text);
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
}

.hero-inner {
  width: 100%;
  max-width: 1040px;
}

.mark {
  display: block;
  width: clamp(72px, 18vw, 120px);
  height: auto;
  margin-bottom: 20px;
}

.hero-title {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 13vw, 5.5rem);
  line-height: 1;
  font-weight: 700;
}

.hero-subtitle {
  margin: 0 0 40px;
  font-size: clamp(1.25rem, 5vw, 2rem);
  line-height: 1.25;
  color: var(--dark-muted);
}

.hero-note {
  margin: 0;
  font-size: clamp(1rem, 3.6vw, 1.1875rem);
  line-height: 1.5;
  color: var(--dark-muted);
}
