:root {
    --bg: #fffaf8;
    --surface: #ffffff;
    --surface-soft: #fff1ef;
    --text: #2d2430;
    --muted: #675f69;
    --primary: #ff8f72;
    --secondary: #8a74f3;
    --accent: #5fc9a9;
    --accent-2: #f15d8e;
    --border: rgba(45, 36, 48, 0.12);
    --shadow: 0 18px 40px rgba(105, 69, 95, 0.12);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
    --header-height: 86px;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 143, 114, 0.14), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(138, 116, 243, 0.14), transparent 30%),
        radial-gradient(circle at 75% 80%, rgba(95, 201, 169, 0.12), transparent 24%),
        var(--bg);
    line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 1000;
    background: var(--surface);
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.section {
    padding: 6rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,241,239,0.68));
    border-top: 1px solid rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.7);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.9rem;
    color: var(--accent-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.eyebrow::before {
    content: '';
    width: 1.25rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

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

h3 {
    font-size: 1.5rem;
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 250, 248, 0.82);
    border-bottom: 1px solid rgba(255,255,255,0.85);
}

.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
}

.brand img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-nav a {
    font-size: 0.97rem;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.site-nav a.is-active {
    color: var(--text);
    font-weight: 700;
}

.site-nav a.is-active {
    position: relative;
}

.site-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero-grid,
.split-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    min-height: calc(100vh - var(--header-height) - 2.5rem);
}

.hero-copy {
    align-self: center;
}

.hero-media {
    height: 100%;
    min-height: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius) + 8px);
    box-shadow: var(--shadow);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.4rem;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0;
    margin: 1.6rem 0 0;
    list-style: none;
}

.hero-points li,
.info-card,
.service-card,
.review-card,
.form-card,
.gallery-item {
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-points li {
    padding: 1rem;
    font-weight: 600;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    color: white;
}

.button-secondary {
    background: var(--surface);
    border-color: var(--border);
}

.button-whatsapp {
    background: linear-gradient(135deg, #35c85a, #23a747);
    color: white;
}

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

.section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.split-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.about-section {
    display: grid;
    gap: 1.5rem;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
    align-items: start;
    gap: 1.5rem;
}

.about-copy {
    align-self: start;
}

.about-photo-wrap {
    display: flex;
    justify-content: flex-end;
}

.about-photo {
    width: min(100%, 320px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.info-card-group {
    display: grid;
    gap: 1rem;
}

.info-card,
.service-card,
.review-card,
.form-card {
    padding: 1.4rem;
}

.reviews-grid,
.gallery-grid,
.portfolio-grid {
    display: grid;
    gap: 1.25rem;
}

.listing-grid-wrap {
    display: grid;
    gap: 1.25rem;
}

.listing-actions {
    display: flex;
    justify-content: center;
}

.listing-toggle {
    min-width: 260px;
}

.services-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    overflow: hidden;
    padding: 0;
}

[data-listing-extra][hidden] {
    display: none !important;
}

.service-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255,255,255,0.55);
    position: relative;
    border: 0;
    padding: 0;
    width: 100%;
    display: block;
    cursor: pointer;
}

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

.service-media.is-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.service-video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--secondary);
    box-shadow: 0 10px 28px rgba(20, 18, 35, 0.18);
    pointer-events: none;
    font-size: 0;
    transform: translate(-50%, -50%);
}

.service-video-badge::before {
    content: '';
    display: block;
    width: 0.95rem;
    height: 1.1rem;
    background: currentColor;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translateX(0.08rem);
}

.service-content {
    padding: 1.4rem;
}

.service-topline {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-topline h3 {
    flex: 1 1 12rem;
    min-width: 0;
}

.price {
    color: var(--secondary);
    font-weight: 700;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: right;
    flex: 0 1 auto;
    max-width: 100%;
}

.duration {
    color: var(--accent-2);
    font-weight: 600;
    margin-top: -0.2rem;
}

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

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

.portfolio-item img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gallery-item {
    overflow: hidden;
    padding: 0;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.gallery-item span {
    display: block;
    padding: 0.9rem 1rem 1rem;
    font-weight: 600;
}

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

.stars {
    color: #f4b441;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.4rem;
    display: grid;
    gap: 0.65rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.92rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 36, 48, 0.16);
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(138, 116, 243, 0.2);
    border-color: var(--secondary);
}

.checkbox-wrap {
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    margin: 0;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.form-note,
.legal-content p,
.section-heading p,
.info-card p,
.review-card p,
.service-card p,
.contact-list,
.cookie-dialog p {
    color: var(--muted);
}

.alert {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(95, 201, 169, 0.18);
    color: #0f6a52;
}

.alert-error {
    background: rgba(241, 93, 142, 0.14);
    color: #8b1d47;
}

.site-footer {
    padding: 2.8rem 0;
    background: rgba(45, 36, 48, 0.96);
    color: rgba(255,255,255,0.88);
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 1.15rem;
    z-index: 26;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    color: #fff;
    box-shadow: var(--shadow);
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
    transform: translateY(-2px);
}

.music-drawer {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 27;
    width: 270px;
    transform: translate(100%, -50%);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.98;
    pointer-events: auto;
}

.music-drawer.is-open {
    transform: translate(0, -50%);
}

.music-drawer-panel {
    position: relative;
    background: rgba(45, 36, 48, 0.86);
    color: #fff;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border-radius: 20px 0 0 20px;
    padding: 1rem 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 148px;
}

.music-drawer-title {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.music-drawer-handle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 18px 0 0 18px;
    background: rgba(45, 36, 48, 0.92);
    color: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.22s ease, background 0.22s ease;
}

.music-drawer.is-open .music-drawer-handle {
    transform: translate(-100%, -50%);
}

.music-volume {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    font-weight: 600;
}

.music-volume input {
    width: 100%;
    accent-color: var(--secondary);
    cursor: pointer;
}

.music-toggle {
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent-2));
    box-shadow: var(--shadow);
}

.music-toggle:hover,
.music-toggle:focus-visible {
    transform: translateY(-1px);
}

.music-drawer-handle:hover,
.music-drawer-handle:focus-visible {
    transform: translate(calc(-100% - 2px), -50%);
}

.cookie-dialog,
.lightbox,
.review-modal {
    border: 0;
    border-radius: 28px;
    padding: 0;
    width: min(720px, calc(100% - 2rem));
    box-shadow: var(--shadow);
}

.cookie-dialog::backdrop,
.lightbox::backdrop,
.review-modal::backdrop {
    background: rgba(30, 20, 34, 0.55);
}

.cookie-dialog-inner,
.review-modal-inner {
    padding: 1.6rem;
}

.cookie-options,
.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cookie-actions {
    flex-direction: row;
    justify-content: end;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.lightbox {
    background: transparent;
    text-align: center;
}

.lightbox img {
    width: 100%;
    border-radius: 26px;
    background: #fff;
}

.lightbox p {
    color: white;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    cursor: pointer;
    font-size: 1.5rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.legal-page {
    min-height: 100vh;
    display: grid;
    place-items: start center;
    padding: 3rem 0;
}

.legal-content {
    background: rgba(255,255,255,0.88);
    padding: 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.gallery-video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, background 0.2s ease;
    font-size: 0;
    transform: translate(-50%, -50%);
}

.gallery-video-badge::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1.15rem;
    background: currentColor;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translateX(0.08rem);
}

.gallery-item.is-video.is-playing .gallery-video-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.gallery-item.is-video.is-playing .gallery-video-badge::before {
    width: 0.75rem;
    height: 1rem;
    margin-left: 0;
    border: 0;
    background:
        linear-gradient(90deg, currentColor 0 34%, transparent 34% 66%, currentColor 66% 100%);
    clip-path: none;
    transform: none;
}

.lightbox {
    width: min(920px, calc(100% - 1.2rem));
    border: 0;
    border-radius: 24px;
    padding: 1.2rem;
    background: rgba(255, 250, 248, 0.98);
    box-shadow: var(--shadow);
}

.lightbox::backdrop {
    background: rgba(34, 26, 37, 0.72);
    backdrop-filter: blur(4px);
}

.lightbox-media-wrap {
    position: relative;
}

#lightbox-image,
#lightbox-video {
    width: 100%;
    max-height: 78vh;
    border-radius: 18px;
    object-fit: contain;
    background: #111;
}

#lightbox-image.is-hidden,
#lightbox-video:not(.is-visible) {
    display: none;
}

.lightbox-video-toggle {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--text);
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-video-toggle.is-visible {
    display: inline-flex;
}

.lightbox-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
}

#lightbox-caption {
    margin: 0.9rem 0 0;
    font-weight: 600;
    color: var(--text);
}


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

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.review-head span {
    color: #f4b441;
    letter-spacing: 0.04em;
    line-height: 1;
    transform: translateY(-2px);
}

.review-form-message {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 600;
}

.review-form-message.is-error {
    background: rgba(241, 93, 142, 0.12);
    border-color: rgba(241, 93, 142, 0.28);
    color: #8b1d47;
}

.review-form-message.is-success {
    background: rgba(95, 201, 169, 0.16);
    border-color: rgba(95, 201, 169, 0.28);
    color: #0f6a52;
}

.review-modal .button[disabled] {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-grid,
    .contact-grid,
    .footer-grid,
    .reviews-grid,
    .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .about-intro {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 1rem;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 76px;
    }

    .section {
        padding: 4.25rem 0;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        inset: calc(100% + 0.7rem) 1rem auto 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255,255,255,0.97);
        padding: 1rem;
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .footer-grid,
    .reviews-grid,
    .gallery-grid,
    .portfolio-grid,
    .about-cards,
    .form-grid,
    .hero-points,
    .about-intro,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .listing-toggle {
        width: 100%;
        min-width: 0;
    }

    .about-photo-wrap {
        justify-content: flex-start;
    }

    .about-photo {
        width: min(100%, 280px);
    }

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

    .cookie-actions {
        justify-content: stretch;
    }

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

    .scroll-top {
        right: 0.85rem;
        bottom: 1rem;
        width: 46px;
        height: 46px;
    }

    .music-drawer {
        width: 248px;
        transform: translate(100%, -50%);
    }

    .music-drawer-handle {
        width: 50px;
        height: 50px;
        border-radius: 16px 0 0 16px;
    }

    .music-drawer-panel {
        padding: 0.95rem;
        border-radius: 18px 0 0 18px;
    }
}