﻿:root {
    --pink: #d896ab;
    --pink-strong: #b56080;
    --pink-rgb: 216, 150, 171;
    --sky: #5f9fb2;
    --sky-soft: #edf7fb;
    --sky-rgb: 95, 159, 178;
    --white: #fffafc;
    --ink: #2f2a32;
    --ink-soft: #5f5562;
    --gold: #c79b61;
    --line: #ecdde7;
    --card: #fff7fb;
    --shadow: 0 22px 46px rgba(52, 40, 59, 0.14);
    --radius-lg: 22px;
    --radius-md: 14px;
    --floating-socials-top: 124px;
    --floating-socials-top-scrolled: 86px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: "Sora", sans-serif;
    background:
        radial-gradient(circle at 12% 6%, rgba(var(--pink-rgb), 0.26), transparent 38%),
        radial-gradient(circle at 88% 11%, rgba(var(--sky-rgb), 0.24), transparent 36%),
        linear-gradient(130deg, rgba(255, 249, 252, 0.96), rgba(244, 250, 252, 0.94)),
        var(--white);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    max-width: 100vw;
}

body.site-loader-active {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 16%, rgba(var(--pink-rgb), 0.34), transparent 44%),
        radial-gradient(circle at 82% 14%, rgba(var(--sky-rgb), 0.32), transparent 42%),
        linear-gradient(140deg, rgba(255, 249, 252, 0.98), rgba(241, 249, 252, 0.98));
    opacity: 1;
    visibility: visible;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-gif {
    width: min(230px, 56vw);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(45, 53, 82, 0.24));
}

h1,
h2,
h3,
legend {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(1150px, 92%);
    margin: 0 auto;
}

.lang-switch {
    display: inline-flex;
    gap: 6px;
    flex: 0 0 auto;
}

.lang-btn {
    border: 1px solid rgba(181, 96, 128, 0.36);
    color: #5a4658;
    background: rgba(255, 247, 251, 0.88);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.lang-btn::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1px solid rgba(72, 59, 72, 0.2);
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.42);
    flex-shrink: 0;
    background: #ffffff;
}

#langEs::before {
    background: linear-gradient(to bottom, #c8102e 0 33.33%, #ffcc00 33.33% 66.66%, #c8102e 66.66% 100%);
}

#langEn::before {
    background:
        radial-gradient(circle at 8% 10%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 18% 10%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 28% 10%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 38% 10%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 12% 20%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 22% 20%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 32% 20%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 8% 30%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 18% 30%, #ffffff 0 3%, transparent 3.2%),
        radial-gradient(circle at 28% 30%, #ffffff 0 3%, transparent 3.2%),
        linear-gradient(#3c3b6e, #3c3b6e) 0 0 / 52% 58% no-repeat,
        repeating-linear-gradient(to bottom, #b22234 0 7.69%, #ffffff 7.69% 15.38%);
}

#langRu::before {
    background: linear-gradient(to bottom, #ffffff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

#langPt::before {
    background:
    linear-gradient(12deg, transparent 42%, #ffffff 42% 48%, transparent 48%),
    radial-gradient(circle at 50% 50%, #002776 0 22%, transparent 23%),
    linear-gradient(140deg, transparent 30%, #ffdf00 30% 70%, transparent 70%),
    linear-gradient(-140deg, transparent 30%, #ffdf00 30% 70%, transparent 70%),
    #009c3b;
}

.lang-btn:hover {
    border-color: rgba(181, 96, 128, 0.56);
    background: rgba(255, 238, 246, 0.94);
}

.lang-btn.active {
    background: linear-gradient(135deg, rgba(var(--pink-rgb), 0.24), rgba(var(--sky-rgb), 0.22));
    border-color: rgba(181, 96, 128, 0.54);
    color: #3f3240;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 246, 0.82);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.service-strip {
    position: relative;
    z-index: 32;
    border-bottom: 1px solid rgba(var(--sky-rgb), 0.24);
    background: linear-gradient(90deg, rgba(var(--pink-rgb), 0.3), rgba(var(--sky-rgb), 0.24));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.service-strip-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0;
}

.service-strip-marquee {
    order: 2;
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}

.service-strip-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: serviceStripScroll 30s linear infinite;
}

.service-strip-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 22px;
}

.service-strip-label {
    white-space: nowrap;
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4a3d49;
}

.service-strip-item {
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 700;
    color: #325565;
}

.service-strip-separator {
    color: rgba(91, 73, 82, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
}

.service-strip-contact {
    order: 1;
    white-space: nowrap;
    padding: 8px 14px 8px 0;
    margin-right: 14px;
    border-right: 1px solid rgba(var(--sky-rgb), 0.26);
    color: #3f3240;
    font-size: 0.78rem;
    font-weight: 700;
    background: transparent;
}

.service-strip-contact a {
    color: #4a3d49;
    text-decoration: none;
}

.service-strip:hover .service-strip-track {
    animation-play-state: paused;
}

@keyframes serviceStripScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.nav-inner {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand span {
    min-width: 0;
}

.brand-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    line-height: 1;
}

.brand small {
    display: block;
    color: #6f6461;
    font-size: 0.78rem;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.nav-lang {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-lang .lang-switch {
    gap: 4px;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4a3d49;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-strong), var(--sky));
    transition: width 220ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--pink-strong);
    transition: 240ms ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 102px 0 84px;
    min-height: clamp(460px, 78svh, 760px);
    background: #151821;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 72%;
    pointer-events: none;
    z-index: 0;
    filter: blur(3px);
    transform: scale(1.08);
    will-change: transform, filter;
    animation: heroBackdropMove 12s ease-in-out infinite;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(36, 37, 58, 0.56) 10%, rgba(var(--sky-rgb), 0.28) 53%, rgba(var(--pink-rgb), 0.4) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 244, 250, 0.1), rgba(236, 246, 250, 0.08));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

.eyebrow,
.kicker {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: #9f5f7b;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 12px 0;
    font-size: clamp(1.95rem, 4.1vw, 3.35rem);
    line-height: 1.1;
    max-width: 16ch;
    letter-spacing: -0.3px;
    color: #fffefb;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.44);
}

.hero-title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-variant-numeric: lining-nums tabular-nums;
}

.hero-copy p {
    color: #f8f2f8;
    max-width: 56ch;
    font-size: 0.98rem;
}

.hero-copy .eyebrow {
    color: #ffe3f0;
}

.hero-copy {
    display: grid;
    gap: 16px;
    width: min(1100px, 100%);
    padding: 6px 0;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 34px;
    align-items: end;
}

.hero-main-copy {
    max-width: 60ch;
}

.hero-side-copy {
    display: grid;
    gap: 14px;
    align-content: end;
}

.hero-lead {
    margin-top: 8px;
    color: #fef6fd;
    text-shadow: 0 4px 14px rgba(18, 19, 34, 0.38);
}

.hero-actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    border: 0;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 19px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-strong), var(--sky));
    color: var(--white);
    box-shadow: 0 14px 24px rgba(var(--pink-rgb), 0.24);
}

.btn-soft {
    background: linear-gradient(135deg, #ffe7f1, #e2f5fb);
    color: #5a3f58;
}

.btn-outline {
    border: 1px solid rgba(255, 236, 245, 0.56);
    background: rgba(255, 248, 253, 0.82);
    color: #4b3d4a;
}

.hero-points {
    list-style: none;
    display: grid;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 10px;
}

.hero-points li {
    border: 1px solid rgba(255, 222, 240, 0.55);
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 244, 250, 0.2);
    color: #fff7fc;
    font-weight: 500;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.35;
    box-shadow: 0 8px 16px rgba(31, 23, 39, 0.24);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.section {
    padding: 82px 0;
}

.section h2 {
    margin: 8px 0 14px;
    font-size: clamp(2.05rem, 4.2vw, 3.3rem);
    line-height: 1.08;
}

@keyframes heroBackdropMove {
    0%,
    100% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }
    50% {
        transform: scale(1.11) translate3d(-8px, -4px, 0);
    }
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.split p {
    color: var(--ink-soft);
}

.about-story {
    background: linear-gradient(140deg, rgba(var(--pink-rgb), 0.16), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(var(--pink-rgb), 0.36);
    border-radius: var(--radius-lg);
    padding: 22px 22px 18px;
    box-shadow: 0 16px 30px rgba(91, 61, 82, 0.12);
}

.about-story p {
    max-width: 58ch;
}

.about-story p + p {
    margin-top: 10px;
}

.about-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-title-wrap h2 {
    margin: 8px 0 14px;
}

.about-title-image {
    width: min(240px, 52vw);
    height: auto;
    margin-bottom: 8px;
}

.about-highlight {
    margin-top: 14px !important;
    padding: 10px 14px;
    border-left: 4px solid var(--pink-strong);
    border-radius: 10px;
    background: rgba(255, 241, 248, 0.88);
    color: #443041 !important;
    font-weight: 700;
    line-height: 1.45;
}

.client-vehicle-photo {
    margin-top: 18px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(var(--sky-rgb), 0.34);
    box-shadow: 0 12px 24px rgba(28, 35, 44, 0.16);
}

.client-vehicle-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.pillars {
    display: grid;
    gap: 12px;
}

.pillars article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
}

.pillars h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.why-choose {
    background:
        radial-gradient(circle at 12% 8%, rgba(var(--sky-rgb), 0.2), transparent 34%),
        radial-gradient(circle at 84% 86%, rgba(var(--pink-rgb), 0.2), transparent 38%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 255, 0.9));
}

.why-choose-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: center;
}

.why-choose-media {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--sky-rgb), 0.3);
    background:
        radial-gradient(circle at 14% 16%, rgba(var(--pink-rgb), 0.26), transparent 44%),
        linear-gradient(150deg, rgba(255, 247, 252, 0.96), rgba(236, 247, 252, 0.94));
    padding: 18px;
    display: grid;
    gap: 12px;
    box-shadow: 0 18px 30px rgba(26, 34, 41, 0.12);
}

.why-choose-pet-wrap {
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
    border: 1px solid rgba(var(--pink-rgb), 0.34);
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-pet {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.why-choose-mark {
    width: min(240px, 75%);
    height: auto;
    display: block;
    margin: 0 auto;
}

.why-choose-copy {
    display: grid;
    gap: 12px;
}

.why-choose-copy p {
    color: var(--ink-soft);
    max-width: 58ch;
}

.why-choose-list {
    list-style: none;
    margin-top: 4px;
    display: grid;
    gap: 10px;
}

.why-choose-list li {
    --accent-start: #d88636;
    --accent-end: #c05f1f;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    color: #463a46;
}

.why-choose-list li:nth-child(2) {
    --accent-start: #3aaec9;
    --accent-end: #2b89ad;
}

.why-choose-list li:nth-child(3) {
    --accent-start: #df5a5d;
    --accent-end: #bb3f45;
}

.why-choose-list li:nth-child(4) {
    --accent-start: #d7a83b;
    --accent-end: #b4872b;
}

.why-choose-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    color: #fffdf9;
    background: linear-gradient(145deg, var(--accent-start), var(--accent-end));
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 18px rgba(13, 57, 80, 0.32);
}

.why-choose-icon i {
    font-size: 1.2rem;
}

.why-choose-point {
    font-weight: 700;
    line-height: 1.35;
}

.services {
    background: linear-gradient(180deg, rgba(var(--pink-rgb), 0.16), rgba(255, 255, 255, 0));
}

.services-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
}

.service-card h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--ink-soft);
}

.service-addons-list {
    white-space: pre-line;
    margin-top: 10px;
}

.pricing-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 28px;
    padding: 28px;
    border-radius: calc(var(--radius-lg) + 2px);
    border: 1px solid rgba(244, 182, 187, 0.56);
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 226, 196, 0.36), transparent 38%),
        radial-gradient(circle at 86% 16%, rgba(255, 194, 205, 0.34), transparent 42%),
        radial-gradient(circle at 50% 100%, rgba(255, 164, 179, 0.24), transparent 48%),
        linear-gradient(132deg, #d81b60 0%, #ec407a 46%, #ff69b4 100%);
    color: #fff6ea;
    box-shadow: 0 22px 38px rgba(109, 34, 63, 0.2);
}

.pricing-panel::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 146px;
    height: 146px;
    background: url("img/paw.gif?v=20260402134318") center / contain no-repeat;
    opacity: 0.84;
    filter: drop-shadow(0 8px 16px rgba(71, 29, 49, 0.32));
    pointer-events: none;
    z-index: 0;
}

.pricing-panel > * {
    position: relative;
    z-index: 1;
}

.pricing-header {
    max-width: 68ch;
}

.pricing-kicker {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: #f1c98b;
    font-weight: 700;
}

.pricing-panel h3 {
    margin: 8px 0 10px;
    color: #fff4dd;
}

.pricing-header h3 {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
}

.pricing-header p:last-child {
    color: rgba(255, 243, 228, 0.8);
}

.pricing-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pricing-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(241, 201, 139, 0.28);
    background: rgba(15, 12, 16, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-includes-label {
    margin-top: 6px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f1c98b;
    font-weight: 700;
}

.pricing-includes {
    color: rgba(255, 243, 228, 0.84);
}

.price-list {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(241, 201, 139, 0.24);
}

.price-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.price-list span {
    color: rgba(255, 243, 228, 0.78);
    font-weight: 600;
}

.price-list strong {
    color: #ffd69d;
    font-size: 1.04rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.pricing-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(241, 201, 139, 0.22);
    color: rgba(255, 243, 228, 0.84);
}

.pricing-note strong {
    color: #ffd69d;
}

.pricing-detail-wrap {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(241, 201, 139, 0.2);
}

.pricing-detail-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    color: #ffe6bf;
}

.pricing-detail-text {
    margin-top: 4px;
    color: rgba(255, 243, 228, 0.82);
}

.detailed-pricing-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detailed-pricing-card {
    padding: 18px;
    padding-right: 158px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 227, 189, 0.4);
    background: linear-gradient(160deg, rgba(255, 247, 237, 0.98), rgba(255, 237, 245, 0.94));
    box-shadow: 0 14px 24px rgba(13, 10, 16, 0.14);
    color: #372d34;
    position: relative;
}

.detailed-pricing-card h5 {
    margin: 0;
    font-size: 1.55rem;
    color: #91506f;
}

.detailed-pricing-photo {
    width: 126px;
    height: 126px;
    object-fit: cover;
    object-position: center;
    border-radius: 999px;
    margin-top: 0;
    border: 2px solid rgba(255, 252, 248, 0.9);
    box-shadow: 0 10px 20px rgba(17, 14, 20, 0.18);
    position: absolute;
    top: 14px;
    right: 14px;
}

.weight-range {
    margin-top: 2px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #6f5a66;
    font-weight: 700;
}

.detail-price-list {
    list-style: none;
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.detail-price-list li {
    border-bottom: 1px dashed rgba(112, 82, 97, 0.22);
    padding-bottom: 10px;
    font-weight: 700;
    color: #2f2630;
}

.detail-price-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-service-line {
    margin: 0;
    display: grid;
    gap: 3px;
}

.detail-service-main {
    display: block;
}

.detail-service-time {
    display: block;
    font-size: 0.86rem;
    color: #5f4c58;
    font-weight: 600;
}

.detail-service-include {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #5f4c58;
    font-weight: 500;
}

.addons-title {
    margin-top: 12px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #7f4d68;
    font-weight: 800;
}

.addons-list {
    margin: 8px 0 0 18px;
    display: grid;
    gap: 6px;
    color: #4f3d48;
    font-size: 0.86rem;
}

.detailed-pricing-card.is-cats {
    background: linear-gradient(160deg, rgba(255, 244, 233, 0.98), rgba(240, 246, 255, 0.94));
}

.detailed-pricing-card.is-addons {
    padding-right: 18px;
    background: linear-gradient(160deg, rgba(255, 246, 233, 0.98), rgba(247, 243, 255, 0.94));
}

.detailed-pricing-card.is-addons .addons-list {
    margin-top: 14px;
}

.portfolio {
    background: linear-gradient(180deg, rgba(var(--pink-rgb), 0.15), rgba(255, 255, 255, 0));
}

.testimonials {
    background:
        radial-gradient(circle at 14% 10%, rgba(var(--sky-rgb), 0.16), transparent 34%),
        radial-gradient(circle at 86% 88%, rgba(var(--pink-rgb), 0.16), transparent 36%),
        linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 254, 0.94));
}

.testimonials-head {
    max-width: 66ch;
}

.testimonials-head p {
    color: var(--ink-soft);
}

.testimonials-widget {
    margin-top: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--sky-rgb), 0.26);
    background: linear-gradient(150deg, rgba(255, 247, 252, 0.96), rgba(237, 247, 252, 0.94));
    padding: clamp(14px, 2.3vw, 24px);
    box-shadow: 0 16px 30px rgba(28, 35, 44, 0.11);
}

.testimonials-widget review-widget {
    display: block;
    width: 100%;
}

.faq {
    background: linear-gradient(180deg, rgba(var(--sky-rgb), 0.1), rgba(255, 255, 255, 0));
}

.faq-list {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: #2f2826;
    padding: 14px 42px 14px 14px;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(var(--pink-rgb), 0.55);
    color: var(--pink-strong);
    display: grid;
    place-items: center;
    font-weight: 700;
    transition: transform 180ms ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 14px 14px;
    color: var(--ink-soft);
}

.gallery-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.portfolio .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.gallery-item figcaption {
    padding: 10px 12px;
    font-size: 0.9rem;
}

.portfolio-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.before-after-title {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 64px;
    background: #151821;
    color: #fffefc;
}

.gallery-page-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    filter: blur(3px);
    transform: scale(1.08);
    will-change: transform, filter;
    animation: heroBackdropMove 12s ease-in-out infinite;
}

.gallery-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(36, 37, 58, 0.56) 10%, rgba(var(--sky-rgb), 0.28) 53%, rgba(var(--pink-rgb), 0.4) 100%);
}

.gallery-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 244, 250, 0.1), rgba(236, 246, 250, 0.08));
}

.gallery-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    display: grid;
    gap: 12px;
}

.gallery-page-hero .eyebrow {
    color: #fbe7b7;
}

.gallery-page-hero h1 {
    font-size: clamp(2.2rem, 4.7vw, 3.6rem);
    line-height: 1.05;
}

.gallery-page-hero p {
    color: #f5f2ec;
    max-width: 58ch;
}

.gallery-grid-full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-page .gallery-item img {
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
}

.about-page-hero {
    position: relative;
    min-height: clamp(420px, 62vh, 700px);
    display: flex;
    align-items: center;
    padding: 120px 0 96px;
    background:
        linear-gradient(112deg, rgba(19, 36, 43, 0.8), rgba(var(--pink-rgb), 0.62)),
        url("img/Imagenes%20del%20cliente/IMG_3603.jpeg?v=20260402134318") center 30% / cover no-repeat;
    color: #fffefc;
}

.about-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 8%, rgba(255, 226, 170, 0.24), transparent 36%);
}

.about-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    display: grid;
    gap: 14px;
}

.about-page-hero .eyebrow {
    color: #ffe8ba;
}

.about-page-hero h1 {
    font-size: clamp(2.15rem, 4.5vw, 3.5rem);
    line-height: 1.07;
    max-width: 16ch;
}

.about-page-hero p {
    color: #fdf2e8;
    max-width: 60ch;
}

.about-intro {
    background: linear-gradient(180deg, rgba(var(--pink-rgb), 0.14), rgba(255, 255, 255, 0));
}

.about-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-story-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--pink-rgb), 0.34);
    background:
        radial-gradient(circle at 92% 0%, rgba(var(--sky-rgb), 0.16), transparent 34%),
        var(--card);
    padding: 22px;
    box-shadow: 0 18px 32px rgba(42, 31, 41, 0.12);
}

.about-story-card p {
    color: var(--ink-soft);
}

.about-vehicle-showcase {
    margin: 16px auto 0;
    width: fit-content;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(var(--sky-rgb), 0.34);
    box-shadow: 0 16px 30px rgba(24, 30, 40, 0.16);
}

.about-vehicle-showcase img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 410px;
    border-radius: inherit;
}

.about-values {
    background: linear-gradient(180deg, rgba(var(--sky-rgb), 0.13), rgba(255, 255, 255, 0));
}

.about-values-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-value {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    padding: 16px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.07);
}

.about-value h3 {
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.about-value p {
    color: var(--ink-soft);
}

.about-journey {
    background:
        linear-gradient(180deg, rgba(25, 24, 36, 0.9), rgba(29, 25, 34, 0.9)),
        radial-gradient(circle at 14% 14%, rgba(var(--pink-rgb), 0.28), transparent 46%);
    color: #fff8f6;
}

.about-journey .kicker {
    color: #f1cc8f;
}

.about-journey h2 {
    color: #fff3e9;
}

.about-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
    align-items: start;
}

.journey-panel {
    border: 1px solid rgba(241, 201, 139, 0.22);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    padding: 22px;
}

.journey-list {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.journey-list li {
    border-left: 3px solid rgba(241, 201, 139, 0.62);
    padding-left: 12px;
}

.journey-list strong {
    display: block;
    color: #ffe5ba;
    margin-bottom: 3px;
}

.journey-list p {
    color: rgba(255, 246, 236, 0.82);
}

.about-stats {
    border: 1px solid rgba(241, 201, 139, 0.22);
    border-radius: var(--radius-lg);
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 14px;
}

.about-stats h3 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    color: #fff0d7;
}

.about-stats ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-stats li {
    display: grid;
    gap: 2px;
}

.about-stats span {
    color: #ffd69d;
    font-size: 1.26rem;
    font-weight: 700;
}

.about-stats small {
    color: rgba(255, 246, 236, 0.84);
    font-size: 0.86rem;
}

.about-stats .btn-outline {
    border-color: rgba(255, 225, 166, 0.48);
    background: rgba(255, 243, 225, 0.9);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.booking p {
    color: var(--ink-soft);
    max-width: 54ch;
}

.booking-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 10px;
    width: 100%;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.booking-card p {
    max-width: none;
}

.terms-section-title {
    margin: 8px 0 0;
    font-size: 1.05rem;
    color: var(--ink);
}

.terms-list {
    margin: 4px 0 0 20px;
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
}

.terms-list-bulleted {
    margin-left: 18px;
}

.terms-list li {
    padding-right: 8px;
}

.terms-ack {
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.contact {
    background: linear-gradient(160deg, rgba(var(--sky-rgb), 0.10) 0%, rgba(var(--pink-rgb), 0.07) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.contact-lead {
    color: var(--ink-soft);
    font-size: 0.94rem;
    margin: 4px 0 28px;
    line-height: 1.65;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0 0 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--pink-rgb), 0.20), rgba(var(--sky-rgb), 0.20));
    color: var(--pink-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--ink-soft);
    margin-bottom: 3px;
}

.contact-value {
    display: block;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.18s;
}

.contact-value:hover {
    color: var(--pink-strong);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    color: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.92;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);
}

.social-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

.social-facebook {
    background: #1877f2;
}

.social-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 340px;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
}

.footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(var(--pink-rgb), 0.09), rgba(var(--sky-rgb), 0.09));
    padding: 18px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-marketing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #4a3d49;
    font-weight: 700;
    transition: opacity 180ms ease;
}

.footer-marketing:hover {
    opacity: 0.82;
}

.footer-marketing-logo {
    width: auto;
    height: 24px;
    object-fit: contain;
    display: block;
}

.footer-links,
.footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.footer-links a,
.footer-meta a {
    text-decoration: none;
    color: #4a3d49;
    font-weight: 600;
    opacity: 0.92;
    transition: opacity 180ms ease;
}

.footer-links a:hover,
.footer-meta a:hover {
    opacity: 1;
}

.footer-meta {
    padding-left: 14px;
    border-left: 1px solid rgba(var(--sky-rgb), 0.26);
}

.floating-socials {
    position: fixed;
    top: var(--floating-socials-top);
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: calc(100% - 16px);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 0;
    background: transparent;
    z-index: 1200;
    transition: top 220ms ease;
}

body.is-scrolled .floating-socials {
    top: var(--floating-socials-top-scrolled);
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.38);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-btn i {
    font-size: 1.28rem;
    line-height: 1;
}

.floating-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.28);
}

.floating-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.82);
    outline-offset: 2px;
}

.floating-facebook {
    background: linear-gradient(135deg, #1877f2, #0f5ac1);
}

.floating-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
}

.floating-maps {
    background: linear-gradient(135deg, #34a853, #1f7d3a);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-whatsapp-fixed {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: 58px;
    height: 58px;
    animation: whatsappGlow 1.9s ease-in-out infinite;
}

.floating-whatsapp-fixed::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(37, 211, 102, 0.45);
    border-radius: inherit;
    pointer-events: none;
    animation: whatsappPing 1.9s ease-out infinite;
}

@keyframes whatsappGlow {
    0%,
    100% {
        box-shadow: 0 12px 24px rgba(17, 17, 17, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 18px 30px rgba(17, 17, 17, 0.32), 0 0 0 12px rgba(37, 211, 102, 0.06);
    }
}

@keyframes whatsappPing {
    0% {
        opacity: 0.82;
        transform: scale(0.92);
    }
    70% {
        opacity: 0;
        transform: scale(1.22);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].show {
    opacity: 1;
    transform: translateY(0);
}

body.welcome-popup-open {
    overflow: hidden;
}

body.gallery-lightbox-open {
    overflow: hidden;
    touch-action: none;
}

.gallery-zoomable {
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1900;
    display: grid;
    place-items: center;
    padding: clamp(12px, 2.6vw, 28px);
    background: rgba(14, 11, 18, 0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.gallery-lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox-inner {
    position: relative;
    width: min(100%, 1080px);
    max-height: min(88vh, 920px);
    display: grid;
    place-items: center;
}

.gallery-lightbox-image {
    width: auto;
    max-width: 100%;
    max-height: min(84vh, 880px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(26, 21, 29, 0.92);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-close:hover {
    background: rgba(48, 39, 56, 0.95);
}

.gallery-lightbox-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.welcome-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(21, 16, 24, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.welcome-popup-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.welcome-popup-card {
    position: relative;
    width: min(640px, 100%);
    background: linear-gradient(155deg, #fff9fd, #fff5f9);
    border: 1px solid rgba(181, 96, 128, 0.26);
    border-radius: 22px;
    box-shadow: 0 26px 64px rgba(28, 18, 33, 0.34);
    padding: 26px 24px 22px;
    display: grid;
    gap: 12px;
}

.welcome-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(181, 96, 128, 0.28);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.welcome-popup-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--pink-strong);
}

.welcome-popup-title {
    font-size: clamp(2rem, 4vw, 2.4rem);
    line-height: 1.05;
    margin-right: 26px;
}

.welcome-popup-text {
    color: var(--ink-soft);
    font-size: 1.02rem;
    max-width: 50ch;
}

.welcome-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.welcome-popup-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 11px 18px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.welcome-popup-btn:hover {
    transform: translateY(-1px);
}

.welcome-popup-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink-strong), #a95a78);
    box-shadow: 0 14px 28px rgba(181, 96, 128, 0.34);
}

.welcome-popup-btn-soft {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(95, 159, 178, 0.28);
}

@media (max-width: 560px) {
    .gallery-lightbox {
        padding: 10px;
    }

    .gallery-lightbox-inner {
        max-height: 92vh;
    }

    .gallery-lightbox-image {
        max-height: 86vh;
        border-radius: 12px;
    }

    .gallery-lightbox-close {
        top: 8px;
        right: 8px;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
        background: rgba(17, 13, 20, 0.9);
    }

    .welcome-popup-card {
        padding: 24px 16px 16px;
    }

    .welcome-popup-actions {
        flex-direction: column;
    }

    .welcome-popup-btn {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .split,
    .why-choose-grid,
    .about-layout,
    .about-values-grid,
    .about-journey-grid,
    .booking-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: center;
        justify-items: center;
    }

    .hero-copy {
        width: 100%;
        justify-items: center;
        text-align: center;
    }

    .hero-main-copy {
        width: min(100%, 760px);
        max-width: none;
        display: grid;
        justify-items: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .detailed-pricing-grid {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid-full {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .container {
        width: min(1150px, 94%);
    }

    .menu-toggle {
        display: block;
        width: 38px;
        height: 38px;
    }

    .nav-inner {
        min-height: 64px;
        gap: 8px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand small {
        display: none;
    }

    .service-strip-inner {
        grid-template-columns: 1fr;
    }

    .service-strip-marquee {
        padding-top: 7px;
        padding-bottom: 7px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .footer-links,
    .footer-meta,
    .footer-marketing,
    .footer-brand {
        justify-content: center;
    }

    .footer-meta {
        border-left: 0;
        padding-left: 0;
    }

    .service-strip-label {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .service-strip-item,
    .service-strip-separator {
        font-size: 0.71rem;
    }

    .service-strip-contact {
        margin-right: 0;
        padding: 7px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(var(--sky-rgb), 0.24);
        font-size: 0.72rem;
    }

    .lang-btn {
        padding: 4px 9px;
        font-size: 0.74rem;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 65;
        background: rgba(255, 255, 255, 0.985);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        border: 1px solid var(--line);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 14px 26px rgba(34, 28, 35, 0.16);
        display: grid;
        gap: 4px;
        padding: 10px 14px 12px;
        max-height: min(70vh, 420px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
        margin-left: 0;
    }

    .nav-lang {
        margin-left: auto;
        order: 2;
    }

    .menu-toggle {
        order: 3;
    }

    .menu .nav-link {
        display: block;
        padding: 7px 2px;
    }

    .menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .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);
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid-full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        padding-top: 62px;
        min-height: clamp(500px, 92svh, 920px);
    }

    .hero-video {
        object-position: 62% center;
        transform: scale(1.02);
        filter: blur(2px);
        animation-duration: 16s;
    }

    .hero-copy h1 {
        font-size: clamp(1.65rem, 8.6vw, 2.35rem);
        line-height: 1.12;
        width: 100%;
        max-width: none;
        margin-inline: auto;
    }

    .hero-copy p {
        width: 100%;
        max-width: 34rem;
        margin-inline: auto;
    }

    .hero-copy {
        gap: 12px;
        padding: 2px 0;
    }

    .hero-side-copy {
        align-content: center;
        justify-items: center;
        width: 100%;
    }

    .hero-points li {
        width: 100%;
    }

    .floating-socials {
        gap: 8px;
    }

    .floating-btn {
        width: 42px;
        height: 42px;
    }

    .floating-btn i {
        font-size: 1rem;
    }

    .floating-whatsapp-fixed {
        width: 48px;
        height: 48px;
    }

    .hero-points {
        grid-template-columns: 1fr;
        width: min(720px, 100%);
        margin-inline: auto;
    }

    .hero-points li {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content-grid {
        gap: 14px;
    }

    .about-story {
        padding: 18px 16px 14px;
    }

    .why-choose-media {
        padding: 14px;
    }

    .why-choose-mark {
        width: min(200px, 70%);
        margin: 0 auto;
    }

    .why-choose-list li {
        padding: 11px 12px;
        gap: 10px;
    }

    .why-choose-icon {
        width: 46px;
        height: 46px;
    }

    .why-choose-icon i {
        font-size: 1.05rem;
    }

    .why-choose-point {
        font-size: 0.9rem;
    }

    .pricing-panel {
        padding: 20px;
    }

    .pricing-panel::after {
        top: 12px;
        right: 12px;
        width: 112px;
        height: 112px;
        opacity: 0.78;
    }

    .pricing-card {
        padding: 18px;
    }

    .price-list li {
        flex-wrap: wrap;
        gap: 8px;
    }

    .price-list strong {
        margin-left: auto;
    }

    .detailed-pricing-card {
        padding: 16px;
        padding-right: 134px;
    }

    .detailed-pricing-photo {
        width: 100px;
        height: 100px;
        top: 12px;
        right: 12px;
    }

    .gallery-page-hero {
        padding: 70px 0 54px;
    }

    .about-page-hero {
        min-height: clamp(340px, 58vh, 520px);
        padding: 92px 0 68px;
    }

    .about-page-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .about-story-card,
    .journey-panel,
    .about-stats {
        padding: 18px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .gallery-page .gallery-item img {
        height: auto;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(1150px, 95%);
    }

    .service-strip-track {
        animation-duration: 22s;
    }

    .service-strip-label {
        font-size: 0.64rem;
    }

    .service-strip-item,
    .service-strip-separator {
        font-size: 0.68rem;
    }

    .service-strip-contact {
        font-size: 0.69rem;
    }

    .nav-lang .lang-switch {
        gap: 4px;
    }

    .nav-lang .lang-btn {
        padding: 4px 7px;
        font-size: 0.7rem;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .hero {
        padding-top: 56px;
        padding-bottom: 68px;
        min-height: clamp(540px, 96svh, 980px);
    }

    .hero-copy {
        width: 100%;
    }

    .hero-main-copy {
        width: 100%;
    }

    .hero-video {
        object-position: 68% center;
        transform: scale(1);
        filter: blur(1.5px);
    }

    .eyebrow,
    .kicker {
        letter-spacing: 1.8px;
    }

    .floating-socials {
        gap: 6px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
    }

    .floating-whatsapp-fixed {
        width: 46px;
        height: 46px;
    }

    .pricing-panel::after {
        top: 10px;
        right: 10px;
        width: 92px;
        height: 92px;
        opacity: 0.72;
    }
}

@media (max-width: 420px) {
    .service-strip-contact a[href^="mailto"] {
        display: none;
    }

    .menu {
        padding: 8px 12px 10px;
    }

    .hero-copy h1 {
        font-size: clamp(1.45rem, 9vw, 2rem);
        line-height: 1.08;
    }

    .hero-copy p {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-video,
    .service-strip-track,
    [data-reveal] {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    [data-reveal] {
        opacity: 1 !important;
    }

    .floating-whatsapp-fixed,
    .floating-whatsapp-fixed::after {
        animation: none !important;
    }
}

.form-page-hero {
    position: relative;
    padding: 90px 0 68px;
    background:
        linear-gradient(112deg, rgba(20, 39, 52, 0.82), rgba(var(--sky-rgb), 0.58)),
        url("https://images.pexels.com/photos/686094/pexels-photo-686094.jpeg") center 35% / cover no-repeat;
    color: #fffefc;
}

.form-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, rgba(255, 230, 177, 0.2), transparent 38%);
}

.form-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    display: grid;
    gap: 12px;
}

.form-page-hero .eyebrow {
    color: #f7e4bf;
}

.form-page-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    line-height: 1.08;
    max-width: 17ch;
}

.form-page-hero p {
    color: #f5f2ea;
    max-width: 58ch;
}

.form-section {
    background: linear-gradient(180deg, rgba(var(--sky-rgb), 0.1), rgba(255, 255, 255, 0));
}

.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.intake-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 20px;
    display: grid;
    gap: 14px;
}

.intake-card h2 {
    font-size: clamp(1.75rem, 3.3vw, 2.35rem);
}

.form-fieldset {
    border: 1px solid rgba(var(--sky-rgb), 0.24);
    border-radius: var(--radius-md);
    padding: 12px;
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.form-fieldset legend {
    padding: 0 8px;
    font-size: 1.05rem;
    color: #345867;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.87rem;
    font-weight: 700;
    color: #4a3d49;
}

.form-required {
    color: #b24d76;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(var(--sky-rgb), 0.32);
    border-radius: 10px;
    background: #fffeff;
    color: var(--ink);
    font: inherit;
    padding: 10px 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(var(--pink-rgb), 0.85);
    box-shadow: 0 0 0 4px rgba(var(--pink-rgb), 0.2);
}

.release-block {
    border: 1px dashed rgba(var(--sky-rgb), 0.34);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.release-block h3 {
    font-size: 1.4rem;
}

.form-accept-row {
    margin-top: 2px;
    display: grid;
    gap: 6px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #413742;
    font-weight: 600;
}

.form-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--pink-strong);
    flex-shrink: 0;
}

.form-error-msg {
    font-size: 0.85rem;
    color: #a13659;
    font-weight: 700;
}

.form-submit-row {
    margin-top: 2px;
}

.btn-wa {
    width: 100%;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

@media (max-width: 860px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}












