* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f2ea;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
}

.page {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 40px;
}

.logo {
  letter-spacing: 14px;
  font-size: 28px;
  margin-bottom: 90px;
}

h1 {
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 400;
  margin: 0;
}

h1 span {
  color: #9b7a4d;
}

.line {
  width: 58px;
  height: 1px;
  background: #9b7a4d;
  margin: 36px 0;
}

.hero-copy > p {
  max-width: 480px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-image {
  height: 760px;
  position: relative;
}

.image-card {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 8px 8px;
  background:
    radial-gradient(circle at 40% 45%, rgba(255,255,255,0.85), transparent 35%),
    linear-gradient(145deg, #e7ded1, #c7b79e);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.signup {
  max-width: 560px;
  margin-top: 48px;
  padding: 34px;
  border: 1px solid rgba(155,122,77,0.25);
  background: rgba(255,255,255,0.35);
}

.signup h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 15px;
  color: #9b7a4d;
  font-family: Arial, sans-serif;
}

.signup p,
.signup small {
  font-family: Arial, sans-serif;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 14px;
}

input {
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font-size: 16px;
}

button {
  height: 58px;
  border: 0;
  background: #121212;
  color: #c9a66b;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #2a2a2a;
}

.success {
  display: none;
  margin-top: 16px;
  font-family: Arial, sans-serif;
  color: #6f5735;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(155,122,77,0.25);
  margin: 20px 0 80px;
}

.benefits div {
  padding: 38px;
  border-right: 1px solid rgba(155,122,77,0.2);
}

.benefits div:last-child {
  border-right: 0;
}

.benefits span {
  color: #9b7a4d;
  font-family: Arial, sans-serif;
}

.benefits h3 {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
}

.benefits p {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.statement {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}

.statement p {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.statement em {
  color: #9b7a4d;
}

footer {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid rgba(155,122,77,0.3);
  display: flex;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  color: #6b6258;
}

footer strong {
  font-family: Georgia, serif;
  letter-spacing: 12px;
  color: #171717;
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .logo {
    margin-bottom: 56px;
    font-size: 22px;
  }

  .hero-image {
    height: 360px;
    order: -1;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits div {
    border-right: 0;
    border-bottom: 1px solid rgba(155,122,77,0.2);
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
