@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f5f7f2;
  --bg-alt: #edf3ec;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #132317;
  --muted: #536257;
  --primary: #2e7b47;
  --primary-dark: #215933;
  --primary-soft: rgba(46, 123, 71, 0.12);
  --accent: #e2f0e4;
  --line: #d5e0d6;
  --shadow: 0 20px 50px rgba(17, 34, 20, 0.08);
  --shadow-hover: 0 28px 60px rgba(17, 34, 20, 0.12);
  --radius: 24px;
  --container: min(1120px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(46, 123, 71, 0.08), transparent 38%),
    linear-gradient(180deg, #fbfcf9 0%, var(--bg) 35%, #f1f5ef 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

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

.section {
  padding: clamp(4rem, 7vw, 6.75rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(245, 247, 242, 0.62) 100%);
}

.stack {
  display: grid;
  gap: 1rem;
}

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

.center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.btn:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(46, 123, 71, 0.28);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 28px rgba(46, 123, 71, 0.2);
}

.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 22px 34px rgba(46, 123, 71, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  color: white;
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--light {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn--light:hover {
  border-color: rgba(46, 123, 71, 0.25);
  box-shadow: var(--shadow);
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  text-align: center;
}

.section-intro {
  max-width: 60ch;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card--strong {
  background: var(--surface-strong);
}

.card--center {
  text-align: center;
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: var(--accent);
  font-size: 1.55rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

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

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.5rem;
}

.split__copy {
  display: grid;
  gap: 1rem;
}

.image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  margin-top: 0.08rem;
}

.rating {
  display: inline-flex;
  gap: 0.15rem;
  line-height: 1;
}

.rating--sm {
  font-size: 0.95rem;
}

.rating-inputs {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
}

.rating-inputs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-inputs label {
  cursor: pointer;
  font-size: 1.45rem;
  color: #c1c8c1;
  transition: color 160ms ease, transform 160ms ease;
}

.rating-inputs label:hover,
.rating-inputs label:hover ~ label,
.rating-inputs input:checked + label,
.rating-inputs input:checked + label ~ label {
  color: #f0b642;
}

.rating-inputs label:hover {
  transform: translateY(-1px);
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: white;
  color: var(--text);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 242, 0.84);
  border-bottom: 1px solid rgba(213, 224, 214, 0.75);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand__text {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.nav__menu {
  display: none;
  position: relative;
}

.nav__menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.nav__menu summary::-webkit-details-marker {
  display: none;
}

.nav__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: min(320px, calc(100vw - 32px));
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.nav__panel a {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.nav__panel a:hover {
  background: rgba(46, 123, 71, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 24, 15, 0.78) 0%, rgba(13, 24, 15, 0.56) 48%, rgba(13, 24, 15, 0.3) 100%),
    linear-gradient(180deg, rgba(13, 24, 15, 0.12), rgba(13, 24, 15, 0.45));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 7rem) 0;
  max-width: 760px;
}

.hero__kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  margin-top: 0.85rem;
}

.hero h1 span {
  display: block;
  margin-top: 0.45rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
}

.hero__lead {
  max-width: 52ch;
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.7);
}

.price {
  text-align: center;
}

.price__amount {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0.35rem 0;
}

.note-box {
  background: rgba(226, 240, 228, 0.75);
  border: 1px solid rgba(46, 123, 71, 0.12);
  border-radius: 22px;
  padding: 1.25rem;
}

.footer {
  background: #102116;
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0 2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer a:hover {
  color: white;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer h3,
.footer h4 {
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.faq details + details {
  margin-top: 0.85rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.review-toggle {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.review-toggle > summary {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 28px rgba(46, 123, 71, 0.2);
}

.review-toggle > summary:hover {
  background: var(--primary-dark);
}

.review-toggle > summary::after {
  content: " +";
  font-weight: 800;
}

.review-toggle[open] > summary::after {
  content: " −";
}

.admin-wrap,
.doc-wrap,
.error-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.admin-card,
.doc-card,
.error-card {
  width: min(720px, calc(100% - 32px));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(46, 123, 71, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .nav__menu {
    display: block;
  }

  .grid--2,
  .grid--3,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.5rem 0;
  }

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

  .hero__kicker {
    letter-spacing: 0.22em;
  }
}
