/* ===== VARIABLES ===== */
:root {
  --forest:      #1c3d16;
  --green:       #3d7a35;
  --sage:        #5aaa4e;
  --gold:        #d4961e;
  --gold-hover:  #b87c10;
  --cream:       #f4f0e8;
  --cream-dark:  #e2dcd2;
  --white:       #ffffff;
  --ink:         #141a11;
  --stone:       #5a5a52;
  --muted:       #8a8a80;
  --border:      #dbd6cc;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-ui:      'DM Sans', -apple-system, sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 2px 16px rgba(20, 40, 16, 0.08);
  --shadow-md: 0 6px 28px rgba(20, 40, 16, 0.12);
  --shadow-lg: 0 16px 56px rgba(20, 40, 16, 0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container       { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 680px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }

.btn--large { padding: 15px 32px; font-size: 1rem; }
.btn--small { padding: 9px 18px; font-size: 0.88rem; }
.btn--full  { width: 100%; display: flex; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(200, 146, 42, 0.35);
}
.btn--gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 20px rgba(200, 146, 42, 0.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(45, 97, 36, 0.28);
}
.btn--green:hover {
  background: var(--forest);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline-dark:hover {
  background: var(--green);
  color: var(--white);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  height: 40px;
  width: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

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

/* ===== HERO ===== */
.hero {
  background: var(--forest);
  background-image:
    radial-gradient(ellipse 90% 70% at 70% -10%, rgba(90,170,78,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 110%, rgba(61,122,53,0.3) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.013) 40px,
      rgba(255,255,255,0.013) 41px
    );
  color: var(--white);
  padding: 96px 24px 136px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 0 100%);
  margin-bottom: -2px;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__text {
  flex: 1;
  max-width: 560px;
}

.hero__mascot {
  flex-shrink: 0;
}

.hero__mascot-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero__eyebrow--mobile { display: none; }

@media (max-width: 640px) {
  .hero__eyebrow--desktop { display: none; }
  .hero__eyebrow--mobile { display: block; }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.32s forwards;
}

.hero__promo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.44s forwards;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  box-shadow: var(--shadow);
}

.trust-bar__items {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 56px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 0.01em;
  padding: 16px 24px;
  white-space: nowrap;
}

.trust-bar__check {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SECTION SHARED ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-title--white { color: var(--white); }
.section-title--white::after { background: rgba(255,255,255,0.4); }
.section-title--left { left: 0; transform: none; display: block; }
.section-title--left::after { margin-left: 0; }

.section-sub {
  text-align: center;
  color: var(--stone);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub--white {
  color: rgba(255,255,255,0.7);
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 96px 24px;
  background-color: var(--cream);
  background-image: radial-gradient(var(--cream-dark) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.how .section-title { margin-bottom: 8px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--cream-dark);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(61,122,53,0.35);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.step__desc {
  color: var(--stone);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 24px;
  background: var(--white);
}

.services .section-title { margin-bottom: 8px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 56px 0 48px;
}

.card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px 24px;
  text-align: center;
  position: relative;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--cream-dark);
}

.card--featured {
  border-color: var(--green);
  background: #f0f8ee;
}

.card--featured:hover {
  border-color: var(--green);
}

.card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}

.card__price {
  margin-bottom: 10px;
  color: var(--stone);
  font-size: 0.82rem;
}

.card__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.card__monthly {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3px;
}

.card__desc {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.55;
  font-weight: 300;
}

.services__cta { text-align: center; }

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: var(--forest);
  background-image:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(74,137,64,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(45,97,36,0.2) 0%, transparent 60%);
  padding: 96px 24px;
}

.quote-section__sub {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  font-size: 1rem;
  font-weight: 300;
}

.quote-section .section-title {
  margin-bottom: 10px;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}

/* ===== FORM STEPS ===== */
.form-step { margin-bottom: 36px; }
.form-step--hidden { display: none; }

.form-step__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}

.form-step__hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
  margin-top: -8px;
  font-style: italic;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone);
  font-family: var(--font-ui);
  transition: all 0.15s;
  min-width: 108px;
}

.btn-option:hover {
  border-color: var(--green);
  color: var(--green);
  background: #f0f8ee;
}

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

.btn-option__sub {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.72;
  margin-top: 3px;
}

.btn-group--small .btn-option {
  min-width: 62px;
  font-size: 1rem;
}

/* ===== QUOTE RESULT ===== */
.quote-result {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 36px;
  margin-top: 8px;
}

.quote-result--hidden { display: none; }

.quote-result__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.quote-result__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 3.4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.quote-result__note {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
}

.quote-result__promo {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
}

/* ===== SIGNUP FORM ===== */
.signup-form--hidden { display: none; }

.field { margin-bottom: 18px; }

.field__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.field__optional {
  font-weight: 400;
  color: var(--muted);
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,97,36,0.08);
}

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

.field__input--textarea {
  resize: vertical;
  min-height: 88px;
}

.signup-form .btn--full {
  margin-top: 6px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.signup-form__fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 300;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  text-align: center;
  padding: 56px 20px;
}

.success-msg--hidden { display: none; }

.success-msg__mascot {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 16px;
  margin: 0 auto 20px;
}

.success-msg h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 10px;
}

.success-msg p {
  color: var(--stone);
  font-weight: 300;
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 24px;
  background-color: var(--cream);
  background-image: radial-gradient(var(--cream-dark) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.faq .section-title {
  text-align: left;
  margin-bottom: 48px;
}

.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color 0.15s;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq__item[open] .faq__question {
  color: var(--green);
}

.faq__answer {
  padding: 0 4px 24px;
  animation: fadeIn 0.2s ease;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.75;
  max-width: 580px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.reviews__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.reviews__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.reviews__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.reviews__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  font-size: 1.4rem;
}

.star--filled { color: #f5a623; }
.star--empty  { color: var(--cream-dark); }

.reviews__tagline {
  font-size: 0.92rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 380px;
}

.reviews__cta {
  display: inline-flex;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.review-card:last-child { margin-bottom: 0; }

.review-card__stars { margin-bottom: 12px; }

.review-card__text {
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}

.review-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

/* ===== SERVICE AREA ===== */
.area {
  padding: 80px 24px;
  background: var(--cream);
  text-align: center;
}

.area .section-title { margin-bottom: 16px; }

.area__text {
  color: var(--stone);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 36px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  height: 56px;
  width: 56px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto 28px;
  opacity: 0.9;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}

.footer__link {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.15s;
}

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

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav__name { display: none; }
  .nav__phone { display: none; }
  .hero { padding: 72px 24px 80px; }
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__text { max-width: 100%; }
  .hero__mascot-img { width: 200px; height: 200px; }
  .hero__actions { justify-content: center; }
  .hero__headline { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-bar__divider { display: none; }
  .trust-bar__items { justify-content: flex-start; gap: 0; }
  .trust-bar__item { padding: 10px 16px; font-size: 0.78rem; }

  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .step { padding: 0 16px; }

  .service-cards { grid-template-columns: 1fr 1fr; }

  .quote-form { padding: 32px 22px; }
  .btn-option { min-width: 80px; font-size: 0.85rem; }

  .how, .services, .quote-section, .area, .reviews, .faq { padding: 72px 24px; }
  .reviews__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 420px) {
  .service-cards { grid-template-columns: 1fr; }
  .trust-bar__items { flex-direction: column; align-items: flex-start; }
}
