:root {
    color-scheme: light dark;
    --page: #f8f7f5;
    --surface: #fffdfb;
    --surface-soft: #f0eceb;
    --text: #21191a;
    --muted: #6c6062;
    --line: #e3dcdd;
    --accent: #b4202a;
    --accent-strong: #921820;
    --accent-soft: #f3e3e5;
    --hero-text: #fff9f5;
    --header-bg: #fffdfb;
    --shadow: 0 22px 64px rgb(94 23 30 / 0.12);
    --header-height: 84px;
    --radius-card: 24px;
    --radius-control: 999px;
    --shell: min(1380px, calc(100% - 64px));
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: page-leave 180ms ease both;
}

::view-transition-new(root) {
    animation: page-enter 520ms var(--ease) both;
}

@media (prefers-color-scheme: dark) {
    :root {
        --page: #171314;
        --surface: #211b1c;
        --surface-soft: #2b2324;
        --text: #f6efed;
        --muted: #b9adae;
        --line: #3e3234;
        --accent: #d13b45;
        --accent-strong: #ea5660;
        --accent-soft: #3a2326;
        --header-bg: #211b1c;
        --shadow: 0 24px 70px rgb(9 5 6 / 0.38);
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
    scrollbar-gutter: stable;
}

html.smooth-wheel-active {
    scroll-behavior: auto;
}

body {
    margin: 0;
    overflow-x: clip;
    background: var(--page);
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

body.menu-open {
    overflow: hidden;
}

body.order-dialog-open {
    overflow: hidden;
}

.not-found {
    display: grid;
    min-height: 100dvh;
    place-content: center;
    justify-items: center;
    gap: 18px;
    padding: 32px;
    text-align: center;
}

.not-found p,
.not-found h1 {
    margin: 0;
}

.not-found p {
    color: var(--accent);
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.85;
}

.not-found h1 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    letter-spacing: -0.045em;
}

.order-dialog {
    width: min(660px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100dvh - 32px);
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: var(--radius-card);
    background: transparent;
    color: var(--text);
}

.order-dialog::backdrop {
    background: rgb(33 25 26 / 0.68);
}

.order-dialog[open] {
    animation: order-dialog-fade 220ms ease both;
}

.order-dialog[open] .order-dialog__panel {
    animation: order-dialog-enter 520ms var(--ease) both;
}

.order-dialog__panel {
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: 0 32px 100px rgb(33 25 26 / 0.34);
}

.order-dialog__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
    margin-bottom: 26px;
}

.order-dialog__header h2 {
    margin: 0 0 8px;
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.order-dialog__header p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
}

.order-dialog__close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--page);
    color: var(--text);
    cursor: pointer;
    transition: transform 320ms var(--ease), border-color 320ms var(--ease), color 320ms var(--ease);
}

.order-dialog__providers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.order-provider {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 104px;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--page);
    transition: transform 380ms var(--ease), border-color 380ms var(--ease), box-shadow 380ms var(--ease);
}

.order-provider__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.35rem;
}

.order-provider__copy strong,
.order-provider__copy span {
    display: block;
}

.order-provider__copy strong {
    font-size: 0.96rem;
}

.order-provider__copy span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.order-provider > i {
    color: var(--accent);
    transition: transform 380ms var(--ease);
}

.order-dialog__note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

@media (hover: hover) {
    .order-dialog__close:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: rotate(8deg);
    }

    .order-provider:hover {
        border-color: rgb(180 32 42 / 0.34);
        box-shadow: 0 16px 44px rgb(94 23 30 / 0.1);
        transform: translateY(-4px);
    }

    .order-provider:hover > i {
        transform: translate(3px, -3px);
    }
}

@keyframes order-dialog-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes order-dialog-enter {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

img {
    display: block;
    max-width: 100%;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #efb9bd;
    outline-offset: 4px;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 100;
    padding: 11px 18px;
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--text);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: var(--header-height);
    padding-block: 10px;
    background: transparent;
    pointer-events: none;
    view-transition-name: site-header;
}

.site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 64px;
    gap: 30px;
    padding: 4px 10px 4px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--header-bg);
    box-shadow: 0 10px 34px rgb(94 23 30 / 0.12);
    pointer-events: auto;
    transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 300ms ease;
}

.site-header.is-scrolled .site-header__inner {
    border-color: color-mix(in srgb, var(--line) 72%, var(--accent) 28%);
    box-shadow: 0 16px 42px rgb(94 23 30 / 0.18);
    transform: translateY(-4px) scale(0.992);
}

.scroll-sentinel {
    height: 1px;
    margin-bottom: -1px;
    pointer-events: none;
}

.site-header__inner::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 0;
    left: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand__text {
    display: grid;
    line-height: 0.9;
    text-transform: uppercase;
}

.brand__text strong {
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.05em;
}

.brand__text small {
    margin-top: 5px;
    color: var(--accent);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.19em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: clamp(2px, 0.45vw, 8px);
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    padding: 9px 12px;
    border-radius: var(--radius-control);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 720;
    transition: color 220ms ease, background 260ms var(--ease), transform 260ms var(--ease);
}

.desktop-nav a::after {
    display: none;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--text);
    background: var(--surface-soft);
}

.desktop-nav a:hover {
    transform: translateY(-1px);
}

.desktop-nav a.is-active {
    color: var(--accent-strong);
    background: var(--accent-soft);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    gap: 10px;
    padding: 0 25px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-control);
    background: var(--accent);
    color: #fffaf6;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 9px 26px rgb(180 32 42 / 0.2);
    transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button i {
    font-size: 1.12rem;
}

.button:hover {
    border-color: var(--accent-strong);
    background: var(--accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgb(180 32 42 / 0.27);
}

.button:active {
    transform: scale(0.98);
}

.button--small {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 0.84rem;
}

.button--light {
    border-color: #fffaf6;
    background: #fffaf6;
    color: #8f1820;
    box-shadow: 0 12px 32px rgb(77 5 11 / 0.24);
}

.button--light:hover {
    border-color: #f6e9e7;
    background: #f6e9e7;
    color: #78131a;
}

.button--outline {
    border-color: var(--line);
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

.button--outline:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-strong);
    box-shadow: none;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100dvh - var(--header-height));
    max-height: 880px;
    overflow: hidden;
    background: #8f101a;
}

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

.hero__image {
    z-index: -2;
    object-fit: cover;
    object-position: center center;
}

.hero__wash {
    z-index: -1;
    background:
        linear-gradient(90deg, rgb(109 5 14 / 0.92) 0%, rgb(126 7 17 / 0.79) 37%, rgb(126 7 17 / 0.16) 68%, transparent 100%),
        linear-gradient(0deg, rgb(86 3 10 / 0.2), transparent 55%);
}

.hero__content {
    display: flex;
    align-items: center;
    min-height: calc(100dvh - var(--header-height));
    max-height: 880px;
    padding-block: 54px;
}

.hero__copy {
    width: min(680px, 54%);
    color: var(--hero-text);
}

.eyebrow {
    margin: 0 0 20px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--red {
    color: var(--accent);
}

.hero h1,
.section h2,
.site-footer h3 {
    margin-top: 0;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(3.8rem, 5.1vw, 5.8rem);
    font-weight: 950;
    line-height: 0.88;
    letter-spacing: -0.078em;
    text-wrap: balance;
}

.hero__lead {
    max-width: 520px;
    margin: 0;
    color: rgb(255 249 245 / 0.88);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    color: var(--accent-strong);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.2;
}

.text-link i {
    transition: transform 220ms var(--ease);
}

.text-link:hover i {
    transform: translateX(5px);
}

.text-link--light {
    color: #fffaf6;
}

.promise-strip {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.promise-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.promise {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    min-height: 116px;
    padding: 22px clamp(18px, 3vw, 46px);
    border-right: 1px solid var(--line);
}

.promise:first-child {
    padding-left: 0;
}

.promise:last-child {
    border-right: 0;
    padding-right: 0;
}

.promise > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.35rem;
}

.promise strong,
.promise span {
    display: block;
}

.promise strong {
    font-size: 0.97rem;
}

.promise span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.82rem;
}

.section {
    padding-block: clamp(88px, 10vw, 150px);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-heading h2,
.craft-section__content h2,
.franchise-card h2,
.order-panel h2 {
    margin-bottom: 18px;
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(2.6rem, 5vw, 5.3rem);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -0.068em;
    text-wrap: balance;
}

.section-heading p,
.craft-section__content > p:not(.eyebrow),
.franchise-card__content > p,
.order-panel p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.84fr);
    gap: 24px;
}

.product-feature,
.product-row,
.quality-tile,
.franchise-card,
.order-panel {
    border-radius: var(--radius-card);
}

.product-feature {
    display: grid;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.product-feature__image {
    min-height: 500px;
    overflow: hidden;
}

.product-feature__image img,
.product-row__image img,
.quality-tile--image img,
.franchise-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}

.product-feature:hover .product-feature__image img,
.product-row:hover .product-row__image img,
.franchise-card:hover .franchise-card__image img {
    transform: scale(1.035);
}

.product-feature__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 32px 34px;
}

.product-feature h3,
.product-row h3,
.quality-tile h3 {
    margin: 0 0 9px;
    font-size: clamp(1.35rem, 2.1vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.product-feature p,
.product-row p,
.quality-tile p {
    margin: 0;
    color: var(--muted);
}

.product-feature p {
    max-width: 540px;
}

.circle-link {
    display: grid;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.3rem;
    transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.circle-link:hover {
    background: var(--accent);
    color: #fffaf6;
    transform: rotate(8deg);
}

.product-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.product-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.84fr) minmax(180px, 1fr);
    min-height: 328px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}

.product-row__image {
    min-height: 100%;
    overflow: hidden;
}

.product-row:first-child .product-row__image img {
    object-position: center 58%;
}

.product-row__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 28px;
}

.product-row__body p {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.product-row--red {
    border-color: #a51d26;
    background: var(--accent);
    color: #fffaf6;
}

.product-row--red p {
    color: rgb(255 250 246 / 0.78);
}

.products-section__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 38px;
}

.craft-section {
    padding-top: 40px;
}

.craft-section__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.45fr);
    align-items: start;
    gap: clamp(48px, 8vw, 130px);
}

.craft-section__content {
    position: sticky;
    top: calc(var(--header-height) + 44px);
    padding-top: 26px;
}

.craft-section__content h2 {
    font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.craft-section__content .text-link {
    margin-top: 30px;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 360px 290px 220px;
    gap: 18px;
}

.quality-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
}

.quality-tile--image {
    grid-row: 1 / span 2;
}

.quality-tile--image img {
    object-position: center 35%;
}

.quality-tile--red,
.quality-tile--pattern {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    box-shadow: 0 14px 42px rgb(94 23 30 / 0.055);
    transition:
        transform 520ms var(--ease),
        border-color 520ms var(--ease),
        box-shadow 520ms var(--ease);
}

.quality-tile--red {
    border-color: #a51d26;
    background: var(--accent);
    color: #fffaf6;
}

.quality-tile--red p {
    color: rgb(255 250 246 / 0.76);
}

.quality-tile--pattern {
    background:
        radial-gradient(circle at 78% 22%, var(--accent-soft) 0 8px, transparent 9px),
        radial-gradient(circle at 86% 34%, var(--accent-soft) 0 4px, transparent 5px),
        linear-gradient(135deg, var(--surface), var(--surface-soft));
}

.quality-tile--red > i,
.quality-tile--pattern > i {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: auto;
    border-radius: 18px;
    background: rgb(255 250 246 / 0.12);
    font-size: 1.5rem;
    transition: transform 520ms var(--ease);
}

.quality-tile--pattern > i {
    background: var(--accent-soft);
    color: var(--accent);
}

.quality-tile--link {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px;
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(1.7rem, 3vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
    box-shadow: 0 14px 42px rgb(94 23 30 / 0.055);
    transition:
        transform 480ms var(--ease),
        background-color 480ms var(--ease),
        color 480ms var(--ease),
        box-shadow 480ms var(--ease);
}

.quality-tile--link i {
    font-size: 2rem;
    transition: transform 240ms var(--ease);
}

.quality-tile--link:hover {
    background: var(--accent);
    color: #fffaf6;
    box-shadow: 0 22px 58px rgb(94 23 30 / 0.18);
    transform: translateY(-6px);
}

.quality-tile--link:hover i {
    transform: translate(4px, -4px);
}

@media (hover: hover) {
    .quality-tile--red:hover,
    .quality-tile--pattern:hover {
        border-color: rgb(180 32 42 / 0.34);
        box-shadow: 0 22px 58px rgb(94 23 30 / 0.13);
        transform: translateY(-6px);
    }

    .quality-tile--red:hover > i,
    .quality-tile--pattern:hover > i {
        transform: translateY(-3px) rotate(-5deg);
    }
}

.franchise-section {
    padding-top: 20px;
}

.franchise-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.25fr);
    min-height: 600px;
    overflow: hidden;
    background: var(--accent);
    color: #fffaf6;
    box-shadow: var(--shadow);
}

.franchise-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(42px, 6vw, 80px);
}

.franchise-card h2 {
    font-size: clamp(2.8rem, 5.2vw, 5.6rem);
}

.franchise-card__content > p {
    margin-bottom: 34px;
    color: rgb(255 250 246 / 0.8);
}

.franchise-card__image {
    min-height: 100%;
    overflow: hidden;
}

.franchise-card__image img {
    object-position: center;
}

.order-section {
    padding-top: 0;
}

.order-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    padding: clamp(36px, 5.5vw, 72px);
    border: 1px solid var(--line);
    background: var(--surface);
}

.order-panel h2 {
    max-width: 720px;
    margin-bottom: 10px;
    font-size: clamp(2.4rem, 4.7vw, 4.8rem);
}

.order-panel__actions {
    display: grid;
    flex: 0 0 auto;
    justify-items: center;
    gap: 12px;
}

.phone-link {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.phone-link:hover {
    color: var(--accent);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(130px, 0.65fr));
    gap: 54px;
    padding-block: 70px 62px;
}

.site-footer__brand > p {
    max-width: 310px;
    margin: 22px 0 28px;
    color: var(--muted);
    font-size: 0.93rem;
}

.brand--footer img {
    width: 62px;
    height: 62px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    font-size: 1.12rem;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
}

.footer-column a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 180ms ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-column--contact a {
    overflow-wrap: anywhere;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
}

.floating-order {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: none;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 18px;
    border: 2px solid #fffaf6;
    border-radius: var(--radius-control);
    background: var(--accent);
    color: #fffaf6;
    font-size: 0.84rem;
    font-weight: 850;
    box-shadow: 0 16px 38px rgb(72 7 13 / 0.28);
}

.floating-order i {
    font-size: 1.2rem;
}

.scroll-media {
    position: relative;
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__copy > * {
        opacity: 0;
        animation: hero-enter 780ms var(--ease) forwards;
    }

    .hero__copy > :nth-child(2) {
        animation-delay: 90ms;
    }

    .hero__copy > :nth-child(3) {
        animation-delay: 160ms;
    }

    .hero__copy > :nth-child(4) {
        animation-delay: 230ms;
    }

    .hero__image {
        animation: hero-image 1200ms var(--ease) both;
    }

    .inner-page .page-hero__copy > *,
    .inner-page .product-detail-hero__copy > * {
        opacity: 0;
        animation: hero-enter 760ms var(--ease) forwards;
    }

    .inner-page .page-hero__copy > :nth-child(2),
    .inner-page .product-detail-hero__copy > :nth-child(2) {
        animation-delay: 70ms;
    }

    .inner-page .page-hero__copy > :nth-child(3),
    .inner-page .product-detail-hero__copy > :nth-child(3) {
        animation-delay: 140ms;
    }

    .inner-page .page-hero__copy > :nth-child(4),
    .inner-page .product-detail-hero__copy > :nth-child(4) {
        animation-delay: 210ms;
    }

    .inner-page .page-hero__media img,
    .inner-page .product-detail-hero__media img {
        animation: inner-media-enter 1050ms var(--ease) both;
    }

    .reveal {
        opacity: 0;
        transform: translate3d(var(--reveal-x, 0), 38px, 0) scale(0.975);
        will-change: transform, opacity;
        transition: opacity 880ms var(--ease), transform 980ms var(--ease);
        transition-delay: var(--reveal-delay, 0ms);
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        will-change: auto;
    }

    .reveal[data-motion-animated] {
        transition: none;
    }

    @supports (animation-timeline: scroll()) {
        .site-header__inner::after {
            animation: header-progress linear both;
            animation-timeline: scroll(root block);
        }
    }

    @supports (animation-timeline: view()) {
        .scroll-media img {
            animation: media-drift linear both;
            animation-timeline: view(block);
            animation-range: entry 0% exit 100%;
            will-change: transform;
        }

        .inner-page .page-hero {
            view-timeline-name: --inner-hero;
            view-timeline-axis: block;
        }

        .inner-page .page-hero__copy {
            animation: hero-copy-scroll linear both;
            animation-timeline: --inner-hero;
            animation-range: exit 0% exit 100%;
        }

        .inner-page .page-hero__media {
            animation: hero-media-scroll linear both;
            animation-timeline: --inner-hero;
            animation-range: exit 0% exit 100%;
        }
    }
}

@keyframes header-progress {
    to {
        transform: scaleX(1);
    }
}

@keyframes media-drift {
    from {
        transform: translate3d(0, -2.5%, 0) scale(1.07);
    }
    to {
        transform: translate3d(0, 2.5%, 0) scale(1.07);
    }
}

@keyframes hero-copy-scroll {
    to {
        opacity: 0.46;
        transform: translate3d(0, -6%, 0) scale(0.98);
    }
}

@keyframes hero-media-scroll {
    to {
        opacity: 0.72;
        transform: translate3d(0, 5%, 0) scale(0.965);
    }
}

@keyframes page-leave {
    to {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes hero-enter {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-image {
    from {
        opacity: 0.7;
        transform: scale(1.035);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes inner-media-enter {
    from {
        opacity: 0.72;
        transform: scale(1.025);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1180px) {
    :root {
        --shell: min(100% - 44px, 1080px);
    }

    .desktop-nav,
    .header-order {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .menu-toggle {
        display: grid;
        width: 48px;
        height: 48px;
        padding: 13px;
        place-content: center;
        gap: 7px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: var(--surface);
        color: var(--text);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 220ms var(--ease);
    }

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

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

    .mobile-menu {
        position: absolute;
        inset: calc(100% - 5px) 22px auto;
        z-index: 39;
        display: block;
        width: auto;
        height: auto;
        max-height: calc(100dvh - var(--header-height) - 18px);
        overflow-y: auto;
        border: 1px solid var(--line);
        border-radius: var(--radius-card);
        background: var(--surface);
        box-shadow: 0 18px 48px rgb(94 23 30 / 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 260ms var(--ease), transform 320ms var(--ease), visibility 0s linear 320ms;
    }

    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu__nav {
        display: grid;
        width: 100%;
        padding: 20px 22px 28px;
    }

    .mobile-menu__nav > a:not(.button) {
        padding: 16px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1.15rem;
        font-weight: 800;
    }

    .mobile-menu__nav > a {
        opacity: 0;
        transform: translateY(-7px);
        transition: opacity 240ms var(--ease), transform 300ms var(--ease);
    }

    .mobile-menu.is-open .mobile-menu__nav > a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--menu-index, 0) * 35ms + 40ms);
    }

    .mobile-menu__order {
        margin-top: 26px;
    }

    .hero__copy {
        width: min(620px, 57%);
    }

    .product-showcase {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    }

    .product-feature {
        min-height: 620px;
    }

    .product-row {
        grid-template-columns: 0.8fr 1fr;
    }

    .product-row__body {
        padding: 22px;
    }

    .craft-section__grid {
        gap: 54px;
    }
}

@media (max-width: 900px) {
    .product-showcase,
    .craft-section__grid,
    .franchise-card {
        grid-template-columns: 1fr;
    }

    .product-feature {
        min-height: 580px;
    }

    .product-feature__image {
        min-height: 420px;
    }

    .product-stack {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .product-row {
        grid-template-columns: 1fr;
    }

    .product-row__image {
        height: 250px;
    }

    .craft-section__content {
        position: static;
        max-width: 700px;
        padding-top: 0;
    }

    .quality-grid {
        grid-template-rows: 320px 260px 190px;
    }

    .franchise-card__image {
        min-height: 420px;
        order: -1;
    }

    .franchise-card__content {
        min-height: 470px;
    }

    .order-panel {
        align-items: flex-start;
    }

    .site-footer__top {
        grid-template-columns: 1.2fr repeat(2, 0.7fr);
    }

    .footer-column--contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 78px;
        --shell: calc(100% - 32px);
        --radius-card: 20px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
    }

    .order-dialog {
        width: calc(100% - 20px);
        max-height: calc(100dvh - 20px);
    }

    .order-dialog__panel {
        max-height: calc(100dvh - 20px);
        padding: 24px 18px max(20px, env(safe-area-inset-bottom));
        border-radius: 20px;
    }

    .order-dialog__header {
        gap: 14px;
        margin-bottom: 20px;
    }

    .order-dialog__header h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .order-dialog__header p {
        font-size: 0.9rem;
    }

    .order-dialog__providers {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .order-provider {
        min-height: 88px;
        padding: 13px;
        border-radius: 16px;
    }

    h1,
    h2,
    h3,
    p,
    a,
    strong {
        overflow-wrap: break-word;
    }

    .site-header {
        padding-block: 8px;
    }

    .site-header__inner {
        min-height: 62px;
        gap: 16px;
        padding: 3px 7px 3px 11px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand__text strong {
        font-size: 0.92rem;
    }

    .brand__text small {
        font-size: 0.6rem;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .mobile-menu {
        inset: calc(100% - 3px) 16px auto;
    }

    .reveal {
        --reveal-x: 0 !important;
    }

    .hero {
        min-height: calc(100dvh - var(--header-height));
        max-height: none;
    }

    .hero__image {
        object-position: 60% center;
    }

    .hero__wash {
        background:
            linear-gradient(180deg, rgb(104 4 13 / 0.94) 0%, rgb(111 4 14 / 0.88) 42%, rgb(111 4 14 / 0.3) 73%, rgb(88 3 10 / 0.5) 100%),
            linear-gradient(90deg, rgb(111 4 14 / 0.55), transparent 75%);
    }

    .hero__content {
        align-items: flex-start;
        min-height: calc(100dvh - var(--header-height));
        max-height: none;
        padding-top: clamp(48px, 9vh, 76px);
        padding-bottom: 42px;
    }

    .hero__copy {
        width: 100%;
    }

    .hero h1 {
        max-width: 460px;
        margin-bottom: 20px;
        font-size: clamp(2.45rem, 10.3vw, 3.8rem);
        line-height: 0.94;
    }

    .hero__lead {
        max-width: 390px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero__actions {
        gap: 22px;
        margin-top: 27px;
    }

    .hero__actions .button {
        min-height: 49px;
        padding-inline: 20px;
    }

    .promise-strip__inner {
        grid-template-columns: 1fr;
    }

    .promise,
    .promise:first-child,
    .promise:last-child {
        min-height: 96px;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .promise:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 86px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .craft-section__content h2,
    .franchise-card h2,
    .order-panel h2 {
        font-size: clamp(2.45rem, 12vw, 4rem);
        line-height: 0.98;
    }

    .section-heading p,
    .craft-section__content > p:not(.eyebrow),
    .franchise-card__content > p,
    .order-panel p {
        font-size: 0.97rem;
    }

    .product-feature {
        min-height: auto;
    }

    .product-feature__image {
        min-height: 300px;
    }

    .product-feature__body {
        align-items: center;
        padding: 24px;
    }

    .product-stack {
        grid-template-columns: 1fr;
    }

    .product-row {
        grid-template-columns: minmax(125px, 0.78fr) minmax(170px, 1.1fr);
        min-height: 260px;
    }

    .product-row__image {
        height: auto;
    }

    .product-row__body {
        padding: 20px;
    }

    .product-row h3 {
        font-size: 1.35rem;
    }

    .product-row__body p {
        margin-bottom: 17px;
        font-size: 0.81rem;
    }

    .products-section__footer {
        justify-content: stretch;
    }

    .products-section__footer .button {
        width: 100%;
    }

    .craft-section {
        padding-top: 28px;
    }

    .craft-section__grid {
        gap: 42px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 14px;
    }

    .quality-tile--image,
    .quality-tile--link {
        grid-column: auto;
        grid-row: auto;
    }

    .quality-tile--image {
        min-height: 390px;
    }

    .quality-tile--red,
    .quality-tile--pattern {
        min-height: 235px;
    }

    .quality-tile--link {
        min-height: 150px;
        padding: 26px;
        font-size: 1.7rem;
    }

    .franchise-section {
        padding-top: 10px;
    }

    .franchise-card__image {
        min-height: 300px;
    }

    .franchise-card__content {
        min-height: auto;
        padding: 38px 26px 42px;
    }

    .franchise-card__content .button {
        width: 100%;
    }

    .order-panel {
        flex-direction: column;
        padding: 32px 24px;
    }

    .order-panel__actions,
    .order-panel__actions .button {
        width: 100%;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 26px;
        padding-block: 58px 48px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .footer-column--contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 104px;
        gap: 8px;
    }

    .floating-order {
        display: flex;
        bottom: max(18px, env(safe-area-inset-bottom));
    }
}

@media (pointer: coarse) {
    .button,
    .menu-toggle,
    .floating-order,
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 390px) {
    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .product-row {
        grid-template-columns: 1fr;
    }

    .product-row__image {
        height: 220px;
    }

    .floating-order span {
        display: none;
    }

    .floating-order {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }
}

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

    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none !important;
    }

    .site-header__inner::after {
        display: none;
    }

    .scroll-media img {
        transform: none !important;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .site-header__inner {
        background: var(--surface);
    }
}
