:root {
  --bg: #aa4134;
  --svg: #ecdfcc;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  font-family: "Manrope", "Titillium", Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero__content {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.hero__logo,
.hero__sottotitolo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero__logo {
  width: min(72vw, 360px);
}

.hero__sottotitolo {
  width: min(78vw, 460px);
}

.hero__testo {
  margin: 3em 0 0;
  color: var(--svg);
  font-size: clamp(3.5rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: none;
}

.hero__contacts {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin: 0;
  font-style: normal;
  text-align: center;
}

.hero__contact {
  color: var(--svg);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease;
}

.hero__contact:hover,
.hero__contact:focus-visible {
  color: #ffffff;
}

.hero__contact--text {
  max-width: 28ch;
}
