:root {
    --rose: #c87b7b;
    --rose-dark: #9e5558;
    --rose-soft: #fff1ef;
    --cream: #fffaf5;
    --beige: #f3dfd2;
    --gold: #c9a36a;
    --coffee: #4d3029;
    --brown: #2b1b17;
    --text: #332420;
    --muted: #7b665f;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(77, 48, 41, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--brown);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
    font-size: 1.35rem;
}

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

.section {
    padding: 105px 0;
    position: relative;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 16px;
    clip: auto;
    background: var(--brown);
    color: var(--white);
    z-index: 9999;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 163, 106, 0.18);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.custom-logo-link img {
    max-height: 66px;
    width: auto;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    font-weight: 800;
    font-size: 1.35rem;
    box-shadow: 0 14px 35px rgba(200, 123, 123, 0.25);
}

.brand-text {
    display: grid;
    gap: 0;
}

.brand-text strong {
    font-size: 1.02rem;
    color: var(--brown);
}

.brand-text small {
    max-width: 210px;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.25;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--coffee);
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: var(--rose-dark);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 0;
    cursor: pointer;
}

.header-cta,
.btn-primary {
    background: var(--rose-dark);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(158, 85, 88, 0.22);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    color: var(--coffee);
    border: 1px solid rgba(201, 163, 106, 0.34);
}

.btn-dark {
    background: var(--brown);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--brown);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(77, 48, 41, 0.12);
    cursor: pointer;
    padding: 12px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--brown);
    margin: 5px 0;
    border-radius: 99px;
}

.hero {
    padding-top: 78px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.5;
    z-index: -1;
}

.hero::before {
    width: 520px;
    height: 520px;
    background: var(--rose-soft);
    top: -190px;
    right: -150px;
}

.hero::after {
    width: 390px;
    height: 390px;
    background: var(--beige);
    bottom: 0;
    left: -180px;
}

.hero-grid,
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: clamp(36px, 6vw, 78px);
}

.hero-copy p {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--muted);
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--rose-dark);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.hero-actions,
.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hero-note span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(201, 163, 106, 0.24);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-media,
.about-media,
.promo-media {
    position: relative;
}

.hero-media img,
.about-media img,
.promo-media img {
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-media img {
    height: min(70vh, 680px);
    border-radius: 48px 48px 12px 48px;
}

.about-media img,
.promo-media img {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    padding: 16px 20px;
    box-shadow: 0 18px 55px rgba(77, 48, 41, 0.2);
    display: grid;
    gap: 2px;
}

.floating-card strong {
    color: var(--brown);
}

.floating-card small {
    color: var(--rose-dark);
    font-weight: 800;
}

.image-placeholder {
    width: 100%;
    min-height: 440px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 241, 239, 0.85), rgba(243, 223, 210, 0.85)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.25) 0, rgba(255,255,255,0.25) 12px, transparent 12px, transparent 24px);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--coffee);
    padding: 30px;
    border: 1px dashed rgba(158, 85, 88, 0.32);
    box-shadow: var(--shadow);
    font-weight: 800;
}

.hero-placeholder {
    min-height: min(70vh, 680px);
    border-radius: 48px 48px 12px 48px;
}

.square-placeholder {
    aspect-ratio: 4 / 5;
}

.promo-placeholder {
    aspect-ratio: 4 / 5;
    min-height: 420px;
}

.gallery-placeholder {
    min-height: 300px;
    border-radius: 24px;
    box-shadow: none;
}

.soft-section {
    background: linear-gradient(180deg, rgba(255, 241, 239, 0.64), rgba(255, 250, 245, 0));
}

.about-copy p,
.section-heading p,
.contact-copy p,
.social-card p,
.final-cta p {
    color: var(--muted);
    font-size: 1.05rem;
}

.text-link {
    color: var(--rose-dark);
    font-weight: 900;
    border-bottom: 2px solid rgba(158, 85, 88, 0.2);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.why-card,
.contact-panel,
.social-card,
.post-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(201, 163, 106, 0.20);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(77, 48, 41, 0.07);
}

.service-card {
    padding: 28px;
    min-height: 225px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--rose-soft);
    color: var(--rose-dark);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.service-card p,
.why-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.center-action {
    text-align: center;
    margin-top: 42px;
}

.promo-section {
    padding: 75px 0;
}

.promo-card {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
    align-items: center;
    border-radius: 42px;
    background: linear-gradient(135deg, var(--rose-soft), var(--beige));
    padding: clamp(24px, 5vw, 58px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.promo-copy h3 {
    color: var(--rose-dark);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.promo-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    padding: 12px 18px;
    margin: 10px 0 24px;
    color: var(--coffee);
    font-weight: 800;
}

.promo-price strong {
    color: var(--rose-dark);
    font-size: 1.35rem;
}

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

.gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(77, 48, 41, 0.08);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: rgba(43, 27, 23, 0.72);
    color: var(--white);
    border-radius: 16px;
    padding: 11px 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 26px;
}

.social-card {
    padding: clamp(26px, 5vw, 46px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-section {
    padding-top: 70px;
}

.contact-list {
    display: grid;
    gap: 8px;
    margin: 28px 0;
}

.contact-list p {
    margin: 0;
}

.contact-list a {
    color: var(--rose-dark);
    font-weight: 900;
}

.contact-panel {
    min-height: 440px;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(rgba(255, 250, 245, 0.88), rgba(255, 250, 245, 0.88)),
        radial-gradient(circle at 20% 20%, var(--rose-soft), transparent 45%),
        radial-gradient(circle at 80% 80%, var(--beige), transparent 42%);
}

.map-link,
.map-placeholder {
    min-height: 320px;
    width: 100%;
    border-radius: 26px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px;
    background: var(--brown);
    color: var(--white);
    font-weight: 900;
}

.map-placeholder {
    background: var(--rose-soft);
    color: var(--coffee);
    border: 1px dashed rgba(158, 85, 88, 0.32);
}

.final-cta {
    background: linear-gradient(135deg, var(--coffee), var(--brown));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2,
.final-cta p {
    color: var(--white);
}

.final-cta p {
    max-width: 780px;
    margin: 0 auto 28px;
    opacity: 0.82;
}

.site-footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.78);
    padding: 58px 0 28px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer-socials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-socials a,
.site-footer a {
    color: var(--white);
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 34px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    min-height: 58px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.32);
}

.page-section {
    padding-top: 70px;
}

.content-container {
    max-width: 880px;
}

.entry-content a {
    color: var(--rose-dark);
    font-weight: 800;
}

.featured-image img {
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.post-card {
    padding: 26px;
    margin-bottom: 20px;
}

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

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

@media (max-width: 1024px) {
    .header-cta {
        display: none;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .promo-card {
        grid-template-columns: 1fr;
    }

    .about-media {
        order: 2;
    }

    .about-copy {
        order: 1;
    }
}

@media (max-width: 860px) {
    .header-inner {
        height: 76px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 76px 16px auto 16px;
        background: rgba(255, 250, 245, 0.98);
        border: 1px solid rgba(201, 163, 106, 0.22);
        border-radius: 24px;
        padding: 18px;
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-list {
        display: grid;
        gap: 6px;
    }

    .nav-list a {
        display: block;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav-list a:hover {
        background: var(--rose-soft);
    }

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

    .social-card {
        display: grid;
    }

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding-top: 48px;
    }

    h1 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .brand-text small {
        display: none;
    }

    .custom-logo-link img {
        max-height: 54px;
    }

    .hero-actions,
    .social-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .service-card {
        min-height: auto;
    }

    .hero-media img,
    .hero-placeholder {
        height: auto;
        min-height: 440px;
        border-radius: 34px 34px 10px 34px;
    }

    .floating-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .promo-card {
        border-radius: 30px;
    }

    .whatsapp-float {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}
