.page-home {
  background: rgb(253 253 251);
  color: rgb(var(--zoa-dark));
}

.container {
  width: min(var(--max-width), 100% - 56px);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(76 145 96);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid rgb(225 230 224);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgb(var(--zoa-slate));
  font-size: 0.93rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgb(76 145 96);
  transition: width 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 840px);
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.9) sepia(0.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgb(16 24 20 / 0.66) 0%, rgb(16 24 20 / 0.18) 58%, rgb(16 24 20 / 0.06) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(54px, 9vh, 110px);
  color: rgb(255 255 255);
}

.hero__content h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.3rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero__content p {
  margin: 18px 0 0;
  max-width: 560px;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  color: rgb(237 242 238);
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
  background: rgb(63 142 84);
}

.btn--ghost {
  background: rgb(var(--zoa-white));
  color: rgb(var(--zoa-dark));
  border-color: rgb(200 209 199);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgb(130 161 143);
  color: rgb(31 44 36);
}

.hero__link {
  color: rgb(241 245 242);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: rgb(255 255 255);
}

.estimate-entry {
  background: rgb(255 255 255);
}

.about-strip {
  background: rgb(250 247 240);
}

.estimate-entry__mission {
  margin: 0;
  padding: 20px 22px;
  border: 2px solid rgb(67 145 88);
  background: linear-gradient(160deg, rgb(246 251 246) 0%, rgb(242 248 244) 100%);
}

.estimate-entry__mission h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgb(27 52 38);
}

.estimate-entry__mission p {
  margin: 12px 0 0;
  max-width: 940px;
  font-size: 1rem;
  line-height: 1.62;
  color: rgb(64 81 70);
}

.estimate-entry__gallery-link {
  display: inline-flex;
  margin-top: 22px;
  color: rgb(36 121 63);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.estimate-entry__intro {
  max-width: 760px;
  margin: 0 0 28px;
}

.price-estimator {
  border: 1px solid rgb(223 228 222);
  background: rgb(252 253 250);
  box-shadow: 0 24px 38px rgb(22 39 30 / 0.06);
}

.price-estimator__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 0;
}

.price-estimator__controls {
  padding: 26px;
  background: linear-gradient(160deg, rgb(248 251 247) 0%, rgb(243 248 243) 100%);
  border-right: 1px solid rgb(223 228 222);
}

.price-estimator__results {
  padding: 26px;
  background: rgb(255 255 255);
}

.price-estimator__results h3 {
  margin: 8px 0 0;
  font-size: 1.2rem;
}

.estimate-key-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.estimate-key-metric h3 {
  margin: 0;
  font-size: 1rem;
  color: rgb(55 73 62);
}

.estimate-entry__step {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(82 141 99);
  font-weight: 700;
}

.estimate-total {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgb(24 49 34);
}

.estimate-range {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: rgb(65 75 69);
}

.range-number-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 12px;
  align-items: center;
}

.range-number-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, rgb(86 164 104) 0%, rgb(144 196 157) 100%);
  padding: 0;
}

.range-number-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgb(255 255 255);
  background: rgb(55 127 76);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
  cursor: pointer;
}

.range-number-control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgb(255 255 255);
  background: rgb(55 127 76);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
  cursor: pointer;
}

.form-hint {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: rgb(99 111 104);
}

.form-hint--warn {
  color: rgb(134 88 30);
  font-weight: 700;
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.choice-group legend {
  margin-bottom: 2px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgb(var(--zoa-slate));
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

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

.panel-preset-group {
  margin: 0;
}

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

.panel-preset-card {
  min-height: 74px;
  border: 1px solid rgb(206 216 207);
  background: rgb(255 255 255);
  padding: 10px 11px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.panel-preset-card strong {
  font-size: 0.9rem;
  color: rgb(26 44 33);
}

.panel-preset-card small {
  font-size: 0.77rem;
  color: rgb(92 105 97);
}

.panel-preset-card:hover,
.panel-preset-card:focus-visible {
  border-color: rgb(73 152 93);
}

.panel-preset-card:focus-visible {
  outline: 2px solid rgb(var(--zoa-green) / 0.35);
  outline-offset: 2px;
}

.panel-preset-card.is-active {
  border-color: rgb(73 152 93);
  background: rgb(240 247 242);
  transform: translateY(-1px);
}

.choice-card {
  display: block;
}

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

.choice-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 66px;
  border: 1px solid rgb(206 216 207);
  background: rgb(255 255 255);
  padding: 10px 11px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.choice-card__body strong {
  font-size: 0.92rem;
  color: rgb(26 44 33);
}

.choice-card__body small {
  margin-top: 2px;
  font-size: 0.77rem;
  color: rgb(92 105 97);
}

.choice-card input:checked + .choice-card__body {
  border-color: rgb(73 152 93);
  background: rgb(240 247 242);
  transform: translateY(-1px);
}

.choice-card input:focus-visible + .choice-card__body {
  outline: 2px solid rgb(var(--zoa-green) / 0.35);
  outline-offset: 2px;
}

.choice-card input:disabled + .choice-card__body {
  opacity: 0.56;
  border-color: rgb(218 223 217);
  background: rgb(248 249 248);
}

.breakdown-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.breakdown-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.breakdown-table th,
.breakdown-table td {
  padding: 9px 8px;
  border-bottom: 1px solid rgb(226 232 225);
}

.breakdown-table thead th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(90 106 95);
  text-align: right;
}

.breakdown-table thead th:first-child,
.breakdown-table tbody th,
.breakdown-table tfoot th {
  text-align: left;
}

.breakdown-table tbody th {
  font-weight: 600;
  color: rgb(36 50 42);
}

.line-item-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.line-item-toggle__arrow {
  color: rgb(82 103 90);
  font-size: 0.72rem;
  transition: transform 0.16s ease;
}

.line-item-toggle[aria-expanded="true"] .line-item-toggle__arrow {
  transform: rotate(180deg);
}

.line-item-toggle__label {
  color: rgb(36 50 42);
}

.breakdown-table td {
  text-align: right;
  color: rgb(36 50 42);
}

.breakdown-main-row > th,
.breakdown-main-row > td {
  transition: background 0.14s ease;
}

.breakdown-main-row:hover > th,
.breakdown-main-row:hover > td,
.breakdown-main-row.is-open > th,
.breakdown-main-row.is-open > td {
  background: rgb(248 251 248);
}

.breakdown-table tfoot th,
.breakdown-table tfoot td {
  font-weight: 700;
}

.breakdown-table__total th,
.breakdown-table__total td {
  font-size: 0.96rem;
  color: rgb(17 37 28);
  border-top: 1px solid rgb(188 200 190);
}

.breakdown-detail-row td {
  border-bottom: 1px solid rgb(226 232 225);
  background: rgb(247 250 247);
}

.breakdown-detail-cell {
  padding: 8px 10px 11px 28px;
  text-align: left !important;
  font-size: 0.81rem;
  line-height: 1.52;
  color: rgb(82 98 87);
}

.margin-caption {
  margin: 14px 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(52 70 59);
}

.margin-principle {
  margin-top: 8px;
  border: 1px solid rgb(205 216 206);
  border-left: 4px solid rgb(68 143 88);
  background: rgb(244 248 244);
  padding: 10px 12px;
}

.margin-principle h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgb(34 54 43);
}

.margin-principle p {
  margin: 8px 0 0;
  font-size: 0.83rem;
  line-height: 1.52;
  color: rgb(66 83 72);
}

.estimate-cta {
  margin-top: 18px;
  border-top: 1px solid rgb(223 228 222);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.estimate-cta h4 {
  margin: 0;
  font-size: 1.15rem;
}

.estimate-cta p {
  color: rgb(70 83 74);
  line-height: 1.5;
}

.estimate-cta__micro {
  margin: 0;
  font-size: 0.82rem;
  color: rgb(52 122 72);
  font-weight: 700;
}

.estimate-cta__trust {
  margin: 0;
  font-size: 0.82rem;
}

.estimate-disclaimer {
  margin: 12px 0 0;
  font-size: 0.81rem;
  line-height: 1.5;
  color: rgb(98 109 102);
}

.full-quote-stage {
  margin-top: 20px;
  border-top: 1px solid rgb(223 228 222);
  padding: 20px 26px 0;
}

.full-quote-stage__intro {
  margin-top: 10px;
  max-width: 820px;
}

.philosophy {
  background: rgb(250 247 240);
}

.philosophy__inner {
  max-width: 740px;
}

.philosophy h2,
.estimate-entry__intro h2,
.mission h2,
.process h2,
.included__copy h2,
.estimate-output__head h2,
.conversion h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.philosophy p,
.mission p,
.section-lead,
.timeline p,
.included-list li,
.metric h3,
.estimate-assumptions p {
  color: rgb(var(--zoa-slate));
}

.philosophy p {
  margin: 18px 0 0;
  font-size: 1.1rem;
  line-height: 1.62;
}

.mission {
  background: rgb(250 247 240);
}

.mission__inner {
  max-width: 760px;
}

.mission p {
  margin: 18px 0 0;
  font-size: 1.1rem;
  line-height: 1.62;
}

.included {
  background: rgb(252 252 249);
}

.included__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 46px;
  align-items: center;
}

.included__media {
  height: clamp(300px, 35vw, 380px);
}

.included__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.95) sepia(0.05);
}

.included__copy {
  max-width: 560px;
}

.included-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.included-list li {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(226 231 224);
  font-size: 1rem;
  line-height: 1.55;
}

.included-list strong {
  display: inline-block;
  margin-right: 8px;
  color: rgb(var(--zoa-dark));
  font-weight: 700;
}

.process {
  background: rgb(246 242 234);
}

.timeline {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline li {
  position: relative;
  padding-top: 28px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgb(86 160 105);
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 18px;
  right: -9px;
  height: 1px;
  background: rgb(191 203 194);
}

.timeline li:last-child::after {
  display: none;
}

.timeline h3 {
  margin: 0;
  font-size: 1.1rem;
}

.timeline p {
  margin: 9px 0 0;
  font-size: 0.97rem;
  line-height: 1.55;
}

.process-support {
  margin: 30px 0 0;
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgb(var(--zoa-slate));
}

.estimate-output {
  padding-top: 86px;
  background: rgb(255 255 255);
}

.estimate-output__card {
  border-top: 1px solid rgb(224 228 223);
  padding-top: 38px;
}

.estimate-output__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.estimate-output__warning {
  margin: 0;
  font-size: 0.9rem;
  color: rgb(61 132 81);
  font-weight: 700;
}

.metric-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

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

.metric h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.metric p {
  margin: 9px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: rgb(var(--zoa-dark));
}

.estimate-assumptions {
  margin-top: 18px;
  border-top: 1px solid rgb(226 231 224);
  padding-top: 16px;
}

.estimate-assumptions summary {
  cursor: pointer;
  font-weight: 700;
}

.estimate-assumptions ul {
  margin: 10px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgb(var(--zoa-slate));
}

.full-quote-lists {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.full-quote-lists h3 {
  margin: 0;
  font-size: 0.95rem;
}

.full-quote-lists ul {
  margin: 10px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgb(var(--zoa-slate));
}

.full-quote-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.full-quote-contact {
  margin: 12px 0 0;
  color: rgb(var(--zoa-slate));
}

.full-quote-contact a {
  color: rgb(36 121 63);
  font-weight: 700;
}

.conversion {
  padding-top: 64px;
}

.conversion__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 32px;
  align-items: start;
}

.section-lead {
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.58;
}

.lead-card {
  border-top: 1px solid rgb(226 231 224);
  padding-top: 6px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgb(var(--zoa-slate));
}

.form-field input,
.form-field select,
.lead-form input,
.lead-form select,
.estimate-wizard input:not([type="range"]),
.estimate-wizard select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgb(210 218 209);
  border-radius: 0;
  background: rgb(255 255 255);
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field select:focus,
.lead-form input:focus,
.lead-form select:focus,
.estimate-wizard input:not([type="range"]):focus,
.estimate-wizard select:focus {
  outline: none;
  border-color: rgb(var(--zoa-green));
  box-shadow: 0 0 0 2px rgb(var(--zoa-green) / 0.14);
}

.form-field--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-feedback {
  margin: 0;
  min-height: 22px;
  font-size: 0.9rem;
  color: rgb(var(--zoa-slate));
}

.form-feedback.is-error {
  color: rgb(163 29 29);
}

.form-feedback.is-success {
  color: rgb(37 121 63);
}

.estimate-wizard {
  margin-top: 14px;
  display: grid;
  gap: 16px;
}

.estimate-step {
  display: grid;
  gap: 14px;
}

.estimate-wizard__actions {
  display: flex;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid rgb(226 231 224);
  padding: 30px 0 38px;
  color: rgb(var(--zoa-slate));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.media-credit {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgb(120 128 122);
}

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

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

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

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

  .timeline li:nth-child(2)::after,
  .timeline li:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 84px 0;
  }

  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .included__grid,
  .conversion__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-bottom: 52px;
  }

  .price-estimator__grid {
    grid-template-columns: 1fr;
  }

  .price-estimator__controls {
    border-right: 0;
    border-bottom: 1px solid rgb(223 228 222);
  }

  .price-estimator__controls,
  .price-estimator__results {
    padding: 22px;
  }

  .estimate-entry__mission {
    padding: 18px;
  }

  .full-quote-stage {
    padding: 20px 22px 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), 100% - 30px);
  }

  .hero {
    min-height: 520px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .timeline,
  .metric-grid,
  .lead-actions,
  .form-field--split,
  .choice-grid,
  .panel-preset-grid,
  .estimate-key-metrics {
    grid-template-columns: 1fr;
  }

  .timeline li::after {
    display: none;
  }

  .range-number-control {
    grid-template-columns: 1fr;
  }

  .breakdown-table {
    min-width: 360px;
  }

  .price-estimator__controls,
  .price-estimator__results,
  .full-quote-stage {
    padding-left: 16px;
    padding-right: 16px;
  }

  .estimate-entry__mission {
    padding: 16px;
  }

  .estimate-wizard__actions {
    flex-direction: column;
  }
}
