:root {
  color-scheme: dark;
  --background: #17170d;
  --text: #f5f3ed;
  --text-muted: #ddd9cf;
  --gold: #c8a456;
  --gold-light: #e2c473;
  --gold-dark: #aa8539;
  --sans: "Montserrat", sans-serif;
  --serif: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: var(--sans);
  background: var(--background) url("hero-background.png") center / cover no-repeat;
  color: var(--text);
}

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

p,
h1 {
  margin: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(13 15 7 / 20%) 0%, transparent 58%);
  content: "";
  pointer-events: none;
}

.decorative-mark {
  position: absolute;
  bottom: 35px;
  left: -38px;
  width: 285px;
  height: 330px;
  object-fit: contain;
  opacity: .12;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 48px;
  right: 50px;
  left: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand-logo {
  display: block;
  width: 272px;
  height: 132px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
}

.header-cta {
  gap: 13px;
  min-width: 286px;
  height: 62px;
  padding: 0 22px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-size: 16px;
}

.hero-content {
  position: absolute;
  top: 276px;
  left: 112px;
  width: 750px;
}

.t1,
.t3 {
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 28px;
  color: #eeeae1;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 4.4px;
  line-height: 1.5;
}

.h1 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero-title {
  width: 86.2%;
  color: var(--text);
  font-size: clamp(70px, 5.45vw, 91px);
  letter-spacing: -2px;
  line-height: .95;
  transform: scaleX(1.16);
  transform-origin: left center;
}

.hero-title-accent {
  color: var(--gold);
}

.body-copy {
  margin-top: 40px;
  color: #f1eee8;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.3px;
  line-height: 1.6;
}

.body-copy p + p {
  margin-top: 18px;
}

.body-copy span {
  display: block;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}

.primary-cta {
  gap: 14px;
  min-width: 335px;
  height: 70px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--gold-light), #d1aa5b);
  box-shadow: 0 12px 30px rgb(0 0 0 / 14%);
  color: #242217;
  font-size: 18px;
}

.ico {
  display: inline-block;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ico-whatsapp {
  width: 27px;
  height: 27px;
  background-image: url("ico-whatsapp.svg?v=2");
}

.ico-arrow-right {
  width: 9px;
  height: 18px;
  margin-left: auto;
  background-image: url("ico-arrow-right.png");
  background-size: 300%;
}

.header-cta .ico-whatsapp {
  width: 24px;
  height: 24px;
  filter: invert(76%) sepia(40%) saturate(681%) hue-rotate(2deg) brightness(91%);
}

.header-cta .ico-arrow-right {
  width: 8px;
  height: 16px;
  filter: invert(76%) sepia(40%) saturate(681%) hue-rotate(2deg) brightness(91%);
}

.footer {
  position: absolute;
  right: 0;
  bottom: 33px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 19px;
  border-top: 1px solid rgb(200 164 86 / 50%);
  text-align: center;
}

.disclaimer {
  max-width: calc(100% - 48px);
  color: #cfc8b9;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.8px;
  line-height: 1.5;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (hover: hover) {
  .btn {
    transition: transform 180ms ease, filter 180ms ease;
  }

  .btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
  }
}

@media (max-height: 880px) and (min-width: 901px) {
  .header {
    top: 32px;
  }

  .hero-content {
    top: 235px;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .hero-title {
    font-size: 82px;
    line-height: .94;
  }

  .body-copy {
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.5;
  }

  .body-copy p + p {
    margin-top: 12px;
  }

  .cta-row {
    margin-top: 40px;
  }

  .primary-cta {
    min-width: 310px;
    height: 64px;
    font-size: 17px;
  }

  .footer {
    bottom: 22px;
  }

  .disclaimer {
    font-size: 10px;
    letter-spacing: 2.3px;
  }
}

@media (max-width: 900px) {
  body {
    background-position: 72% center;
  }

  .hero::before {
    background: rgb(17 18 10 / 72%);
  }

  .hero {
    min-height: max(100svh, 840px);
  }

  .decorative-mark {
    display: none;
  }

  .header {
    top: 24px;
    right: 24px;
    left: 24px;
  }

  .brand-logo {
    width: 180px;
    height: 90px;
  }

  .header-cta {
    min-width: auto;
    padding: 0 18px;
  }

  .hero-content {
    top: 170px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero-title {
    width: 100%;
    font-size: clamp(54px, 12vw, 76px);
    transform: none;
  }

  .body-copy span {
    display: inline;
  }

  .body-copy span + span::before {
    content: " ";
  }

  .footer {
    right: 24px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 24px;
    padding-top: 14px;
  }

  .disclaimer {
    max-width: 32rem;
    font-size: 10px;
    letter-spacing: 1.7px;
    line-height: 1.6;
  }
}

@media (max-width: 620px) {
  .header {
    justify-content: center;
  }

  .brand-logo {
    width: 170px;
  }

  .header-cta {
    display: none;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: 50px;
  }

  .body-copy {
    font-size: 16px;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-cta {
    min-width: min(335px, 100%);
  }

}

@media (max-width: 360px) {
  .brand-logo {
    width: 145px;
  }
}
