:root {
  color-scheme: dark;
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.78);
  --line: rgba(247, 244, 238, 0.28);
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #06100d;
}

a {
  color: inherit;
}

.landing {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 40px 24px;
}

.landing__image,
.landing__shade {
  position: absolute;
  inset: 0;
}

.landing__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08);
}

.landing__shade {
  background:
    linear-gradient(180deg, rgba(2, 11, 8, 0.22), rgba(2, 11, 8, 0.58)),
    linear-gradient(90deg, rgba(2, 11, 8, 0.52), rgba(2, 11, 8, 0.1));
}

.landing__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 780;
  letter-spacing: 0;
}

p {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn,
.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 760;
}

.btn {
  gap: 10px;
  padding: 12px 18px;
  color: #07100c;
  background: var(--text);
}

.btn svg {
  width: 24px;
  height: 24px;
  fill: var(--whatsapp);
}

.phone {
  padding: 12px 0;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

@media (max-width: 640px) {
  .landing {
    place-items: end start;
    padding: 32px 20px 52px;
  }

  .landing__shade {
    background:
      linear-gradient(180deg, rgba(2, 11, 8, 0.12), rgba(2, 11, 8, 0.68)),
      linear-gradient(90deg, rgba(2, 11, 8, 0.42), rgba(2, 11, 8, 0.08));
  }

  h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .phone {
    width: 100%;
  }
}
