:root {
  --ivory: #f8f5ef;
  --cream: #fffaf2;
  --sage: #7f8f70;
  --deep-green: #2f352c;
  --gold: #c8a257;
  --clay: #a36a47;
  --soft-border: #ded3c3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  background: var(--ivory);
  color: var(--deep-green);
  line-height: 1.6;
}

.site-header {
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ivory);
  border-bottom: 1px solid var(--soft-border);
}

.logo {
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: bold;
  color: var(--deep-green);
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--deep-green);
  font-size: 15px;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8%;
  text-align: center;
  background:
    linear-gradient(rgba(248,245,239,.88), rgba(248,245,239,.94)),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 28px;
}

.subtitle {
  font-size: 21px;
  max-width: 700px;
  margin: 0 auto 36px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: .2s ease;
}

.primary {
  background: var(--deep-green);
  color: white;
}

.secondary {
  border: 1px solid var(--deep-green);
  color: var(--deep-green);
}

.button:hover {
  transform: translateY(-2px);
}

section {
  padding: 90px 8%;
}

h2 {
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
}

.values p,
.contact p {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 19px;
}

.value-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-grid span {
  border: 1px solid var(--soft-border);
  background: var(--cream);
  padding: 18px;
  text-align: center;
  border-radius: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.card,
.project-list div {
  background: var(--cream);
  border: 1px solid var(--soft-border);
  border-radius: 26px;
  padding: 34px;
}

.card h3,
.project-list h3 {
  font-size: 25px;
  margin-bottom: 14px;
  color: var(--clay);
}

.about {
  background: var(--deep-green);
  color: var(--ivory);
}

.about div {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about p {
  font-size: 19px;
  margin-bottom: 18px;
}

.project-list {
  display: grid;
  gap: 20px;
  max-width: 850px;
  margin: 0 auto;
}

.contact {
  text-align: center;
}

.socials {
  margin-top: 24px;
  font-size: 16px;
  color: var(--sage);
}

footer {
  padding: 30px 8%;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid var(--soft-border);
}

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

  nav a {
    margin: 0 10px;
  }

  .value-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 7%;
  }
  .signup-section {
  background: #f7f1e8;
  padding: 90px 24px;
  text-align: match-parent;
}

.signup-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 36px;
  background: #fffaf2;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.signup-card h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: #263027;
}

.signup-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.signup-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signup-card input {
  padding: 16px 18px;
  border: 1px solid #d8c7ad;
  border-radius: 999px;
  font-size: 1rem;
  text-align: center;
  background: #ffffff;
}

.signup-card input:focus {
  outline: none;
  border-color: #8f6b3f;
}

.signup-card button {
  padding: 16px 22px;
  border: none;
  border-radius: 999px;
  background: #8f6b3f;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.signup-card button:hover {
  opacity: 0.9;
}

}
.privacy-note {
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-size: 0.9rem !important;
  opacity: 0.75;
}
}