n: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Inter", system-ui, sans-serif;
  background: #F4F1EC;
  color: #1C1B1A;
  line-height: 1.85;
  font-size: 16px;
}

/* Layout */
section {
  max-width: 820px;
  margin: auto;
  padding: 5rem 1.5rem;
}

/* HERO */
.hero {
  text-align: center;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.subtle {
  font-size: 0.8rem;
  color: #9C7A3C;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* INVOCATION */
.invocation {
  max-width: 700px;
  margin: auto;
  padding: 3rem 1.5rem 4.5rem;
  text-align: center;
}

.invocation blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: #5F5B55;
  line-height: 1.9;
}

.invocation span {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #9C7A3C;
  text-transform: uppercase;
}

/* HEADINGS */
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin-bottom: 2.2rem;
  letter-spacing: 0.03em;
}

/* TEXT */
.section p {
  max-width: 720px;
  margin-bottom: 1.3rem;
}

.muted {
  color: #6E6A63;
}

.gratitude {
  margin-top: 2rem;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.card {
  border-top: 1px solid #DDD6C9;
  padding-top: 1.8rem;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

/* NOTES */
.notes {
  list-style: none;
  margin-top: 1.5rem;
  max-width: 480px;
}

.notes li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #DDD6C9;
}

/* CONTACT */
.contact a {
  font-size: 1.05rem;
  color: #9C7A3C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact a:hover {
  border-color: #9C7A3C;
}


/* FOOTER */
.site-footer {
  text-align: center;
  padding: 5rem 1.5rem 4.5rem;
  color: #6E6A63;
}

.footer-divider {
  width: 120px;
  height: 1px;
  background: #DDD6C9;
  margin: 0 auto 2.5rem;
}

.footer-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .invocation blockquote {
    font-size: 1.25rem;
  }

  section {
    padding: 4rem 1.2rem;
  }
}
