:root {
    --bg: #0b0908;
    --bg-soft: #17120f;
    --panel: rgba(22, 17, 13, 0.88);
    --text: #f4ede4;
    --muted: #bfaf9c;
    --line: rgba(201, 162, 109, 0.18);
    --brand: #a7773f;
    --brand-strong: #dbb27c;
    --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
    --hero-bg-desktop: url('https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=1600&q=80');
    --hero-bg-mobile: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1200&q=80');
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(rgba(8, 6, 5, 0.82), rgba(8, 6, 5, 0.96)),
        url('https://images.unsplash.com/photo-1519500528352-2d1460418d41?auto=format&fit=crop&w=1600&q=80') center top / cover fixed,
        linear-gradient(180deg, #0e0c0a 0%, #090807 100%);
    font-family: 'Manrope', sans-serif;
}

body.is-loading {
    overflow: hidden;
}

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

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

.page-shell {
    overflow: hidden;
}

.flash-stack {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10000;
    display: grid;
    gap: 10px;
}

.flash {
    min-width: 280px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(219, 178, 124, 0.2);
    background: rgba(14, 11, 9, 0.95);
    color: var(--text);
    box-shadow: var(--shadow);
}

.flash--success {
    border-color: rgba(61, 196, 109, 0.28);
}

.flash--error {
    border-color: rgba(214, 78, 78, 0.34);
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(213, 161, 90, 0.14), transparent 28%),
        rgba(7, 5, 4, 0.97);
    opacity: 1;
    visibility: visible;
    transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__content {
    display: grid;
    justify-items: center;
    gap: 22px;
}

.page-loader__logo {
    width: min(260px, 52vw);
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.page-loader__bar {
    width: min(220px, 56vw);
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.page-loader__bar span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8c5d2d, var(--brand-strong));
    animation: loaderSlide 1.1s ease-in-out infinite;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-mark__logo {
    width: auto;
    height: 140px;
    max-width: min(42vw, 420px);
    object-fit: contain;
}

.eyebrow {
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    gap: 34px;
    font-size: 1.14rem;
    font-weight: 600;
    color: var(--muted);
}

.site-nav a:hover,
.service-card a:hover {
    color: var(--brand-strong);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 180px 20px 120px;
    text-align: center;
    background:
        linear-gradient(rgba(9, 7, 5, 0.45), rgba(9, 7, 5, 0.72)),
        var(--hero-bg-desktop) center 38% / cover no-repeat;
}

.hero__copy h1,
.section-heading h2,
.split-section__copy h2,
.contact-card h2,
.offer-section h2 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero__copy h1 {
    margin: 18px auto 20px;
    font-size: clamp(3.8rem, 7vw, 5.8rem);
    max-width: 11ch;
}

.hero__copy h1 span {
    color: var(--brand-strong);
}

.hero__copy p {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #eadfce;
    font-size: 1.18rem;
    line-height: 1.75;
}

.hero__copy {
    position: relative;
    max-width: 900px;
}

.hero__logo {
    width: min(100%, 500px);
    max-width: 65vw;
    height: auto;
    margin: 22px auto 30px;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
}

.hero__copy::after {
    display: none;
}

.hero__kicker {
    display: block;
    margin-bottom: 18px;
    color: #f5efe8;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f5efe8;
    display: block;
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    letter-spacing: 0.22em;
    text-align: center;
}

.hero__actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #8c5d2d 0%, var(--brand-strong) 100%);
    color: #140e09;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(213, 161, 90, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-header > .button {
    min-height: 64px;
    padding: 0 34px;
    font-size: 1.06rem;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(213, 161, 90, 0.22);
}

.button--secondary,
.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    box-shadow: none;
}

.button--light {
    background: #f4ede3;
    color: #15110d;
}

.hero__meta,
.contact-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2,
.split-section__copy h2,
.contact-card h2 {
    margin: 16px 0 0;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.services-grid,
.testimonials-grid,
.gallery-grid,
.values-grid,
.pricing-grid {
    display: grid;
    gap: 18px;
}

.services-grid,
.testimonials-grid,
.values-grid,
.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.about-section__media {
    display: flex;
    justify-content: center;
}

.about-section__image {
    width: min(100%, 420px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.38));
}

.about-section__copy h2 {
    margin: 16px 0 20px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.about-section__text {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.about-section__text p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.9;
}

.service-card,
.value-card,
.testimonial-card,
.contact-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-strong), transparent);
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-strong);
}

.value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 28px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    cursor: pointer;
}

.pricing-card h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.35;
}

.pricing-card strong {
    color: var(--brand-strong);
    font-size: 1.28rem;
    white-space: nowrap;
}

.pricing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(219, 178, 124, 0.34);
    background: rgba(28, 20, 15, 0.96);
}

.service-card__index {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--brand-strong);
    font-weight: 800;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.service-card p,
.testimonial-card p,
.offer-section p,
.contact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.service-card a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
}

.split-section__media img {
    min-height: 560px;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.highlight-list {
    display: grid;
    gap: 18px;
    margin: 30px 0 34px;
}

.highlight-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 16px;
    align-items: start;
}

.highlight-item span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 6px;
    background: radial-gradient(circle at 30% 30%, var(--brand-strong), var(--brand));
    box-shadow: 0 0 18px rgba(240, 198, 138, 0.35);
}

.highlight-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.offer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px;
    border: 1px solid rgba(240, 198, 138, 0.24);
    border-radius: 30px;
    background:
        linear-gradient(120deg, rgba(219, 178, 124, 0.08), rgba(56, 35, 18, 0.72)),
        #130f0c;
}

.offer-section h2 {
    margin: 10px 0;
    font-size: clamp(3rem, 8vw, 5rem);
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
    overflow: hidden;
    min-height: 320px;
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #120e0b;
}

.gallery-card img,
.gallery-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 500ms ease, opacity 500ms ease;
}

.gallery-card:hover img,
.gallery-card:hover .gallery-video {
    transform: scale(1.04);
}

.gallery-card__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 6, 5, 0.72);
    border: 1px solid rgba(219, 178, 124, 0.2);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-card strong {
    display: inline-block;
    margin-top: 18px;
    color: var(--brand-strong);
}

.review-form {
    margin-top: 36px;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(19, 15, 12, 0.92);
    box-shadow: var(--shadow);
}

.review-form__header h3 {
    margin: 14px 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.02;
}

.review-form__stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin: 26px 0 22px;
}

.review-form__stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-form__stars label {
    color: rgba(255, 255, 255, 0.16);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, color 160ms ease;
}

.review-form__stars label:hover,
.review-form__stars label:hover ~ label,
.review-form__stars input:checked ~ label {
    color: var(--brand-strong);
    transform: translateY(-2px);
}

.review-form__input,
.review-form__textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(219, 178, 124, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

.review-form__input {
    margin-bottom: 18px;
}

.review-form__textarea {
    min-height: 150px;
    margin-bottom: 18px;
    resize: vertical;
}

.review-form__input::placeholder,
.review-form__textarea::placeholder {
    color: rgba(243, 238, 231, 0.45);
}

.review-form__input:focus,
.review-form__textarea:focus {
    outline: none;
    border-color: rgba(219, 178, 124, 0.42);
    box-shadow: 0 0 0 3px rgba(219, 178, 124, 0.08);
}

.contact-card {
    display: grid;
    gap: 16px;
    padding: 40px;
}

.site-footer {
    display: flex;
    justify-content: center;
    padding: 22px 20px 48px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #f4ede4;
    font-size: 1.1rem;
    font-weight: 500;
}

.site-footer__logo {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #23c25e;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 500ms ease, transform 500ms ease;
}

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

@keyframes loaderPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
    100% {
        transform: scale(0.96);
        opacity: 0.72;
    }
}

@keyframes loaderSlide {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(320%);
    }
}

@media (max-width: 1080px) {
    .about-section,
    .split-section,
    .services-grid,
    .testimonials-grid,
    .gallery-grid,
    .values-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .about-section,
    .site-header {
        width: calc(100% - 28px);
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 18px 0;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
        font-size: 0.88rem;
    }

    .brand-mark__logo {
        height: 48px;
    }

    .hero,
    .about-section,
    .split-section,
    .services-grid,
    .testimonials-grid,
    .gallery-grid,
    .values-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 92vh;
        padding-top: 170px;
        padding-bottom: 72px;
        background-position: center center, 56% 32%;
    }

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

    .hero__copy h1 {
        max-width: none;
    }

    .hero__logo {
        max-width: 250px;
        margin-bottom: 18px;
    }

    .hero__copy p {
        max-width: 560px;
        font-size: 0.98rem;
    }

    .offer-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-section__image {
        width: min(100%, 320px);
    }

    .split-section__media img {
        min-height: 360px;
    }

    .pricing-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-form {
        padding: 24px;
    }
}

@media (max-width: 540px) {
    .site-header {
        width: calc(100% - 24px);
        padding: 14px 0;
    }

    .brand-mark {
        display: none;
    }

    .site-nav {
        width: 100%;
        gap: 10px 14px;
        font-size: 0.82rem;
    }

    .site-header > .button--ghost {
        display: none;
    }

    .brand-mark__logo {
        height: 44px;
        max-width: 180px;
    }

    .button,
    .button--ghost,
    .button--secondary,
    .button--light {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 128px;
        padding-bottom: 54px;
        background:
            linear-gradient(rgba(9, 7, 5, 0.62), rgba(9, 7, 5, 0.8)),
            var(--hero-bg-mobile) center 140px / contain no-repeat;
        background-color: #090705;
    }

    .hero__copy {
        max-width: 100%;
    }

    .hero__logo {
        max-width: 210px;
        margin-top: 8px;
    }

    .hero .eyebrow {
        margin-bottom: 6px;
        font-size: 0.95rem;
        letter-spacing: 0.16em;
    }

    .hero__copy p {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .hero__actions {
        gap: 12px;
    }

    .hero__copy h1 {
        font-size: 3.2rem;
    }

    .section-heading h2,
    .split-section__copy h2,
    .contact-card h2 {
        font-size: 2.6rem;
    }

    .service-card,
    .value-card,
    .testimonial-card,
    .contact-card,
    .offer-section {
        padding: 24px;
        border-radius: 22px;
    }

    .site-footer__brand {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .site-footer__logo {
        height: 50px;
    }
}

@media screen and (max-device-width: 900px) and (pointer: coarse) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 34px 28px 20px;
        gap: 34px;
        margin: 0;
        backdrop-filter: blur(12px);
        background: rgba(8, 6, 5, 0.72);
        border-bottom: 1px solid rgba(201, 162, 109, 0.12);
    }

    .brand-mark {
        display: inline-flex;
        margin-left: 8px;
    }

    .brand-mark__logo {
        height: 156px;
        max-width: 290px;
    }

    .site-nav {
        gap: 28px;
        font-size: 1.42rem;
        font-weight: 700;
    }

    .site-header > .button--ghost {
        display: inline-flex;
        min-height: 68px;
        padding: 0 34px;
        font-size: 1.12rem;
    }

    .hero {
        min-height: 100vh;
        padding-top: 190px;
        padding-bottom: 88px;
    }

    .hero .eyebrow {
        font-size: 1.92rem;
        letter-spacing: 0.14em;
        margin-bottom: 16px;
    }

    .hero__logo {
        width: min(100%, 540px);
        max-width: 68vw;
        margin: 26px auto 30px;
    }

    .hero__copy p {
        max-width: 620px;
        font-size: 1.48rem;
        line-height: 1.78;
    }

    .hero__actions {
        gap: 20px;
    }

    .button {
        min-height: 74px;
        padding: 0 40px;
        font-size: 1.18rem;
    }

    .floating-whatsapp {
        width: 72px;
        height: 72px;
        font-size: 1.15rem;
        right: 18px;
        bottom: 18px;
    }
}
