/* Arial uses system font rendering; no third-party font requests. */
:root {
  --navy: #242424;
  --teal: #606060;
  --teal-dark: #4b4b4b;
  --ink: #2a2a2a;
  --muted: #626262;
  --pale: #f8f8f8;
  --mint: #f4f4f4;
  --line: #e4e4e4;
  --white: #fff;
  --radius: 12px;
  --max: 1240px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: "Bukura Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: var(--muted);
  margin: 0 0 1.1rem;
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.5rem, 4.1vw, 4.1rem);
  font-weight: 650;
}
h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 650;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
em {
  font-style: normal;
  color: var(--teal);
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #6a6a6a;
  outline-offset: 4px;
}
button,
a {
  touch-action: manipulation;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
label {
  display: block;
}
input:not([type="checkbox"]),
textarea,
select {
  width: 100%;
  border: 1px solid #c4c4c4;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 13px;
  line-height: 1.4;
}
input[type="checkbox"] {
  accent-color: var(--teal);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 2px 0;
}
textarea {
  resize: vertical;
}
button {
  border: 0;
}
input[aria-invalid="true"] {
  border: 2px solid #494949;
}
small,
.small {
  font-size: 0.85rem;
  line-height: 1.6;
}
.container {
  width: calc(100% - 96px);
  max-width: var(--max);
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 19px;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 6px;
  font-weight: 650;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    color 0.15s;
}
.button svg {
  flex-shrink: 0;
}
.primary {
  background: var(--teal);
  color: #fff;
}
.primary:hover {
  background: var(--teal-dark);
}
.secondary {
  border-color: #cbcbcb;
  background: #fff;
  color: var(--navy);
}
.secondary:hover {
  background: var(--pale);
}
.ghost {
  background: transparent;
  color: var(--navy);
}
.small-button {
  min-height: 44px;
  padding: 10px 17px;
}
.white-button {
  background: #fff;
  color: var(--teal);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 650;
  font-size: 0.92rem;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
}
.text-button {
  background: none;
  color: var(--teal);
  text-decoration: underline;
  padding: 10px 0;
  min-height: 44px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.skip {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: #fff;
  color: var(--navy);
  padding: 14px;
}
.skip:focus {
  top: 12px;
}
.topline {
  background: var(--navy);
  color: #efefef;
  font-size: 0.72rem;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 33px;
}
.topline span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 30;
  border-bottom: 1px solid #efefef;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}
.brand-icon {
  height: 43px;
  width: 43px;
  border: 1.5px solid var(--teal);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.brand-sub {
  display: block;
  letter-spacing: 0.26em;
  font-size: 0.58rem;
  font-weight: 650;
  margin-top: 9px;
  margin-left: 3px;
}
.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 0.84rem;
  font-weight: 550;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.desktop-nav a:hover {
  color: var(--teal);
}
.header-actions {
  gap: 22px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 650;
  min-height: 44px;
}
.mobile-menu,
.mobile-bar {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  padding-block: 57px 64px;
}
.hero-copy {
  padding-block: 12px;
}
.location-label {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero h1 {
  font-size: clamp(2.45rem, 3.8vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 23px;
}
.hero-copy > p {
  font-size: 1rem;
  max-width: 510px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-note {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 18px;
}
.hero-note svg {
  color: var(--teal);
  margin-top: 3px;
}
.hero-image {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 510px;
  overflow: hidden;
  border-radius: 80px 12px 12px 12px;
  background: #ebebeb;
}
.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  position: absolute;
  inset: 0;
}
.image-label {
  position: absolute;
  bottom: 50px;
  left: 25px;
  right: 25px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 30px #24242415;
}
.image-label strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: -0.015em;
}
.image-label span:not(.image-label-icon) {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
.image-label-icon {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.hero-image figcaption {
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 20px;
  font-size: 0.62rem;
  color: #fff;
  text-shadow: 0 1px 6px #000;
  background: #212121b3;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.trust-band {
  border-block: 1px solid var(--line);
  background: #fafafa;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 27px;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 32px;
  border-left: 1px solid var(--line);
}
.trust-grid > div:first-child {
  padding-left: 0;
  border: 0;
}
.trust-grid > div:last-child {
  padding-right: 0;
}
.trust-grid svg {
  color: var(--teal);
  height: 28px;
  width: 28px;
}
.trust-grid strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
}
.trust-grid small {
  font-size: 0.73rem;
  color: var(--muted);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading p {
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-services {
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 19px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.service-icon {
  height: 49px;
  width: 49px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--mint);
  color: var(--teal);
}
.card-number {
  color: #646464;
  font-size: 0.75rem;
}
.service-card .eyebrow {
  font-size: 0.6rem;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.32rem;
}
.service-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.service-card .text-link {
  font-size: 0.81rem;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  justify-content: space-between;
}
.process-section {
  background: var(--navy);
  color: #fff;
  padding: 65px 0;
}
.process-section .eyebrow {
  color: #cecece;
}
.process-section h2,
.process-section h3 {
  color: #fff;
}
.process-section h2 {
  font-size: 2.3rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 43px;
}
.step-number {
  color: #d0d0d0;
  display: block;
  border-bottom: 1px solid #ffffff28;
  padding-bottom: 16px;
  margin-bottom: 22px;
  font-size: 0.86rem;
}
.process-step h3 {
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.process-step p {
  color: #cacaca;
  font-size: 0.85rem;
  line-height: 1.7;
}
.process-footnote {
  color: #cacaca;
  font-size: 0.75rem;
  margin: 26px 0 0;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pathway {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--mint);
  min-height: 226px;
  border: 1px solid transparent;
}
.pathway:hover {
  border-color: var(--teal);
}
.pathway:nth-child(2) {
  background: var(--pale);
}
.pathway:nth-child(3) {
  background: #f6f6f6;
}
.pathway > svg:first-child {
  color: var(--teal);
  margin-bottom: 25px;
}
.pathway h3 {
  font-size: 1.35rem;
}
.pathway p {
  font-size: 0.9rem;
  max-width: 270px;
}
.pathway > svg:last-child {
  position: absolute;
  right: 22px;
  top: 28px;
  color: var(--teal);
}
.coverage-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fdfdfd;
}
.coverage-section > div {
  padding: 45px 55px;
}
.coverage-mark {
  background: var(--mint);
  color: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  min-height: 290px;
}
.coverage-mark > span {
  font-size: 2.6rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  margin-left: 0.18em;
}
.coverage-mark small {
  font-size: 0.78rem;
}
.coverage-section h2 {
  font-size: 2.25rem;
}
.coverage-section p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.prep-section {
  padding-top: 55px;
}
.prep-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
  background: #f9f9f9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.prep-icons {
  display: flex;
  gap: 9px;
  color: var(--teal);
}
.prep-strip h2 {
  font-size: 1.07rem;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.prep-strip p {
  font-size: 0.83rem;
  margin: 0;
  max-width: 650px;
}
.prep-strip .text-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.8rem;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 66px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--teal);
  font-size: 1.25rem;
  line-height: 1;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  font-size: 0.92rem;
  padding: 0 30px 8px 0;
  line-height: 1.8;
}
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 54px;
  margin-bottom: 80px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
}
.final-cta .eyebrow {
  color: #ffffff;
  font-size: 0.65rem;
  margin-bottom: 15px;
}
.final-cta h2 {
  color: #fff;
  font-size: 2.25rem;
}
.final-cta p {
  color: #ececec;
  margin: 0;
  font-size: 0.92rem;
}
.final-cta .button {
  flex-shrink: 0;
}
.site-footer {
  background: var(--navy);
  color: #e8e8e8;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 1.15fr;
  gap: 50px;
  padding-bottom: 50px;
}
.light {
  color: #fff;
  margin-bottom: 23px;
}
.footer-grid p {
  color: #cecece;
  font-size: 0.86rem;
}
.footer-grid .small {
  font-size: 0.76rem;
}
.footer-grid h2 {
  font-size: 0.83rem;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 17px;
}
.footer-grid > div > a:not(.wordmark) {
  display: block;
  width: fit-content;
  font-size: 0.83rem;
  min-height: 34px;
  padding: 5px 0;
}
.footer-grid a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid #ffffff20;
  font-size: 0.72rem;
  color: #cecece;
  gap: 20px;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}
.page-hero {
  padding-block: 65px 48px;
  max-width: var(--max);
}
.page-hero h1 {
  max-width: 930px;
}
.page-hero > p {
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.85;
}
.page-hero .small {
  font-size: 0.84rem;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.breadcrumbs a {
  text-decoration: underline;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.pills a {
  border: 1px solid var(--line);
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.9rem;
}
.pills a:hover {
  background: var(--mint);
}
.category-section {
  padding-bottom: 58px;
  scroll-margin-top: 110px;
}
.category-section > h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.detail-grid article section {
  margin-bottom: 40px;
}
.detail-grid h2 {
  font-size: 1.6rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 13px 0;
}
.check-list svg {
  color: var(--teal);
  margin-top: 4px;
}
.help-card {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.help-card h2 {
  font-size: 1.6rem;
}
.help-card .button {
  margin: 6px 0 20px;
}
.text-page {
  padding-bottom: 70px;
}
.prose {
  max-width: 800px;
}
.prose h2 {
  font-size: 1.65rem;
  margin-top: 35px;
}
.prose p {
  line-height: 1.9;
}
.prose a:not(.button),
.checkbox-label a {
  color: var(--teal);
  text-decoration: underline;
}
.legal-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.8;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.sector-grid a {
  padding: 24px;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 650;
  font-size: 1.2rem;
}
.sector-grid span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 10px;
  color: var(--teal);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-grid .help-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-grid h2 {
  font-size: 1.6rem;
}
.contact-grid > div > h2:not(:first-child) {
  margin-top: 30px;
}
.quote-page {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  padding-block: 60px 90px;
  align-items: start;
}
.quote-intro h1 {
  font-size: 3rem;
}
.quote-intro > p {
  line-height: 1.9;
}
.quote-reassurance {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  margin-top: 35px;
  font-size: 0.9rem;
}
.quote-reassurance ul {
  padding-left: 20px;
  line-height: 2.2;
  color: var(--muted);
}
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 45px #24242405;
  min-width: 0;
}
.form-panel h2 {
  font-size: 1.65rem;
}
.form-panel h2:focus {
  outline: none;
}
.form-panel p {
  font-size: 0.91rem;
}
.form-progress {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 23px;
}
.form-progress li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.69rem;
  color: var(--muted);
}
.form-progress li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid #cacaca;
  border-radius: 50%;
}
.form-progress li[aria-current="step"] {
  color: var(--teal);
  font-weight: 700;
}
.form-progress li[aria-current="step"] span {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.service-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  min-height: 58px;
  padding: 11px 13px;
  font-size: 0.82rem;
  cursor: pointer;
}
.choice.selected {
  background: var(--mint);
  border-color: var(--teal);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.extras {
  margin-top: 24px;
}
.field {
  margin-bottom: 20px;
  min-width: 0;
}
.field label,
.admin-form label,
.admin-card > label,
.login-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.field label span {
  color: var(--muted);
  font-weight: 400;
}
.field small {
  display: block;
  color: var(--muted);
  margin-top: 7px;
  font-size: 0.77rem;
}
.field-error {
  color: #494949;
  display: block;
  font-size: 0.82rem;
  margin-top: 7px;
}
.notice {
  background: var(--pale);
  border-left: 3px solid var(--teal);
  padding: 14px 18px;
  font-size: 0.84rem !important;
  border-radius: 0 6px 6px 0;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}
.notice h2 {
  font-size: 1.3rem;
}
.notice p:last-child {
  margin: 0;
}
.error-notice {
  background: #f3f3f3;
  color: #404040;
  padding: 16px;
  border-left: 3px solid #494949;
  font-size: 0.9rem;
  margin: 15px 0;
}
.error-notice a {
  text-decoration: underline;
}
.error-notice p {
  margin: 10px 0 0;
}
.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}
.form-navigation > .small {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}
.form-whatsapp {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 27px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.form-whatsapp > .button {
  background: none;
  color: var(--teal);
  padding: 5px;
  min-height: 44px;
  font-size: 0.8rem;
}
.form-whatsapp > .button > svg:first-child {
  display: none;
}
.review {
  padding: 20px;
  background: var(--mint);
  border-radius: 8px;
  margin-bottom: 24px;
}
.review-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.review h3 {
  font-size: 1rem;
  margin: 0;
}
.review dl,
.admin-dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  font-size: 0.86rem;
  margin: 16px 0 0;
}
.review dt,
.admin-dl dt {
  color: var(--muted);
  text-transform: capitalize;
}
.review dd,
.admin-dl dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.review-extra {
  display: contents;
}
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem !important;
  line-height: 1.7;
  font-weight: 400 !important;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.success-panel {
  text-align: center;
  padding-block: 50px;
}
.success-panel > svg {
  color: var(--teal);
  margin-bottom: 20px;
}
.success-panel .button {
  margin: 7px;
}
.contact-dialog {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  width: calc(100% - 32px);
  max-width: 550px;
  max-height: calc(100dvh - 40px);
  color: var(--ink);
  box-shadow: 0 20px 80px #0003;
  overscroll-behavior: contain;
}
.contact-dialog::backdrop {
  background: #1a1a1aa8;
}
.dialog-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
.dialog-heading h2 {
  font-size: 1.6rem;
}
.icon-button {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  background: var(--mint);
  border-radius: 50%;
  color: var(--teal);
}
.contact-dialog blockquote {
  margin: 20px 0;
  padding: 20px;
  background: var(--mint);
  font-size: 0.95rem;
  line-height: 1.8;
  border-radius: 8px;
}
.contact-dialog .button {
  margin-top: 8px;
}
.offline-banner {
  position: sticky;
  top: 90px;
  z-index: 31;
  background: #f2f2f2;
  border-bottom: 1px solid #9e9e9e;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.84rem;
  color: #3c3c3c;
}
.runtime-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 35;
  max-width: 350px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 35px #24242430;
}
.runtime-panel p {
  font-size: 0.84rem;
}
.runtime-panel .button {
  font-size: 0.8rem;
}
.privacy-controls {
  background: var(--navy);
  color: #cecece;
  padding: 0 48px 18px;
  text-align: center;
  font-size: 0.75rem;
}
.privacy-controls button {
  background: none;
  color: inherit;
  text-decoration: underline;
  min-height: 44px;
  padding-inline: 12px;
}
.privacy-controls details {
  max-width: 600px;
  margin: auto;
}
.privacy-controls summary {
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.privacy-controls p {
  color: #cecece;
}
.error-page {
  padding-block: 100px;
}
.error-page .button {
  margin: 12px 12px 12px 0;
}
.login-page {
  min-height: 100dvh;
  background: var(--pale);
  display: grid;
  place-items: center;
  padding: 28px;
}
.login-form {
  width: 100%;
  max-width: 450px;
  display: grid;
  gap: 18px;
}
.login-form h1 {
  font-size: 2rem;
}
.login-form input {
  margin: 7px 0 18px;
}
.login-form .button {
  width: 100%;
}
.mfa-secret {
  display: block;
  background: var(--pale);
  padding: 16px;
  overflow-wrap: anywhere;
  margin: 20px 0;
}
.admin-shell {
  background: #f8f8f8;
  min-height: 100vh;
}
.admin-header {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  background: #fff;
  padding: 22px 40px;
  border-bottom: 1px solid var(--line);
}
.admin-header > span {
  font-size: 0.83rem;
  margin-left: auto;
  overflow-wrap: anywhere;
}
.admin-header .wordmark {
  font-size: 1.8rem;
}
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.admin-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.9rem;
  color: var(--teal);
}
.admin-main {
  max-width: 1440px;
  padding: 35px 40px 70px;
  margin: auto;
}
.admin-main h1 {
  font-size: 2.4rem;
}
.admin-main h2 {
  font-size: 1.4rem;
}
.admin-main > .section-heading {
  align-items: center;
}
.admin-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 25px;
  margin: 20px 0;
  min-width: 0;
}
.admin-card p {
  font-size: 0.88rem;
}
.admin-card a:not(.button) {
  color: var(--teal);
  text-decoration: underline;
}
.inbox-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 15px;
}
.inbox-filters label {
  flex: 1;
  min-width: 160px;
  font-size: 0.82rem;
  font-weight: 550;
}
.inbox-filters input,
.inbox-filters select {
  margin-top: 6px;
}
.table-scroll {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.84rem;
  text-align: left;
}
th {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 550;
  background: #f9f9f9;
}
th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
td small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 5px;
  background: var(--mint);
  color: var(--teal) !important;
  font-size: 0.78rem;
  white-space: nowrap;
}
.empty-state {
  padding: 55px 20px;
  text-align: center;
}
.lead-workspace {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.admin-form {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 20px;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  margin: 8px 0 12px;
}
.admin-form textarea {
  min-height: 95px;
}
.admin-form .checkbox-label input {
  margin: 2px 0;
}
.admin-form .checkbox-label {
  margin-bottom: 18px;
}
.admin-form .button {
  margin-top: 12px;
}
.record {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 0.9rem;
}
.record p {
  margin: 10px 0;
}
.admin-dl {
  grid-template-columns: 140px 1fr;
}
.code-editor {
  font-family: Consolas, monospace;
  font-size: 0.83rem;
  tab-size: 2;
  margin: 12px 0;
  line-height: 1.65;
  white-space: pre;
}
.draft-preview {
  border: 2px dashed var(--teal);
  padding: 25px;
  margin-top: 25px;
}
.draft-preview h3 {
  font-size: 1.1rem;
  text-transform: capitalize;
  margin-top: 24px;
}
.calendar-item {
  display: flex;
  gap: 25px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 15px 0;
  padding: 22px;
}
.calendar-date {
  background: var(--mint);
  color: var(--teal);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
}
.calendar-date strong {
  font-size: 1.7rem;
}
.calendar-date span {
  font-size: 0.75rem;
}
.calendar-item p {
  margin: 0;
  font-size: 0.88rem;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
  .hero-image {
    min-height: 565px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-phone {
    display: none;
  }
  .desktop-nav {
    gap: 21px;
  }
  .hero {
    gap: 32px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-image {
    min-height: 470px;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    padding: 12px 15px;
    font-size: 0.81rem;
  }
  .trust-grid > div {
    padding-inline: 20px;
  }
  .trust-grid strong {
    font-size: 0.78rem;
  }
  .home-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-page {
    gap: 35px;
    grid-template-columns: 0.65fr 1fr;
  }
  .quote-intro h1 {
    font-size: 2.5rem;
  }
  .form-panel {
    padding: 24px;
  }
  .footer-grid {
    gap: 30px;
  }
  .prep-strip {
    flex-wrap: wrap;
  }
  .prep-strip .text-link {
    margin-left: 0;
  }
  .hero-note {
    font-size: 0.7rem;
  }
  .coverage-section > div {
    padding: 35px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 85px;
    scroll-padding-bottom: calc(85px + env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
  .container {
    width: calc(100% - 40px);
  }
  .topline .container {
    justify-content: center;
    font-size: 0.68rem;
    min-height: 29px;
  }
  .topline span:last-child {
    display: none;
  }
  .header-inner {
    min-height: 76px;
    gap: 15px;
  }
  .wordmark {
    font-size: 1.85rem;
  }
  .brand-icon {
    width: 36px;
    height: 36px;
  }
  .brand-icon svg {
    width: 23px;
  }
  .brand-sub {
    font-size: 0.51rem;
    margin-top: 7px;
  }
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .mobile-menu {
    display: block;
    font-size: 0.83rem;
  }
  .mobile-menu summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .mobile-menu nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 15px #24242414;
  }
  .mobile-menu nav a {
    display: block;
    padding: 12px;
    min-height: 44px;
  }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 40;
    box-shadow: 0 -5px 20px #24242408;
  }
  .mobile-action {
    background: #fff;
    color: var(--teal);
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 48px;
    font-size: 0.67rem;
    font-weight: 600;
    border-right: 1px solid var(--line);
  }
  .mobile-action:last-child {
    border: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 35px 40px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 8vw, 3.7rem);
    max-width: 620px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy > p {
    font-size: 0.95rem;
    max-width: 550px;
  }
  .hero .eyebrow {
    font-size: 0.63rem;
    margin-bottom: 18px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-actions .button {
    min-height: 48px;
    padding: 12px 15px;
    font-size: 0.81rem;
  }
  .hero-note {
    font-size: 0.71rem;
    margin-top: 17px;
  }
  .hero-image {
    min-height: 340px;
    max-height: 400px;
    border-radius: 55px 10px 10px 10px;
  }
  .hero-image > img {
    object-position: center 53%;
  }
  .image-label {
    bottom: 44px;
    left: 17px;
    right: 17px;
    padding: 15px 18px;
  }
  .hero-image figcaption {
    font-size: 0.56rem;
    left: 14px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 25px;
  }
  .trust-grid > div,
  .trust-grid > div:first-child {
    padding: 0;
    border: 0;
    gap: 15px;
  }
  .trust-grid strong {
    font-size: 0.83rem;
  }
  .trust-grid small {
    font-size: 0.74rem;
  }
  .trust-grid svg {
    height: 24px;
    width: 24px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    margin-bottom: 18px;
  }
  .section-heading p br {
    display: none;
  }
  .service-grid,
  .home-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service-card {
    padding: 20px 17px 15px;
  }
  .service-card-top {
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.8rem;
  }
  .service-card .text-link {
    font-size: 0.72rem;
  }
  .service-icon {
    height: 43px;
    width: 43px;
  }
  .service-icon svg {
    height: 21px;
  }
  .process-section {
    padding-block: 45px;
  }
  .process-section h2 {
    font-size: 2rem;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .step-number {
    margin-bottom: 17px;
    padding-bottom: 12px;
  }
  .process-step h3 {
    font-size: 1.05rem;
  }
  .process-step p {
    font-size: 0.82rem;
  }
  .process-footnote {
    font-size: 0.73rem;
  }
  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pathway {
    min-height: 185px;
    padding: 25px;
  }
  .pathway > svg:first-child {
    margin-bottom: 20px;
  }
  .pathway p {
    max-width: 90%;
    margin-bottom: 0;
  }
  .coverage-section {
    grid-template-columns: 1fr;
  }
  .coverage-section > div {
    padding: 30px;
  }
  .coverage-mark {
    min-height: 230px;
  }
  .coverage-section h2 {
    font-size: 2rem;
  }
  .prep-section {
    padding-top: 35px;
  }
  .prep-strip {
    padding: 23px;
    gap: 15px;
  }
  .prep-strip h2 {
    font-size: 1.05rem;
    line-height: 1.4;
  }
  .prep-icons svg {
    height: 22px;
  }
  .faq-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section .text-link {
    margin-bottom: 10px;
  }
  .faq-list summary {
    font-size: 0.9rem;
  }
  .faq-list p {
    font-size: 0.85rem;
  }
  .final-cta {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-bottom: 45px;
  }
  .final-cta h2 {
    font-size: 1.95rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-bottom: 30px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid p br {
    display: none;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
    max-width: 400px;
  }
  .footer-grid a:not(.wordmark) {
    min-height: 40px !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    padding-block: 20px;
  }
  .footer-bottom > div {
    gap: 22px;
  }
  .page-hero {
    padding-block: 40px 30px;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .page-hero > p {
    font-size: 1rem;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .detail-grid h2 {
    font-size: 1.5rem;
  }
  .detail-grid article section {
    margin-bottom: 30px;
  }
  .help-card {
    padding: 25px;
  }
  .sector-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sector-grid a {
    padding: 20px;
    font-size: 1.05rem;
  }
  .sector-grid span {
    font-size: 0.78rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .quote-page {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 35px 50px;
  }
  .quote-intro h1 {
    font-size: 2.5rem;
  }
  .quote-reassurance {
    display: none;
  }
  .form-panel {
    padding: 22px 18px;
  }
  .form-progress {
    gap: 10px;
    justify-content: space-between;
  }
  .form-progress li {
    font-size: 0.63rem;
    gap: 5px;
  }
  .form-progress li span {
    width: 22px;
    height: 22px;
  }
  .form-panel h2 {
    font-size: 1.5rem;
  }
  .form-grid {
    gap: 12px;
  }
  .form-navigation {
    gap: 10px;
  }
  .form-navigation > .small {
    font-size: 0.65rem;
    max-width: 125px;
  }
  .form-navigation > .small svg {
    display: none;
  }
  .form-navigation .button {
    font-size: 0.8rem;
    padding: 12px 17px;
  }
  .service-choices {
    gap: 8px;
  }
  .choice {
    font-size: 0.76rem;
    padding: 10px;
  }
  .choice input {
    height: 17px;
    width: 17px;
  }
  .review {
    padding: 16px;
  }
  .review dl {
    grid-template-columns: 100px 1fr;
    font-size: 0.8rem;
  }
  .review-heading {
    align-items: start;
  }
  .review h3 {
    font-size: 0.9rem;
  }
  .review .text-button {
    padding: 0;
    font-size: 0.76rem;
    min-height: 30px;
  }
  .form-whatsapp {
    gap: 7px;
    font-size: 0.72rem;
  }
  .contact-dialog {
    padding: 24px;
  }
  .contact-dialog h2 {
    font-size: 1.4rem;
  }
  .offline-banner {
    top: 76px;
    font-size: 0.76rem;
  }
  .runtime-panel {
    bottom: calc(82px + env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    max-width: none;
  }
  .privacy-controls {
    padding-inline: 20px;
  }
  .admin-header {
    padding: 17px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .admin-header > span {
    order: 3;
    width: 100%;
    font-size: 0.78rem;
  }
  .admin-header .text-button {
    margin-left: auto;
  }
  .admin-nav {
    padding: 8px 20px;
    gap: 6px 20px;
  }
  .admin-nav a {
    font-size: 0.79rem;
  }
  .admin-main {
    padding: 25px 20px 40px;
  }
  .admin-main h1 {
    font-size: 2rem;
  }
  .admin-main > .section-heading .button-row {
    margin-top: 20px;
  }
  .inbox-filters label {
    min-width: 125px;
  }
  .admin-card {
    padding: 20px;
  }
  .lead-workspace {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .admin-dl {
    grid-template-columns: 100px 1fr;
    font-size: 0.8rem;
  }
  .admin-form .form-grid {
    grid-template-columns: 1fr;
  }
  .calendar-item {
    gap: 15px;
    padding: 16px;
  }
  .calendar-item h2 {
    font-size: 1.05rem;
  }
  .calendar-item p {
    font-size: 0.8rem;
  }
  .calendar-date {
    padding: 8px 14px;
  }
  .error-page {
    padding-block: 55px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 2.38rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-image {
    min-height: 300px;
  }
  .service-grid,
  .home-services {
    grid-template-columns: 1fr;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .form-grid,
  .service-choices {
    grid-template-columns: 1fr;
  }
  .form-progress li {
    flex-direction: column;
    text-align: center;
    font-size: 0.62rem;
  }
  .form-progress {
    gap: 6px;
  }
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    gap: 20px;
  }
  .process-step h3 {
    font-size: 1rem;
  }
  .topline .container {
    font-size: 0.62rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 15px 0;
}
.photo-previews img {
  object-fit: cover;
  border-radius: 8px;
}
.photo-upload {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-block: 20px;
}
.photo-upload input {
  font-size: 0.85rem;
}
.photo-upload h3 {
  font-size: 1.1rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.proof-grid img {
  border-radius: 10px;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 20px;
}
.proof-grid figure {
  margin: 0;
}
.cms-new {
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
  padding-bottom: 20px;
}
.cms-new summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 650;
}
.cms-new input,
.cms-new select {
  margin: 10px 0;
}
.cms-new .button {
  margin-top: 15px;
}
html[data-keyboard-open] .mobile-bar {
  display: none;
}
@media print {
  .site-header,
  .mobile-bar,
  .runtime-panel,
  .admin-nav,
  .admin-form,
  .privacy-controls {
    display: none !important;
  }
  body {
    padding: 0;
    background: #fff;
  }
  .container {
    width: 100%;
  }
}

[hidden] {
  display: none !important;
}
.slideshow-controls {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: #fff;
  background: #181818;
  border: 1px solid #777;
  border-radius: 9px;
  z-index: 2;
}
.slideshow-controls button {
  background: transparent;
  color: #fff;
  min-height: 44px;
  min-width: 44px;
  border: 0;
  border-radius: 5px;
  padding: 8px;
  cursor: pointer;
}
.slideshow-controls button:hover {
  background: #444;
}
.slideshow-controls button:focus-visible {
  outline: 2px solid white;
  outline-offset: -3px;
}
.slideshow-controls span {
  font-size: 0.75rem;
  padding-inline: 4px;
}
.hero-image .image-label-icon {
  flex-shrink: 0;
}
@media (max-width: 1100px) and (min-width: 761px) {
  .desktop-nav {
    gap: 15px;
  }
  .header-actions .small-button {
    display: none;
  }
}
@media (max-width: 400px) {
  .slideshow-controls {
    top: 10px;
    right: 10px;
    gap: 0;
  }
  .slideshow-controls [data-slide-pause] {
    font-size: 0.72rem;
  }
  .image-label strong {
    font-size: 0.95rem;
  }
}
:root {
  --teal: #303030;
  --teal-dark: #111;
  --navy: #181818;
  --ink: #262626;
  --muted: #606060;
  --pale: #f5f5f5;
  --mint: #f1f1f1;
  --line: #dedede;
}
html {
  scroll-padding-top: 110px;
}
body {
  overflow-wrap: break-word;
}
button,
input,
select,
textarea {
  font: inherit;
}
input,
select,
textarea {
  max-width: 100%;
}
.offline-banner {
  padding: 12px 24px;
  background: #eee;
  color: #222;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.static-check {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.static-check input {
  width: auto;
}
.static-account .button-row {
  flex-wrap: wrap;
}
@media (max-width: 1050px) {
  .header-phone {
    display: none;
  }
}
@media (max-width: 760px) {
  /* Keep the bar hidden when focus moves from a field onto a form button. */
  body:has(form:focus-within, input:focus, textarea:focus, select:focus)
    .mobile-bar {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.static-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 64px;
  padding-bottom: 70px;
}
.static-detail article h2 {
  font-size: 1.75rem;
  margin-top: 36px;
}
.static-detail aside {
  align-self: start;
}
.static-detail aside .button,
.static-contact-actions .button {
  display: flex;
  margin-bottom: 14px;
}
.static-detail aside p.small {
  margin-top: 20px;
}
.static-services {
  padding-top: 0;
}
.static-install {
  background: transparent;
  color: white;
  text-decoration: underline;
  min-height: 44px;
}
.static-update {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 30px #0f274733;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 32px);
}
.site-footer .wordmark {
  color: white;
}
.site-footer .brand-icon {
  border-color: white;
}
.desktop-nav a[aria-current="page"] {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.text-page .prose > h2:not(:first-child) {
  margin-top: 36px;
}
.text-page .prose > .button {
  margin-bottom: 28px;
}
.text-page .prose .prep-strip {
  margin-top: 28px;
}
.static-account {
  max-width: 760px;
  padding-bottom: 70px;
}
.static-account input,
.static-account select,
.static-account textarea {
  margin-bottom: 18px;
}
.static-account label {
  font-weight: 600;
}
.static-account section {
  margin-block: 26px;
}
.static-account .help-card {
  margin-bottom: 20px;
}
.service-photo {
  margin: 0 0 28px;
}
.service-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.service-photo figcaption {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 6px;
}
.photographic-card {
  padding: 0;
  overflow: hidden;
}
.card-copy {
  padding: 24px;
}
.service-card:not(.photographic-card) .card-copy {
  padding: 0;
}
.card-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-image > img,
.card-photo,
.service-photo img {
  filter: saturate(0.5);
}
.quote-form {
  margin-top: 60px;
  max-width: 760px;
}
.quote-form fieldset {
  min-width: 0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
}
.quote-form legend {
  font-weight: 700;
  padding: 0 8px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 760px) {
  .static-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .static-update {
    bottom: 86px;
    left: 16px;
    right: 16px;
  }
  .static-detail article h2 {
    font-size: 1.55rem;
  }
}
