:root {
  --green-900: #0b2c23;
  --green-700: #174538;
  --green-500: #2f6f5c;
  --green-300: #6ea190;
  --off-white: #fbf9f4;
  --sand: #efe9dd;
  --shadow: 0 30px 60px rgba(11, 44, 35, 0.18);
}

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

body {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--green-900);
  background: radial-gradient(circle at top left, #f8f6f1 0%, var(--off-white) 45%, #f4efe6 100%);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.bg-shapes .shape {
  position: absolute;
  border-radius: 999px;
  opacity: 0.7;
  z-index: -1;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: rgba(110, 161, 144, 0.3);
  top: -80px;
  left: -60px;
}

.shape-2 {
  width: 420px;
  height: 420px;
  background: rgba(23, 69, 56, 0.18);
  top: 20%;
  right: -180px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(47, 111, 92, 0.2);
  bottom: 8%;
  left: 20%;
}

.site-header {
  padding: 28px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(251, 249, 244, 0.85);
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--green-700);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 69, 56, 0.08);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.hero {
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-center {
  justify-items: center;
  text-align: center;
}

.hero-center .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-center .cta-row {
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--green-500);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--green-700);
  max-width: 640px;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--green-700);
  color: var(--off-white);
  box-shadow: 0 14px 30px rgba(23, 69, 56, 0.22);
}

.btn.ghost {
  border: 1px solid rgba(23, 69, 56, 0.4);
  color: var(--green-700);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(23, 69, 56, 0.2);
}

.section {
  padding: 80px 0;
}

.contact-section {
  padding: 48px 0;
  background: var(--green-700);
  color: var(--off-white);
}

.section.alt {
  background: rgba(23, 69, 56, 0.08);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header.centered p {
  margin-top: 12px;
}

.section-header p {
  max-width: 420px;
  color: var(--green-700);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(245, 241, 232, 0.9);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(11, 44, 35, 0.08);
  border: 1px solid rgba(23, 69, 56, 0.12);
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.about-highlight {
  background: var(--off-white);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(23, 69, 56, 0.2);
}

.highlight-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--green-500);
  margin-bottom: 16px;
}

.value-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--green-700);
}

.value-list li {
  padding-left: 16px;
  position: relative;
}

.value-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45em;
}

.contact-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.7);
}

.contact-detail {
  font-size: 1.1rem;
}

.site-footer {
  padding: 28px 0 36px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--green-700);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--green-700);
  transition: opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 0.7;
}

.legal-page {
  max-width: 760px;
}

.legal-updated {
  margin-top: 10px;
  color: var(--green-500);
}

.legal-copy {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.legal-copy h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.legal-copy p {
  color: var(--green-700);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .section {
    padding: 64px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
