* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,.75),
      rgba(245,241,232,.95)
    ),
    #f3efe6;

  color: #162033;
}


/* =================================
   HEADER
================================= */

.site-header {
  width: 100%;
  padding: 28px 55px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(248,245,238,.92);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 2.5px;
  color: #162033;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #162033;

  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1.7px;

  transition: color .25s ease;
}

.main-nav a:hover {
  color: #b08a45;
}


/* =================================
   GOLD DIVIDER
================================= */

.gold-divider {
  width: 100%;
  height: 1px;
  background: #b08a45;
  opacity: .65;
}


/* =================================
   MAIN PAGE
================================= */

.inquiries-page {
  width: 1050px;
  max-width: 88%;
  margin: 0 auto;
  padding: 90px 0 110px;
}


/* =================================
   INTRO
================================= */

.inquiries-intro {
  text-align: center;
}

.inquiries-intro h1 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 4px;

  color: #162033;
}

.subtitle {
  margin: 18px 0 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;

  color: #555;
}


/* =================================
   ORNAMENT
================================= */

.ornament {
  width: 180px;
  margin: 28px auto 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ornament span {
  width: 65px;
  height: 1px;
  background: #b08a45;
}

.ornament i {
  font-size: 9px;
  font-style: normal;
  color: #b08a45;
}


/* =================================
   CONTACT DETAILS
================================= */

.contact-details {
  max-width: 760px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.contact-item {
  text-align: center;
  padding: 25px 10px;
}

.contact-item h2 {
  margin: 0 0 17px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;

  color: #162033;
}

.contact-item::after {
  content: "";
  display: block;

  width: 30px;
  height: 1px;

  margin: 0 auto 18px;

  background: #b08a45;
}

.contact-item a {
  color: #444;

  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;

  transition: color .25s ease;
}

.contact-item a:hover {
  color: #b08a45;
}


/* =================================
   CLOSING
================================= */

.inquiries-closing {
  margin-top: 95px;
  text-align: center;
}

.closing-line {
  width: 70px;
  height: 1px;

  margin: 0 auto 28px;

  background: #b08a45;
}

.inquiries-closing p {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;

  color: #343434;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 800px) {

  .site-header {
    padding: 22px 25px;

    flex-direction: column;
    gap: 18px;
  }

  .brand {
    font-size: 15px;
    text-align: center;
  }

  .main-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 10px;
  }

  .inquiries-page {
    max-width: 88%;
    padding-top: 65px;
  }

  .inquiries-intro h1 {
    font-size: 23px;
    letter-spacing: 2.5px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-item {
    padding: 18px 10px;
  }

  .inquiries-closing {
    margin-top: 65px;
  }

}
