/* ARESTA³ — identidade inicial
   Grafite     #202326
   Azul        #194973
   Dourado     #B08A45
   Cinza       #626A70
   Pedra       #D8D6CF
   Off-white   #F1F0EB
*/

:root {
  --graphite: #202326;
  --navy: #194973;
  --gold: #B08A45;
  --grey: #626A70;
  --stone: #D8D6CF;
  --off-white: #F1F0EB;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--graphite);
  color: var(--off-white);
  font-family: "Montserrat", sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  width: min(980px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brand {
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.brand sup {
  color: var(--gold);
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: -0.02em;
  vertical-align: super;
  position: relative;
  top: -0.08em;
  margin-left: 0.02em;
}

.divider {
  width: 72px;
  height: 3px;
  margin: 34px 0 24px;
  background: var(--gold);
}

.subtitle {
  margin: 0;
  color: var(--stone);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 54px 0 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.values b {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}

.accent-line {
  position: absolute;
  right: -8vw;
  bottom: 11vh;
  width: 55vw;
  max-width: 850px;
  height: 1px;
  background: var(--navy);
  transform: rotate(-12deg);
  opacity: 0.75;
}

@media (max-width: 640px) {
  .hero {
    padding: 32px;
  }

  .brand {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }

  .divider {
    margin-top: 28px;
  }

  .values {
    margin-top: 42px;
    gap: 9px;
    line-height: 1.8;
  }

  .accent-line {
    right: -25vw;
    width: 100vw;
  }
}
