@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap");

@font-face {
  font-family: "Batusa";
  src: url("https://46833709.fs1.hubspotusercontent-na1.net/hubfs/46833709/Batusa.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --charcoal: #1C1B19;
  --clay: #B8855A;
  --clay-light: #F0E4D4;
  --border: #DDD5C8;
  --sage: #6B7F6A;
  --sage-bg: #EAF0E9;
  --text-mid: #5A5750;
  --olive: #8A9E7A;
  --teal: #4A6B6B;
  --green: #3B6D11;
  --green-bg: #EAF3DE;
}

body {
  background: var(--cream);
  font-family: 'karla', sans-serif;
}

/* NAV */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

#topbar-info {
  background: var(--teal);
  padding: 8px 24px;
  text-align: center;
}

#topbar-info span {
  color: #fff;
  font-size: 12px;
}

#navbar {
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-inline:auto;
  max-width: 1280px;
}

#topbar .nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

#navbar .logo img {
  height: 28px;
  display: block;
  mix-blend-mode: multiply;
}

#navbar .nav-links {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}

#navbar .nav-links a {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1f2c2f;
  text-decoration: none;
  opacity: .75;
}

.nav .nav-cta .btn {
  background: #ced0b7;
  border-color: #ced0b7;
  border-radius: 50px;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s ease all;
}
.nav .nav-cta .btn:hover {
  border-color: #647941 !important;
  color: #647941;
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}
.btn {
  font-family: 'karla', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 28px;
  border: 1.5px solid;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.btn-outline {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}

.btn-olive {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.btn-clay-outline {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 11px;
}

/* PAGE WRAPPER */
.page {
  padding-block: 60px;
  min-height: 100vh;
  background: var(--cream);
  display: none;
}

.page.active {
  display: block;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 30px 80px;
}

.container-sm {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 40px;
}

.container-md {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 40px;
}

/* STEP BAR */
.step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
}

.step-circle.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.step-circle.done {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.step-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
}

.step-label.active {
  color: var(--charcoal);
  font-weight: 600;
}

.step-line {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
  margin-top: -16px;
}

.step-line.done {
  background: var(--sage);
}

/* PAGE 1 */
.headline {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}

.headline h1 {
  font-family: 'Batusa', serif;;
  font-size: 40px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-photo {
  height: auto;
  position: relative;
}

.card-photo.ihe {
  background: linear-gradient(135deg, var(--clay-light), var(--cream-dark));
}

.card-photo.ice {
  background: linear-gradient(135deg, var(--sage-bg), #d4e4d3);
}

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

.card-photo-icon {
  font-size: 40px;
  margin-bottom: 0;
  height: 250px;
}

.card-photo-icon img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

height: 100%;
object-fit: cover;
width: 100%;
}

.card-photo-text {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-badge.dark {
  background: var(--charcoal);
}

.card-badge.sage {
  background: var(--sage);
}

.card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h2 {
  font-family: 'Batusa', serif;;
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 8px;
}

.card-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 16px;
}

.card-body button {
  background-color: #ced0b7 !important;
  color: #5a7060 !important;
  border-radius: 50px;
  border-color: #ced0b7 !important;
  width: fit-content !important;
  transition: 0.3s ease all;
  padding-block: 13px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom:25px;
}

.card-body button:hover {
  border-color: #647941 !important;
  color: #647941;
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}


.card-price-row {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 2px;
}

.short-desc{
  min-height: 64px;
}

.card-price {
  font-family: 'Batusa', serif;;
  font-size: 22px;
  color: var(--charcoal);
  margin: 0 0 4px;
}

.card-price-label {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: .06em;
}

.card .card-price {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Karla';
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 16px;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.feature-list li span {
  color: var(--sage);
  font-size: 16px;
  line-height: 1.4;
}

.affordability-badge {
  background: var(--green-bg);
  border: 1px solid rgba(107, 127, 106, .2);
  padding: 8px 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.affordability-badge .check {
  color: var(--green);
  font-size: 13px;
}

.affordability-badge span {
  font-size: 11px;
  color: var(--green);
  letter-spacing: .04em;
}

.virtual-tour-link {
  font-size: 16px;
  color: var(--clay);
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
  width: fit-content;
  transition: 0.3s ease all;
}

.virtual-tour-link:hover {
  opacity: 0.6;
}

.trust-bar {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.trust-bar span{
  font-size: 16px;
}  


.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item .icon {
  font-size: 14px;
}

.trust-item span {
  font-size: 16px;
  color: var(--text-mid);
}

/* PAGE 2 */
.zip-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px;
  text-align: center;
}

.zip-input {
  width: 100%;
  font-family: 'Batusa', serif;;
  font-size: 32px;
  text-align: center;
  border: none;
  border-bottom: 2px solid var(--charcoal);
  padding: 12px 0;
  background: transparent;
  color: var(--charcoal);
  outline: none;
  letter-spacing: .2em;
  margin-bottom: 32px;
}

.zip-note {
  font-size: 11px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

/* PAGE 3a */
.covered-banner {
  background: var(--green-bg);
  border: 1px solid rgba(107, 127, 106, .3);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.covered-banner .check-icon {
  color: var(--green);
  font-size: 20px;
}

.covered-banner .title {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin: 0;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.covered-banner .sub {
  font-size: 11px;
  color: var(--sage);
  margin: 2px 0 0;
  letter-spacing: .04em;
}

.acuity-placeholder {
  background: var(--cream-dark);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}

.acuity-placeholder p {
  font-family: 'Batusa', serif;;
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 8px;
  text-align: center;
}

.acuity-placeholder span {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
}

.panel-title {
  font-family: 'Batusa', serif;;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* PAGE 3b */
.no-coverage-header {
  text-align: center;
  margin-bottom: 40px;
}

.no-coverage-header h2 {
  font-family: 'Batusa', serif;;
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.no-coverage-header p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.option-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.option-card .eyebrow {
  margin-bottom: 10px;
}

.option-card h3 {
  font-family: 'Batusa', serif;;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 10px;
}

.option-card p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-note {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
}

.contact-note a {
  color: var(--clay);
  text-decoration: none;
}

/* PAGE 4 */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.comfort-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--sage-bg), #d4e4d3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px dashed var(--border);
}

.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.info-row .ico {
  font-size: 13px;
}

.info-row span {
  font-size: 12px;
  color: var(--text-mid);
}

.comfort-page-title {
  font-family: 'Batusa', serif;;
  font-size: 34px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.comfort-page-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.acuity-sm {
  background: var(--cream-dark);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}

.upsell-bar {
  background: var(--clay-light);
  border: 1px solid rgba(184, 133, 90, .3);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.upsell-bar .upsell-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 4px;
}

.upsell-bar p {
  font-family: 'Batusa', serif;;
  font-size: 16px;
  color: var(--charcoal);
  margin: 0;
}

/* DEV NAV */
#dev-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  z-index: 200;
}

#dev-nav button {
  font-family: 'karla', sans-serif;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: transparent;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .2);
  cursor: pointer;
}

#dev-nav button.active {
  background: var(--clay);
  color: #fff;
  border-color: var(--clay);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1C1B19;
}

.hp-vt-modal{position:fixed;inset:0;z-index:99999;display:none;align-items:center;justify-content:center;padding:20px;}
.hp-vt-modal.is-open{display:flex;}
.hp-vt-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.78);backdrop-filter:blur(2px);}
.hp-vt-modal__dialog{position:relative;width:100%;max-width:960px;background:#000;border-radius:12px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.5);}
.hp-vt-modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .15s ease;
}
.hp-vt-modal__close:hover{background:rgba(0,0,0,.85);}
.hp-vt-modal__close:hover{background:#f1f1f1;}
.hp-vt-modal__video{position:relative;width:100%;padding-top:56.25%;background:#000;}
.hp-vt-modal__video iframe,
.hp-vt-modal__video video{position:absolute;inset:0;width:100%;height:100%;border:0;}
body.hp-vt-no-scroll{overflow:hidden;}
@media (max-width:600px){
  .hp-vt-modal__close{top:8px;right:8px;}
}

@media (max-width: 1199px) {
  #s1 .container {
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  #s1 .container {
    margin: 0 auto;
    padding-inline: 15px;
  }
  .hps-hero-title,
  .headline h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  #navbar {
    padding: 0 20px;
  }

  #navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #DDD5C8;
    padding: 16px 20px;
  }

  #navbar .nav-links.open {
    display: flex;
  }

  #navbar .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid #F0EBE3;
  }

  #navbar .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }
}

@media(max-width: 767px) {
  .hps-step-bar {
    gap: 4px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .hps-step__dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
    flex-shrink: 0;
  }
  .hps-step__label {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 6px;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
  .hps-step__line {
    min-width: 8px;
    flex: 1 1 auto;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  #dev-nav {
    width: 90%;
  }
  #s1 .step-bar .step {
    width: 100%;
    margin-block: 20px;
  }
  #s1 .step-bar{
    display: flex;
    flex-wrap: wrap;
  }
  #s1 .step-line {
    width: 28px;
    height: 1px;
    background: var(--border);
    margin: 0 8px;
    margin-top: -2px;
    transform: rotate(90deg);
  }

}

@media (max-width: 480px) {
  .hps-step { position: relative; }
  .hps-step:not(.hps-step--active) .hps-step__label { display: none; }
  .hps-step--active .hps-step__label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 4px;
    white-space: nowrap;
    font-weight: 600;
  }
  .hps-step-bar {
    margin-bottom: 28px; /* room for the active label sitting below */
  }
}