@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #080808;
  --text: #f2f2f0;
  --muted: #9b9b98;
  --line: rgba(255,255,255,.22);
  --container: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .48em;
  padding-left: .48em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 38px;
}

.language {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
}

.language span {
  margin-left: 7px;
  font-size: 16px;
}

.menu {
  width: 28px;
  height: 22px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.menu span {
  display: block;
  width: 27px;
  height: 1px;
  background: #fff;
}

.hero {
  min-height: 900px;
  height: 100vh;
  max-height: 1080px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: -2%;
  background:
    url("assets/ravnor-hero.png")
    center center / cover
    no-repeat;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.08) 32%, rgba(0,0,0,.52) 100%),
    radial-gradient(circle at center, transparent 20%, rgba(0,0,0,.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 1000px);
  text-align: center;
  padding: 110px 24px 90px;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto 25px;
  font-size: 13px;
  letter-spacing: .55em;
  color: rgba(255,255,255,.68);
}

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 12vw, 170px);
  line-height: .86;
  font-weight: 300;
  letter-spacing: .23em;
  padding-left: .23em;
}

.title-line {
  width: 72px;
  height: 1px;
  background: rgba(255,255,255,.35);
  margin: 38px auto 27px;
}

.hero-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .46em;
  padding-left: .46em;
  color: rgba(255,255,255,.72);
}

.cta {
  margin: 42px auto 0;
  width: min(100%, 370px);
  min-height: 61px;
  border: 1px solid rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px 0 31px;
  font-size: 13px;
  letter-spacing: .25em;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}

.cta .arrow {
  font-size: 25px;
  line-height: 1;
  font-weight: 200;
  letter-spacing: 0;
}

.cta:hover {
  background: #fff;
  color: #080808;
  transform: translateY(-2px);
}

.scroll {
  position: absolute;
  z-index: 8;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  letter-spacing: .4em;
  color: rgba(255,255,255,.55);
}

.scroll-line {
  height: 42px;
  width: 1px;
  background: rgba(255,255,255,.45);
}

.values {
  min-height: 300px;
  background: #090909;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.value-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 65px 30px;
  border-right: 1px solid rgba(255,255,255,.05);
}

.value-card:last-child {
  border-right: 0;
}

.icon {
  height: 42px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 32px;
  font-weight: 200;
}

.icon-cube {
  font-size: 39px;
}

.icon-star {
  font-size: 40px;
}

.icon-rings {
  font-size: 24px;
  letter-spacing: -5px;
}

.value-card h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .25em;
}

.small-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: 20px 0;
}

.value-card p {
  margin: 0;
  color: #858582;
  font-size: 13px;
  line-height: 1.9;
}

.collab {
  position: relative;
  min-height: 410px;
  padding: 85px 25px 35px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(5,5,5,.88), rgba(5,5,5,.94)),
    url("assets/ravnor-hero.png") center / cover;
}

.collab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .18;
}

.collab-content,
.collab footer {
  position: relative;
  z-index: 2;
}

.centered {
  justify-content: center;
  margin-bottom: 34px;
}

.brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  font-size: clamp(30px, 4vw, 53px);
  letter-spacing: .28em;
  padding-left: .28em;
  font-weight: 300;
}

.brands b {
  font-size: 29px;
  font-weight: 200;
  letter-spacing: 0;
}

.brands .bulvar {
  font-family: Georgia, serif;
  letter-spacing: .08em;
  padding-left: .08em;
}

.collab-content > p {
  margin: 28px 0 30px;
  color: #888885;
  font-size: 13px;
  letter-spacing: .18em;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-width: 270px;
  border: 1px solid rgba(255,255,255,.25);
  padding: 17px 22px;
  font-size: 11px;
  letter-spacing: .27em;
  transition: border-color .3s ease, background .3s ease;
}

.outline-btn:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.04);
}

.collab footer {
  margin-top: 66px;
  font-size: 10px;
  color: #575754;
  letter-spacing: .08em;
}

@media (max-width: 800px) {
  .header {
    height: 78px;
  }

  .hero {
    min-height: 760px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: .38em;
    max-width: 450px;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 105px);
    letter-spacing: .16em;
    padding-left: .16em;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: .31em;
    padding-left: .31em;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 50px 25px;
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .brands {
    flex-direction: column;
    gap: 14px;
    font-size: 31px;
  }

  .brands b {
    font-size: 22px;
  }

  .collab {
    padding-top: 75px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 14px;
  }

  .header-right {
    gap: 22px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .eyebrow {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-subtitle {
    font-size: 9px;
    line-height: 2.3;
  }

  .cta {
    min-height: 56px;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 18px;
  }

  .scroll {
    bottom: 18px;
  }

  .collab-content > p {
    font-size: 10px;
    line-height: 1.8;
  }

  .outline-btn {
    min-width: 230px;
  }
}
