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

:root {
  --yellow: #ffd004;
  --black: #000000;
  --text-muted: rgba(0, 0, 0, 0.55);
}

html,
body {
  height: 100%;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--yellow);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  width: 100%;
}

.hero__logo {
  width: min(900px, 96vw);
  height: auto;
  display: block;
}

.quote {
  margin-top: 3rem;
  min-height: 5.5rem;
  border: none;
  position: relative;
}

.quote__text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.quote__author {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.quote__text.is-visible,
.quote__author.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .quote__text,
  .quote__author {
    transition: none;
  }
}
