* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #7a6555;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.page {
  max-width: 768px;
  margin: 0 auto;
  background: #7a6555;
  overflow: hidden;
}

/* HERO */
.hero {
  min-height: 945px;
  background:
    linear-gradient(to bottom, rgba(70, 54, 43, .15), rgba(70, 54, 43, .85)),
    url("images/waenya-hero.jpg") center top / cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px 52px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 78px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: .8;
}

.signature {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: 72px;
  margin-top: -8px;
  margin-left: 115px;
}

.profession {
  font-size: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: -5px;
}

.hero-text {
  max-width: 520px;
  margin-top: 80px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-buttons a {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #fff;
  color: #6e5848;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* HELP */
.help-section {
  padding: 50px 48px 70px;
}

.help-section h2,
.about-content h2,
.faq-section h2,
.footer h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: .95;
  margin-bottom: 34px;
}

.help-section em,
.about-content em {
  font-family: 'Great Vibes', cursive;
  font-size: 58px;
  font-weight: 400;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  min-height: 135px;
  border-radius: 10px;
  padding: 26px 34px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(to right, rgba(130, 104, 86, .75), rgba(255,255,255,.25)),
    url("images/card-bg.jpg") center / cover no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.service-card h3 {
  /*font-family: 'Great Vibes', cursive;*/
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 400;
  line-height: .8;
}

.service-card p {
  max-width: 390px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.35;
}

.card-link {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* QUOTE */
.quote-section {
  background: #f6f3ee;
  color: #6e5848;
  padding: 70px 58px;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  opacity: .25;
  display: block;
  height: 40px;
  text-align: left;
}

.quote-section p {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: .95;
  font-style: italic;
}

/* ABOUT */
.about-section {
  background: #7a6555;
}

.about-image {
  height: 650px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.05), rgba(0,0,0,.10)),
    url("images/waenya-about2.jpg") center top / cover no-repeat;
  /*filter: grayscale(100%);*/
}

.about-content {
  padding: 52px 48px;
}

.about-grid {
  display: grid;
  gap: 22px;
}

.about-grid div {
  border-top: 1px solid rgba(255,255,255,.28);
  padding-top: 18px;
}

.about-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.about-grid p {
  font-size: 15px;
  line-height: 1.45;
  opacity: .9;
}

/* FAQ */
.faq-section {
  padding: 54px 48px 68px;
  background: #7a6555;
  position: relative;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,.28);
  padding: 18px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.faq-item button {
  width: 100%;
  border: none;
  background: none;
  color: #fff;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 26px;
  font-weight: 300;
}

.faq-item.active button::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.45;
  opacity: .85;
}

.faq-item.active p {
  display: block;
}

/* FOOTER */
.footer {
  padding: 50px 48px 38px;
  background: #6f5a4b;
  text-align: center;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
}

.footer p {
  font-size: 11px;
  text-transform: uppercase;
  opacity: .75;
}

/* MOBILE */
@media (max-width: 600px) {
  .page {
    max-width: 100%;
  }

  .hero {
    min-height: 680px;
    padding: 42px 28px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .signature {
    font-size: 54px;
    margin-left: 75px;
  }

  .profession {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .hero-text {
    margin-top: 55px;
    font-size: 18px;
  }

  .help-section,
  .about-content,
  .faq-section,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .help-section h2,
  .about-content h2,
  .faq-section h2,
  .footer h2 {
    font-size: 38px;
  }

  .help-section em,
  .about-content em {
    font-size: 48px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .service-card h3 {
    font-size: 48px;
  }

  .quote-section {
    padding: 58px 30px;
  }

  .quote-section p {
    font-size: 27px;
  }

  .about-image {
    height: 430px;
  }
}