* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #1d2023;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-stretch: condensed;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 80px;
  padding: 0 20px 0 36px;
  background: #fff;
}

.brand {
  max-width: 840px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-links .active {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #241d1d;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.nav-cta {
  min-width: 235px;
  height: 40px;
  padding: 0 20px;
}

.menu-toggle {
  display: none;
}

.container {
  width: min(1174px, calc(100vw - 64px));
  margin: 0 auto;
}

.hero-section {
  padding: 86px 0 164px;
}

.hero-copy {
  max-width: 1040px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.22;
}

.lead {
  margin-top: 23px;
  max-width: 1060px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.55;
}

.hero-grid {
  display: grid;
  grid-template-columns: 425px 1fr;
  gap: 35px;
  align-items: start;
  margin-top: 41px;
}

.hero-image {
  display: block;
  width: 425px;
  height: 274px;
  object-fit: cover;
}

.hero-points {
  max-width: 760px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.65;
}

.hero-points h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 900;
}

.hero-points p {
  margin: 3px 0 34px;
}

.button.large {
  width: 356px;
  height: 72px;
  margin-top: 35px;
  font-size: 24px;
}

.why-section {
  padding-bottom: 170px;
}

.section-intro {
  max-width: 1120px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}

h2 {
  margin-top: 24px;
  color: #bd4560;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

.feature-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  min-height: 282px;
  margin-top: 120px;
  padding: 26px 18px 17px;
  border: 1px solid #ccc;
  background: #fff;
}

.feature-card.first-card {
  margin-top: 46px;
  min-height: 323px;
}

.feature-card.first-card + .feature-card {
  margin-top: 144px;
}

.feature-card img {
  display: block;
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.feature-card.first-card img {
  height: 146px;
  margin-top: 62px;
}

.feature-copy {
  padding-top: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.feature-copy h3 {
  margin-bottom: 9px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}

.feature-copy p {
  color: #bd4560;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.button.medium {
  width: 392px;
  min-height: 51px;
  margin-top: 17px;
  padding: 10px 22px;
  font-size: 19px;
  line-height: 1.15;
}

.cookie-box {
  position: fixed;
  left: 20px;
  bottom: 22px;
  z-index: 20;
  width: 300px;
  padding: 14px 15px 12px;
  border-radius: 2px;
  background: #f5f6f8;
  color: #333;
  font-family: Arial, sans-serif;
  font-stretch: normal;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.cookie-box h4 {
  margin: 0 0 6px;
  font-size: 14px;
}

.cookie-box p {
  margin: 0 0 12px;
}

.cookie-box button {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.cookie-box a {
  color: #0645ff;
}

@media (max-width: 760px) {
  body {
    font-family: "Helvetica Neue", Arial, sans-serif;
  }

  .site-nav {
    position: relative;
    height: 70px;
    padding: 0 16px;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #111;
    border-radius: 2px;
  }

  .brand,
  .nav-links {
    display: none;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  .hero-section {
    padding: 48px 0 70px;
  }

  h1 {
    font-size: 26px;
    line-height: 1.6;
  }

  .lead {
    margin-top: 18px;
    font-size: 23px;
    line-height: 1.58;
  }

  .hero-grid {
    display: block;
    margin-top: 42px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .hero-points {
    margin-top: 176px;
    font-size: 20px;
    line-height: 1.52;
  }

  .hero-points h3 {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-points p {
    margin: 8px 0 45px;
  }

  .button.large {
    width: 100%;
    height: 66px;
    margin-top: 24px;
    font-size: 20px;
  }

  .section-intro {
    font-size: 20px;
    line-height: 1.55;
  }

  h2 {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.55;
  }

  .feature-card,
  .feature-card.first-card {
    display: block;
    min-height: 0;
    margin-top: 48px;
    padding: 20px 20px 21px;
  }

  .feature-card img,
  .feature-card.first-card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    margin: 0 0 64px;
    object-fit: cover;
  }

  .feature-copy,
  .feature-copy p,
  .feature-copy h3 {
    font-size: 18px;
    line-height: 1.55;
  }

  .feature-copy h3 {
    margin-bottom: 6px;
  }

  .button.medium {
    width: 100%;
    min-height: 67px;
    margin-top: 22px;
    font-size: 20px;
  }

  .why-section {
    padding-bottom: 90px;
  }

  .cookie-box {
    left: 20px;
    bottom: 73px;
    width: 234px;
  }
}
