:root {
  --green-deep: #2f5a45;
  --green-mid: #3d6b52;
  --green-soft: #6b8f78;
  --leaf: #8aa57a;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --sand: #ebe4d6;
  --text: #2a332e;
  --muted: #5c6b63;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(47, 90, 69, 0.08);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-deep);
  text-decoration: none;
}

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 90, 69, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
}

nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.98rem;
}

nav a:hover,
nav a.active {
  color: var(--green-mid);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}

.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* Hero */
.hero {
  padding: 4.2rem 0 3.2rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(138, 165, 122, 0.18), transparent 32%),
    linear-gradient(180deg, #f4f0e7 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-soft);
  margin-bottom: 0.8rem;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green-deep);
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 90, 69, 0.08);
}

.hero-card p {
  color: var(--muted);
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--green-deep);
  line-height: 1.35;
  margin-bottom: 1rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-intro {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(47, 90, 69, 0.08);
  box-shadow: var(--shadow);
}

.icon-leaf {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e7efe4;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--green-deep);
  font-size: 1.2rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value {
  background: #eef3ea;
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
}

.note {
  background: var(--paper);
  border-left: 4px solid var(--leaf);
  padding: 1.2rem 1.3rem;
  border-radius: 0 16px 16px 0;
  color: var(--muted);
  margin-top: 1.6rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

.portrait {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d7e4d4;
}

.portrait img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}

.portrait-inner {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 253, 249, 0.94);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
}

.avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(47, 90, 69, 0.15);
}

/* Contact */
.contact-box {
  background: var(--green-deep);
  color: #eef6ef;
  border-radius: 28px;
  padding: 2.2rem;
}

.contact-box h2,
.contact-box a {
  color: #fff;
}

.contact-box p {
  color: #d7e6db;
}

.contact-list {
  list-style: none;
  margin: 1.4rem 0;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.cta-band {
  background: linear-gradient(135deg, #2f5a45, #4a7a5c);
  color: #fff;
  border-radius: 28px;
  padding: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: #dce8df;
}

/* Footer */
footer {
  padding: 2rem 0 2.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--sand);
  padding-top: 1.4rem;
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .split,
  .values,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-band {
    display: block;
  }

  .cta-band .btn {
    margin-top: 1rem;
  }

  .logo img {
    height: 52px;
  }

  nav {
    gap: 0.85rem;
  }
}
