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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #FAF8F5;
  min-height: 100vh;
}

/* Обёртка фото с размытым переходом снизу */
.hero {
  position: relative;
  overflow: hidden;
}

/* Фото на всю ширину страницы, высота — пропорциональна */
.photo {
  display: block;
  width: 100%;
  height: auto;
}

/* Плавный размытый переход от фото к светлому фону.
   Цвета подобраны по нижней части фото (~#C4B3A5) к фону #FAF8F5 */
.fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(196, 179, 165, 0) 0%,
    rgba(209, 196, 185, 0.55) 45%,
    rgba(242, 238, 233, 0.92) 80%,
    #FAF8F5 100%
  );
  pointer-events: none;
}

.bottom {
  background: #FAF8F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px 44px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.intro {
  font-size: 15px;
  line-height: 1.55;
  color: #3a352f;
  text-align: left;
  margin-bottom: 16px;
}

.hint {
  font-size: 17px;
  font-weight: 600;
  color: #2D2A26;
  text-align: center;
  margin: 8px 0 32px;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 20px;
  width: 100%;
  max-width: 560px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-title {
  font-size: 15px;
  font-weight: 700;
  color: #2D2A26;
  letter-spacing: 0.4px;
  text-align: center;
  margin-bottom: 4px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #2D2A26;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  border: 1px solid rgba(45,42,38,0.12);
  box-shadow: 0 1px 4px rgba(45,42,38,0.06);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}
