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

:root {
  --green-deep: #0d2b1a;
  --green-mid: #1a4d2e;
  --green-accent: #3a8c52;
  --green-light: #6dbf7e;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-dark: #0d1a12;
  --text-muted: #5a7060;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 43, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

#hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
  text-align: center;
}

.meadow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(58, 140, 82, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 80% 70%, rgba(109, 191, 126, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.meadow-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 140, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 140, 82, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green-light);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-stats {
  position: relative;
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 80px;
  animation: fadeUp 1s 0.45s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

section {
  padding: 100px 48px;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-label-light {
  color: var(--green-light);
}

.section-label-gold {
  color: var(--gold);
}

.section-label-center {
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-deep);
  max-width: 600px;
}

.section-title span {
  color: var(--green-accent);
}

#services {
  background: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(26, 77, 46, 0.1);
  border: 1px solid rgba(26, 77, 46, 0.1);
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.service-card:hover {
  background: #fafdf8;
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

#why {
  background: var(--green-deep);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#why .section-title {
  color: var(--white);
}

#why .section-title span {
  color: var(--green-light);
}

.why-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  transition: border-color 0.25s, background 0.25s;
}

.why-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

#pay {
  background: var(--cream);
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.pay-card {
  background: var(--white);
  border: 1px solid rgba(26, 77, 46, 0.1);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pay-card:hover {
  box-shadow: 0 12px 40px rgba(26, 77, 46, 0.1);
  transform: translateY(-4px);
}

.pay-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.pay-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.pay-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

#contact {
  background: var(--green-mid);
  color: var(--white);
  text-align: center;
}

#contact .section-title {
  color: var(--white);
  margin: 0 auto 16px;
  text-align: center;
  max-width: none;
}

.contact-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-grid-spaced {
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 28px;
  transition: background 0.2s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.5;
}

.contact-value a {
  color: var(--green-light);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.35);
}

.cic-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cic-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.cic-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cic-value a {
  color: var(--green-light);
  text-decoration: none;
}

.cic-value a:hover {
  text-decoration: underline;
}

footer {
  background: var(--green-deep);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 860px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 72px 24px;
  }

  #why {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  footer {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
}
