:root {
  color: #2d362e;
  background: #faf9f6;
  font-family: Arial, "Liberation Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  background: #faf9f6;
}

.brand-stage {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.brand-panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(14px, 2.6vw, 22px);
  transform: translateY(-1.8vh);
}

.brand-lockup {
  display: flex;
  width: min(82vw, 440px);
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3.5vw, 24px);
}

.brand-mark {
  width: clamp(86px, 22vw, 116px);
  height: auto;
  flex: 0 0 auto;
}

.brand-wordmark {
  width: min(58vw, 300px);
  height: auto;
  flex: 0 1 auto;
}

.brand-tagline {
  margin: 0;
  color: #9ca3af;
  font-size: clamp(15px, 2.1vw, 18px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 420px) {
  .brand-lockup {
    width: min(88vw, 360px);
    gap: 12px;
  }

  .brand-mark {
    width: clamp(72px, 23vw, 92px);
  }

  .brand-wordmark {
    width: min(61vw, 245px);
  }

  .brand-tagline {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
