:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #333333;
  --blue: #2f6bff;
  --blue-soft: #4a90e2;
  --hero-overlay: rgba(28, 22, 12, 0.55);
  --radius: 22px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 64px));
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.95) contrast(1.05);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.45), var(--hero-overlay) 45%, rgba(20, 16, 10, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  padding: 72px 0;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-content p {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.45;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: transform 160ms ease, opacity 160ms ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.section {
  padding: 88px 0;
}

.intro h2,
.contact h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.lead {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
  margin-top: 0;
}

.media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.split-copy ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.split-copy li + li {
  margin-top: 12px;
}

.offer .split-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.offer .split-copy a {
  color: var(--blue-soft);
  font-weight: 600;
}

.offer .split-copy a:hover {
  text-decoration: underline;
}

.contact {
  padding-top: 48px;
  padding-bottom: 100px;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-link {
  margin-top: 14px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--blue);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.social svg {
  width: 16px;
  height: 16px;
}

.social:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

@media (max-width: 900px) {
  .container,
  .container.narrow {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
  }

  .split-reverse .media {
    order: -1;
  }

  .hero {
    min-height: 64vh;
  }
}

@media (max-width: 560px) {
  .container,
  .container.narrow {
    width: calc(100% - 28px);
  }

  .hero-content {
    padding: 56px 0;
  }

  .btn-cta {
    width: 100%;
    max-width: 260px;
  }

  .contact {
    padding-bottom: 88px;
  }
}
