:root {
  --black: #000;
  --white: #fff;
  --gold: #e0a72c;
  --line: #bfbfbf;
  --page-width: 1194px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  font-family: "Poppins", "Avenir Next", Avenir, Montserrat, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.38;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

main {
  background: var(--black);
}

.panel {
  min-height: 100svh;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.wrap {
  width: min(100%, var(--page-width));
  min-height: 100svh;
  margin-inline: auto;
  position: relative;
}

.rule {
  width: calc(100% - 124px);
  height: 2px;
  background: var(--line);
  opacity: 0.95;
}

/* HERO */
.hero-wrap {
  padding-top: clamp(92px, 15.1vh, 118px);
}

.brand-block {
  position: relative;
  margin-left: clamp(32px, 5.55vw, 66px);
}

h1 {
  margin: 0 0 2px;
  color: var(--gold);
  font-size: clamp(6rem, 8.35vw, 6.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 300;
}

.hero .rule {
  margin-top: 0;
}

.subtitle {
  margin: 13px 0 0;
  font-size: clamp(1.12rem, 2.02vw, 1.52rem);
  line-height: 1.34;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-note {
  position: absolute;
  right: clamp(56px, 11.6vw, 138px);
  bottom: clamp(50px, 8.2vh, 56px);
  margin: 0;
  max-width: 570px;
  font-size: clamp(1.05rem, 1.68vw, 1.25rem);
  line-height: 1.58;
  letter-spacing: -0.04em;
  font-weight: 400;
}

/* ABOUT */
.about-wrap {
  padding-top: clamp(76px, 14.9vh, 100px);
  padding-left: clamp(32px, 4.85vw, 57px);
  padding-right: clamp(32px, 4.6vw, 55px);
}

h2 {
  margin: 0 0 4px;
  font-size: clamp(4rem, 6.9vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.about .rule {
  width: 100%;
  margin-top: 3px;
}

.about-copy {
  margin-top: 13px;
  max-width: 490px;
}

.about-copy p {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.31rem);
  line-height: 1.51;
  letter-spacing: -0.047em;
  font-weight: 400;
}

.short-rule {
  width: 245px;
  height: 2px;
  margin-top: 15px;
  margin-bottom: 13px;
  background: var(--line);
}

.about-copy a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1.25rem, 2.12vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.about-copy a:hover,
.about-copy a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.2em;
}

@media (max-width: 760px) {
  .panel,
  .wrap {
    min-height: 100svh;
  }

  .rule {
    width: calc(100% - 48px);
  }

  .hero-wrap {
    padding-top: 19vh;
  }

  .brand-block {
    margin-left: 24px;
    margin-right: 24px;
  }

  h1 {
    font-size: clamp(4.75rem, 22vw, 6.25rem);
  }

  .subtitle {
    font-size: clamp(0.9rem, 4.6vw, 1.2rem);
    letter-spacing: 0.24em;
    max-width: 340px;
  }

  .hero-note {
    left: 24px;
    right: 24px;
    bottom: 9vh;
    max-width: 520px;
    font-size: clamp(1rem, 4.2vw, 1.18rem);
  }

  .desktop-break {
    display: none;
  }

  .about-wrap {
    padding: 14vh 24px 48px;
  }

  h2 {
    font-size: clamp(3.9rem, 18vw, 5rem);
  }

  .about-copy p {
    font-size: clamp(1rem, 4.2vw, 1.16rem);
  }

  .about-copy p br {
    display: none;
  }

  .short-rule {
    width: min(245px, 70vw);
    margin-top: 20px;
  }
}

@media (max-width: 420px) {
  .hero-wrap {
    padding-top: 17vh;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 5.2rem);
  }

  .subtitle {
    letter-spacing: 0.18em;
  }

  .hero-note {
    bottom: 7vh;
  }
}

@media (min-width: 1195px) {
  .wrap {
    width: var(--page-width);
  }
}
