:root {
  --bg: #f7faf7;
  --bg-soft: #eef5ef;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #103424;
  --muted: #4e665a;
  --line: rgba(16, 52, 36, 0.12);
  --brand: #108040;
  --brand-deep: #0a6433;
  --brand-soft: #dff3e6;
  --shadow: 0 24px 60px rgba(8, 40, 22, 0.10);
  --shadow-soft: 0 12px 36px rgba(8, 40, 22, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 128, 64, 0.12), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(16, 128, 64, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdfb 0%, #f4f8f5 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(16, 128, 64, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.site-shell::before {
  width: 32rem;
  height: 32rem;
  right: -12rem;
  top: 5rem;
  background: radial-gradient(circle, rgba(16, 128, 64, 0.14), transparent 68%);
}

.site-shell::after {
  width: 24rem;
  height: 24rem;
  left: -8rem;
  bottom: 20%;
  background: radial-gradient(circle, rgba(16, 128, 64, 0.10), transparent 68%);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 247, 0.78);
  border-bottom: 1px solid rgba(16, 52, 36, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(16, 128, 64, 0.15));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.85;
  color: var(--brand-deep);
}

.brand-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(16, 128, 64, 0.08);
  color: var(--brand-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  color: var(--brand-deep);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #0d733a 0%, #17984d 100%);
  color: white;
  box-shadow: 0 14px 30px rgba(16, 128, 64, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 128, 64, 0.18);
  color: var(--brand-deep);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: clamp(3rem, 5vw, 5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.hero-copy p.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0 1rem;
}

.hero-note {
  color: var(--brand-deep);
  font-weight: 600;
  margin-top: 0.8rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 32px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background:
    linear-gradient(160deg, rgba(11, 88, 43, 0.94), rgba(24, 147, 79, 0.88)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%);
  color: white;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 85%;
  height: 85%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.18), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.0), rgba(255,255,255,0.05));
  border-radius: 50%;
  z-index: -1;
}

.orchid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 88% 16%, rgba(255,255,255,0.95) 0 0.35rem, transparent 0.36rem),
    linear-gradient(110deg, transparent 47%, rgba(255,255,255,0.9) 47.8%, transparent 48.6%),
    linear-gradient(118deg, transparent 56%, rgba(255,255,255,0.8) 56.6%, transparent 57.2%),
    linear-gradient(130deg, transparent 62%, rgba(255,255,255,0.9) 62.7%, transparent 63.3%);
  background-size: 100% 100%;
}

.hero-card h3 {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-card p,
.hero-card li,
.hero-card .mini-label {
  color: rgba(255, 255, 255, 0.88);
}

.hero-card ul {
  padding-left: 1rem;
  margin: 0.9rem 0 1.5rem;
}

.trust-grid,
.card-grid,
.info-grid,
.metric-grid,
.contact-grid,
.feature-grid {
  display: grid;
  gap: 1.15rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0 0;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
}

.feature-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.section {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.section-header {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.card,
.panel,
.stat,
.quote-card,
.checklist {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 52, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.card,
.panel,
.stat {
  padding: 1.35rem;
}

.card h3,
.panel h3,
.stat h3 {
  margin-bottom: 0.6rem;
}

.card p:last-child,
.panel p:last-child,
.stat p:last-child {
  margin-bottom: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

.icon-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #108040, #1abc63);
  box-shadow: 0 0 0 6px rgba(16, 128, 64, 0.1);
}

.hero-logo {
  width: min(340px, 72%);
  margin-bottom: 1rem;
}

.highlight {
  color: var(--brand-deep);
}

.ribbon {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ribbon span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 128, 64, 0.10);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.checklist {
  padding: 1.4rem;
}

.checklist ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  color: var(--muted);
  border-top: 1px solid rgba(16, 52, 36, 0.06);
}

.checklist li:first-child {
  border-top: 0;
  padding-top: 0;
}

.checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #0f7f40, #1aa95b);
  margin-top: 0.15rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.cta-band {
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(11, 88, 43, 0.97), rgba(18, 120, 62, 0.95)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 36%);
  box-shadow: var(--shadow);
  color: white;
}

.cta-band h2,
.cta-band p,
.cta-band a {
  color: white;
}

.cta-band .button-secondary {
  color: var(--brand-deep);
  background: white;
}

.footer {
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(16, 52, 36, 0.08);
}

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

.footer p {
  font-size: 0.96rem;
  max-width: 50rem;
}

.address {
  display: grid;
  gap: 0.2rem;
  text-align: right;
  color: var(--muted);
}

.small {
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.page-hero {
  padding: clamp(2.6rem, 5vw, 4.8rem) 0 2rem;
}

.page-hero .panel {
  padding: clamp(1.5rem, 2vw, 2rem);
}

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

.callout {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 128, 64, 0.1), rgba(16, 128, 64, 0.03)),
    rgba(255,255,255,0.85);
  border: 1px solid rgba(16, 128, 64, 0.15);
  box-shadow: var(--shadow-soft);
}

.callout::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 128, 64, 0.18), transparent 70%);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16, 52, 36, 0.08);
}

.contact-list strong {
  display: block;
  color: var(--text);
}

.orchid-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(16, 128, 64, 0.10);
  color: var(--brand-deep);
  font-weight: 700;
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .split-copy,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .metric-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    min-height: 26rem;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .nav-links,
  .nav-actions .button-secondary {
    display: none;
  }

  .nav-wrap {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap.open .nav-links {
    display: grid;
    gap: 0.35rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.7rem);
    width: min(280px, 90vw);
    padding: 0.6rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(16, 52, 36, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-wrap.open .nav-actions .button-secondary {
    display: inline-flex;
    width: 100%;
    margin-top: 0.35rem;
  }

  .nav-wrap.open .nav-actions {
    display: grid;
    position: absolute;
    right: 0;
    top: calc(100% + 16.8rem);
    width: min(280px, 90vw);
  }

  .card-grid,
  .metric-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .address {
    text-align: left;
  }

  .hero-card {
    min-height: auto;
  }
}
