:root {
    color-scheme: dark;
    --void: #03050a;
    --night: #070b12;
    --ink: #f7f2e7;
    --soft-ink: #d9dfeb;
    --muted: #98a3b4;
    --quiet: #657286;
    --panel: rgba(9, 14, 23, .78);
    --panel-strong: rgba(12, 18, 29, .92);
    --line: rgba(255, 255, 255, .14);
    --line-strong: rgba(255, 255, 255, .24);
    --gold: #e6bd72;
    --gold-soft: #f3dbab;
    --cyan: #68d9e8;
    --blue: #315f90;
    --ember: #d57b58;
    --sage: #8ba56b;
    --shadow: 0 34px 90px rgba(0, 0, 0, .42);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, .26);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--void);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(115deg, rgba(230, 189, 114, .07), transparent 30%),
        linear-gradient(245deg, rgba(104, 217, 232, .08), transparent 32%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 112px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 112px),
        var(--void);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(3, 5, 10, .1), rgba(3, 5, 10, .96)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 5px);
    opacity: .58;
}

body.is-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
}

body.is-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .72s ease, transform .72s ease;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: var(--scroll, 0%);
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), var(--ember));
    box-shadow: 0 0 24px rgba(230, 189, 114, .42);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(3, 5, 10, .56);
    backdrop-filter: blur(20px);
    transition: box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(5, 8, 14, .88);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
}

.nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    position: relative;
    width: 64px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(230, 189, 114, .5);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #05070d 0%, #1d2c3e 46%, #080b12 100%);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, .44),
        0 0 0 1px rgba(255, 255, 255, .06) inset,
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, .24), transparent 36%, rgba(104, 217, 232, .2) 70%, rgba(230, 189, 114, .26)),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
}

.brand-mark svg {
    position: relative;
    z-index: 1;
    width: 53px;
    height: 36px;
    overflow: visible;
    filter: drop-shadow(0 7px 8px rgba(0, 0, 0, .48));
}

.mark-wing {
    fill: url("#condorWing");
    stroke: rgba(255, 255, 255, .48);
    stroke-width: .55;
}

.mark-wing-left {
    filter: drop-shadow(-2px 1px 4px rgba(0, 0, 0, .34));
}

.mark-wing-right {
    filter: drop-shadow(2px 1px 4px rgba(0, 0, 0, .34));
}

.mark-edge {
    fill: none;
    stroke: url("#condorEdge");
    stroke-linecap: round;
    stroke-width: 1.8;
}

.mark-body {
    fill: url("#condorBody");
    stroke: rgba(255, 255, 255, .64);
    stroke-width: .6;
}

.mark-chest {
    fill: rgba(17, 23, 34, .28);
}

.mark-beak,
.mark-tail {
    fill: #e3ad52;
    stroke: rgba(255, 255, 255, .34);
    stroke-width: .45;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    color: #fffaf0;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 650;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(217, 223, 235, .86);
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    opacity: .8;
    transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold-soft);
}

.button,
.nav-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: 0 20px;
    background: rgba(255, 255, 255, .08);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 189, 114, .48);
}

.button-primary,
.nav-cta {
    border-color: rgba(243, 219, 171, .34);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 36%),
        linear-gradient(135deg, #f1cf8a 0%, #d57b58 48%, #68d9e8 100%);
    color: #071018;
    box-shadow: 0 20px 42px rgba(230, 189, 114, .23), 0 18px 44px rgba(104, 217, 232, .13);
}

.button-primary:hover,
.nav-cta:hover {
    box-shadow: 0 24px 54px rgba(230, 189, 114, .32), 0 18px 44px rgba(104, 217, 232, .16);
}

.button-secondary {
    background: rgba(4, 7, 12, .58);
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 94svh;
    padding: 124px max(16px, calc((100vw - 1180px) / 2)) 28px;
    overflow: hidden;
    isolation: isolate;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: -4;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(1.08) contrast(1.1) brightness(.72);
    transform: scale(1.02);
}

.hero-wash {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(3, 5, 10, .98) 0%, rgba(3, 5, 10, .88) 36%, rgba(3, 5, 10, .38) 70%, rgba(3, 5, 10, .82) 100%),
        linear-gradient(0deg, var(--void) 0%, rgba(3, 5, 10, .28) 38%, rgba(3, 5, 10, .5) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 76px max(16px, calc((100vw - 1180px) / 2)) auto;
    height: 1px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(230, 189, 114, .8), transparent 54%, rgba(104, 217, 232, .55));
}

.hero::after {
    content: "";
    position: absolute;
    left: max(16px, calc((100vw - 1180px) / 2));
    right: max(16px, calc((100vw - 1180px) / 2));
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

.hero-inner {
    max-width: 800px;
    padding: 48px 0 52px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 16px currentColor;
}

h1 {
    max-width: 880px;
    margin: 0 0 24px;
    color: #fffaf1;
    font-size: clamp(46px, 7vw, 96px);
    line-height: .96;
    font-weight: 520;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 28px 70px rgba(0, 0, 0, .5);
}

h2 {
    margin: 0;
    color: #fff6e7;
    font-size: clamp(32px, 4.4vw, 62px);
    line-height: 1.02;
    font-weight: 520;
    letter-spacing: 0;
    text-wrap: balance;
}

h3 {
    color: #fff8eb;
    font-weight: 620;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 700px;
    margin: 0;
    color: rgba(236, 241, 249, .86);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.hero-summary div {
    position: relative;
    min-height: 136px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
        rgba(5, 9, 16, .72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-summary div::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), var(--ember));
}

.hero-summary div::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: inherit;
    pointer-events: none;
}

.hero-summary span {
    display: block;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-summary strong {
    display: block;
    color: #fff7e8;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.18;
    font-weight: 560;
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 102px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, .55fr) minmax(0, 1.25fr);
    gap: 44px;
    align-items: start;
    margin-bottom: 38px;
}

.services-section {
    padding-top: 78px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    --accent: var(--gold);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .028)),
        var(--panel);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:nth-child(2) {
    --accent: var(--cyan);
}

.service-card:nth-child(3) {
    --accent: var(--sage);
}

.service-card:nth-child(4) {
    --accent: var(--ember);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .25);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
        rgba(12, 18, 29, .88);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 189, 114, .42), transparent);
}

.service-card span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: auto 0 12px;
    font-size: 25px;
    line-height: 1.1;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.compare-section {
    display: grid;
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    gap: 30px;
    align-items: end;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 112px;
}

.compare-copy {
    padding-bottom: 6px;
}

.compare-copy p:not(.section-kicker),
.contact-copy p,
.review-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.compare-copy h2 {
    margin-bottom: 18px;
}

.look-lab {
    position: relative;
    min-height: clamp(420px, 54vw, 660px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    overflow: hidden;
    background: #070b12;
    box-shadow: var(--shadow);
}

.look-lab::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 18%),
        linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 42%);
}

.look-before,
.look-after {
    position: absolute;
    inset: 0;
    background-image: url("/assets/condor-grade-suite.png");
    background-size: cover;
    background-position: center;
}

.look-before {
    filter: grayscale(.2) saturate(.5) contrast(.86) brightness(.82);
}

.look-after {
    clip-path: inset(0 0 0 var(--split));
    filter: saturate(1.28) contrast(1.12) brightness(.98);
}

.split-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    width: 2px;
    z-index: 2;
    background: #fff7de;
    box-shadow: 0 0 30px rgba(230, 189, 114, .66);
}

.split-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(5, 9, 16, .82);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
    backdrop-filter: blur(10px);
}

.split-line::after {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    color: var(--gold-soft);
    font-size: 21px;
    font-weight: 650;
}

.look-slider {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.look-caption {
    position: absolute;
    z-index: 4;
    bottom: 18px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(5, 9, 16, .72);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.look-caption-left {
    left: 18px;
}

.look-caption-right {
    right: 18px;
}

.process-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

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

.process-item {
    display: grid;
    grid-template-columns: 160px minmax(0, .75fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(230, 189, 114, .07), transparent 28%),
        rgba(9, 14, 23, .72);
    box-shadow: var(--shadow-soft);
}

.process-item span {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.process-item h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.04;
}

.process-item p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.66;
}

.review-section {
    padding: 104px max(16px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(120deg, rgba(230, 189, 114, .08), transparent 34%),
        linear-gradient(240deg, rgba(104, 217, 232, .08), transparent 36%),
        #050811;
}

.review-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(9, 14, 23, .86);
    box-shadow: var(--shadow);
}

.review-image {
    min-height: 520px;
    background:
        linear-gradient(0deg, rgba(3, 5, 10, .18), rgba(3, 5, 10, .18)),
        url("/assets/condor-grade-suite.png") center / cover;
    filter: saturate(1.08) contrast(1.06) brightness(.86);
}

.review-copy {
    align-self: center;
    padding: clamp(30px, 5vw, 64px);
}

.review-copy h2 {
    margin-bottom: 20px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.review-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    color: var(--soft-ink);
    font-size: 13px;
    font-weight: 680;
}

.contact-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 104px 0 116px;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 108px;
}

.contact-copy h2 {
    margin-bottom: 18px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .032)),
        rgba(9, 14, 23, .88);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--soft-ink);
    font-size: 13px;
    font-weight: 680;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(3, 5, 10, .62);
    color: var(--ink);
    outline: none;
    padding: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(152, 163, 180, .78);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(104, 217, 232, .74);
    box-shadow: 0 0 0 3px rgba(104, 217, 232, .12);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.55;
}

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

.site-footer {
    width: min(1180px, calc(100% - 32px));
    min-height: 98px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer strong {
    color: #fff7e8;
    margin-bottom: 4px;
    font-weight: 700;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer a:hover {
    color: var(--gold-soft);
}

@media (max-width: 1040px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 108px;
    }

    .hero-summary,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-summary div:last-child {
        grid-column: 1 / -1;
    }

    .section-heading,
    .compare-section,
    .review-panel,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }

    .process-item {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .process-item p {
        grid-column: 2;
    }
}

@media (max-width: 680px) {
    body {
        background:
            linear-gradient(140deg, rgba(230, 189, 114, .08), transparent 42%),
            linear-gradient(250deg, rgba(104, 217, 232, .07), transparent 38%),
            var(--void);
    }

    .nav {
        width: min(100% - 24px, 1180px);
        min-height: 68px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .brand-mark {
        width: 48px;
        height: 38px;
        box-shadow:
            0 12px 24px rgba(0, 0, 0, .34),
            inset 0 1px 0 rgba(255, 255, 255, .22);
    }

    .brand-mark svg {
        width: 42px;
        height: 30px;
    }

    .nav-cta {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
    }

    .hero {
        padding: 96px 12px 22px;
    }

    .hero-image img {
        object-position: 72% center;
        filter: saturate(1.04) contrast(1.08) brightness(.58);
    }

    .hero-wash {
        background:
            linear-gradient(90deg, rgba(3, 5, 10, .98) 0%, rgba(3, 5, 10, .9) 58%, rgba(3, 5, 10, .72) 100%),
            linear-gradient(0deg, var(--void) 0%, rgba(3, 5, 10, .32) 42%);
    }

    .hero-inner {
        padding-bottom: 30px;
    }

    h1 {
        font-size: clamp(43px, 14vw, 68px);
    }

    h2 {
        font-size: clamp(32px, 11vw, 52px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-summary,
    .service-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero-summary div:last-child {
        grid-column: auto;
    }

    .hero-summary div {
        min-height: 116px;
        padding: 18px;
    }

    .section,
    .compare-section,
    .contact-section {
        width: min(100% - 24px, 1180px);
        padding: 72px 0;
    }

    .section-heading {
        gap: 12px;
        margin-bottom: 26px;
    }

    .service-card {
        min-height: 236px;
    }

    .look-lab {
        min-height: 410px;
        box-shadow: var(--shadow-soft);
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .process-item p {
        grid-column: auto;
    }

    .review-section {
        padding: 72px 12px;
    }

    .review-panel {
        min-height: auto;
    }

    .review-image {
        min-height: 320px;
    }

    .contact-form {
        padding: 18px;
        box-shadow: var(--shadow-soft);
    }

    .contact-form button {
        width: 100%;
    }

    .site-footer {
        width: min(100% - 24px, 1180px);
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}
