@font-face {
    font-family: 'Zalando Sans Semi Expanded';
    font-style: normal;
    font-display: swap;
    font-weight: 200 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/zalando-sans-semiexpanded:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
}

:root {
    --yellow: #FFF75F;
    --black: #000000;
    --gray: #E9E9E9;
    --white: #FFFFFF;
    --muted: #555555;
    --muted-strong: #777777;
    --line: #DDDDDD;
    --font-head: 'Zalando Sans Semi Expanded', sans-serif;
    --font-body: 'Zalando Sans', sans-serif;
    --wrap-width: min(1280px, calc(100% - 80px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

.public-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrap {
    width: var(--wrap-width);
    margin: 0 auto;
}

.site-chrome {
    position: sticky;
    top: 0;
    z-index: 100;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.block-spacer {
    margin-top: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    transition: filter .18s, transform .15s;
}

.button:hover {
    filter: brightness(.88);
    transform: translateY(-1px);
}

.button-primary {
    background: var(--yellow);
    color: var(--black);
}

.button-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.button-outline-black {
    background: transparent;
    color: var(--black);
    border: 1px solid #999;
}

.button-lg {
    font-size: 16px;
    padding: 13px 26px;
    white-space: nowrap;
}

.button-md {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
}

.button-sm {
    font-size: 12px;
    padding: 7px 14px;
    white-space: nowrap;
}

.site-topbar,
.site-header {
    background: var(--black);
}

.site-topbar {
    border-bottom: 1px solid #111;
}

.topbar-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 8px 40px;
}

.topbar-phone {
    color: var(--yellow);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.site-header {
    border-top: 1px solid #222;
    position: relative;
}

.header-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    flex-shrink: 0;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 66px;
}

.logo-stripes {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-stripes span {
    display: block;
    background: var(--yellow);
}

.logo-stripes span:nth-child(1) {
    width: 34px;
    height: 5px;
}

.logo-stripes span:nth-child(2) {
    width: 24px;
    height: 5px;
}

.logo-stripes span:nth-child(3) {
    width: 16px;
    height: 5px;
}

.logo-wordmark {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    line-height: .95;
}

.logo-wordmark small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 3px;
    font-family: var(--font-body);
}

.primary-nav {
    display: flex;
    margin-left: auto;
}

.nav-link {
    color: #ccc;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 20px 13px;
    display: block;
    transition: color .2s;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.nav-link:hover {
    color: var(--yellow);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    padding: 10px 0;
    background: transparent;
    border: 0;
}

.mobile-nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.mobile-nav-panel {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    border-top: 3px solid var(--yellow);
}

.mobile-nav-panel.is-open {
    display: flex;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: #ccc;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
    transition: color .2s, background .2s;
}

.mobile-nav-link:hover,
.mobile-nav-link-cta {
    color: var(--yellow);
}

.mobile-nav-link:hover {
    background: #1a1a1a;
}

.hero {
    position: relative;
    min-height: 520px;
    background:
        linear-gradient(to right, rgba(0,0,0,.72) 65%, rgba(0,0,0,.10) 100%),
        url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=85') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.hero-frame {
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.hero-content {
    width: 66%;
    max-width: 800px;
}

.eyebrow {
    color: var(--yellow);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 12px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 95%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.hero p,
.hero-sub {
    color: #ddd;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 120%;
    margin: 0 0 32px;
    max-width: 62ch;
}

.hero-sub span {
    color: var(--yellow);
    margin: 0 4px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.84);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 4px;
    text-align: right;
    font-size: 14px;
    font-family: var(--font-body);
}

.hero-badge .city,
.serving-strip .city {
    color: var(--yellow);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
}

.hero-badge .ph,
.serving-strip .ph {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--yellow);
    margin-top: 4px;
}

.hero-badge .ph {
    justify-content: flex-end;
}

.serving-strip {
    display: none;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    width: 100%;
}

.serving-strip .city {
    font-size: 16px;
}

.serving-strip .ph {
    justify-content: center;
    font-size: 18px;
    margin-top: 5px;
}

.phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.site-main {
    background: var(--white);
    padding: 48px 0 64px;
}

.page-home .site-main {
    padding: 0;
}

.page-home .main-grid {
    width: 100%;
    max-width: none;
    gap: 0;
}

.page-home .context-card {
    border: none;
    border-radius: 0;
    padding: 28px 40px;
}

.main-grid {
    display: grid;
    gap: 28px;
}

.context-card,
.content-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    padding: 32px;
}

.context-card {
    background: var(--gray);
}

.context-pill,
.footer-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 7px 14px;
    font-size: 12px;
}

.context-card h2,
.content-card h2,
.section-heading h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 95%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 16px 0 12px;
}

.context-card p,
.content-card p,
.slot p,
.field small,
.section-heading p,
.service-card-body p,
.difference-copy p,
.why-text p,
.franchise-inner p,
.t-box blockquote {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 120%;
    color: var(--muted);
    margin: 0;
}

.context-meta {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.context-meta strong {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    line-height: 95%;
    text-transform: uppercase;
}

.services-section {
    width: 100%;
    padding: 64px 40px;
    background: var(--white);
}

.services-heading {
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.service-card-media {
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-media img {
    transition: transform .4s;
}

.service-card:hover .service-card-media img {
    transform: scale(1.04);
}

.service-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    line-height: 95%;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.service-card-body p {
    flex: 1;
    margin-bottom: 16px;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.difference-section {
    background: var(--gray);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    overflow: hidden;
}

.difference-copy {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.difference-heading {
    margin-bottom: 24px;
}

.difference-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 0 0 28px;
}

.difference-checks li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    line-height: 120%;
}

.difference-checks li::before {
    content: "";
    background-color: var(--yellow);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.4 11.2 2.9 7.7l1.4-1.4 2.1 2.1 5.3-5.3 1.4 1.4-6.7 6.7Z' fill='%23000000'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.difference-media {
    position: relative;
    overflow: hidden;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.ba-row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 12px 18px;
}

.ba {
    background: rgba(0,0,0,.76);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ba-after {
    background: var(--yellow);
    color: var(--black);
}

.homeowner-section {
    background: #111;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.homeowner-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.why-text {
    padding: 50px 44px 28px;
}

.why-text h2,
.testimonial-card h2,
.cta-band h2,
.franchise-inner h2 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    line-height: 95%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.why-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.why-image img {
    filter: brightness(.65);
}

.testimonial-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 50px 60px;
    background: #161616;
    min-width: 0;
    overflow: hidden;
}

.testimonial-arrow {
    background: #2a2a2a;
    border: none;
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: #222;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 36px 32px;
    max-width: 380px;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    color: var(--yellow);
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 17px;
    line-height: 140%;
    color: #e0e0e0;
    margin-bottom: 16px;
    font-style: italic;
    text-align: center;
}

.testimonial-card cite {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #888;
    font-style: normal;
    display: block;
    text-align: right;
    width: 100%;
}

.testimonial-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #444;
}

.testimonial-dot-active {
    background: var(--yellow);
}

.cta-band-wrap {
    background: var(--black);
    border-top: 5px solid var(--yellow);
    border-bottom: 5px solid var(--yellow);
}

.cta-band {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 28px 44px;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-band h2 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 900;
    line-height: 95%;
    text-transform: uppercase;
    margin: 0;
}

.franchise-section {
    position: relative;
    background: #111 url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=60') center/cover no-repeat;
}

.franchise-overlay {
    background: rgba(0,0,0,.76);
}

.franchise-inner {
    padding: 90px 60px;
    max-width: 600px;
    text-align: left;
    margin: 0;
}

.franchise-inner h2 {
    color: var(--yellow);
    font-size: clamp(30px, 4vw, 50px);
    margin: 0 0 18px;
}

.franchise-inner p {
    color: #ccc;
    font-size: 15px;
    margin: 0 0 34px;
    max-width: 480px;
}

.lead-form-stack {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field span {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #999;
    border-radius: 3px;
    background: var(--white);
    color: var(--black);
}

.field textarea {
    resize: vertical;
}

.field-wide {
    grid-column: 1 / -1;
}

.form-alert {
    padding: 12px 14px;
    border-radius: 3px;
    border: 1px solid #d8b1a8;
    background: #fff4f0;
    color: #8a2412;
    font-weight: 600;
}
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.page-flow .site-main {
    padding: 48px 0 72px;
}

.page-flow .main-grid {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.flow-stack {
    display: grid;
    gap: 24px;
}

.flow-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.flow-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.flow-panel-header {
    background: var(--gray);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px;
}

.flow-panel-body {
    padding: 28px;
}

.flow-panel-body > * + * {
    margin-top: 16px;
}

.flow-form-shell .lead-form-stack {
    margin-top: 0;
}

.flow-form-shell .form-grid {
    margin-top: 0;
}

.flow-actions {
    margin-top: 24px;
}

.flow-note {
    padding: 14px 16px;
    border: 1px solid #ead97a;
    border-radius: 4px;
    background: #fff9cf;
    color: #4e4300;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 130%;
}

.flow-list {
    display: grid;
    gap: 12px;
}

.flow-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 130%;
    color: var(--muted);
}

.flow-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--yellow);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.4 11.2 2.9 7.7l1.4-1.4 2.1 2.1 5.3-5.3 1.4 1.4-6.7 6.7Z' fill='%23000000'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    margin-top: 1px;
}

.flow-contact-points {
    display: grid;
    gap: 10px;
}

.flow-contact-points strong {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    line-height: 95%;
    text-transform: uppercase;
}

.flow-contact-points span {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 130%;
    color: var(--muted);
}

.flow-dark-note {
    background: #111;
    border-radius: 4px;
    padding: 28px;
}

.flow-dark-note h2 {
    color: var(--yellow);
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 95%;
    text-transform: uppercase;
    margin: 16px 0 12px;
}

.flow-dark-note p {
    color: #ccc;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 130%;
    margin: 0;
}

.field small {
    display: block;
    margin-top: 4px;
    color: #8a2412;
}

.site-footer {
    background: var(--black);
    color: #aaa;
    padding: 54px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
    align-items: start;
}

.footer-logo-col .site-logo {
    padding: 0;
    gap: 14px;
}

.footer-logo-col .logo-stripes span:nth-child(1) {
    width: 48px;
    height: 7px;
}

.footer-logo-col .logo-stripes span:nth-child(2) {
    width: 34px;
    height: 7px;
}

.footer-logo-col .logo-stripes span:nth-child(3) {
    width: 22px;
    height: 7px;
}

.footer-logo-col .logo-wordmark {
    font-size: 34px;
}

.footer-logo-col .logo-wordmark small {
    font-size: 11px;
    letter-spacing: 4px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--muted-strong);
    font-size: 13px;
    font-family: var(--font-body);
    transition: color .2s;
}

.footer-col ul a:hover {
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.soc-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-strong);
    transition: border-color .2s, color .2s;
}

.soc-icon:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.soc-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.soc-icon.ig svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-bottom {
    padding: 16px 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.footer-bottom-left .local {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    font-family: var(--font-body);
}

.footer-bottom-left .hq,
.footer-bottom-right .copy {
    font-size: 11px;
    color: #444;
    font-family: var(--font-body);
}

.footer-bottom-right {
    flex-shrink: 0;
    text-align: right;
}

.btn-short-label {
    display: none;
}

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

@media (max-width: 1024px) {
    .wrap {
        width: min(1280px, calc(100% - 40px));
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        width: 70%;
    }
}

@media (max-width: 900px) {
    .page-flow .main-grid,
    .flow-duo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wrap {
        width: min(1280px, calc(100% - 32px));
    }

    .topbar-row {
        padding: 6px 16px;
        gap: 8px;
    }

    .topbar-phone {
        font-size: 17px;
    }

    .topbar-row .button-md {
        font-size: 11px;
        padding: 6px 10px;
    }

    .primary-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .header-row {
        padding: 0 16px;
    }

    .site-logo-image {
        height: 50px;
    }

    .hero {
        padding: 44px 0 36px;
        min-height: unset;
        justify-content: center;
        text-align: center;
    }

    .hero-frame {
        padding: 0 20px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero h1 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        display: none;
    }

    .serving-strip {
        display: block;
    }

    .page-home .context-card {
        padding: 24px 20px;
    }

    .services-section {
        padding: 40px 20px;
        text-align: center;
    }

    .page-flow .site-main {
        padding: 32px 0 56px;
    }

    .flow-panel-header,
    .flow-panel-body,
    .flow-dark-note {
        padding: 24px 20px;
        text-align: center;
    }

    .flow-contact-points {
        justify-items: center;
    }

    .cta-row {
        justify-content: center;
    }

    .flow-list {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        justify-content: center;
    }

    .difference-section,
    .homeowner-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .difference-copy {
        padding: 36px 20px;
        align-items: stretch;
    }

    .difference-heading {
        margin-bottom: 24px;
        text-align: center;
    }

    .difference-cta {
        width: 100%;
        max-width: 320px;
        align-self: center;
        padding: 10px 14px;
        font-size: 12px;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
    }

    .difference-checks {
        grid-template-columns: 1fr;
        justify-items: start;
        max-width: 260px;
        margin: 0 auto 24px;
    }

    .difference-media {
        clip-path: none;
        min-height: 220px;
    }

    .why-text {
        padding: 36px 20px 20px;
        text-align: center;
    }

    .why-image {
        height: 160px;
    }

    .testimonial-stage {
        position: relative;
        width: 100%;
        padding: 40px 20px;
        gap: 0;
    }

    .testimonial-card {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px;
    }

    .testimonial-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .testimonial-arrow:first-child {
        left: 10px;
    }

    .testimonial-arrow:last-child {
        right: 10px;
    }

    .cta-band {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .franchise-inner {
        text-align: center;
        max-width: none;
        padding: 60px 20px;
    }

    .franchise-inner p {
        max-width: none;
    }

    .main-grid {
        gap: 20px;
    }

    .context-card,
    .content-card {
        padding: 24px 20px;
        text-align: center;
    }

    .context-meta {
        justify-items: center;
    }

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

    .field-wide {
        grid-column: auto;
    }

    .footer-grid {
        gap: 28px;
        text-align: center;
    }

    .footer-logo-col .site-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        align-items: center;
        text-align: center;
    }

    .btn-full-label {
        display: none;
    }

    .btn-short-label {
        display: inline;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(26px, 9vw, 38px);
    }
}










.location-check {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.location-check h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    line-height: 95%;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.location-check p,
.location-check-active,
.location-check-status {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 130%;
    color: var(--muted);
    margin: 0;
}

.location-check-active {
    margin-top: 14px;
}

.location-check-active strong {
    color: var(--black);
}

.location-check-active span {
    display: inline-block;
    margin-left: 8px;
}

.location-check-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 4px;
}

.location-check-status-success {
    background: #f6f0b8;
    color: #3d3500;
}

.location-check-status-muted {
    background: #f0f0f0;
    color: #424242;
}

.location-check-form {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.location-check-form .field {
    flex: 1 1 220px;
}

.location-check-form .button {
    flex-shrink: 0;
}