@import url("https://fonts.googleapis.com/css2?family=Allura&family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
    --black: #050505;
    --surface: #0a0907;
    --surface-2: #11100d;
    --gold: #d2a14f;
    --gold-light: #f0c36e;
    --text: #fff7ec;
    --muted: #d6c8b2;
    --line: rgba(210, 161, 79, 0.34);
    --line-soft: rgba(210, 161, 79, 0.15);
    --white-soft: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    --radius: 18px;
    --radius-sm: 8px;
    --container: min(1200px, calc(100vw - 48px));
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(210, 161, 79, 0.13), transparent 26rem),
        linear-gradient(90deg, #050505, #0a0907 48%, #050505);
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

img {
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

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

ul {
    list-style: none;
}

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

button {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    min-height: 100px;
    padding: 10px max(24px, calc((100vw - 1200px) / 2));
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    width: clamp(74px, 7vw, 98px);
    aspect-ratio: 1;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.2vw, 34px);
}

.menu a {
    position: relative;
    display: inline-flex;
    padding: 10px 0;
    color: #f4efe5;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.menu a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transition: width var(--transition);
}

.menu a:hover,
.menu a.active {
    color: var(--gold-light);
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 26px;
    border: 0;
    border-radius: var(--radius-sm);
    color: #111;
    background: linear-gradient(90deg, #e6b35f, #c99643);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.22), 0 14px 28px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.22), 0 18px 36px rgba(0, 0, 0, 0.36);
}

.btn-small {
    min-height: 42px;
    padding: 0 20px;
    font-size: 0.74rem;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 88px);
    min-height: 100vh;
    padding: 150px max(24px, calc((100vw - 1200px) / 2)) 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.99), rgba(5, 5, 5, 0.94) 46%, rgba(5, 5, 5, 0.82)),
        radial-gradient(circle at left center, rgba(210, 161, 79, 0.18), transparent 44%),
        #050505;
}

.hero::before {
    position: absolute;
    top: 130px;
    left: max(-64px, calc((100vw - 1400px) / 2));
    width: 240px;
    height: 320px;
    content: "";
    opacity: 0.5;
    background: radial-gradient(circle, rgba(240, 195, 110, 0.34) 2px, transparent 3px);
    background-size: 14px 14px;
}

.hero-content,
.hero-image,
.hero-social {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 590px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.about-copy h2,
.section-title p {
    font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
    max-width: 740px;
    margin-bottom: 26px;
    font-size: clamp(3rem, 5.4vw, 5.3rem);
    font-weight: 500;
    line-height: 0.96;
}

.hero h1 span,
.hero h1 em,
.about-copy h2 em {
    color: var(--gold);
}

.hero h1 em,
.about-copy h2 em,
.package-card h4 {
    font-family: "Allura", cursive;
    font-style: normal;
    font-weight: 400;
}

.hero h1 em {
    font-size: 1.15em;
}

.hero p {
    max-width: 470px;
    margin-bottom: 34px;
    color: #efe4d3;
    font-size: 1rem;
    line-height: 1.85;
}

.hero-image {
    display: flex;
    align-self: end;
    justify-content: flex-end;
}

.hero-image img {
    width: min(100%, 640px);
    max-height: min(76vh, 760px);
    object-fit: contain;
    filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.46));
}

.hero-social {
    position: absolute;
    top: 50%;
    right: max(18px, calc((100vw - 1340px) / 2));
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-44%);
}

.hero-social a,
.circle-btn,
.light-arrow,
.close-lightbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
}

.hero-social a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: rgba(0, 0, 0, 0.55);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.hero-social a:hover {
    color: #050505;
    background: var(--gold);
    transform: translateX(-4px);
}

.section-slim {
    padding: clamp(64px, 8vw, 92px) max(24px, calc((100vw - 1200px) / 2));
    border-bottom: 1px solid var(--line-soft);
    background: linear-gradient(90deg, #070706, #0c0b09 50%, #070706);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.section-title p {
    color: var(--text);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding: 22px 16px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-align: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.service-card:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.service-card::after {
    width: 70px;
    height: 2px;
    margin-top: auto;
    content: "";
    background: var(--gold);
}

.service-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 2px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(210, 161, 79, 0.08);
}

.service-card h3 {
    min-height: 2.6em;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.service-card p {
    margin-bottom: 20px;
    color: #e7dccb;
    font-size: 0.9rem;
    line-height: 1.75;
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: #080807;
}

.about-photo {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.98);
}

.about-badge {
    position: absolute;
    right: clamp(18px, 4vw, 34px);
    bottom: clamp(18px, 4vw, 34px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(132px, 13vw, 170px);
    height: clamp(132px, 13vw, 170px);
    padding: 18px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.9);
    text-align: center;
    backdrop-filter: blur(10px);
}

.about-badge i {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 1.7rem;
}

.about-badge span {
    color: var(--text);
    font-size: clamp(0.86rem, 1vw, 1rem);
    line-height: 1.35;
}

.about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(52px, 7vw, 84px) max(24px, calc((100vw - 1200px) / 2));
    padding-left: clamp(32px, 6vw, 76px);
}

.about-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 4.2vw, 4rem);
    font-weight: 500;
    line-height: 1;
}

.about-copy p {
    max-width: 620px;
    margin-bottom: 18px;
    color: #eee4d5;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 34px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #f2e7d8;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.about-features i,
.price-card h3 i,
.package-card h3 i,
.contact-info i,
.footer-contact i {
    width: 1.25em;
    color: var(--gold);
    text-align: center;
}

.section-headline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin: 0 auto 45px;
}

.section-headline .section-title {
    margin: 0;
    text-align: left;
}

.gallery-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 18px;
}

.circle-btn {
    width: 56px;
    height: 56px;
    border: 0;
    color: #111;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transition: transform var(--transition), filter var(--transition);
}

.circle-btn:hover {
    filter: brightness(1.06);
    transform: scale(1.06);
}

.gallery-wrapper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    --gallery-gap: 16px;
    --gallery-visible: 5;
}

.gallery-track {
    display: flex;
    align-items: stretch;
    gap: var(--gallery-gap);
    cursor: grab;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-track img {
    flex: 0 0 calc((100% - (var(--gallery-visible) - 1) * var(--gallery-gap)) / var(--gallery-visible));
    width: calc((100% - (var(--gallery-visible) - 1) * var(--gallery-gap)) / var(--gallery-visible));
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid rgba(210, 161, 79, 0.28);
    border-radius: 14px;
    background: #111;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-track img:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(210, 161, 79, 0.26);
    transform: translateY(-5px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 76px 80px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    width: auto;
    max-width: min(1180px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.close-lightbox,
.light-arrow {
    position: absolute;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.close-lightbox {
    top: 24px;
    right: 28px;
    width: 52px;
    height: 52px;
    font-size: 2rem;
}

.light-arrow {
    top: 50%;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    transform: translateY(-50%);
}

.light-arrow.left {
    left: 24px;
}

.light-arrow.right {
    right: 24px;
}

.close-lightbox:hover,
.light-arrow:hover {
    color: #111;
    background: var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.pricing-stack {
    display: grid;
    gap: 24px;
}

.price-card,
.package-card,
.testimonial-card,
.contact-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(16, 15, 13, 0.95), rgba(7, 7, 6, 0.9));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.price-card,
.package-card {
    padding: clamp(24px, 3vw, 30px);
    border-radius: var(--radius);
}

.price-card h3,
.package-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 0.96rem;
    text-transform: uppercase;
}

.price-card ul {
    display: grid;
    gap: 13px;
}

.price-card li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #f3e8d8;
    font-size: 0.92rem;
}

.price-card strong {
    flex-shrink: 0;
    color: var(--gold-light);
    text-align: right;
}

.package-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.package-card h3 {
    justify-content: center;
}

.package-card h4 {
    margin-bottom: 24px;
    color: var(--gold-light);
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1;
}

.package-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
    color: #efe4d3;
    line-height: 1.7;
}

.package-card p i {
    color: var(--gold);
    font-size: 2rem;
}

.testimonial-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 18px;
}

.testimonial-wrapper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    --testimonial-gap: 24px;
    --testimonial-visible: 3;
}

.testimonial-grid {
    display: flex;
    align-items: stretch;
    gap: var(--testimonial-gap);
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - (var(--testimonial-visible) - 1) * var(--testimonial-gap)) / var(--testimonial-visible));
    width: calc((100% - (var(--testimonial-visible) - 1) * var(--testimonial-gap)) / var(--testimonial-visible));
    min-height: 230px;
    padding: clamp(24px, 3vw, 32px);
    border-radius: var(--radius);
}

.testimonial-card p {
    flex: 1;
    color: #efe4d3;
    line-height: 1.85;
}

.testimonial-card p i {
    color: var(--gold);
}

.client {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.client img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.client strong {
    display: block;
}

.client span {
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.contact {
    padding: clamp(56px, 7vw, 76px) 24px;
    background: #070706;
}

.contact-card {
    display: grid;
    grid-template-columns: 1.18fr 0.68fr 1fr 0.82fr;
    align-items: stretch;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.contact-whatsapp,
.contact-logo,
.contact-info {
    padding: clamp(28px, 3vw, 38px);
}

.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-whatsapp > i {
    color: #5ee25d;
    font-size: clamp(3rem, 4vw, 4rem);
}

.contact-whatsapp h2 {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.4;
}

.contact-whatsapp p {
    color: #efe4d3;
}

.contact-whatsapp a {
    display: inline-block;
    margin-top: 8px;
    color: var(--gold-light);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-inline: 1px solid var(--white-soft);
}

.contact-logo img {
    width: 140px;
}

.contact-info {
    display: grid;
    align-content: center;
    gap: 18px;
}

.contact-info p {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    color: #efe4d3;
    line-height: 1.65;
}

.contact-info strong {
    color: var(--text);
}

.contact-photo {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.site-footer {
    background: #050505;
    border-top: 1px solid var(--line-soft);
}

.footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    width: var(--container);
    margin: 0 auto;
    padding: 38px 0 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 86px;
}

.footer-brand p {
    color: var(--gold-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.12rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a,
.footer-contact a {
    color: #e9ddcc;
    font-size: 0.86rem;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-contact {
    display: grid;
    justify-content: end;
    gap: 8px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: var(--container);
    margin: 0 auto;
    padding: 20px 0 26px;
    border-top: 1px solid var(--white-soft);
    color: #ddd0bc;
    font-size: 0.82rem;
}

.footer-bottom strong {
    color: #fff;
}

@media (min-width: 1600px) {
    :root {
        --container: min(1320px, calc(100vw - 96px));
    }

    .header,
    .hero,
    .section-slim {
        padding-inline: max(48px, calc((100vw - 1320px) / 2));
    }

    .about-copy {
        padding-right: max(48px, calc((100vw - 1320px) / 2));
    }
}

@media (max-width: 1120px) {
    .header {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-grid;
        justify-self: end;
    }

    .menu {
        grid-column: 1 / -1;
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows var(--transition);
    }

    .header.menu-open .menu {
        grid-template-rows: 1fr;
    }

    .menu ul {
        min-height: 0;
        flex-wrap: wrap;
        padding: 10px 0 12px;
    }

    .header-cta {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 210px;
        text-align: center;
    }

    .hero-content,
    .hero p {
        margin-inline: auto;
    }

    .hero-image {
        justify-content: center;
        order: -1;
    }

    .hero-image img {
        max-height: 460px;
    }

    .hero-social {
        display: none;
    }

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

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

    .about-photo {
        min-height: 430px;
    }

    .about-copy {
        padding-inline: 24px;
        text-align: center;
    }

    .about-copy p {
        margin-inline: auto;
    }

    .about-features {
        max-width: 760px;
        margin-inline: auto;
    }

    .contact-logo {
        border-block: 1px solid var(--white-soft);
        border-inline: 0;
    }

    .contact-photo {
        height: 320px;
    }

    .footer {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

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

    .gallery-wrapper {
        --gallery-visible: 2;
    }

    .testimonial-wrapper {
        --testimonial-visible: 2;
        --testimonial-gap: 18px;
    }

    .testimonial-row {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }
}

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

    .header {
        position: sticky;
        min-height: 82px;
        padding-inline: 18px;
    }

    .logo img {
        width: 70px;
    }

    .menu ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
        width: 100%;
    }

    .menu a {
        justify-content: center;
        font-size: 0.76rem;
        white-space: normal;
    }

    .header-cta,
    .btn {
        width: 100%;
    }

    .hero {
        gap: 34px;
        padding: 46px 20px 58px;
    }

    .hero h1 {
        font-size: clamp(2.48rem, 13vw, 3.15rem);
        line-height: 1.02;
    }

    .hero p {
        font-size: 0.96rem;
    }

    .hero-image img {
        max-height: 360px;
    }

    .section-slim {
        padding: 58px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title p {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

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

    .service-card {
        width: min(100%, 430px);
        margin-inline: auto;
    }

    .about-photo {
        min-height: 340px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-features div {
        justify-content: center;
    }

    .section-headline {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .section-headline .section-title {
        text-align: center;
    }

    .gallery-row {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .gallery-wrapper {
        --gallery-gap: 12px;
        --gallery-visible: 1;
    }

    .circle-btn {
        width: 42px;
        height: 42px;
    }

    .testimonial-row {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .testimonial-wrapper {
        --testimonial-visible: 1;
        --testimonial-gap: 12px;
    }

    .lightbox {
        padding: 64px 54px;
    }

    .close-lightbox {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .light-arrow {
        width: 44px;
        height: 44px;
    }

    .light-arrow.left {
        left: 8px;
    }

    .light-arrow.right {
        right: 8px;
    }

    .price-card li {
        flex-direction: column;
        gap: 4px;
    }

    .price-card strong {
        text-align: left;
    }

    .package-card p,
    .contact-whatsapp {
        flex-direction: column;
        text-align: center;
    }

    .contact-info p {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    :root {
        --container: calc(100vw - 32px);
    }

    .header {
        padding-inline: 16px;
    }

    .menu ul {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-inline: 16px;
    }

    .section-slim,
    .contact {
        padding-inline: 16px;
    }

    .gallery-row {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
    }

    .testimonial-row {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
    }

    .circle-btn {
        width: 38px;
        height: 38px;
    }

    .contact-card,
    .price-card,
    .package-card,
    .testimonial-card {
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}
