:root {
  --white: #faf8f4;
  --sand: #ede7de;
  --gold: #bca970;
  --deepgreen: #3e5c44;
  --leafgreen: #96b996;
  --gray: #bab6ad;
  --headline: 'Faustina', serif;
  --body: 'Faustina', Arial, sans-serif;
  --header-height: 50px;
}
html {
  box-sizing: border-box !important;
}
*, *:before, *:after {
  box-sizing: inherit !important;
}
body {
  margin: 0;
  font-family: var(--body);
  background: var(--white);
  color: var(--deepgreen);
  font-size: 1.04em;
  letter-spacing: 0.1px;
  min-height: 100vh;
}
header {
  background: var(--white);
  border-bottom: 1.7px solid var(--sand);
  height: var(--header-height);
  
  
}
.brand {
  font-family: var(--headline);
  color: var(--deepgreen);
  font-weight: 700;
  font-size: 1.0em;
  line-height: var(--header-height);
  letter-spacing: 1.5px;
  margin-left: 30px;
  
  display: inline-block;
}
.subtitle {
  color: var(--deepgreen);
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.headline {
  font-family: var(--headline);
  font-size: 1.33em;
  color: var(--deepgreen);
  margin-bottom: 38px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.2px;
}
.features {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 38px 52px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.features li {
  position: relative;
  background: var(--white);
  padding: 0 0 0 0;
  font-size: 1.09em;
  line-height: 1.7;
  color: var(--deepgreen);
  font-weight: 500;
  min-height: 38px;
}
.features li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 13px;
  margin-top: 3px;
  background: linear-gradient(120deg, var(--gold), var(--leafgreen));
  border-radius: 50%;
  vertical-align: middle;
  box-shadow: 0 1px 5px #bca97025;
}
@media (max-width: 700px) {
  main { padding: 0 6vw; }
  .features { grid-template-columns: 1fr; gap: 24px 0; }
}
.button {
  display: block;
  margin: 0px auto 0 0;
  background: var(--leafgreen);
  color: #fff;
  border-radius: 22px;
  padding: 16px 48px;
  font-size: 1.13em;
  font-weight: 700;
  border: none;
  box-shadow: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.8px;
  font-family: var(--body);
  transition: background 0.15s, color 0.15s;
}
.button:hover, .button:focus {
  background: var(--deepgreen);
  color: var(--gold);
  outline: none;
}
footer {
  text-align: center;
  color: var(--gray);
  font-size: 0.98em;
  background: none;
  border-top: 1px solid var(--sand);
  margin-top: 90px;
  padding: 24px 0 18px 0;
  letter-spacing: 1px;
  font-family: var(--body);
}

section {
  padding: 30px;

}

/* HERO SECTION */
.hero-section {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.hero-title {
  font-size: 3em;
  font-weight: 900;
  margin: 0 0 0px 0;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-lead {
  font-size: 1em;
  margin: 0 0 24px 0;
  padding: 0;
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
  color: var(--sand);
}

.hero-section .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: center -600px ;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: brightness(0.55);
  
}

.hero-section .hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: white;
}