:root {
    --ink: #081c1e;
    --teal: #0d3537;
    --teal-light: #16484a;
    --red: #a82f20;
    --red-dark: #791e16;
    --cream: #f1d9ae;
    --cream-light: #fbf2df;
    --gold: #d89b3c;
    --paper: #f6ead3;
    --white: #fffdf8;
    --shadow: 0 20px 60px rgba(6, 23, 25, .15);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

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

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

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.availability-bar {
    min-height: 36px;
    padding: 7px 20px;
    color: var(--cream-light);
    background: var(--red-dark);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-align: center;
    text-transform: uppercase;
}

.availability-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 9px;
    background: #70d682;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(112, 214, 130, .15);
}

.bar-divider {
    margin-inline: 10px;
    color: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 28, 30, .96);
    border-bottom: 1px solid rgba(241, 217, 174, .18);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 3;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.brand img {
    width: 108px;
    height: 74px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .3));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    color: var(--cream-light);
    font-size: .9rem;
    font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
    position: relative;
    padding-block: 10px;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transition: right .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
    right: 0;
}

.nav-cta {
    padding: 11px 19px;
    color: var(--cream-light);
    background: var(--red);
    border: 2px solid var(--cream);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--gold);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: transparent;
    border: 1px solid rgba(241, 217, 174, .35);
    border-radius: 8px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--cream);
    transition: transform .25s ease, opacity .25s ease;
}

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--cream-light);
    background-color: var(--ink);
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero::before,
.hero::after {
    content: "✦";
    position: absolute;
    z-index: 1;
    color: var(--cream);
    opacity: .65;
    font-size: 3.5rem;
}

.hero::before {
    top: 14%;
    left: 47%;
}

.hero::after {
    right: 4%;
    bottom: 13%;
    color: var(--gold);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 20, 22, .98) 0%, rgba(5, 20, 22, .92) 30%, rgba(5, 20, 22, .35) 63%, rgba(5, 20, 22, .12) 100%),
        linear-gradient(0deg, rgba(5, 20, 22, .75), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 86px 110px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 21px;
    padding: 8px 14px;
    color: var(--cream);
    background: rgba(168, 47, 32, .88);
    border: 1px solid rgba(241, 217, 174, .55);
    border-radius: 4px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.eyebrow span {
    color: var(--gold);
}

.hero h1 {
    max-width: 650px;
    margin: 0 0 22px;
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 6.3rem);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.025em;
    text-transform: uppercase;
    text-shadow: 4px 5px 0 rgba(0, 0, 0, .35);
}

.hero h1 em {
    display: block;
    margin-top: 11px;
    color: var(--gold);
    font-family: "Lobster", cursive;
    font-size: .92em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 3px 3px 0 var(--red-dark);
}

.hero-copy > p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 253, 248, .83);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 33px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-align: center;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
    color: var(--cream-light);
    background: var(--red);
    border-color: var(--cream);
    box-shadow: 5px 5px 0 var(--gold);
}

.button-primary:hover {
    box-shadow: 3px 7px 0 var(--gold);
}

.button-ghost {
    color: var(--cream-light);
    background: rgba(8, 28, 30, .5);
    border-color: rgba(241, 217, 174, .55);
}

.button-ghost:hover {
    background: rgba(241, 217, 174, .12);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.proof-stars {
    color: var(--gold);
    font-size: 1.15rem;
    letter-spacing: .1em;
}

.hero-proof div:last-child {
    display: flex;
    flex-direction: column;
}

.hero-proof strong {
    font-size: .87rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-proof span {
    color: rgba(255, 253, 248, .62);
    font-size: .78rem;
}

.checker-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 28px;
    background-color: var(--cream);
    background-image:
        linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%),
        linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%);
    background-position: 0 0, 14px 14px;
    background-size: 28px 28px;
}

.benefits {
    padding: 29px 0;
    color: var(--cream-light);
    background: var(--red-dark);
    border-bottom: 5px solid var(--gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 7px 20px;
    border-right: 1px solid rgba(241, 217, 174, .25);
}

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

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

.benefit-number {
    flex: 0 0 auto;
    color: var(--gold);
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: 1.45rem;
}

.benefit div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.benefit strong {
    overflow: hidden;
    font-size: .82rem;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.benefit div span {
    color: rgba(255, 253, 248, .62);
    font-size: .75rem;
}

.section {
    padding-block: 105px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 49px;
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.kicker::before,
.kicker::after {
    content: "";
    width: 31px;
    height: 2px;
    background: currentColor;
}

.kicker-light {
    color: var(--gold);
}

.section-heading h2,
.results-copy h2,
.cta-copy h2 {
    margin: 14px 0 13px;
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.015em;
    text-transform: uppercase;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #526264;
}

.services-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 11% 8%, rgba(216, 155, 60, .17), transparent 22%),
        var(--paper);
}

.services-section::before {
    content: "★";
    position: absolute;
    top: 4%;
    right: 6%;
    color: rgba(168, 47, 32, .11);
    font-size: 10rem;
    transform: rotate(12deg);
}

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    overflow: hidden;
    background: var(--cream-light);
    border: 1px solid rgba(8, 28, 30, .17);
    border-radius: var(--radius);
    box-shadow: 8px 9px 0 rgba(13, 53, 55, .13);
    transition: transform .28s ease, box-shadow .28s ease;
}

.service-card:hover {
    transform: translateY(-6px) rotate(-.3deg);
    box-shadow: 11px 15px 0 rgba(13, 53, 55, .16);
}

.service-card:nth-child(even):hover {
    transform: translateY(-6px) rotate(.3deg);
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--teal);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 7px rgba(241, 217, 174, .18);
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}

.service-index {
    position: absolute;
    right: 16px;
    bottom: 15px;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--cream);
    background: var(--red-dark);
    border: 3px solid var(--cream);
    border-radius: 50%;
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: .9rem;
    box-shadow: 0 4px 0 var(--gold);
}

.service-body {
    min-height: 162px;
    padding: 25px 27px 29px;
}

.service-body h3 {
    margin: 0 0 8px;
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
}

.service-body p {
    margin: 0;
    color: #526264;
    font-size: .94rem;
}

.results-section {
    position: relative;
    overflow: hidden;
    color: var(--cream-light);
    background:
        linear-gradient(115deg, rgba(13, 53, 55, .99), rgba(8, 28, 30, .98)),
        var(--teal);
}

.results-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(45deg, var(--cream) 25%, transparent 25%, transparent 75%, var(--cream) 75%),
        linear-gradient(45deg, var(--cream) 25%, transparent 25%, transparent 75%, var(--cream) 75%);
    background-position: 0 0, 18px 18px;
    background-size: 36px 36px;
    mask-image: linear-gradient(90deg, transparent, black);
}

.results-layout {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 76px;
}

.results-copy > p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 253, 248, .68);
}

.process-list {
    display: grid;
    gap: 16px;
    margin-top: 35px;
}

.process-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.process-item > span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border: 2px solid var(--cream);
    border-radius: 50%;
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: .8rem;
}

.process-item strong {
    font-size: .92rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.process-item p {
    margin: 1px 0 0;
    color: rgba(255, 253, 248, .57);
    font-size: .84rem;
}

.results-gallery {
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.media-card {
    position: relative;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 5px solid var(--cream);
    border-radius: 14px;
    box-shadow: 8px 9px 0 rgba(216, 155, 60, .55);
}

.media-card-main {
    grid-row: 1 / 3;
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card-main img {
    object-position: 50% 52%;
}

.media-card:not(.media-card-main) img {
    object-position: 52% 42%;
}

.video-card video {
    object-position: center 44%;
}

.media-card figcaption {
    position: absolute;
    right: 11px;
    bottom: 11px;
    left: 11px;
    padding: 7px 10px;
    color: var(--cream-light);
    background: rgba(8, 28, 30, .86);
    border: 1px solid rgba(241, 217, 174, .45);
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.reviews-section {
    background:
        radial-gradient(circle at 92% 28%, rgba(168, 47, 32, .12), transparent 21%),
        var(--cream-light);
}

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

.review-card {
    position: relative;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(8, 28, 30, .15);
    border-radius: 14px;
    box-shadow: 7px 8px 0 rgba(13, 53, 55, .12);
}

.featured-review {
    transform: translateY(-10px);
    border-top: 5px solid var(--red);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--cream);
    background: var(--teal);
    border: 3px solid var(--cream);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--teal);
    font-size: .78rem;
    font-weight: 800;
}

.review-top > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.review-top strong {
    font-size: .92rem;
}

.review-top span:not(.quote-mark) {
    color: #718082;
    font-size: .73rem;
}

.quote-mark {
    margin-left: auto;
    color: rgba(168, 47, 32, .22);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: .6;
}

.review-card > p {
    min-height: 104px;
    margin: 25px 0 20px;
    color: #465658;
    font-size: .92rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid rgba(8, 28, 30, .1);
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: .13em;
    line-height: 1;
}

.stars-base {
    color: #d5cfbf;
}

.stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--score);
    overflow: hidden;
    color: var(--gold);
    white-space: nowrap;
}

.rating strong {
    color: var(--red-dark);
    font-family: "Alfa Slab One", Georgia, serif;
    font-size: .95rem;
}

.cta-section {
    position: relative;
    padding: 82px 0 66px;
    overflow: hidden;
    color: var(--cream-light);
    background: var(--red-dark);
}

.checker-line-top {
    top: 0;
    bottom: auto;
}

.cta-section::after {
    content: "✦";
    position: absolute;
    right: 5%;
    bottom: -30px;
    color: rgba(216, 155, 60, .25);
    font-size: 10rem;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 35px;
}

.cta-logo {
    width: 145px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .28));
}

.cta-copy h2 {
    margin-block: 8px 7px;
}

.cta-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 253, 248, .72);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.button-cream {
    color: var(--ink);
    background: var(--cream);
    border-color: var(--white);
    box-shadow: 5px 5px 0 var(--gold);
}

.button-cream:hover {
    background: var(--white);
}

.cta-actions > span {
    color: rgba(255, 253, 248, .72);
    font-size: .9rem;
    font-weight: 700;
}

.site-footer {
    padding: 25px 0;
    color: rgba(255, 253, 248, .59);
    background: var(--ink);
    font-size: .78rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-content p {
    margin: 0;
}

.footer-content strong {
    color: var(--cream);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    background: #20b85a;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
    width: 31px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1020px) {
    .main-nav {
        gap: 21px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

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

    .benefit:nth-child(3) {
        padding-left: 0;
    }

    .results-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .results-copy {
        max-width: 720px;
    }

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

    .results-gallery {
        grid-template-rows: repeat(2, 280px);
    }

    .cta-content {
        grid-template-columns: 120px 1fr;
    }

    .cta-actions {
        grid-column: 2;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 88px;
    }

    .availability-bar {
        min-height: 31px;
        padding-block: 5px;
        font-size: .66rem;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand img {
        width: 92px;
        height: 65px;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        max-height: 0;
        display: grid;
        gap: 0;
        overflow: hidden;
        color: var(--cream-light);
        background: rgba(8, 28, 30, .99);
        border-bottom: 0 solid var(--gold);
        opacity: 0;
        visibility: hidden;
        transition: max-height .3s ease, opacity .25s ease, visibility .25s ease, border-width .25s ease;
    }

    .main-nav.is-open {
        max-height: 430px;
        padding: 12px 20px 24px;
        border-bottom-width: 4px;
        opacity: 1;
        visibility: visible;
    }

    .main-nav > a:not(.nav-cta) {
        padding: 13px 8px;
        border-bottom: 1px solid rgba(241, 217, 174, .1);
    }

    .main-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 14px;
        text-align: center;
    }

    .hero {
        min-height: 650px;
        background-position: 61% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(5, 20, 22, .97) 0%, rgba(5, 20, 22, .87) 50%, rgba(5, 20, 22, .48) 100%),
            linear-gradient(0deg, rgba(5, 20, 22, .65), transparent 60%);
    }

    .hero::before {
        display: none;
    }

    .hero-copy {
        max-width: 530px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-image {
        height: 235px;
    }

    .service-body {
        min-height: 180px;
        padding-inline: 22px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-inline: auto;
    }

    .featured-review {
        transform: none;
    }

    .review-card > p {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .availability-bar {
        letter-spacing: .08em;
    }

    .bar-divider {
        display: none;
    }

    .availability-bar .bar-divider + * {
        display: none;
    }

    .hero {
        min-height: auto;
        background-position: 67% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(5, 20, 22, .97) 0%, rgba(5, 20, 22, .88) 62%, rgba(5, 20, 22, .66) 100%),
            linear-gradient(0deg, rgba(5, 20, 22, .72), transparent 60%);
    }

    .hero-content {
        padding-block: 76px 98px;
    }

    .eyebrow {
        font-size: .62rem;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 15vw, 4.2rem);
    }

    .hero-copy > p {
        max-width: 94%;
        font-size: .98rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .benefits {
        padding-block: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .benefit,
    .benefit:first-child,
    .benefit:nth-child(3),
    .benefit:last-child {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(241, 217, 174, .19);
    }

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

    .benefit strong {
        white-space: normal;
    }

    .section {
        padding-block: 75px;
    }

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

    .section-heading h2,
    .results-copy h2,
    .cta-copy h2 {
        font-size: 2rem;
    }

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

    .service-image {
        height: 230px;
    }

    .service-body {
        min-height: 0;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .results-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 360px 210px;
        gap: 12px;
    }

    .media-card-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .media-card {
        border-width: 4px;
        box-shadow: 5px 6px 0 rgba(216, 155, 60, .55);
    }

    .media-card figcaption {
        right: 7px;
        bottom: 7px;
        left: 7px;
        font-size: .63rem;
    }

    .review-card {
        padding: 24px;
    }

    .cta-section {
        padding-top: 75px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .cta-logo {
        width: 125px;
        margin-inline: auto;
    }

    .cta-actions {
        grid-column: auto;
        align-items: center;
        width: 100%;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 390px) {
    .results-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 330px 260px 260px;
    }

    .media-card-main {
        grid-column: auto;
    }

    .hero h1 {
        font-size: 2.7rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
