:root {
  --green: #45823b;
  --green-dark: #3a6d32;
  --green-light: #8fb381;
  --green-banner: #45823b;
  --black: #121212;
  --black-soft: #1e1e1e;
  --cream: #f2f2ea;
  --white: #ffffff;
  --gray: #555555;
  --gray-light: #d8d8d0;
  --gray-nav: #b0b0b0;
  --beige: #e8e4da;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --container: min(1140px, 92vw);
  --section-pad: clamp(2.5rem, 6vw, 4rem);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  line-height: 1.55;
  color: var(--black);
  background: var(--cream);
  min-width: 320px;
}

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

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

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Site header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 2px 6px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gray-nav);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--white);
}

.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav__call:hover {
  background: var(--green-dark);
}

/* ── Hero ── */
.hero {
  background: var(--black);
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(3rem, 7vw, 5rem);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: 520px;
}

.hero__eyebrow {
  font-size: clamp(0.65rem, 1.6vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.hero__headline-accent {
  color: var(--green-light);
}

.hero__rule {
  width: 48px;
  height: 3px;
  background: var(--green);
  border: none;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.hero__desc {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__logo-box {
  width: min(100%, 360px);
  aspect-ratio: 1;
  background: var(--white);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero__logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(100%, 380px);
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--green-light);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-card span {
  font-size: clamp(0.5rem, 1.2vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

/* ── USP bar (legacy, unused) ── */
.usp-bar {
  display: none;
}

/* ── Sections ── */
.section {
  padding: var(--section-pad) 0;
}

.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
  white-space: nowrap;
}

.section__line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: var(--gray-light);
}

/* ── Package cards ── */
.packages {
  background: var(--cream);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: end;
}

.package-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.package-card--featured {
  border: 2px solid var(--green);
  box-shadow: 0 4px 20px rgba(85, 123, 69, 0.15);
}

@media (min-width: 769px) {
  .package-card--featured {
    transform: translateY(-12px);
  }
}

.package-card__header {
  text-align: center;
  color: var(--white);
  padding: clamp(1.25rem, 3vw, 1.75rem) 1rem;
}

.package-card__header--dark {
  background: var(--black-soft);
}

.package-card__header--green {
  background: var(--green);
  position: relative;
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
}

.package-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--green-light);
  color: var(--white);
  font-size: clamp(0.55rem, 1.4vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.5rem;
  text-transform: uppercase;
}

.package-card__header h3 {
  font-size: clamp(0.68rem, 1.6vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.package-card__price {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.package-card__range {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  opacity: 0.85;
  margin-top: 0.3rem;
}

.package-card__features {
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  flex: 1;
}

.package-card__features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.4rem;
  font-size: clamp(0.78rem, 1.8vw, 0.875rem);
  border-bottom: 1px solid #eeeeee;
  color: var(--black);
}

.package-card__features li:last-child {
  border-bottom: none;
}

.package-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85em;
}

/* ── Additional services ── */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}

.services-grid ul li {
  position: relative;
  padding: 0.35rem 0 0.35rem 0.9rem;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  color: var(--black);
}

.services-grid ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── Why Us ── */
.why-us {
  background: var(--beige);
}

.why-us__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  color: var(--black-soft);
  margin: -1rem auto 2.5rem;
  max-width: 720px;
  line-height: 1.35;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.why-card {
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.why-card__icon {
  display: block;
  color: var(--green);
  font-size: 0.55rem;
  margin-bottom: 0.65rem;
}

.why-card h4 {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black-soft);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.why-card p {
  font-size: clamp(0.8rem, 1.6vw, 0.875rem);
  line-height: 1.65;
  color: var(--gray);
}

.why-us__closing {
  text-align: center;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid var(--gray-light);
}

.why-us__closing-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.why-us__closing-tagline {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--gray);
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(2rem, 5vw, 2.75rem) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.footer__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  line-height: 1.45;
}

.footer__icon {
  flex-shrink: 0;
  color: var(--green-light);
  margin-top: 1px;
}

.footer__sub {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.footer a:hover {
  color: var(--green-light);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: none;
  }

  .hero__rule {
    margin-inline: auto;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo-box {
    width: min(280px, 78vw);
  }

  .hero__stats {
    width: min(100%, 380px);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .nav__call {
    justify-content: center;
  }

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
    align-items: stretch;
  }

  .package-card--featured {
    transform: none;
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
  }

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

  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav__logo {
    height: 38px;
    padding: 2px 4px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, 320px);
  }

  .section__title {
    gap: 0.6rem;
  }

  .section__line {
    max-width: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__item {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
}

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