.hero-block {
  overflow: hidden;
}

.hero-block {
  display: flex;
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 520px;
  background-color: #330a2b;
}

.hero-imgchild {
  position: absolute;
  inset: 0;
  background-image: url('#');
  background-size: 120% auto;
  background-position: center;
  background-repeat: no-repeat;
}

/* Scrim: keeps the copy legible over any photo. */
.hero-imgchild:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51,10,43,.88) 0%, rgba(51,10,43,.62) 55%, rgba(51,10,43,.28) 100%);
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 4vh 4vw;
}

.hero-text h2,
.hero-text p {
  max-width: 56ch;
  margin: 0;
}

.hero-text h2 {
  color: #ffffff;
}

.hero-text p {
  color: #ffffff;
}

@media only screen and (max-width: 962px) {
  .hero-block {
    height: auto;
    min-height: 0;
  }

  .hero-imgchild {
    background-size: cover;
  }

  .hero-text {
    padding: 5vh 5vw;
    gap: 40px;
  }

  .hero-text h2,
  .hero-text p {
    max-width: none;
  }
}









































.sbc-calc {
  width: 100%;
  padding: 4vh 4vw 6vh;
  font-family: 'breton-regular', sans-serif;
  color: #330a2b;
}

.sbc-calc h2 {
  font-family: 'breton-bold', serif;
  font-size: 43px;
  line-height: 48px;
  margin: 0 0 14px;
}

.sbc-lede {
  font-size: 21px;
  line-height: 29px;
  margin: 0 0 32px;
  max-width: 60ch;
}

/* ---------- Layout ---------- */

.sbc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 34px;
  align-items: start;
}

.sbc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.sbc-results {
  position: sticky;
  top: 20px;
}

/* ---------- Inputs ---------- */

.sbc-calc label {
  display: block;
  font-family: 'breton-semibold', sans-serif;
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 7px;
}

.sbc-calc .sbc-hint {
  font-size: 14px;
  line-height: 19px;
  color: #6b6070;
  margin-top: 6px;
}

.sbc-calc input[type=number] {
  width: 100%;
  box-sizing: border-box;
  font-family: 'breton-regular', sans-serif;
  font-size: 21px;
  padding: 13px 15px;
  border: 1px solid #330a2b;
  border-radius: 0;
  background: #fff;
  color: #330a2b;
  -moz-appearance: textfield;
}

.sbc-calc input[type=number]::-webkit-outer-spin-button,
.sbc-calc input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sbc-calc input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #e8ded6;
  outline: none;
}

.sbc-calc input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #faa82b;
  border: 2px solid #330a2b;
  cursor: pointer;
  border-radius: 0;
}

.sbc-calc input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #faa82b;
  border: 2px solid #330a2b;
  cursor: pointer;
  border-radius: 0;
}

/* ---------- Breakdown ---------- */

.sbc-breakdown {
  margin-top: 30px;
  border-top: 1px solid #e8ded6;
  padding-top: 22px;
}

.sbc-breakdown-title {
  font-family: 'breton-semibold', sans-serif;
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 14px;
}

.sbc-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 11px;
  border-bottom: 1px solid #f0ebe6;
  margin-bottom: 11px;
}

.sbc-line-label {
  font-family: 'breton-semibold', sans-serif;
  font-size: 19px;
  line-height: 25px;
}

.sbc-line-note {
  font-size: 15px;
  line-height: 21px;
  color: #6b6070;
}

.sbc-linecost {
  font-family: 'breton-bold', serif;
  font-size: 24px;
  white-space: nowrap;
}

.sbc-turnrow {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sbc-turnrow label {
  font-family: 'breton-regular', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #6b6070;
  margin: 0;
}

.sbc-turnrow input[type=range] {
  flex: 1;
  min-width: 180px;
}

.sbc-turnval {
  font-family: 'breton-semibold', sans-serif;
  font-size: 17px;
  color: #471fb0;
}

/* ---------- Results panel ---------- */

.sbc-headline {
  background: #330a2b;
  padding: 30px 28px;
}

.sbc-eyebrow {
  font-family: 'breton-semibold', sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #faa82b;
  margin-bottom: 14px;
}

.sbc-total {
  font-family: 'breton-bold', serif;
  font-size: 56px;
  line-height: 58px;
  color: #faa82b;
  margin-bottom: 18px;
}

.sbc-perhire {
  font-size: 17px;
  line-height: 24px;
  color: #e8ded6;
}

.sbc-fix {
  border: 1px solid #330a2b;
  border-top: none;
  padding: 26px 28px;
}

.sbc-fix-eyebrow {
  font-family: 'breton-semibold', sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #471fb0;
  margin-bottom: 14px;
}

.sbc-fix p {
  font-size: 17px;
  line-height: 24px;
  margin: 0 0 16px;
}

.sbc-fixtotal {
  font-family: 'breton-bold', serif;
  font-size: 38px;
  line-height: 42px;
  margin-bottom: 8px;
}

.sbc-saved {
  background: #e8ded6;
  padding: 12px 15px;
  font-family: 'breton-semibold', sans-serif;
  font-size: 19px;
  line-height: 25px;
  margin-bottom: 20px;
}

.sbc-calc .btn {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

.sbc-ctanote {
  font-size: 14px;
  line-height: 20px;
  color: #6b6070;
  margin-top: 14px;
}

/* ---------- Assumptions ---------- */

.sbc-assumptions {
  margin-top: 36px;
  border-top: 1px solid #e8ded6;
  padding-top: 18px;
  font-size: 15px;
  line-height: 22px;
  color: #6b6070;
  max-width: 90ch;
}

.sbc-assumptions strong {
  font-family: 'breton-semibold', sans-serif;
  color: #330a2b;
}

.sbc-source {
  display: none;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid #e8ded6;
  font-size: 14px;
  line-height: 20px;
  color: #6b6070;
}

/* ---------- Responsive ---------- */

@media only screen and (max-width: 1199px) {
  .sbc-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .sbc-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .sbc-results {
    position: static;
  }
}

@media only screen and (max-width: 767px) {
  .sbc-calc {
    padding: 2vh 6vw 5vh;
  }

  .sbc-calc h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .sbc-lede {
    font-size: 19px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 575px) {
  .sbc-fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sbc-calc h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .sbc-total {
    font-size: 42px;
    line-height: 46px;
  }

  .sbc-linecost {
    font-size: 21px;
  }
}

/* ---------- Print ---------- */

@media print {
  .sbc-noprint {
    display: none !important;
  }

  .sbc-calc input[type=number] {
    border: none !important;
    padding: 0 !important;
    font-family: 'breton-bold', serif;
  }

  .sbc-calc input[type=range] {
    display: none;
  }

  .sbc-results {
    position: static;
  }

  .sbc-source {
    display: block !important;
  }
}

/* Print only the calculator. JS hides every sibling along the ancestor
   chain, at each level, so wrappers of any depth are handled. */
body.sbc-printing .sbc-print-hide {
  display: none !important;
}

body.sbc-printing .sbc-calc {
  padding: 0;
}














.testi-wrap {
  position: relative;
  width: 100%;
  padding: 0 4vw;
  box-sizing: border-box;
}

.testi-viewport {
  overflow: hidden;
  width: 100%;
}

.testi-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testi-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 1vw;
  display: flex;
}

@media only screen and (min-width: 963px) {
  .testi-card {
    flex-basis: 50%;
  }
}

@media only screen and (min-width: 1215px) {
  .testi-card {
    flex-basis: 33.3333%;
  }
}

.testi-inner {
  background: #e8ded6;
  padding: 4vh 2vw;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testi-mark {
  font-family: 'breton-bold', serif;
  font-size: 44px;
  line-height: 1;
  color: #471fb0;
  margin-bottom: 14px;
}

.testi-quote {
  flex-grow: 1;
  margin: 0 0 20px;
}

.testi-name {
  font-family: 'breton-semibold', sans-serif;
  margin: 0;
}

.testi-role {
  font-size: 17px;
  line-height: 23px;
  color: #6b6070;
  margin: 2px 0 0;
}

/* Arrows sit in the outer padding, clear of the cards. */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3vw;
  min-width: 34px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'breton-bold', serif;
  font-size: 30px;
  color: #330a2b;
  padding: 0;
}

.testi-arrow:hover {
  color: #471fb0;
}

.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 3vh;
}

.testi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d9cec4;
  cursor: pointer;
}

.testi-dot.is-on {
  background: #471fb0;
}

@media only screen and (max-width: 962px) {
  .testi-wrap {
    padding: 0 8vw;
  }

  .testi-card {
    padding: 0;
  }

  .testi-inner {
    padding: 3vh 7vw;
  }
}



.remark-head {
  padding: 3vh 1.5vw 2vh;
  text-align: center;
}

.remark-head h2 {
  font-size: 25px;
  line-height: 30px;
  margin: 0 0 12px;
}

.remark-head p {
  margin: 0;
}

/* Bullets collapsed by default, so three columns stay scannable. */
.remark-more {
  border-top: 1px solid #d9cec4;
  margin-top: auto;
}

.remark-more summary {
  padding: 14px 1.5vw;
  text-align: center;
  cursor: pointer;
  font-family: 'breton-semibold', sans-serif;
  color: #471fb0;
  list-style: none;
}

.remark-more summary::-webkit-details-marker {
  display: none;
}

.remark-more summary:after {
  content: ' +';
}

.remark-more[open] summary:after {
  content: ' \2013';
}

.remark-more summary:hover {
  color: #330a2b;
}

.remark-body {
  padding: 0 1.5vw 3vh;
  text-align: left;
}

.remark-body h3 {
  color: #330a2b;
  font-size: 19px;
  line-height: 24px;
  margin: 0 0 8px;
}

.remark-body ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.remark-body ul:last-child {
  margin-bottom: 0;
}

.remark-body li {
  font-size: 17px;
  line-height: 23px;
  margin-bottom: 6px;
}