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

body {
  background: #f3f0e7;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}


/* HEADER */

.site-header {
  width: 100%;
  padding-top: 30px;
  background: #f3f0e7;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* LOGO */

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  background: #f3f0e7;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.logo-link img {
  width: 450px;
  height: auto;
  display: block;
}


/* NAV BAR */

.top-nav {
  width: 100%;
  background: #234b34;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 5;
}

.top-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
}

.top-nav li {
  display: flex;
  align-items: center;
}

.top-nav li:not(:last-child)::after {
  content: "/";
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0 24px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.top-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 18px 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.top-nav a:hover {
  opacity: 0.85;
}


/* PAGE CONTENT */

.page-content {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}

.hero-box,
.content-box {
  background: #fcfbf7;
  border: 2px solid #1f4d3a;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.hero-box h1,
.content-box h1 {
  color: #1f4d3a;
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.hero-box p,
.content-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}


/* BUTTONS */

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #1f4d3a;
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  font-weight: bold;
  border: 2px solid #143326;
  border-radius: 8px;
  box-shadow: 0 4px 0 #143326, 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.2s ease;
}

.btn:hover {
  background: #143326;
}

.btn:active,
.btn.is-pressed {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #143326, 0 3px 8px rgba(0, 0, 0, 0.12);
}


/* PRICING PAGE */

.pricing-page {
  max-width: 1320px;
  margin: 48px auto 80px;
  padding: 0 28px;
}

.pricing-shell {
  padding: 44px;
}

.pricing-shell h1 {
  margin-bottom: 18px;
  font-size: 2.5rem;
}

.pricing-intro,
.pricing-warning {
  max-width: 980px;
  line-height: 1.8;
  font-size: 1.08rem;
}

.pricing-intro {
  margin-bottom: 16px;
}

.pricing-warning {
  margin-bottom: 34px;
}

.quote-builder {
  margin-top: 34px;
}

.quote-group {
  margin-bottom: 58px;
}

.quote-group h2 {
  color: #1f4d3a;
  margin-bottom: 20px;
  font-size: 1.9rem;
}


/* OPTION GRID */

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.option-card {
  display: block;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-box {
  display: block;
  min-height: 134px;
  background: #f8f8f4;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.option-card:hover .choice-box {
  background: #eef5f1;
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.option-card input:checked + .choice-box {
  background: #dcecdf;
  border-color: #1f4d3a;
  box-shadow: 0 0 0 2px #1f4d3a inset, 0 10px 20px rgba(0, 0, 0, 0.12);
}

.option-title {
  display: block;
  font-size: 1.18rem;
  font-weight: 700;
  color: #1f4d3a;
  margin-bottom: 12px;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.75),
     1px -1px 0 rgba(255, 255, 255, 0.75),
    -1px  1px 0 rgba(255, 255, 255, 0.75),
     1px  1px 0 rgba(255, 255, 255, 0.75);
}

.option-price {
  display: block;
  font-size: 1.05rem;
  color: #111;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.75),
     1px -1px 0 rgba(255, 255, 255, 0.75),
    -1px  1px 0 rgba(255, 255, 255, 0.75),
     1px  1px 0 rgba(255, 255, 255, 0.75);
}

.option-note {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: #234b34;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  text-shadow: none;
}


/* ESTIMATE BOX */

.estimate-box {
  margin-top: 24px;
  background: #1f4d3a;
  color: white;
  padding: 34px 30px;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.estimate-box h2 {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

.estimate-amount {
  font-size: 3.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.estimate-note {
  line-height: 1.8;
  margin-bottom: 22px;
}


/* ESTIMATE ANIMATION */

.estimate-update {
  animation: estimateFlash 0.45s ease;
}

@keyframes estimateFlash {
  0% { opacity: 0.35; transform: scale(0.96); }
  45% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}


/* OPTION CLICK PULSE */

.pulse {
  animation: optionPulse 0.28s ease;
}

@keyframes optionPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.035); }
  100% { transform: scale(1); }
}


/* NAV / BUTTON CLICK PULSE */

.click-pulse {
  animation: clickPulse 0.18s ease;
}

@keyframes clickPulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.96); }
  100% { transform: scale(1); }
}


/* MOBILE */

@media (max-width: 900px) {
  .pricing-page {
    padding: 0 18px;
  }

  .pricing-shell {
    padding: 28px 20px;
  }

  .quote-group {
    margin-bottom: 40px;
  }

  .option-grid {
    gap: 18px;
  }

  .choice-box {
    min-height: 118px;
    padding: 20px 18px;
  }

  .estimate-amount {
    font-size: 3rem;
  }
}

@media (max-width: 700px) {
  .logo-link img {
    width: 240px;
  }

  .top-nav ul {
    flex-direction: column;
  }

  .top-nav li:not(:last-child)::after {
    content: "";
  }

  .top-nav a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .top-nav li:last-child a {
    border-bottom: none;
  }

  .hero-box h1,
  .content-box h1 {
    font-size: 1.8rem;
  }
}
