@font-face {
  font-family: "Alike";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/alike-latin-400-normal.woff2") format("woff2");
}

:root {
  --black: #05080b;
  --white: #efede7;
  --muted: #aaa7a0;
  --gold: #b79a6b;
  --red: #d54800;
  --line: rgba(239, 237, 231, 0.22);
  --serif: "Alike", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --condensed: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--red);
  color: var(--white);
}

.landing-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 40%, rgba(183, 154, 107, 0.08), transparent 26rem),
    #010102;
}

.landing-portrait {
  position: absolute;
  z-index: -3;
  right: -1.5vw;
  bottom: -2%;
  width: min(69vw, 1200px);
  max-width: none;
  height: 105%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.93) contrast(1.06) brightness(0.9);
  animation: portrait-arrival 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 1, 2, 0.98) 0%, rgba(1, 1, 2, 0.76) 30%, rgba(1, 1, 2, 0.08) 59%, transparent 78%),
    linear-gradient(0deg, rgba(1, 1, 2, 0.82) 0%, transparent 26%);
}

.landing-content {
  display: flex;
  width: min(100%, 1800px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 6rem) clamp(1.5rem, 6vw, 7rem) clamp(1.5rem, 3.5vw, 3.5rem);
  flex-direction: column;
}

.landing-intro {
  width: min(48vw, 700px);
  margin: auto 0;
  padding: 2rem 0 5rem;
}

.landing-signature {
  display: block;
  width: clamp(15rem, 25vw, 25rem);
  height: auto;
  margin: 0 0 clamp(1.2rem, 2.4vh, 2rem);
  object-fit: contain;
  object-position: left center;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--condensed);
  font-size: clamp(2.6rem, 5vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 span {
  color: var(--white);
}

h1 b {
  color: var(--red);
  font-weight: inherit;
}

.launch-date {
  margin: clamp(1.45rem, 3vh, 2.5rem) 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.4rem);
  line-height: 1;
}

.enquiries-button {
  display: inline-flex;
  min-width: 12.5rem;
  margin-top: clamp(2rem, 4vh, 3.5rem);
  padding: 1.05rem 1.2rem 1rem;
  border: 1px solid var(--red);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.enquiries-button span {
  color: var(--red);
  font-size: 1.15rem;
  line-height: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.enquiries-button:hover,
.enquiries-button:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.enquiries-button:hover span,
.enquiries-button:focus-visible span {
  color: var(--white);
  transform: translateX(0.2rem);
}

.landing-footer {
  width: min(52rem, 58vw);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.landing-footer p {
  margin: 0;
}

.copyright {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.disclaimer {
  max-width: 47rem;
  margin-top: 0.7rem !important;
  color: var(--muted);
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  line-height: 1.55;
}

@keyframes portrait-arrival {
  from {
    opacity: 0;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .landing-intro {
    width: 51vw;
  }

  .landing-footer {
    width: min(44rem, 68vw);
  }
}

@media (max-aspect-ratio: 4/3) and (min-width: 761px) {
  .landing-portrait {
    top: 0;
    right: -4vw;
    bottom: auto;
    width: min(78vw, 1100px);
    height: 100%;
    object-position: right top;
  }
}

@media (max-width: 760px) {
  .landing-page {
    min-height: 100svh;
  }

  .landing-portrait {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 54svh;
    object-fit: contain;
    object-position: center top;
  }

  .landing-shade {
    background:
      linear-gradient(0deg, #010102 0%, #010102 48%, rgba(1, 1, 2, 0.08) 75%, transparent 100%),
      linear-gradient(90deg, rgba(1, 1, 2, 0.42), transparent 35%);
  }

  .landing-content {
    min-height: 100svh;
    padding: 1.4rem 1.35rem 1.5rem;
  }

  .landing-intro {
    width: 100%;
    margin: 42svh 0 3.5rem;
    padding: 0;
  }

  .landing-signature {
    width: clamp(13rem, 60vw, 18rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.5vw, 4rem);
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .launch-date {
    font-size: 1.45rem;
  }

  .enquiries-button {
    min-width: min(100%, 15rem);
  }

  .landing-footer {
    width: 100%;
    margin-top: auto;
  }

  .disclaimer {
    font-size: 0.68rem;
  }
}

@media (max-height: 700px) and (min-width: 761px) {
  .landing-intro {
    padding-bottom: 2rem;
  }

  .landing-signature {
    width: 14rem;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: clamp(2.6rem, 4vw, 4.5rem);
  }

  .launch-date {
    margin-top: 1.25rem;
  }

  .enquiries-button {
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
