/*
Theme Name: ALLLIV Care
Theme URI: https://allliv.kr
Author: 비랜딩 (blanding.kr)
Author URI: https://blanding.kr
Description: ALLLIV의 홈 케어와 모빌리티 케어 서비스를 위한 전용 워드프레스 테마입니다.
Version: 1.0.2
Text Domain: allliv-care
*/

:root {
    --navy: #081a3b;
    --navy-2: #102957;
    --blue: #2d67d7;
    --sky: #dbe7fb;
    --ink: #0c1424;
    --muted: #667085;
    --line: #dce1e8;
    --paper: #f5f6f8;
    --white: #ffffff;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(7, 25, 59, .11);
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

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

button {
    color: inherit;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.25;
    letter-spacing: -.04em;
}

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

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 10px 16px;
    margin: 0;
    clip: auto;
    background: var(--white);
    color: var(--ink);
    border-radius: 6px;
}

.site-shell {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid rgba(8, 26, 59, .08);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.site-brand img {
    width: auto;
    height: 33px;
    object-fit: contain;
}

.site-brand--light {
    color: var(--white);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link,
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 10px 15px;
    border: 0;
    background: transparent;
    color: #20283a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 250px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 12px;
    color: #283247;
    font-size: 14px;
    border-radius: 9px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: var(--blue);
    background: #f2f6fd;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-cta {
    padding: 11px 18px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.nav-link--mobile-only,
.menu-backdrop {
    display: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 4px auto;
    background: var(--ink);
    transition: opacity .2s ease, transform .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button--light {
    color: var(--navy);
    background: var(--white);
}

.button--ghost-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .4);
}

.button--dark {
    color: var(--white);
    background: var(--navy);
}

.button--outline {
    color: var(--navy);
    border-color: #aab5c7;
}

.home-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 15%, rgba(70, 111, 185, .42), transparent 28%),
        linear-gradient(120deg, #061631 0%, #0b214b 66%, #153467 100%);
}

.home-hero::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to right, transparent, #000);
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
    padding-block: 90px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: #a9c7ff;
}

.home-hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(44px, 5.8vw, 82px);
    font-weight: 700;
    letter-spacing: -.065em;
}

.home-hero__lead {
    max-width: 630px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.hero-wordmark {
    display: block;
    width: min(100%, 440px);
    margin-bottom: 34px;
    line-height: 0;
}

.hero-wordmark img {
    width: 100%;
    height: auto;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 14px;
    transform: rotate(1.5deg);
}

.hero-mosaic figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, .2);
}

.hero-mosaic figure:first-child {
    grid-row: 1 / 3;
}

.hero-mosaic img {
    height: 100%;
    object-fit: cover;
}

.hero-mosaic figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 11px;
    color: var(--white);
    background: rgba(5, 18, 42, .74);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.section {
    padding-block: 120px;
}

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

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

.section-head {
    max-width: 740px;
    margin-bottom: 54px;
}

.section-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 70px;
}

.section-title {
    margin-bottom: 20px;
    font-size: clamp(36px, 4.7vw, 64px);
}

.section-copy {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.section--navy .section-copy {
    color: rgba(255, 255, 255, .66);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: transform .5s ease, opacity .5s ease;
}

.service-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 17, 39, .95) 0%, rgba(4, 17, 39, .06) 70%);
    content: "";
}

.service-card__body {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px;
}

.service-card__number {
    display: block;
    margin-bottom: 10px;
    color: #a9c7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 30px;
}

.service-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

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

.type-card {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
}

.type-card__index {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 82px;
    line-height: 1;
    color: rgba(255, 255, 255, .15);
}

.type-card h3 {
    margin-bottom: 15px;
    font-size: 36px;
}

.type-card p {
    max-width: 430px;
    color: rgba(255, 255, 255, .64);
}

.type-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #c7d9fb;
    font-weight: 700;
}

.type-card__link::after {
    content: "→";
}

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

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.proof-item {
    min-height: 210px;
    padding: 42px 28px;
    border-right: 1px solid var(--line);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-item strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 50px;
    line-height: 1;
}

.proof-item span {
    color: var(--muted);
    font-size: 14px;
}

.cta-band {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 50px;
    padding: 64px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    border-radius: 30px;
}

.cta-band h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 4vw, 52px);
}

.cta-band p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .66);
}

.cta-band .button-row {
    justify-content: flex-end;
    margin-top: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.page-hero__grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.page-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 8vw 90px max(24px, calc((100vw - var(--container)) / 2));
}

.page-hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(46px, 6vw, 78px);
}

.page-hero p {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
}

.page-hero__visual {
    position: relative;
    min-height: 460px;
}

.page-hero__visual img {
    height: 100%;
    object-fit: cover;
}

.page-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy), transparent 28%);
    content: "";
}

.page-hero--graphic .page-hero__visual {
    display: grid;
    place-items: center;
    padding: 80px;
    background:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        #102957;
    background-size: 54px 54px;
}

.page-hero--graphic .page-hero__visual::after {
    width: 62%;
    height: 62%;
    margin: auto;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    box-shadow: 0 0 0 70px rgba(255,255,255,.025);
}

.page-hero__graphic-word {
    position: relative;
    z-index: 1;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(56px, 8vw, 116px);
    font-weight: 700;
    line-height: .88;
    text-align: center;
    letter-spacing: -.08em;
}

.content-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
}

.sticky-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sticky-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 52px);
}

.sticky-heading p {
    color: var(--muted);
}

.number-list {
    border-top: 1px solid var(--line);
}

.number-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 22px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.number-item__index {
    color: var(--blue);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
}

.number-item h3 {
    margin-bottom: 8px;
    font-size: 23px;
}

.number-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.step-card__index {
    display: block;
    margin-bottom: 42px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.step-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.photo-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    margin: 0;
    background: #e9edf3;
    border-radius: 18px;
}

.photo-card img {
    height: 100%;
    object-fit: cover;
}

.photo-card figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 12px 15px;
    color: var(--white);
    background: rgba(5, 18, 42, .76);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.feature-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
    padding: 60px;
    color: var(--white);
    background: var(--navy);
    border-radius: 28px;
}

.feature-panel__image {
    overflow: hidden;
    min-height: 420px;
    background: var(--white);
    border-radius: 18px;
}

.feature-panel__image img {
    height: 100%;
    object-fit: contain;
}

.feature-panel h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 52px);
}

.feature-panel p {
    color: rgba(255, 255, 255, .66);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 27px;
}

.check-list li::before {
    position: absolute;
    top: .68em;
    left: 0;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #8fb6ff;
    border-left: 2px solid #8fb6ff;
    content: "";
    transform: rotate(-45deg);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    padding: 34px;
    background: var(--paper);
    border-radius: 18px;
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
}

.info-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.franchise-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    counter-reset: flow;
}

.franchise-flow__item {
    min-height: 200px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    counter-increment: flow;
}

.franchise-flow__item::before {
    display: block;
    margin-bottom: 42px;
    color: var(--blue);
    content: "0" counter(flow);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.contact-note {
    padding: 36px;
    color: var(--white);
    background: var(--navy);
    border-radius: 22px;
}

.contact-note h2 {
    margin-bottom: 18px;
    font-size: 36px;
}

.contact-note p {
    color: rgba(255, 255, 255, .66);
}

.contact-note dl {
    margin: 38px 0 0;
}

.contact-note dt {
    margin-top: 18px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-note dd {
    margin: 4px 0 0;
    font-weight: 700;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 9px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #cdd4df;
    border-radius: 10px;
    outline: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(45, 103, 215, .1);
}

.form-field textarea {
    min-height: 170px;
    resize: vertical;
}

.form-agree {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.form-agree input {
    margin-top: 6px;
}

.form-status {
    grid-column: 1 / -1;
    padding: 14px 16px;
    color: #075c3b;
    background: #e8f7f0;
    border-radius: 10px;
    font-weight: 700;
}

.form-status--error {
    color: #942222;
    background: #fff0f0;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.site-footer {
    padding: 80px 0 34px;
    color: var(--white);
    background: #050f24;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 90px;
    padding-bottom: 70px;
}

.footer-intro p {
    max-width: 430px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .55);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-nav h3 {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-nav a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 26px;
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: 12px;
}

.entry-content {
    width: min(calc(100% - 48px), 900px);
    min-height: 50vh;
    margin-inline: auto;
    padding-block: 100px;
}

@media (max-width: 1080px) {
    .site-header {
        background: var(--white);
        backdrop-filter: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 4;
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 82px;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 3;
        display: flex;
        width: min(88vw, 390px);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 24px;
        overflow-y: auto;
        background: var(--white);
        box-shadow: -24px 30px 60px rgba(5, 18, 42, .18);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .28s ease, opacity .2s ease, visibility .28s;
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .primary-nav .nav-link,
    .primary-nav .nav-dropdown-toggle {
        width: 100%;
        min-height: 54px;
        justify-content: space-between;
        padding-inline: 12px;
        font-size: 16px;
    }

    .primary-nav .nav-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        box-shadow: none;
        background: var(--paper);
    }

    .primary-nav.is-open .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .primary-nav .nav-link--mobile-only {
        display: flex;
        margin-top: 12px;
        justify-content: center;
        color: var(--white);
        background: var(--navy);
        border-radius: 999px;
    }

    .menu-backdrop {
        position: fixed;
        inset: 82px 0 0;
        z-index: 2;
        display: block;
        padding: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(5, 15, 36, .48);
        border: 0;
        cursor: pointer;
        transition: opacity .22s ease, visibility .22s;
    }

    .menu-backdrop.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-mosaic {
        max-width: 760px;
    }

    .service-grid,
    .step-grid,
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:last-child,
    .info-card:last-child {
        grid-column: 1 / -1;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .page-hero__grid,
    .content-grid,
    .feature-panel,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .page-hero__copy {
        padding-inline: 48px;
    }

    .sticky-heading {
        position: static;
    }

    .franchise-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    body {
        font-size: 15px;
        word-break: normal;
    }

    .site-shell {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        min-height: 72px;
    }

    .site-brand {
        line-height: 0;
    }

    .site-brand img {
        height: 28px;
    }

    .primary-nav.is-open {
        top: 72px;
    }

    .menu-backdrop {
        inset: 72px 0 0;
    }

    .home-hero__inner {
        min-height: auto;
        padding-block: 78px 54px;
    }

    .home-hero h1 {
        font-size: 44px;
    }

    .hero-wordmark {
        width: min(100%, 320px);
    }

    .hero-mosaic {
        grid-template-rows: 180px 180px;
        gap: 9px;
    }

    .section {
        padding-block: 82px;
    }

    .section-head--split,
    .service-grid,
    .two-grid,
    .step-grid,
    .photo-grid,
    .info-cards,
    .proof-grid,
    .cta-band,
    .footer-top,
    .footer-nav,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .service-card,
    .type-card {
        min-height: 410px;
    }

    .service-card:last-child,
    .info-card:last-child {
        grid-column: auto;
    }

    .proof-item,
    .proof-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .cta-band,
    .feature-panel {
        padding: 34px 24px;
    }

    .cta-band .button-row {
        justify-content: flex-start;
    }

    .page-hero__grid {
        min-height: auto;
    }

    .page-hero__copy {
        padding: 75px 24px 55px;
    }

    .page-hero h1 {
        font-size: 45px;
    }

    .page-hero__visual {
        min-height: 360px;
    }

    .page-hero--graphic .page-hero__visual {
        padding: 40px;
    }

    .number-item {
        grid-template-columns: 48px 1fr;
    }

    .feature-panel__image {
        min-height: 310px;
    }

    .franchise-flow {
        grid-template-columns: 1fr 1fr;
    }

    .form-field,
    .form-field--full,
    .form-agree,
    .form-status {
        grid-column: 1;
    }

    .footer-top {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
