@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap");

:root {
  color-scheme: light;
  --cream: #f6f1ea;
  --sand: #e8d9c6;
  --clay: #c89b7b;
  --ink: #1f1c1a;
  --forest: #1f4d43;
  --white: #ffffff;
  --shadow: rgba(31, 28, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, var(--cream), #fdfaf6 40%, #f9f2ea 70%);
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin: 0 0 0.6rem;
}

p {
  margin: 0;
  line-height: 1.6;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.hero {
  background: linear-gradient(135deg, rgba(31, 77, 67, 0.08), transparent 60%),
    var(--white);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 30px 60px var(--shadow);
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  font-size: 0.75rem;
  color: var(--forest);
}

.subhead {
  font-size: 1.15rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  margin-top: 4rem;
}

.section-title {
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
}

.accent {
  background: linear-gradient(120deg, var(--sand), #f7eee2 50%, #fefbf7 100%);
  border-radius: 24px;
  padding: 2.5rem;
}

.split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.pill-list li {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 25px var(--shadow);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

input,
textarea {
  border: 1px solid #d6c5b5;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px var(--shadow);
}

.btn.primary {
  background: var(--forest);
  color: var(--white);
}

.btn.ghost {
  border-color: var(--forest);
  color: var(--forest);
}

.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e3d5c6;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-meta {
  display: grid;
  gap: 0.3rem;
  text-align: right;
}

@media (max-width: 720px) {
  .hero {
    padding: 2.2rem;
  }

  .footer-meta {
    text-align: left;
  }
}
