:root {
  --green: #7d8d67;
  --green-deep: #465543;
  --green-light: #a8b18e;
  --sage-soft: #dbe2cc;
  --sand: #f4ede2;
  --sand-deep: #e8dcc9;
  --mist: #fbf8f3;
  --white: #ffffff;
  --text: #4c5144;
  --muted: #777662;
  --border: rgba(70, 85, 67, 0.14);
  --shadow: 0 18px 46px rgba(126, 117, 92, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background: var(--mist);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(126, 117, 92, 0.08);
  border-bottom: 1px solid rgba(70, 85, 67, 0.08);
}

.sale-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 16px;
  background: linear-gradient(90deg, #4d5f43 0%, #7d8d67 52%, #a8b18e 100%);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.sale-topbar:hover {
  background: linear-gradient(90deg, #44543b 0%, #72815f 52%, #9ea886 100%);
}

.sale-topbar-label,
.sale-topbar-detail {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sale-topbar strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav-wrap {
  max-width: 1180px;
  height: 84px;
  margin: 0 auto;
  padding: 0 16px 0 2px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 0;
}

.nav-brand img {
  display: block;
  width: auto;
  height: 81px;
  transform: scale(1.44);
  transform-origin: left center;
}

.nav-brand-text {
  max-width: 190px;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: rgba(76, 81, 68, 0.86);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-mobile-link {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(70, 85, 67, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-deep);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-phone {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(125, 141, 103, 0.24);
}

.btn-primary:hover {
  background: #6d7c5a;
}

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

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-section {
  padding: 144px 24px 44px;
  min-height: 100vh;
  background:
    linear-gradient(rgba(251, 248, 243, 0.32), rgba(244, 237, 226, 0.4)),
    url("bg.png") center center / cover no-repeat;
}

.hero-wrap,
.section-wrap,
.contact-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-wrap {
  min-height: calc(100vh - 148px);
  display: flex;
  align-items: center;
}

.hero-card,
.review-card,
.service-card,
.faq-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 235, 0.95));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  width: 100%;
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(247, 240, 230, 0.94));
  backdrop-filter: blur(3px);
  border-radius: 34px;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 177, 142, 0.22), rgba(168, 177, 142, 0));
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: start;
}

.hero-copy-column {
  display: grid;
  gap: 14px;
}

.hero-copy-column-wide {
  max-width: 760px;
}

.quote-page-main {
  padding-top: 144px;
}

.quote-page-section {
  min-height: 100vh;
}

.quote-page-card {
  display: grid;
  gap: 26px;
}

.quote-page-intro {
  max-width: 760px;
}

.section-tag {
  display: block;
  margin-bottom: 12px;
  color: var(--green-light);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.quote-intro {
  text-align: left;
  margin-bottom: 0;
}

.quote-intro h1 {
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  font-weight: 600;
}

.headline-dark,
.headline-soft {
  display: block;
}

.headline-dark {
  color: #2f332b;
}

.headline-soft {
  color: var(--green);
}

.hero-script {
  margin: -4px 0 10px;
  color: var(--green-deep);
  font-family: "Parisienne", cursive;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 14px;
}

.form-panel-head strong,
.trust-item strong,
.why-list strong {
  color: var(--green-deep);
}

.quote-intro p,
.section-body,
.review-text,
.service-card span,
.faq-card p,
.quote-help {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 0;
}

.hero-points-secondary {
  margin-bottom: 34px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(125, 141, 103, 0.14);
  box-shadow: 0 12px 30px rgba(126, 117, 92, 0.05);
}

.trust-item {
  display: grid;
  gap: 4px;
  text-align: center;
}

.trust-item strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.76rem;
}

.point-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(219, 226, 204, 0.42);
  border: 1px solid rgba(125, 141, 103, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.point-card strong,
.service-card strong,
.review-name {
  display: block;
  color: var(--green-deep);
  font-size: 1.04rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.point-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 400;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-stage-primary {
  order: 1;
}

#summaryDetails {
  order: 2;
}

.quote-stage-secondary {
  order: 3;
}

.quote-form-standalone {
  max-width: 940px;
  margin: 0 auto;
}

.form-panel {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(125, 141, 103, 0.16);
  box-shadow: 0 16px 40px rgba(126, 117, 92, 0.08);
  backdrop-filter: blur(14px);
}

.form-panel-head {
  display: grid;
  gap: 6px;
  margin-bottom: 2px;
}

.form-panel-head strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-panel-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-step-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-step-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(125, 141, 103, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.quote-step-chip.is-current {
  border-color: rgba(125, 141, 103, 0.42);
  background: rgba(219, 226, 204, 0.72);
  box-shadow: 0 10px 24px rgba(125, 141, 103, 0.08);
}

.quote-step-chip strong,
.quote-stage-head strong {
  display: block;
  color: var(--green-deep);
}

.quote-step-chip span:last-child,
.quote-stage-head span,
.quote-reserve-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.quote-stage {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(125, 141, 103, 0.12);
}

.quote-stage-head {
  display: grid;
  gap: 4px;
}

.quote-stage-enter {
  animation: quoteStageEnter 280ms ease;
}

@keyframes quoteStageEnter {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-actions-step {
  margin-top: 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.field-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(125, 141, 103, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 400;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(125, 141, 103, 0.5);
  box-shadow: 0 0 0 4px rgba(168, 177, 142, 0.14);
}

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

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.add-on-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(125, 141, 103, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.choice-card label {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  font-weight: 500;
}

.choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card:has(input[type="radio"]:checked),
.choice-card:has(input[type="checkbox"]:checked) {
  background: rgba(219, 226, 204, 0.72);
  border-color: rgba(125, 141, 103, 0.42);
  box-shadow: 0 10px 24px rgba(125, 141, 103, 0.08);
}

.add-on-group .choice-card {
  min-width: 220px;
}

.checkbox-card label {
  justify-content: center;
  text-align: center;
}

.add-on-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 120px;
}

.add-on-card label {
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  text-align: left;
}

.add-on-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border-radius: 12px;
  background: rgba(219, 226, 204, 0.84);
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.add-on-copy {
  display: grid;
  gap: 2px;
}

.add-on-copy strong {
  color: var(--green-deep);
  font-size: 0.88rem;
  line-height: 1.25;
}

.add-on-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.inline-quantity {
  display: grid;
  gap: 4px;
}

.inline-quantity label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.inline-quantity input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(125, 141, 103, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.add-on-card .field-note {
  margin-top: 0;
  font-size: 0.76rem;
  line-height: 1.35;
}

.is-hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.quote-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.payment-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(125, 141, 103, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.payment-panel strong,
.booking-confirmation strong {
  color: var(--green-deep);
}

.payment-panel p,
.booking-confirmation p {
  margin: 0;
  color: var(--muted);
}

.payment-panel .field {
  margin-top: 4px;
}

#quoteCardContainer {
  min-height: 90px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(125, 141, 103, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.quote-payment-error {
  color: #8a2a2a;
  font-weight: 600;
}

.booking-confirmation {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(125, 141, 103, 0.18);
  background: linear-gradient(180deg, rgba(219, 226, 204, 0.42), rgba(255, 255, 255, 0.9));
}

.booking-confirmation.is-hidden {
  display: none;
}

.booking-confirmation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-confirmation-meta span,
.booking-confirmation-meta strong {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.quote-advanced {
  border: 1px solid rgba(125, 141, 103, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0 18px 18px;
}

.quote-advanced summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.quote-advanced-body {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.quote-teaser {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.quote-teaser-points {
  display: grid;
  gap: 14px;
}

.quote-estimate {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(219, 226, 204, 0.42), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(125, 141, 103, 0.18);
}

.estimate-head {
  display: grid;
  gap: 4px;
}

.estimate-head strong,
.estimate-total-row strong,
.estimate-breakdown strong {
  color: var(--green-deep);
}

.estimate-head span,
.estimate-summary-row span,
.estimate-breakdown span,
.estimate-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.estimate-summary {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(125, 141, 103, 0.12);
}

.estimate-summary-row,
.estimate-total-row,
.estimate-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.estimate-summary-row strong {
  color: var(--green-deep);
  text-align: right;
}

.estimate-total-row {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(125, 141, 103, 0.14);
}

.estimate-total-row span {
  font-weight: 700;
  color: var(--green-deep);
}

.estimate-total-row strong {
  font-size: 1.5rem;
}

.estimate-breakdown {
  display: grid;
  gap: 8px;
}

.estimate-total-stack {
  display: grid;
  gap: 10px;
}

.estimate-breakdown div {
  align-items: start;
}

.estimate-breakdown strong {
  text-align: right;
}

#estimateAddonsRow,
#estimateFirstVisitMinimumRow,
#estimateRecurringDiscountRow,
#estimateRecurringPriceRow,
#estimateRecurringMinimumRow,
#estimateRecurringTotalRow {
  display: none !important;
}

.estimate-breakdown div:has(> #estimateBase),
.estimate-breakdown div:has(> #estimateBathroomFee),
.estimate-breakdown div:has(> #estimateSqftFee),
.estimate-breakdown div:has(> #estimateServiceMultiplier),
.estimate-breakdown div:has(> #estimateTravel) {
  display: none !important;
}

#estimateAddonsRow {
  align-items: center;
}

.estimate-note {
  margin: 0;
  line-height: 1.6;
}

.quote-reserve-note {
  min-height: 1.4em;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-left {
  text-align: left;
}

.section-header-left .section-body {
  margin: 0;
}

.section-title {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.section-body {
  max-width: 720px;
  margin: 0 auto;
}

.reviews-section,
.quote-section,
.areas-section,
.gallery-section,
.services-section,
.faq-section {
  padding: 0 24px 88px;
  background: var(--white);
}

.quote-section {
  padding-top: 36px;
  scroll-margin-top: 180px;
}

#quoteForm {
  scroll-margin-top: 140px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 28px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-card:hover,
.service-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(126, 117, 92, 0.12);
}

.review-stars {
  color: #b5a06c;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.service-card {
  padding: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.gallery-showcase {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  justify-items: center;
}

.gallery-viewport {
  overflow: hidden;
  width: min(100%, 980px);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: width 350ms ease, border-radius 350ms ease;
}

.gallery-viewport.is-landscape {
  width: min(100%, 980px);
}

.gallery-viewport.is-portrait {
  width: min(100%, 840px);
}

.gallery-track {
  display: flex;
  width: 100%;
  transition: transform 500ms ease;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  margin: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.gallery-photo {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-photo-landscape img {
  aspect-ratio: 4 / 3;
}

.gallery-photo-portrait img {
  aspect-ratio: 3 / 4;
}

.services-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.areas-card {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 235, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(219, 226, 204, 0.52);
  border: 1px solid rgba(125, 141, 103, 0.18);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.areas-note {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: center;
}

.why-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,243,235,0.92));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-panel h3 {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(219, 226, 204, 0.3);
  border: 1px solid rgba(125, 141, 103, 0.12);
}

.why-list span {
  color: var(--muted);
  line-height: 1.7;
}

.faq-card {
  padding: 0;
  border-radius: 20px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  color: var(--green-deep);
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--green);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-card h3,
.faq-item summary {
  color: var(--green-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-banner {
  background: linear-gradient(135deg, #7f8f69 0%, #66755a 100%);
  padding: 34px 24px;
}

.contact-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  align-items: start;
  gap: 26px;
}

.contact-banner-copy {
  min-width: 0;
}

.contact-banner-copy h3 {
  color: var(--white);
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.contact-banner-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 620px;
  font-weight: 400;
}

.contact-areas {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-areas strong {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-areas p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-banner-actions {
  display: grid;
  gap: 12px;
  align-self: center;
  justify-self: end;
  width: min(100%, 320px);
}

.contact-banner-actions .btn {
  width: 100%;
  min-height: 50px;
}

.contact-banner-actions .btn-outline-light {
  background: rgba(255, 255, 255, 0.04);
}

.contact-banner-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-banner-direct {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.contact-banner-direct a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-banner-direct a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    height: auto;
    min-height: 84px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 10px;
  }

  .nav-wrap.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-wrap.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-wrap.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .contact-banner-inner {
    grid-template-columns: 1fr;
  }

  .contact-banner-actions {
    justify-self: stretch;
    width: 100%;
  }

  .sale-topbar {
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  .nav-links {
    display: none;
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    position: static;
    left: auto;
    transform: none;
    margin-top: 4px;
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 34px rgba(126, 117, 92, 0.12);
    border: 1px solid rgba(70, 85, 67, 0.08);
  }

  .nav-wrap.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    font-size: 1rem;
  }

  .nav-mobile-link {
    display: inline-flex;
  }

  .nav-mobile-link {
    color: var(--green-deep);
    font-weight: 700;
  }

  .nav-right {
    display: flex;
    order: 2;
    margin-left: 0;
    justify-self: center;
  }

  .nav-right .btn {
    width: auto;
  }

  .nav-phone {
    display: none;
  }

  .hero-layout,
  .split-section,
  .hero-points,
  .trust-bar,
  .add-on-grid,
  .reviews-grid,
  .services-grid,
  .faq-grid,
  .schedule-grid,
  .quote-grid,
  .quote-grid-3,
  .quote-step-chips {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .sale-topbar {
    padding: 8px 12px;
    gap: 0;
  }

  .sale-topbar-label,
  .sale-topbar-detail {
    display: none;
  }

  .sale-topbar strong {
    font-size: 0.88rem;
  }

  .nav-wrap {
    min-height: 84px;
    padding: 10px 12px;
    gap: 12px;
  }

  .nav-brand img {
    height: 56px;
    transform: none;
  }

  .nav-brand {
    gap: 10px;
    margin-left: 0;
    min-width: 0;
  }

  .nav-brand-text {
    max-width: 120px;
    font-size: 0.96rem;
    text-align: left;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-section,
  .reviews-section,
  .areas-section,
  .services-section,
  .faq-section,
  .contact-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-card,
  .review-card,
  .service-card,
  .faq-card {
    border-radius: 20px;
  }

  .hero-card {
    padding: 24px;
  }

  .contact-banner-inner {
    gap: 20px;
  }

  .contact-banner-actions {
    width: 100%;
  }

  .contact-areas-list {
    gap: 8px;
  }

  .area-pill {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .btn,
  .quote-actions .btn {
    width: 100%;
  }
}
