:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body.landing-body {
  font-family: "Sora", sans-serif;
  background: #0b0c0f;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===== FULLSCREEN WRAPPER ===== */
.landing {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0b0c0f;
  display: flex;
  align-items: stretch;
}

/* ===== BACKGROUND IMAGE ===== */
.landing-media {
  position: absolute;
  inset: 0;

  background-image: url("../img/landing-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  z-index: 0;
}

/* ===== OVERLAY ===== */
.landing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 8, 0.9) 0%,
    rgba(5, 6, 8, 0.55) 45%,
    rgba(5, 6, 8, 0.15) 100%
  );
  z-index: 1;
}

/* ===== CONTENT ===== */
.landing-content {
  position: relative;
  width: min(640px, 90vw);
  margin-left: clamp(20px, 6vw, 96px);
  margin-right: clamp(20px, 6vw, 96px);
  padding-top: clamp(120px, 18vh, 220px);
  padding-bottom: clamp(40px, 9vh, 120px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;

  color: #f5f5f5;
  z-index: 2;
}

/* ===== KICKER ===== */
.landing-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(220, 200, 150, 0.7);
}

.landing-kicker .kicker-line {
  width: 32px;
  height: 1px;
  background: rgba(220, 200, 150, 0.55);
}

/* ===== TITLE ===== */
.landing-title {
  font-size: clamp(34px, 6.4vw, 86px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.landing-title .title-accent {
  color: #c9a45a;
}

/* ===== SUBTITLE ===== */
.landing-subtitle {
  max-width: min(540px, 92vw);
  font-size: clamp(12px, 1.7vw, 16px);
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.82);
} 

/* ===== ACTIONS ===== */
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* ===== CTA ===== */
.landing-cta {
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid rgba(216, 191, 120, 0.55);
  background: transparent;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.landing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.landing-cta.primary {
  background: #c9a45a;
  color: #101010;
  border-color: #c9a45a;
}

.landing-cta.secondary {
  background: transparent;
  color: #f5f5f5;
}

/* ===== NOTE ===== */
.landing-note {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(200, 200, 200, 0.58);
}

.landing-top-note {
  margin-top: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(220, 200, 150, 0.65);
}

.landing-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 16px;
  border-radius: 999px;
  border: 1px solid rgba(211, 178, 106, 0.4);
  color: #d3b26a;
  background: rgba(12, 14, 18, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-scroll-inline {
  margin-top: 0;
  flex: 0 0 auto;
}

.landing-scroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.landing-scroll svg {
  transform: rotate(-90deg);
}

@media (max-width: 900px) {
  .landing-content {
    margin-left: clamp(16px, 5vw, 36px);
    margin-right: clamp(16px, 5vw, 36px);
    padding-top: clamp(120px, 22vh, 220px);
    gap: 14px;
  }

  .landing-title {
    letter-spacing: 0.02em;
  }

  .landing-kicker {
    letter-spacing: 0.2em;
  }
}

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

  .landing-content {
    width: min(520px, 92vw);
    padding-top: clamp(110px, 18vh, 180px);
  }

  .landing-title {
    font-size: clamp(30px, 9vw, 48px);
  }

  .landing-subtitle {
    font-size: 13px;
  }

  .landing-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .landing-cta {
    width: 100%;
    text-align: center;
  }

  .landing-note {
    font-size: 10px;
  }
}
