body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f8f5ef;
  color: #222;
}

header {
  background-color: #f3ede3;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 36px;
  font-weight: 700;
  font-family: Georgia, serif;
  color: #5c4328;
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a7a66;
  margin-top: 4px;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

main,
section,
footer {
  padding: 20px;
  border: 1px solid #ddd;
  margin: 10px;
  background-color: white;
}


#hero {
  background-color: #f8f5ef;
  border: none;
  margin: 0;
  padding: 60px 0;
}

.hero-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 18px;
  font-family: Georgia, serif;
  color: #3f2d1c;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a7a66;
  margin-bottom: 14px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #5f564c;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background-color: #8a6a3f;
  color: white;
}

.btn-secondary {
  border: 1px solid #cbbca8;
  color: #3f2d1c;
  background-color: transparent;
}

.hero-card {
  background-color: white;
  border: 1px solid #e3d7c7;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7a66;
  margin-bottom: 10px;
}

.hero-card h3 {
  font-size: 28px;
  margin: 0 0 14px;
  color: #3f2d1c;
  font-family: Georgia, serif;
}

.hero-card p:last-child {
  color: #5f564c;
  line-height: 1.7;
}
#offers {
  border: none;
  margin: 0;
  padding: 70px 0;
  background-color: #fffdf8;
}

.section-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a7a66;
  margin-bottom: 14px;
}

.section-title {
  font-size: 36px;
  line-height: 1.2;
  font-family: Georgia, serif;
  color: #3f2d1c;
  max-width: 760px;
  margin: 0 0 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  background-color: white;
  border: 1px solid #e3d7c7;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.offer-card h3 {
  font-size: 24px;
  margin: 0 0 12px;
  font-family: Georgia, serif;
  color: #5c4328;
}

.offer-card p {
  margin: 0;
  color: #5f564c;
  line-height: 1.7;
  font-size: 15px;
}







@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  #hero {
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 14px 0;
  }

  .logo-main {
    font-size: 30px;
  }

  .logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  #offers {
    padding: 50px 0;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .offer-card {
    padding: 20px;
  }

  .offer-card h3 {
    font-size: 22px;
  }
}
