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

:root {
  --green-900: #0f2918;
  --green-800: #1a3c2a;
  --green-700: #234d36;
  --green-600: #2d6145;
  --green-500: #3a7d58;
  --green-400: #5a9e78;
  --green-300: #8fc0a0;
  --cream-100: #f8f6f0;
  --cream-200: #f0ece0;
  --cream-300: #e8e2d2;
  --cream-400: #d4c9a8;
  --text-primary: #1a1a18;
  --text-secondary: #4a4a44;
  --text-muted: #7a7a72;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--cream-100);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Cursor ─── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--green-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(248, 246, 240, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-300);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  color: var(--green-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-600);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--green-700);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  background: var(--green-800);
  color: var(--cream-100) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-menu-btn span {
  width: 22px;
  height: 1.5px;
  background: var(--green-800);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-100);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 45%,
    rgba(45, 97, 69, 0.85) 0%,
    rgba(26, 60, 42, 0.92) 40%,
    rgba(15, 41, 24, 0.97) 70%,
    rgba(10, 26, 15, 1) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.06;
}

.hero-lines span {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cream-200), transparent);
}

.hero-lines span:nth-child(1) { left: 15%; }
.hero-lines span:nth-child(2) { left: 30%; }
.hero-lines span:nth-child(3) { left: 50%; }
.hero-lines span:nth-child(4) { left: 70%; }
.hero-lines span:nth-child(5) { left: 85%; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream-100);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--cream-400);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--green-300);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream-100);
  letter-spacing: -0.01em;
}

.hero-stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--green-600);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--green-400);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--cream-100);
  color: var(--green-800);
  border-color: var(--cream-100);
}

.btn-primary:hover {
  background: var(--cream-200);
  border-color: var(--cream-200);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(248, 246, 240, 0.3);
}

.btn-ghost:hover {
  border-color: var(--cream-100);
  background: rgba(248, 246, 240, 0.08);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ─── Section shared ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.text-accent {
  font-style: italic;
  color: var(--green-600);
}

/* ─── About ─── */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--green-400);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-value-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-400);
  line-height: 1;
  min-width: 32px;
}

.about-value strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-value span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrap img { height: 480px; }
}

/* ─── Services ─── */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services-header p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  border: 1px solid var(--cream-300);
  border-radius: 4px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: var(--green-300);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 60, 42, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── Approach ─── */
.approach {
  padding: 120px 0;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approach-text p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.approach-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.approach-step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-300);
  line-height: 1;
  min-width: 48px;
}

.approach-step h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.approach-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.approach-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .approach-image img { height: 400px; }
}

/* ─── Community ─── */
.community {
  padding: 120px 0;
  background: var(--green-800);
  color: var(--cream-100);
}

.community .section-eyebrow {
  color: var(--green-400);
}

.community .section-title {
  color: var(--cream-100);
}

.community .text-accent {
  color: var(--green-300);
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.community-content p {
  color: var(--green-300);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.community-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.community-image-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out);
}

.community-image-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .community-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── CTA / Contact ─── */
.cta {
  padding: 120px 0;
  background: var(--cream-200);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-left p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--text-secondary);
}

.cta-contact-item svg {
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-contact-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cta-contact-item span,
.cta-contact-item a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-contact-item a:hover {
  color: var(--green-600);
  text-decoration: underline;
}

/* ─── Form ─── */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--cream-300);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58, 125, 88, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a72' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(58, 125, 88, 0.08);
  border: 1px solid rgba(58, 125, 88, 0.2);
  border-radius: 4px;
  color: var(--green-700);
  font-size: 0.875rem;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--green-600);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
}

/* ─── Footer ─── */
.footer {
  background: var(--green-900);
  color: var(--green-300);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(143, 192, 160, 0.15);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--cream-100);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--green-400);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--green-300);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream-100);
}

.footer-links span {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--green-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.75rem;
  color: var(--green-600);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── Reveal animation ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
