:root {
  --ink: #000000;
  --muted: #000000;
  --paper: #ffffff;
  --white: #ffffff;
  --line: rgba(0, 0, 0, .12);
  --teal: #e7710e;
  --teal-dark: #000000;
  --red: #e7710e;
  --gold: #e7710e;
  --ease-smooth: cubic-bezier(0.625, 0.05, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-main {
  background: var(--paper);
  min-height: 100vh;
  position: relative;
  z-index: 2;
  will-change: transform;
}

.button:focus-visible,
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible,
.form-submit-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.hero {
  align-items: center;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero__content > *,
.hero-calculator {
  animation: hero-rise .95s var(--ease-smooth) both;
}

.hero__content > :nth-child(2) {
  animation-delay: .08s;
}

.hero-calculator {
  animation-delay: .18s;
}

.hero__image,
.hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__image {
  animation: hero-image 1.35s var(--ease-smooth) both;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 16, .82) 0%, rgba(9, 18, 16, .58) 38%, rgba(9, 18, 16, .08) 74%),
    linear-gradient(0deg, rgba(9, 18, 16, .5) 0%, rgba(9, 18, 16, 0) 44%);
}

.hero__layout {
  align-items: center;
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 23rem);
  margin: 0 auto;
  max-width: 86rem;
  padding: 8rem 2rem 4rem;
  position: relative;
  width: 100%;
}

.hero__content {
  max-width: 48rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.65rem, 3.35vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.65rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
}

h3 {
  font-size: 1.12rem;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: .8rem;
}

.hero__description {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.hero__checks li {
  align-items: center;
  color: rgba(255, 255, 255, .86);
  display: inline-flex;
  font-size: .86rem;
  font-weight: 300;
  gap: .45rem;
  line-height: 1.2;
}

.hero__checks li::before {
  align-items: center;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2016%2016'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3.25%208.35%206.45%2011.35%2012.75%204.65'%20fill='none'%20stroke='white'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: .78rem .78rem;
  border-radius: 999px;
  content: "";
  display: inline-flex;
  flex: none;
  height: 1.15rem;
  width: 1.15rem;
}

.hero-calculator {
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, .2);
  color: var(--white);
  padding: 1.25rem;
}

.hero-calculator__head {
  border-bottom: 1px solid rgba(255, 255, 255, .26);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.hero-calculator h2 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
}

.hero-calculator__field {
  display: grid;
  gap: .5rem;
  margin-top: .95rem;
}

.hero-calculator__field label,
.hero-calculator__option {
  align-items: center;
  display: flex;
  font-size: .9rem;
  font-weight: 300;
  justify-content: space-between;
}

.hero-calculator__field label span {
  color: var(--red);
  font-weight: 700;
}

.hero-calculator input[type="range"] {
  accent-color: var(--red);
  cursor: pointer;
  width: 100%;
}

.hero-calculator__option {
  border-top: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  gap: .8rem;
  justify-content: flex-start;
  margin-top: .85rem;
  padding-top: .85rem;
}

.hero-calculator__option input {
  appearance: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 4px;
  cursor: pointer;
  display: grid;
  flex: none;
  height: 1.15rem;
  margin: 0;
  place-items: center;
  transition: background-color .35s var(--ease-smooth), border-color .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth);
  width: 1.15rem;
}

.hero-calculator__option input::before {
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  height: .32rem;
  margin-top: -.1rem;
  transform: rotate(-45deg) scale(0);
  transition: transform .25s var(--ease-smooth);
  width: .6rem;
}

.hero-calculator__option input:checked {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(231, 113, 14, .18);
}

.hero-calculator__option input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.hero-calculator__option input:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero-calculator__result {
  align-items: center;
  background: rgba(0, 0, 0, .44);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  display: grid;
  gap: .25rem 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1.1rem;
  padding: 1rem;
}

.hero-calculator__result span {
  font-size: .8rem;
  grid-column: 1;
  opacity: .8;
}

.hero-calculator__result strong {
  color: var(--red);
  font-size: 2rem;
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  line-height: .9;
  text-align: right;
}

.hero-calculator__result small {
  font-size: .68rem;
  font-weight: 300;
  grid-column: 1;
  opacity: .72;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 300;
  justify-content: center;
  min-height: 3.1rem;
  padding: .85rem 1.15rem;
  transition: background-color .45s var(--ease-smooth), border-color .45s var(--ease-smooth), color .45s var(--ease-smooth), transform .45s var(--ease-smooth);
}

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

.button--primary {
  background: var(--red);
  color: var(--white);
}

.button--secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.section {
  padding: 6rem 2rem;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(2rem);
  will-change: opacity, transform;
}

.reveal-on-scroll[data-reveal-media] {
  transform: translateY(1.5rem) scale(1.025);
}

.reveal-on-scroll.is-visible {
  animation: scroll-rise .95s var(--ease-smooth) var(--reveal-delay) both;
}

.reveal-on-scroll.is-visible[data-reveal-media] {
  animation-name: scroll-image;
}

.section__head {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0 auto 3rem;
  max-width: 76rem;
}

.section__head h2 {
  max-width: 58rem;
}

.section--light {
  background: var(--paper);
}

.section--intro {
  background: var(--paper);
}

.intro-block {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 86rem;
}

.intro-block__content {
  max-width: 42rem;
}

.intro-block__content h2 {
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  line-height: 1.16;
  max-width: 15ch;
}

.intro-block__content p {
  color: rgba(0, 0, 0, .72);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  font-weight: 300;
  line-height: 1.65;
  margin: 1.5rem 0 0;
}

.intro-checklist {
  display: grid;
  gap: .75rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.intro-checklist li {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  display: flex;
  font-size: .95rem;
  font-weight: 300;
  gap: .75rem;
  line-height: 1.25;
  padding: .8rem .9rem;
}

.intro-checklist li::before {
  background: var(--red) url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2016%2016'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3.25%208.35%206.45%2011.35%2012.75%204.65'%20fill='none'%20stroke='white'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") center / .78rem .78rem no-repeat;
  border-radius: 999px;
  content: "";
  flex: none;
  height: 1.2rem;
  width: 1.2rem;
}

.intro-block__media {
  aspect-ratio: .92 / 1;
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.intro-block__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 76rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 16rem;
  padding: 1.4rem;
  transition: background-color .35s var(--ease-smooth), border-color .35s var(--ease-smooth), color .35s var(--ease-smooth), transform .35s var(--ease-smooth);
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.service-card__icon {
  color: var(--red);
  display: block;
  font-weight: 800;
  margin-bottom: 3.25rem;
}

.service-card p,
.step p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.service-card--dark {
  background: var(--ink);
  color: var(--white);
}

.service-card--dark p {
  color: var(--white);
}

.section--split {
  background: var(--white);
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, .85fr) minmax(22rem, 1fr);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3rem minmax(0, 1fr);
  padding-top: 1.25rem;
}

.step span {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.section--accent {
  background: var(--teal-dark);
  color: var(--white);
}

.assurance {
  margin: 0 auto;
  max-width: 76rem;
}

.assurance__head h2 {
  max-width: 58rem;
}

.assurance-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3rem;
}

.assurance-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  min-height: 14rem;
  padding: 1.25rem;
}

.assurance-card h3 {
  color: var(--white);
}

.assurance-card p {
  color: rgba(255, 255, 255, .82);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 0;
}

.section--area {
  background: var(--paper);
}

.area-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, .9fr) minmax(22rem, 1fr);
  margin: 0 auto;
  max-width: 76rem;
}

.area-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.area-panel p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.area-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 300;
  padding: .55rem .8rem;
}

.section--quote {
  background: var(--red);
  color: var(--white);
}

.quote-band {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 76rem;
}

.quote-band h2 {
  max-width: 54rem;
}

.quote-band .button {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .45);
}

.quote-band .button:hover {
  background: rgba(255, 255, 255, .24);
}

.section--form {
  background: var(--paper);
}

.quote-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, .76);
  border-radius: 8px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.quote-form label,
.quote-form__type {
  color: rgba(0, 0, 0, .72);
  display: grid;
  font-size: .86rem;
  font-weight: 500;
  gap: .55rem;
}

.quote-form__label {
  line-height: 1;
}

.quote-form__message,
.quote-form__type {
  grid-column: 1 / -1;
}

.quote-form input:not(.radio-input),
.quote-form textarea {
  appearance: none;
  background: rgba(0, 0, 0, .045);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 3.35rem;
  outline: 0;
  padding: .95rem 1rem;
  transition: background-color .25s var(--ease-smooth), border-color .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth);
  width: 100%;
}

.quote-form input:not(.radio-input):focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: rgba(231, 113, 14, .5);
  box-shadow: none;
}

.quote-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.quote-form .radiocheck-group {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-form .button {
  justify-self: start;
}

.quote-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 76rem;
}

.contact-hero {
  align-items: end;
  display: grid;
  min-height: 46vh;
  overflow: hidden;
  position: relative;
}

.contact-hero__image,
.contact-hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.contact-hero__image {
  animation: hero-image 1.2s var(--ease-smooth) both;
  object-fit: cover;
}

.contact-hero__shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 16, .72) 0%, rgba(9, 18, 16, .36) 44%, rgba(9, 18, 16, .04) 78%),
    linear-gradient(0deg, rgba(9, 18, 16, .46) 0%, rgba(9, 18, 16, 0) 54%);
}

.contact-hero__content {
  color: var(--white);
  margin: 0 auto;
  max-width: 76rem;
  padding: 7rem 2rem 3rem;
  position: relative;
  width: 100%;
}

.contact-hero h1 {
  animation: hero-rise .95s var(--ease-smooth) both;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .9;
  margin-bottom: 0;
}

.quote-hero .contact-hero__image {
  object-position: center;
}

.contact-page {
  background:
    linear-gradient(115deg, rgba(231, 113, 14, .08) 0%, rgba(231, 113, 14, 0) 34%),
    var(--paper);
  min-height: 100vh;
  padding: 5rem 2rem 6rem;
}

.contact-page__layout {
  margin: 0 auto;
  max-width: 76rem;
}

.contact-page__grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(17rem, .68fr) minmax(0, 1.32fr);
}

.contact-panel {
  padding: 0;
}

.contact-panel h2 {
  font-size: clamp(1.18rem, 1.9vw, 1.65rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-routes {
  display: grid;
  gap: .8rem;
}

.contact-route {
  background: rgba(255, 255, 255, .72);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .06);
  display: grid;
  gap: .35rem;
  padding: 1.05rem 1.15rem;
  transition: background-color .25s var(--ease-smooth), color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

.contact-route:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-route span {
  color: rgba(0, 0, 0, .58);
  font-size: .82rem;
  font-weight: 500;
}

.contact-route strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-route:hover span,
.contact-route:hover strong {
  color: var(--white);
}

.contact-page__visual {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  margin: 2rem 0 0;
  overflow: hidden;
  transform: rotate(-1.25deg);
}

.contact-page__visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.form-group {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
  margin-bottom: 0;
  width: 100%;
}

.contact-form {
  background: rgba(255, 255, 255, .76);
  border-radius: 8px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form {
  display: flex;
  flex-flow: column;
  gap: 1.15rem;
  width: 100%;
}

.form-field-group {
  align-items: flex-start;
  display: flex;
  flex-flow: column;
  gap: .55rem;
}

.form-field {
  position: relative;
  width: 100%;
}

.form-label {
  color: rgba(0, 0, 0, .72);
  font-size: .86rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  width: 100%;
}

.form-required {
  color: var(--red);
}

.form-input {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(0, 0, 0, .045);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 0 #0000;
  box-sizing: border-box;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  height: auto;
  line-height: 1.2;
  margin-bottom: 0;
  min-height: 3.35rem;
  outline: 0;
  padding: .95rem 3.5rem .95rem 1rem;
  transition: background-color .25s var(--ease-smooth), border-color .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth);
  vertical-align: middle;
  width: 100%;
}

select.form-input {
  background-image: none;
  cursor: pointer;
  padding-right: 4.75rem;
}

select.form-input::-ms-expand {
  display: none;
}

.form-input.is--textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-input:focus {
  background: var(--white);
  border-color: rgba(231, 113, 14, .5);
  box-shadow: none;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, .34);
}

.form-field-icon {
  align-items: center;
  border-radius: 8px;
  bottom: 1px;
  color: rgba(0, 0, 0, .28);
  display: flex;
  justify-content: center;
  max-height: 3.5rem;
  opacity: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
  position: absolute;
  right: 1px;
  top: 1px;
  user-select: none;
  width: 3.5rem;
}

.form-field-icon.is--error {
  color: var(--red);
}

.form-field-icon.is--select {
  right: 1.75rem;
}

.form-field-chevron {
  align-items: center;
  bottom: 1px;
  color: var(--ink);
  display: flex;
  justify-content: center;
  max-height: 3.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
  position: absolute;
  right: 1px;
  top: 1px;
  user-select: none;
  width: 3.5rem;
}

.radiocheck-group {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  width: 100%;
}

.radiocheck-field {
  display: block;
  margin: 0;
  position: relative;
}

.radio-input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.radiocheck-label {
  align-items: center;
  background: rgba(0, 0, 0, .045);
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(0, 0, 0, .72);
  cursor: pointer;
  display: flex;
  font-size: .95rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.2;
  min-height: 3.25rem;
  padding: .85rem 1rem;
  text-align: center;
  transition: background-color .25s var(--ease-smooth), border-color .25s var(--ease-smooth), color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

.radiocheck-field:hover .radiocheck-label {
  background: rgba(231, 113, 14, .08);
  border-color: rgba(231, 113, 14, .2);
}

.radio-input:focus-visible + .radiocheck-label {
  border-color: rgba(231, 113, 14, .5);
}

.radio-input:checked + .radiocheck-label {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.radiocheck-field-icon {
  display: none;
}

[data-validate].is--error .radiocheck-label {
  border-color: rgba(231, 113, 14, .55);
}

.form-divider {
  background-color: rgba(0, 0, 0, .1);
  height: 1px;
  width: 100%;
}

.form-submit {
  inset: 0;
  opacity: 0;
  position: absolute;
  visibility: hidden;
}

.form-submit-btn {
  align-items: center;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  justify-content: flex-start;
  overflow: hidden;
  padding: 1rem 1.15rem;
  position: relative;
  transition: background-color .25s var(--ease-smooth), border-color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

.form-submit-btn:hover {
  background: #c95f09;
  border-color: rgba(201, 95, 9, .35);
  transform: translateY(-2px);
}

.form-submit-btn-p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

[data-validate].is--error input,
[data-validate].is--error textarea,
[data-validate].is--error select {
  border-color: var(--red);
}

[data-validate].is--error .form-field-icon.is--error,
[data-validate].is--success .form-field-icon.is--success {
  opacity: 1;
}

[data-form-validate] select:has(option[value=""]:checked) {
  color: rgba(0, 0, 0, .34);
}

.legal-page {
  background:
    linear-gradient(115deg, rgba(231, 113, 14, .08) 0%, rgba(231, 113, 14, 0) 34%),
    var(--paper);
  min-height: 100vh;
  padding: 9rem 2rem 6rem;
}

.legal-page__layout {
  margin: 0 auto;
  max-width: 76rem;
}

.legal-page__head {
  margin-bottom: 3rem;
}

.legal-page__head h1 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: .95;
  margin-bottom: .85rem;
  max-width: 12ch;
}

.legal-page__head p {
  color: rgba(0, 0, 0, .58);
  font-size: .95rem;
  font-weight: 300;
  margin-bottom: 0;
}

.legal-page__grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(16rem, .72fr) minmax(0, 1.28fr);
}

.legal-summary {
  background: rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .06);
  padding: 1.25rem;
  position: sticky;
  top: 7rem;
}

.legal-summary h2 {
  font-size: clamp(1.18rem, 1.9vw, 1.65rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.legal-summary p {
  color: rgba(0, 0, 0, .64);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.legal-summary dl {
  display: grid;
  gap: .85rem;
  margin: 0;
}

.legal-summary div {
  border-top: 1px solid rgba(0, 0, 0, .1);
  display: grid;
  gap: .25rem;
  padding-top: .85rem;
}

.legal-summary dt {
  color: rgba(0, 0, 0, .48);
  font-size: .78rem;
  font-weight: 800;
}

.legal-summary dd {
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.legal-summary a,
.legal-card a {
  color: var(--red);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  background: rgba(255, 255, 255, .76);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .045);
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.legal-card h2 {
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: .9rem;
}

.legal-card p {
  color: rgba(0, 0, 0, .7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.68;
  margin-bottom: 0;
}

.quote-page {
  background:
    linear-gradient(115deg, rgba(231, 113, 14, .08) 0%, rgba(231, 113, 14, 0) 34%),
    var(--paper);
  padding: 5rem 2rem 6rem;
}

.quote-page__layout {
  margin: 0 auto;
  max-width: 76rem;
}

.quote-builder {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(14rem, .42fr) minmax(0, 1fr);
}

.quote-progress {
  background: rgba(255, 255, 255, .72);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .06);
  padding: 1.25rem;
  position: sticky;
  top: 7rem;
}

.quote-progress__bar {
  background: rgba(0, 0, 0, .08);
  border-radius: 999px;
  height: .4rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.quote-progress__bar span {
  background: var(--red);
  display: block;
  height: 100%;
  transition: width .35s var(--ease-smooth);
  width: 25%;
}

.quote-progress ol {
  display: grid;
  gap: .8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.quote-progress li {
  color: rgba(0, 0, 0, .52);
  font-size: .95rem;
  font-weight: 500;
  transition: color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

.quote-progress li.is-active {
  color: var(--ink);
  transform: translateX(.25rem);
}

.quote-wizard {
  background: rgba(255, 255, 255, .76);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .08);
  overflow: hidden;
}

.quote-wizard__track {
  display: flex;
  transition: transform .48s var(--ease-smooth);
  width: 100%;
}

.quote-step {
  border: 0;
  flex: 0 0 100%;
  margin: 0;
  min-width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.quote-step legend {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  padding: 0;
}

.quote-fields {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-fields label,
.quote-message,
.quote-range label {
  color: rgba(0, 0, 0, .72);
  display: grid;
  font-size: .86rem;
  font-weight: 500;
  gap: .55rem;
}

.quote-fields input,
.quote-message textarea {
  appearance: none;
  background: rgba(0, 0, 0, .045);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 3.35rem;
  outline: 0;
  padding: .95rem 1rem;
  transition: background-color .25s var(--ease-smooth), border-color .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth);
  width: 100%;
}

.quote-fields input:focus,
.quote-message textarea:focus {
  background: var(--white);
  border-color: rgba(231, 113, 14, .5);
}

.quote-fields input.is-invalid,
.quote-message textarea.is-invalid {
  border-color: rgba(231, 113, 14, .7);
}

.quote-choice-grid {
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.quote-choice {
  display: block;
  position: relative;
}

.quote-choice input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.quote-choice span {
  align-items: center;
  background: rgba(0, 0, 0, .045);
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(0, 0, 0, .72);
  cursor: pointer;
  display: flex;
  font-size: .95rem;
  font-weight: 500;
  justify-content: center;
  min-height: 3.25rem;
  padding: .85rem 1rem;
  text-align: center;
  transition: background-color .25s var(--ease-smooth), border-color .25s var(--ease-smooth), color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

.quote-choice:hover span {
  background: rgba(231, 113, 14, .08);
  border-color: rgba(231, 113, 14, .2);
}

.quote-choice input:focus-visible + span {
  border-color: rgba(231, 113, 14, .5);
}

.quote-choice input:checked + span {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.quote-range {
  margin-bottom: 1.25rem;
}

.quote-range label {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.quote-range strong {
  color: var(--red);
  font-weight: 700;
}

.quote-range input {
  accent-color: var(--red);
  width: 100%;
}

.quote-message {
  margin-top: .35rem;
}

.quote-message textarea {
  min-height: 8rem;
  resize: vertical;
}

.quote-actions {
  align-items: center;
  border-top: 0;
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
  padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
}

.quote-button {
  min-width: 7rem;
}

.quote-button--ghost {
  background: rgba(0, 0, 0, .045);
  border-color: transparent;
  color: var(--ink);
}

.quote-button[hidden] {
  display: none;
}

.quote-result {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: .3rem;
  margin-bottom: 1rem;
  padding: 1.25rem;
}

.quote-result span,
.quote-result small {
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
}

.quote-result strong {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
}

.quote-summary {
  display: grid;
  gap: .65rem;
}

.quote-summary__row {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(7rem, .42fr) minmax(0, 1fr);
  padding-top: .75rem;
}

.quote-summary__row span {
  color: rgba(0, 0, 0, .52);
  font-size: .86rem;
  font-weight: 700;
}

.quote-summary__row strong {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.35;
}

.quote-notice {
  background: rgba(231, 113, 14, .1);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 1rem;
  padding: 1rem;
}

.detail-hero {
  min-height: 44vh;
}

.detail-page {
  background:
    linear-gradient(115deg, rgba(231, 113, 14, .075) 0%, rgba(231, 113, 14, 0) 36%),
    var(--paper);
  padding: 5rem 2rem 6rem;
}

.detail-page__layout {
  display: grid;
  gap: 2rem;
  margin: 0 auto;
  max-width: 76rem;
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.detail-card,
.detail-note,
.detail-cta,
.detail-flow__item,
.area-list span {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .045);
}

.detail-card {
  display: flex;
  flex-direction: column;
  min-height: 13.5rem;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  transition: border-color .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

a.detail-card:hover {
  border-color: rgba(231, 113, 14, .28);
  box-shadow: 0 1.25rem 2.75rem rgba(0, 0, 0, .07);
  transform: translateY(-3px);
}

.detail-card span,
.detail-flow__item span {
  color: var(--red);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.detail-card h2 {
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 .85rem;
}

.detail-note h2,
.detail-cta h2 {
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 .85rem;
}

.detail-card p,
.detail-note p,
.detail-flow__item p {
  color: rgba(0, 0, 0, .68);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.62;
  margin-bottom: 0;
}

.detail-card--accent {
  background: rgba(231, 113, 14, .95);
  border-color: rgba(231, 113, 14, .2);
  color: var(--white);
}

.detail-card--accent span,
.detail-card--accent p {
  color: rgba(255, 255, 255, .86);
}

.detail-split {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(16rem, .65fr) minmax(0, 1.35fr);
}

.detail-split > div:first-child h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.12;
  max-width: 12ch;
}

.detail-flow {
  display: grid;
  gap: .85rem;
}

.detail-flow__item {
  align-items: start;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  padding: 1.15rem;
}

.detail-flow__item span {
  margin-bottom: 0;
}

.detail-flow__item h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .45rem;
}

.detail-note {
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.detail-note h2 {
  margin-top: 0;
}

.detail-note--compact {
  align-self: stretch;
}

.detail-cta {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.detail-cta h2 {
  margin: 0;
  max-width: 24rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.area-list span {
  box-shadow: none;
  color: rgba(0, 0, 0, .72);
  display: inline-flex;
  font-size: .95rem;
  font-weight: 500;
  padding: .8rem 1rem;
}

.editorial-page {
  overflow: hidden;
}

.editorial-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin: 0 auto;
  max-width: 76rem;
}

.editorial-intro {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(16rem, .62fr) minmax(0, 1.38fr);
}

.editorial-intro h2,
.assurance-feature h2 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  max-width: 11ch;
}

.editorial-intro figure,
.approach-photo,
.assurance-hero-grid figure,
.assurance-feature figure {
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.editorial-intro img,
.approach-photo img,
.assurance-hero-grid img,
.assurance-feature img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.editorial-intro figure {
  aspect-ratio: 16 / 10;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .08);
}

.approach-rhythm {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
}

.approach-step {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .045);
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.approach-step.is-large {
  grid-column: span 2;
  min-height: 22rem;
}

.approach-step.is-orange {
  background: var(--red);
  border-color: rgba(231, 113, 14, .2);
  color: var(--white);
  transform: translateY(3rem);
}

.approach-step span {
  color: var(--red);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: auto;
}

.approach-step.is-orange span,
.approach-step.is-orange p {
  color: rgba(255, 255, 255, .88);
}

.approach-step h2 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.16;
  margin: 2rem 0 .85rem;
  max-width: 18ch;
}

.approach-step p,
.assurance-feature p {
  color: rgba(0, 0, 0, .68);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0;
}

.approach-photo {
  aspect-ratio: 4 / 5;
  grid-row: span 2;
  transform: translateY(-2rem);
}

.process-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.process-line span {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(0, 0, 0, .7);
  font-size: .95rem;
  font-weight: 500;
  padding: .78rem 1rem;
}

.process-line span:nth-child(even) {
  background: rgba(231, 113, 14, .1);
  border-color: rgba(231, 113, 14, .18);
}

.editorial-cta {
  align-items: center;
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .045);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
}

.editorial-cta h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.18;
  margin: 0;
  max-width: 24rem;
}

.assurance-hero-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
}

.assurance-promise {
  align-content: center;
  display: grid;
  gap: .7rem;
}

.assurance-promise span {
  align-items: center;
  background: rgba(255, 255, 255, .64);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.18;
  min-height: 3.3rem;
  padding: .8rem 1rem .8rem 1.15rem;
}

.assurance-promise span::after {
  background: var(--red);
  border-radius: 999px;
  content: "";
  flex: none;
  height: .55rem;
  opacity: .85;
  width: .55rem;
}

.assurance-promise span:nth-child(even) {
  margin-left: clamp(1rem, 4vw, 3rem);
}

.assurance-promise span:nth-child(3) {
  margin-right: clamp(1rem, 4vw, 3rem);
}

.assurance-hero-grid figure {
  aspect-ratio: 4 / 3;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .08);
}

.assurance-feature {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .9fr);
}

.assurance-feature figure {
  aspect-ratio: 5 / 4;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .08);
}

.assurance-feature h2 {
  max-width: 13ch;
}

.assurance-flow {
  display: grid;
}

.assurance-flow article {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(4rem, .24fr) minmax(0, 1fr);
  padding: clamp(1.35rem, 3vw, 2.2rem) 0;
}

.assurance-flow article:last-child {
  border-bottom: 1px solid var(--line);
}

.assurance-flow span {
  color: var(--red);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.assurance-flow h2 {
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.16;
  margin-bottom: .55rem;
  max-width: 18ch;
}

.assurance-flow p {
  color: rgba(0, 0, 0, .66);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 42rem;
}

.process-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-panel {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .045);
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.process-panel--wide {
  grid-column: span 2;
}

.process-panel--dark {
  background: var(--ink);
  color: var(--white);
}

.process-panel h2 {
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.process-panel p,
.process-list {
  color: rgba(0, 0, 0, .68);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.62;
}

.process-panel--dark p {
  color: rgba(255, 255, 255, .78);
}

.process-list {
  display: grid;
  gap: .8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid var(--line);
  padding-top: .8rem;
}

.assurance-strip {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assurance-strip span {
  background: rgba(231, 113, 14, .94);
  border-radius: 8px;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  min-height: 6.5rem;
  padding: 1rem;
}

.assurance-strip span:nth-child(even) {
  background: var(--ink);
  transform: translateY(1.25rem);
}

.assurance-story {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, .8fr);
}

.assurance-story__main,
.assurance-story__stack span {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .045);
}

.assurance-story__main {
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.assurance-story__main h2 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.assurance-story__main p {
  color: rgba(0, 0, 0, .68);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0;
}

.assurance-story__stack {
  display: grid;
  gap: .75rem;
}

.assurance-story__stack span {
  align-items: center;
  color: rgba(0, 0, 0, .7);
  display: flex;
  font-size: .95rem;
  font-weight: 500;
  padding: 1rem;
}

.sticky-steps {
  background: var(--paper);
  min-height: 100dvh;
  overflow: clip;
  position: relative;
}

.sticky-steps__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 86rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.sticky-steps__collection {
  display: flex;
  min-height: 100dvh;
  position: relative;
}

.sticky-steps__list {
  display: flex;
  flex: 1;
  flex-flow: column;
  gap: 30dvh;
  padding-bottom: calc(50dvh - 7.5rem);
  padding-top: calc(50dvh - 7.5rem);
}

.sticky-steps__item {
  min-height: 15rem;
}

.sticky-steps__text {
  display: flex;
  flex-flow: column;
  gap: 1.4rem;
  padding-right: 6rem;
  width: 50%;
}

.sticky-steps__eyebrow {
  color: var(--red);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
}

.sticky-steps__h2 {
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 11ch;
}

.sticky-steps__p {
  color: rgba(0, 0, 0, .64);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 34rem;
}

.sticky-steps__media {
  height: 100%;
  padding-left: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.sticky-steps__sticky {
  align-items: center;
  display: flex;
  min-height: 100dvh;
  position: sticky;
  top: 0;
  width: 100%;
}

.sticky-steps__visual {
  aspect-ratio: 3 / 4;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sticky-steps__cover-image {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.site-footer {
  background: var(--paper);
  overflow: hidden;
  padding: 4rem 2rem 4.5rem;
  position: relative;
}

.site-footer::before {
  background: url("../assets/TwenseSjouwers_TextLogo@2x.png") center / contain no-repeat;
  content: "";
  height: clamp(5rem, 16vw, 12rem);
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: min(42rem, 78vw);
}

.footer-panel {
  backdrop-filter: blur(24px) saturate(1.15);
  background: rgba(231, 113, 14, .94);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42), inset 0 -1px 0 rgba(0, 0, 0, .08);
  color: var(--white);
  margin: 0 auto;
  max-width: 86rem;
  padding: 3.5rem 3.25rem 2.25rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-panel::before {
  background: rgba(255, 255, 255, .06);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.footer-panel > * {
  position: relative;
  z-index: 1;
}

.footer-panel__top {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(11rem, .7fr) minmax(0, 1.8fr);
}

.footer-brand {
  align-self: start;
  display: inline-flex;
  width: 11rem;
}

.footer-brand__logo {
  display: block;
  height: auto;
  width: 100%;
}

.footer-nav {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav__col h3 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .7rem;
}

.footer-nav__col a,
.footer-legal a,
.footer-social a {
  color: rgba(255, 255, 255, .84);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.2;
  transition: color .22s var(--ease-smooth);
}

.footer-nav__col a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--white);
}

.footer-panel__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 5rem;
  padding-top: 2rem;
}

.footer-legal {
  align-items: center;
  color: rgba(255, 255, 255, .84);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .95rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: .65rem;
}

.footer-social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.footer-social svg {
  fill: none;
  height: 1.05rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 1.05rem;
}

.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, .78);
}

@media screen and (max-width: 900px) {
  .hero__layout {
    align-items: center;
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }

  .hero-calculator {
    max-width: 28rem;
  }

  .service-grid,
  .assurance-grid,
  .quote-form,
  .contact-page__grid,
  .detail-grid,
  .detail-grid--three,
    .detail-grid--assurance,
    .process-board,
    .assurance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__head,
  .section--split,
  .intro-block,
  .area-layout,
  .quote-band,
  .detail-split,
    .assurance-story,
    .editorial-intro,
    .approach-rhythm,
    .assurance-hero-grid,
    .assurance-feature {
    grid-template-columns: 1fr;
  }

  .approach-step.is-large {
    grid-column: auto;
  }

  .approach-photo,
  .approach-step.is-orange,
  .assurance-promise span:nth-child(even) {
    transform: none;
  }

  .process-panel--wide {
    grid-column: auto;
  }

  .intro-block {
    gap: 2rem;
  }

  .footer-panel__top,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 12rem;
  }

  .service-card__icon {
    margin-bottom: 2rem;
  }

  .quote-band {
    align-items: start;
  }

  .sticky-steps__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sticky-steps__list {
    gap: 7.5rem;
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }

  .sticky-steps__text {
    padding-bottom: 2rem;
    padding-right: 0;
    width: 100%;
  }

  .sticky-steps__media {
    height: auto;
    padding-left: 0;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .sticky-steps__sticky {
    min-height: auto;
    position: relative;
    top: auto;
  }

  .sticky-steps__visual {
    aspect-ratio: 16 / 11;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    min-height: 110vh;
  }

  .hero__layout {
    padding: 7rem 1.25rem 5rem;
  }

  .hero-calculator {
    padding: 1rem;
    width: 100%;
  }

  .service-grid,
  .assurance-grid,
  .quote-form,
  .contact-page__grid,
  .legal-page__grid,
  .quote-builder,
  .quote-fields,
  .quote-choice-grid,
  .contact-form,
  .radiocheck-group,
  .detail-grid,
  .detail-grid--three,
    .detail-grid--assurance,
    .process-board,
    .assurance-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .contact-page {
    padding: 3.5rem 1.25rem 3rem;
  }

  .contact-hero {
    min-height: 42vh;
  }

  .contact-hero__content {
    padding: 6.5rem 1.25rem 2.5rem;
  }

  .legal-page {
    padding: 7rem 1.25rem 3rem;
  }

  .legal-summary {
    position: static;
  }

  .quote-page {
    padding: 3.5rem 1.25rem 3rem;
  }

  .detail-page {
    padding: 3.5rem 1.25rem 3rem;
  }

  .detail-card {
    min-height: 12rem;
  }

  .detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-cta .button {
    width: 100%;
  }

  .editorial-page {
    padding-top: 3.5rem;
  }

  .editorial-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .editorial-cta .button {
    width: 100%;
  }

  .assurance-promise {
    gap: .55rem;
  }

  .assurance-promise span,
  .assurance-promise span:nth-child(even),
  .assurance-promise span:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }

  .assurance-flow article {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .assurance-flow h2 {
    max-width: 100%;
  }

  .quote-form .radiocheck-group {
    grid-template-columns: 1fr;
  }

  .assurance-strip span:nth-child(even) {
    transform: none;
  }

  .quote-progress {
    position: static;
  }

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

  .quote-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-button {
    width: 100%;
  }

  .quote-summary__row {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .site-footer {
    padding: 1.25rem 1.25rem 2rem;
  }

  .footer-panel {
    border-radius: 18px;
    padding: 2rem 1.25rem 1.25rem;
  }

  .footer-panel__top {
    gap: 2.5rem;
  }

  .footer-panel__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 3rem;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: .85rem;
  }

  .sticky-steps__text {
    gap: 1rem;
  }
}

@media screen and (min-width: 901px) {
  [data-sticky-steps-item-status] .sticky-steps__visual {
    opacity: 0;
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
    visibility: hidden;
  }

  [data-sticky-steps-item-status="before"] .sticky-steps__visual,
  [data-sticky-steps-item-status="active"] .sticky-steps__visual {
    opacity: 1;
    visibility: visible;
  }

  [data-sticky-steps-item-status] .sticky-steps__text {
    opacity: .25;
    transition: opacity .5s ease-in-out;
  }

  [data-sticky-steps-item-status="active"] .sticky-steps__text {
    opacity: 1;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

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

@keyframes hero-image {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scroll-rise {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

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

@keyframes scroll-image {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(1.025);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
