/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #F4F1EA;
  color: #1F1F1F;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: min(820px, 90%);
  margin: 0 auto;
  padding: 80px 0;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.subhead {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 30px;
  color: #6F7D6A;
}

.lead {
  font-size: 18px;
  margin-bottom: 30px;
}

/* LABELS */
.label {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #6F7D6A;
}

.label.light {
  color: #D9D4CC;
}

/* SECTIONS */
.section {
  border-top: 1px solid #E3DED6;
}

.section.alt {
  background: #EFEAE1;
}

.section.dark {
  background: #1F1F1F;
  color: #F4F1EA;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #6F7D6A;
  text-decoration: none;
}

/* PRINCIPLES */
.principles p {
  font-size: 20px;
  margin-bottom: 15px;
}

/* NOTES */
.notes p {
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #1F1F1F;
  text-decoration: none;
  color: #1F1F1F;
  transition: 0.2s;
}

.btn:hover {
  background: #1F1F1F;
  color: #F4F1EA;
}

.btn.solid {
  background: #6F7D6A;
  border-color: #6F7D6A;
  color: white;
}

/* LIST */
.list li {
  margin-bottom: 10px;
}

/* CENTER */
.center {
  text-align: center;
}

/* FORM */
.form {
  margin-top: 20px;
}

.form input {
  padding: 12px;
  width: 250px;
  border: 1px solid #ccc;
}

.form button {
  padding: 12px 18px;
  border: none;
  background: #6F7D6A;
  color: white;
  cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid #E3DED6;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #6F7D6A;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}