:root {
  --bg: #081008;
  --card: rgba(16, 24, 16, 0.82);
  --text: #edf7df;
  --muted: #a8ba98;
  --line: rgba(184, 240, 67, 0.16);
  --lime-1: #d8ff72;
  --lime-2: #b5f043;
  --lime-3: #7cab30;
  --lime-4: #16240b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(181, 240, 67, 0.2), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(124, 171, 48, 0.16), transparent 18%),
    linear-gradient(180deg, #081008 0%, #101a10 54%, #0a120a 100%);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

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

.ambient {
  position: fixed;
  inset: auto;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.45;
}

.ambient-one {
  top: -8vw;
  right: -4vw;
  background: rgba(181, 240, 67, 0.36);
}

.ambient-two {
  bottom: -12vw;
  left: -6vw;
  background: rgba(83, 126, 28, 0.28);
}

.hero,
.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand p,
.brand small {
  display: block;
  margin: 0;
}

.brand p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 0.95;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lime-1), var(--lime-3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-actions a {
  padding: 10px 14px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  padding: 26px 0 34px;
}

.hero-copy,
.hero-panel,
.intro-strip,
.service-card,
.pricing-card,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(20, 30, 20, 0.92), rgba(13, 20, 13, 0.9)),
    linear-gradient(120deg, rgba(216, 255, 114, 0.08), transparent 55%);
  animation: rise 0.7s ease-out both;
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 34, 14, 0.96), rgba(15, 24, 11, 0.92));
  animation: rise 0.9s ease-out both;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy h1,
.section-heading h2,
.hero-panel h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 10ch;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime-2), var(--lime-3));
  color: #142008;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(124, 171, 48, 0.25);
}

.cta-secondary,
.cta-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(181, 240, 67, 0.2);
  color: var(--text);
  box-shadow: none;
}

.panel-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(181, 240, 67, 0.14);
  color: var(--lime-1);
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.hero-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-list li {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.panel-note {
  margin-top: 18px;
  color: var(--lime-1);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 26px;
  border-radius: 26px;
  background: rgba(12, 19, 12, 0.84);
}

.intro-strip strong,
.price-row strong {
  display: block;
  margin-bottom: 6px;
}

.services,
.pricing-layout,
.map-card {
  margin-top: 22px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 11ch;
}

.section-heading.compact h2 {
  font-size: 2.8rem;
  max-width: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(16, 24, 16, 0.92), rgba(11, 17, 11, 0.9));
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 255, 114, 0.18), transparent 68%);
}

.service-index {
  display: inline-block;
  margin-bottom: 40px;
  color: #b5f043;
  font-size: 0.82rem;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.98;
}

.service-card p,
.price-row,
.contact-list,
.plain-text,
.intro-strip span {
  color: var(--muted);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.pricing-card,
.contact-card,
.map-card {
  border-radius: 28px;
  background: rgba(12, 19, 12, 0.84);
}

.pricing-card {
  padding: 28px;
}

.price-table {
  display: grid;
}

.price-row {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.price-head {
  padding-top: 0;
  border-top: 0;
  color: #9fba73;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-row small {
  display: block;
  margin-top: 6px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 24px;
}

.contact-card.highlight {
  background:
    linear-gradient(180deg, rgba(18, 28, 16, 0.94), rgba(12, 18, 12, 0.92)),
    linear-gradient(135deg, rgba(216, 255, 114, 0.08), transparent 60%);
}

.contact-card h2 {
  font-size: 3rem;
  margin-top: 6px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: grid;
  gap: 6px;
}

.map-card {
  overflow: hidden;
  padding: 0;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-layout,
  .service-grid,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .page {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions a {
    padding-left: 0;
  }

  .hero-copy,
  .hero-panel,
  .pricing-card,
  .contact-card,
  .intro-strip {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 2.4rem;
  }
}
