:root {
  --site-green: #6fa87d;
  --site-green-dark: #4d7b5e;
  --site-cream: #fbf7f2;
  --site-sage: #eef4ee;
  --site-ink: #24312a;
  --site-muted: #5f6f66;
  --site-line: rgba(36, 49, 42, 0.08);
  --site-shadow: 0 20px 60px rgba(43, 58, 49, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--site-muted);
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--site-ink);
  letter-spacing: -0.02em;
}

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

a:hover {
  color: var(--site-green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--site-line);
}

.navbar-brand.brand-mark {
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 320px;
  line-height: 1.25;
}

.nav-link {
  color: var(--site-ink);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--site-green-dark);
}

.btn-success {
  background-color: var(--site-green);
  border-color: var(--site-green);
}

.btn-success:hover,
.btn-success:focus {
  background-color: var(--site-green-dark);
  border-color: var(--site-green-dark);
}

.hero-section {
  background:
    radial-gradient(circle at top left, rgba(111, 168, 125, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--site-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--site-green);
  border-radius: 999px;
}

.hero-contact-card,
.info-card,
.content-card,
.benefit-card,
.contact-panel {
  border-radius: 1.5rem;
  box-shadow: var(--site-shadow);
}

.hero-contact-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(111, 168, 125, 0.16);
}

.hero-image-wrap,
.bio-image-wrap {
  position: relative;
}

.hero-image,
.bio-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.75rem;
  object-fit: cover;
  box-shadow: var(--site-shadow);
  background: linear-gradient(135deg, #edf5ee, #f8f3eb);
}

.hero-image {
  aspect-ratio: 5 / 4;
}

.bio-image {
  aspect-ratio: 4 / 5;
}

.info-card,
.content-card,
.benefit-card {
  background: #fff;
  border: 1px solid var(--site-line);
  padding: 1.5rem;
}

.section-soft {
  background: var(--site-cream);
}

.section-heading {
  max-width: 760px;
}

.content-stack p:last-child,
.content-card p:last-child,
.benefit-card p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.content-card-lg {
  padding: 2rem;
}

.contact-section {
  background: linear-gradient(135deg, #516f5a 0%, #33493b 100%);
}

.contact-panel {
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 600;
}

.contact-pill:hover {
  color: #fff;
  background: rgba(255,255,255,0.18);
}

.site-footer {
  border-top: 1px solid var(--site-line);
  background: #fff;
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .navbar-brand.brand-mark {
    max-width: 250px;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-contact-card {
    display: flex;
  }

  .info-card,
  .content-card,
  .benefit-card,
  .contact-panel {
    border-radius: 1.25rem;
  }

  .content-card-lg {
    padding: 1.5rem;
  }
}
