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

html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  height: 100%;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f6f2;
  font-family: 'Nunito', sans-serif;
  color: #3a3a3a;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem 1.5rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  text-align: center;
  width: 100%;
  max-width: 480px;
}

.logo {
  width: clamp(140px, 50vw, 240px);
  max-width: 100%;
  width: 45vw;
}

.brand-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #6d6052;
}

.intro {
  /* max-width: 34ch; */
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  line-height: 1.5;
  color: #6d6052;
}

.tagline {
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7a6a5a;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
  width: 100%;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #7a6a5a;
  font-size: clamp(0.95rem, 4vw, 1.05rem);
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  padding: 0.6rem 1.2rem;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.links a:hover,
.links a:focus-visible {
  color: #3a3a3a;
  border-color: #3a3a3a;
}

.links a svg {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .container {
    max-width: 760px;
  }

  .links {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
