*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: #222224;
  background: #eef3f9;
}

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

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100vh;
  padding: 34px 50px 44px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(238, 243, 249, 0.98) 0%, rgba(238, 243, 249, 0.9) 40%, rgba(238, 243, 249, 0.2) 74%),
    url("../images/food-bg.jpg") right center / cover no-repeat;
}

.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  width: 75px;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  width: 100%;
  max-width: 980px;
  padding: 68px 0 72px;
}

.hero__eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 97, 18, 0.28);
  border-radius: 8px;
  color: #ff6112;
  background: rgba(238, 243, 249, 0.78);
  font-size: 16px;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #222224;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 1.04;
}

h1 span {
  display: block;
}

h1 strong {
  color: #ff6112;
  font-style: normal;
}

.mobile-title {
  display: none;
}

.hero__text {
  max-width: 580px;
  margin: 0 0 40px;
  padding: 0 0 0 20px;
  border-left: 4px solid #ff6112;
  font-size: 20px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 60px;
  padding: 16px 28px;
  border: 2px solid #ff6112;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #ff8c53 0%, #ff6112 100%);
  box-shadow: 0 10px 20px rgba(255, 97, 18, 0.32);
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 97, 18, 0.38);
}

.button--ghost {
  color: #ff6112;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.info {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  min-width: 0;
  width: 100%;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 28px;
  max-width: 860px;
}

.info__item {
  padding-top: 18px;
  border-top: 2px solid rgba(255, 97, 18, 0.35);
}

.info__item span {
  display: block;
  margin-bottom: 10px;
  color: #ff6112;
}

.info__item a {
  display: block;
}

.info__item a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    padding: 24px 24px 34px;
    background:
      linear-gradient(180deg, rgba(238, 243, 249, 0.98) 0%, rgba(238, 243, 249, 0.94) 58%, rgba(238, 243, 249, 0.72) 100%),
      url("../images/food-bg.jpg") 68% center / cover no-repeat;
  }

  .logo {
    width: 56px;
  }

  .hero__content {
    padding: 52px 0;
  }

  h1 span {
    display: block;
  }

  .hero__text {
    max-width: 560px;
    font-size: 18px;
  }

  .info {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 20px 18px 28px;
    background:
      linear-gradient(180deg, rgba(238, 243, 249, 0.88) 0%, rgba(238, 243, 249, 0.82) 48%, rgba(238, 243, 249, 0.9) 100%),
      url("../images/food-bg.jpg") 55% 46% / auto 76% no-repeat;
  }

  .hero__content {
    padding: 44px 0 36px;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    font-size: 16px;
  }

  h1 {
    margin-bottom: 26px;
    font-size: clamp(36px, 9.6vw, 42px);
    line-height: 1.06;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .hero__text {
    margin-bottom: 30px;
    font-size: 16px;
    max-width: 32ch;
    padding-left: 14px;
    overflow-wrap: break-word;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
  }
}
