@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Manrope:wght@400;600;700;800&display=swap');

:root {
    --bg: #050507;
    --panel: rgba(255, 255, 255, 0.045);
    --panel-strong: rgba(7, 7, 10, 0.78);
    --line: rgba(255, 255, 255, 0.12);
    --text: #fff7f5;
    --muted: rgba(255, 247, 245, 0.68);
    --soft: rgba(255, 247, 245, 0.48);
    --red: #b71332;
    --red-bright: #ef334e;
    --red-deep: #4b0612;
    --display: 'Barlow Condensed', sans-serif;
    --body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }

*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(155, 10, 37, 0.34), transparent 30rem),
        radial-gradient(circle at 85% 35%, rgba(70, 3, 18, 0.44), transparent 28rem),
        linear-gradient(135deg, #020204 0%, #08080b 44%, #21020b 100%);
    color: var(--text);
    font-family: var(--body);
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

@keyframes heroRise {
    from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroScale {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes ambientDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.46; }
    50% { transform: translate3d(24px, -22px, 0) scale(1.16); opacity: 0.76; }
}

@keyframes scanSweep {
    0% { transform: translateX(-120%); opacity: 0; }
    18% { opacity: 0.32; }
    55% { opacity: 0.16; }
    100% { transform: translateX(120%); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 18px 46px rgba(183, 19, 50, 0.32); }
    50% { box-shadow: 0 24px 68px rgba(239, 51, 78, 0.46); }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 200;
    background: linear-gradient(90deg, var(--red-deep), var(--red-bright), #fff);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 4vw, 3rem);
    border-bottom: 1px solid var(--line);
    background: rgba(3, 3, 5, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: max-content;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: 0.14em;
    box-shadow: 0 0 35px rgba(183, 19, 50, 0.35);
}

.brand strong {
    display: block;
    font-family: var(--display);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
}

.brand small {
    display: block;
    color: var(--soft);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav a {
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active { color: white; background: rgba(255,255,255,0.07); }

.site-nav .nav-cta,
.btn.primary {
    color: white;
    background: linear-gradient(90deg, #750718, var(--red), var(--red-bright));
    box-shadow: 0 18px 46px rgba(183, 19, 50, 0.35);
    animation: pulseGlow 3.6s ease-in-out infinite;
}

.ghost-link { border: 1px solid var(--line); }
.menu-toggle { display: none; }

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 7rem clamp(1rem, 6vw, 7rem) 4rem;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: -8%;
    background-size: cover;
    background-position: center;
    opacity: 0.62;
    transform: translateY(var(--parallax-y, 0));
    transition: transform 0.05s linear;
    will-change: transform;
}

.home-cinematic .hero-bg {
    animation: heroScale 1.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-ambient {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(44px);
    mix-blend-mode: screen;
    animation: ambientDrift 8s ease-in-out infinite;
}

.ambient-one {
    width: 28rem;
    height: 28rem;
    left: -7rem;
    top: 10rem;
    background: radial-gradient(circle, rgba(239, 51, 78, 0.38), transparent 68%);
}

.ambient-two {
    width: 24rem;
    height: 24rem;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(120, 8, 29, 0.45), transparent 68%);
    animation-delay: -3.2s;
}

.hero-scanline {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-scanline::before {
    content: "";
    position: absolute;
    inset: 0 -30%;
    background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,0.12), transparent 56%);
    transform: translateX(-120%);
    animation: scanSweep 4.8s 1.2s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(183,19,50,0.62), transparent 26rem),
        linear-gradient(90deg, rgba(3,3,5,0.96), rgba(3,3,5,0.56) 52%, rgba(3,3,5,0.82));
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: min(760px, 100%);
}

.hero-seq {
    opacity: 0;
    animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-seq:nth-child(1) { animation-delay: 0.1s; }
.hero-seq:nth-child(2) { animation-delay: 0.22s; }
.hero-seq:nth-child(3) { animation-delay: 0.34s; }
.hero-seq:nth-child(4) { animation-delay: 0.46s; }
.hero-seq:nth-child(5) { animation-delay: 0.58s; }
.hero-seq:nth-child(6) { animation-delay: 0.7s; }

.eyebrow {
    margin: 0 0 1.1rem;
    color: #ff9bab;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.34em;
}

.brand-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(5rem, 14vw, 12rem);
    line-height: 0.78;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-kicker {
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.46em;
}

.hero-headline,
.simple-hero h1,
.page-hero h1,
.section h2 {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-headline {
    max-width: 690px;
    margin: 2rem 0 0;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.88;
}

.hero-copy,
.simple-hero p,
.page-hero p,
.section-copy p,
.section-heading p {
    color: var(--muted);
    line-height: 1.85;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-copy { max-width: 650px; }

.hero-actions,
.filter-row,
.floating-actions,
.contact-card .quote-form {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3rem;
    padding: 0.86rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: white;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover,
.service-card:hover,
.service-tile:hover,
.gallery-item:hover { transform: translateY(-5px); }

.btn.dark { background: rgba(0,0,0,0.5); }
.text-link { color: #ff9bab; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; }

.section {
    position: relative;
    z-index: 3;
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 7rem);
    overflow: hidden;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat {
    padding: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: var(--panel);
}

.stat strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
}

.stat span {
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
}

.split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.section-copy h2,
.section-heading h2,
.simple-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.92;
}

.service-strip,
.service-grid,
.masonry,
.ba-grid,
.testimonial-grid,
.process,
.three-columns {
    display: grid;
    gap: 1rem;
}

.service-strip { grid-template-columns: repeat(2, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.masonry { grid-template-columns: repeat(4, 1fr); }
.ba-grid, .testimonial-grid, .three-columns { grid-template-columns: repeat(3, 1fr); }
.process { grid-template-columns: repeat(4, 1fr); }

.service-tile,
.service-card,
.gallery-item,
.ba-card,
.testimonial,
.process-step,
.info-block,
.dark-panel,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: var(--panel);
    overflow: hidden;
    transition: 0.25s ease;
}

.service-tile,
.service-card,
.gallery-item { position: relative; min-height: 25rem; }

.service-tile img,
.service-card img,
.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.service-tile:hover img,
.service-card:hover img,
.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.06);
}

.service-tile img,
.service-card img,
.gallery-item img,
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tile::after,
.service-card::after,
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92), transparent 65%);
}

.service-tile span,
.service-tile strong,
.service-card span,
.service-card h2,
.service-card p,
.gallery-item div {
    position: absolute;
    z-index: 2;
    left: 1.35rem;
    right: 1.35rem;
}

.service-tile span,
.service-card span { bottom: 5rem; color: #ff9bab; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.68rem; }
.service-tile strong { bottom: 1.6rem; font-family: var(--display); font-size: 2.7rem; text-transform: uppercase; }
.service-card h2 { bottom: 5.2rem; margin: 0; font-size: 2.3rem; }
.service-card p { bottom: 1.4rem; margin: 0; color: var(--muted); line-height: 1.55; }
.gallery-item div { bottom: 1.25rem; }
.gallery-item h3 { margin: 0.3rem 0; font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.gallery-item p { margin: 0; color: var(--muted); }
.gallery-item span { color: #ff9bab; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; }

.dark-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(183,19,50,0.35), transparent 24rem),
        rgba(255,255,255,0.05);
    padding: clamp(2rem, 5vw, 4rem);
}

.editorial-band {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.mini-proof {
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 20% 10%, rgba(183,19,50,0.25), transparent 15rem),
        rgba(255,255,255,0.045);
}

.mini-proof span {
    color: #ff9bab;
    font-family: var(--display);
    font-size: 2.8rem;
    line-height: 0.9;
}

.mini-proof strong {
    display: block;
    font-family: var(--display);
    font-size: 2rem;
    text-transform: uppercase;
}

.mini-proof p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.65;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.advantage {
    min-height: 18rem;
    padding: 1.55rem;
    border: 1px solid var(--line);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
        radial-gradient(circle at 10% 5%, rgba(183,19,50,0.22), transparent 12rem);
}

.advantage span {
    display: block;
    margin-bottom: 2.6rem;
    color: #ff9bab;
    font-family: var(--display);
    font-size: 2.5rem;
}

.advantage h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
}

.advantage p {
    color: var(--muted);
    line-height: 1.75;
}

.simple-hero {
    padding: 8rem clamp(1rem, 6vw, 7rem) 4rem;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background:
        radial-gradient(circle at 15% 25%, rgba(183,19,50,0.38), transparent 28rem),
        linear-gradient(135deg, #050507, #21020b);
}

.page-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 75vh;
    align-items: stretch;
}

.page-hero > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 6rem);
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(72,4,17,0.55));
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.88;
}

.info-block,
.process-step,
.testimonial,
.ba-card {
    padding: 1.6rem;
}

.info-block h2,
.process-step h2,
.ba-card h3 {
    margin: 0 0 1rem;
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 2rem;
}

.info-block p,
.process-step p,
.ba-card p,
.testimonial p { color: var(--muted); line-height: 1.75; }

.process-step span {
    display: block;
    margin-bottom: 2rem;
    color: #ff9bab;
    font-family: var(--display);
    font-size: 3rem;
}

.filter-row { margin: 2rem 0; }

.filter {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    padding: 0.7rem 1rem;
    cursor: pointer;
    font-weight: 800;
    white-space: nowrap;
}

.filter.active { color: white; background: var(--red); }

.compare {
    position: relative;
    height: 20rem;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1.3rem;
}

.compare img,
.before-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-layer { width: 50%; overflow: hidden; }
.compare input { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; width: calc(100% - 2rem); z-index: 5; }
.ba-card span { color: #ff9bab; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; }

.testimonial cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    font-weight: 800;
}
.testimonial cite span { display: block; color: var(--soft); font-size: 0.9rem; margin-top: 0.2rem; }

.faq-list { max-width: 950px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.faq-item summary { cursor: pointer; font-weight: 900; font-size: 1.1rem; }
.faq-item p { color: var(--muted); line-height: 1.8; }

.contact-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: rgba(255,255,255,0.045);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.quote-form label {
    display: grid;
    gap: 0.55rem;
    color: var(--soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.quote-form .full { grid-column: 1 / -1; }

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: rgba(0,0,0,0.35);
    color: white;
    padding: 0.95rem 1rem;
    outline: none;
    min-height: 3.25rem;
}

.quote-form option { background: #111; color: white; }

.site-footer {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.85fr 1fr;
    gap: 2rem;
    padding: 4rem clamp(1rem, 6vw, 7rem);
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,0.45);
    position: relative;
    z-index: 3;
}

.site-footer p,
.site-footer a { color: var(--muted); line-height: 1.8; display: block; margin: 0.4rem 0; }
.site-footer h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; margin: 0 0 1rem; }

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.social-row a {
    display: inline-flex;
    margin: 0;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    font-weight: 800;
}

.floating-actions {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 90;
    flex-direction: column;
}

.floating-actions a {
    min-width: 8rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: #08080a;
    border: 1px solid var(--line);
    text-align: center;
    font-weight: 900;
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.floating-actions a:first-child { background: var(--red); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    place-items: center;
    padding: 2rem;
    background: rgba(0,0,0,0.9);
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 78vh; border-radius: 1.5rem; }
.lightbox button { position: absolute; top: 1rem; right: 1rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }

@media (max-width: 1050px) {
    .menu-toggle {
        display: inline-flex;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255,255,255,0.05);
        color: white;
        padding: 0.75rem 1rem;
        font-weight: 900;
    }
    .site-nav {
        position: fixed;
        top: 5rem;
        left: 1rem;
        right: 1rem;
        max-height: calc(100svh - 6rem);
        overflow-y: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 1.5rem;
        background: rgba(0,0,0,0.94);
        box-shadow: 0 30px 90px rgba(0,0,0,0.65);
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        width: 100%;
        padding: 1rem 1.1rem;
        border-radius: 1rem;
    }
    .stats, .service-grid, .masonry, .process { grid-template-columns: repeat(2, 1fr); }
    .split, .page-hero, .contact-card, .site-footer, .editorial-band { grid-template-columns: 1fr; }
    .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero img { min-height: 22rem; }
}

@media (max-width: 680px) {
    body { padding-bottom: 5.2rem; }
    .site-header {
        padding: 0.7rem 0.85rem;
        gap: 0.65rem;
    }
    .brand { gap: 0.65rem; min-width: 0; }
    .brand strong { font-size: 1.05rem; letter-spacing: 0.18em; }
    .brand small { display: none; }
    .brand-mark { width: 2.55rem; height: 2.55rem; font-size: 0.8rem; }
    .menu-toggle {
        padding: 0.65rem 0.85rem;
        min-height: 2.8rem;
    }
    .site-nav {
        top: 4.35rem;
        left: 0.75rem;
        right: 0.75rem;
    }
    .hero {
        min-height: calc(100svh - 4rem);
        padding: 5.8rem 1rem 3rem;
        align-items: flex-end;
    }
    .hero-bg {
        inset: 0;
        background-position: 64% center;
        transform: none !important;
        animation-duration: 1.2s;
    }
    .hero-ambient {
        filter: blur(34px);
        opacity: 0.52;
    }
    .ambient-one {
        width: 17rem;
        height: 17rem;
        left: -6rem;
        top: 5rem;
    }
    .ambient-two {
        width: 15rem;
        height: 15rem;
        right: -7rem;
        bottom: 9rem;
    }
    .hero-scanline::before { animation-duration: 6.5s; }
    .hero-overlay {
        background:
            radial-gradient(circle at 18% 22%, rgba(183,19,50,0.58), transparent 18rem),
            linear-gradient(180deg, rgba(3,3,5,0.62), rgba(3,3,5,0.9) 44%, rgba(3,3,5,0.98));
    }
    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.24em;
        line-height: 1.6;
    }
    .brand-title {
        font-size: clamp(4.5rem, 23vw, 6.6rem);
        line-height: 0.82;
        overflow-wrap: anywhere;
    }
    .hero-headline {
        margin-top: 1.25rem;
        font-size: clamp(3rem, 16vw, 4.5rem);
        line-height: 0.88;
    }
    .hero-kicker {
        letter-spacing: 0.2em;
        font-size: 0.76rem;
        line-height: 1.8;
    }
    .hero-copy {
        font-size: 0.98rem;
        line-height: 1.75;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .hero-actions .btn,
    .btn {
        width: 100%;
        min-height: 3.2rem;
        padding: 0.95rem 1rem;
    }
    .section {
        padding: 3.7rem 1rem;
    }
    .simple-hero {
        min-height: 44vh;
        padding: 6rem 1rem 3rem;
    }
    .simple-hero h1,
    .section-copy h2,
    .section-heading h2 {
        font-size: clamp(2.9rem, 15vw, 4.5rem);
        line-height: 0.9;
    }
    .simple-hero p,
    .page-hero p,
    .section-copy p,
    .section-heading p {
        font-size: 0.98rem;
        line-height: 1.75;
    }
    .stats, .service-strip, .service-grid, .masonry, .ba-grid, .testimonial-grid, .process, .three-columns, .quote-form { grid-template-columns: 1fr; }
    .advantage-grid { grid-template-columns: 1fr; }
    .advantage {
        min-height: auto;
        padding: 1.2rem;
        border-radius: 1.4rem;
    }
    .advantage span {
        margin-bottom: 1.5rem;
        font-size: 2.1rem;
    }
    .mini-proof {
        padding: 1.2rem;
        border-radius: 1.4rem;
    }
    .stat {
        padding: 1.25rem;
        border-radius: 1.4rem;
    }
    .service-tile, .service-card, .gallery-item {
        min-height: 19rem;
        border-radius: 1.45rem;
    }
    .service-card h2 {
        font-size: 2rem;
        bottom: 5.1rem;
    }
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .service-tile strong {
        font-size: 2.15rem;
    }
    .filter-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.45rem;
        margin-inline: -1rem;
        padding-inline: 1rem;
        scrollbar-width: none;
    }
    .filter-row::-webkit-scrollbar { display: none; }
    .page-hero {
        min-height: auto;
    }
    .page-hero img {
        min-height: 18rem;
        max-height: 44vh;
    }
    .page-hero > div {
        padding: 2rem 1rem 3rem;
    }
    .page-hero h1 {
        font-size: clamp(3.1rem, 16vw, 4.7rem);
        line-height: 0.88;
    }
    .info-block,
    .process-step,
    .testimonial,
    .ba-card {
        padding: 1.2rem;
        border-radius: 1.4rem;
    }
    .compare {
        height: 16rem;
        border-radius: 1rem;
    }
    .contact-card {
        padding: 1.1rem;
        border-radius: 1.45rem;
    }
    .quote-form {
        gap: 0.9rem;
    }
    .quote-form label {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }
    .site-footer {
        padding: 3rem 1rem 6rem;
    }
    .dark-panel { align-items: flex-start; flex-direction: column; }
    .floating-actions {
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(0.75rem + env(safe-area-inset-bottom));
        flex-direction: row;
        gap: 0.55rem;
    }
    .floating-actions a {
        flex: 1;
        min-width: 0;
        padding: 0.85rem 0.5rem;
        font-size: 0.9rem;
    }
    .lightbox {
        padding: 1rem;
    }
    .lightbox img {
        max-height: 70vh;
        border-radius: 1rem;
    }
}

@media (max-width: 390px) {
    .brand-title { font-size: 4.4rem; }
    .hero-headline { font-size: 3rem; }
    .site-header { padding-inline: 0.7rem; }
    .brand strong { letter-spacing: 0.13em; }
    .brand-mark { width: 2.35rem; height: 2.35rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .hero-seq {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
