:root {
    --bg: #fffaf8;
    --surface: #ffffff;
    --soft: #fff0f1;
    --pink: #e96f81;
    --pink-dark: #d95066;
    --gold: #c99b55;
    --ink: #22202a;
    --muted: #716d76;
    --line: #f2cfd3;
    --shadow: 0 24px 70px rgba(123, 74, 81, 0.12);
    --radius: 12px;
}

[data-theme="dark"] {
    --bg: #141215;
    --surface: #1e1b20;
    --soft: #2d1f23;
    --pink: #ff8597;
    --pink-dark: #e96f81;
    --gold: #dfb471;
    --ink: #f5f2f7;
    --muted: #a6a0ac;
    --line: #3d3437;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
}

.theme-toggle {
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.25s, background 0.25s;
}
.theme-toggle:hover {
    transform: rotate(15deg) scale(1.05);
    background: var(--line);
}
.mobile-menu-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background: var(--bg);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader::before {
    content: "";
    width: 140px;
    height: 140px;
    border: 2px solid var(--line);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}
.preloader__mark {
    position: absolute;
    text-align: center;
}
.preloader__mark span, .brand__name {
    display: block;
    color: var(--pink);
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1;
}
.preloader__mark small, .brand__tag {
    display: block;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 14px clamp(18px, 6vw, 76px);
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
    font-size: 0.92rem;
}
.desktop-nav a {
    position: relative;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.25s;
}
.desktop-nav a:hover { color: var(--pink); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.phone-link {
    color: var(--pink);
    font-weight: 700;
    white-space: nowrap;
}
.lang-switch {
    display: flex;
    padding: 2px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
}
.lang-btn {
    width: 36px;
    height: 28px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
}
.lang-btn.active {
    color: #fff;
    background: var(--pink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    box-shadow: 0 10px 24px rgba(233, 111, 129, 0.2);
    border: 0;
}
.btn--ghost {
    color: var(--pink);
    background: transparent;
    border: 1px solid var(--pink);
}
.btn--ghost:hover {
    background: var(--soft);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: min(80vw, 320px);
    height: 100vh;
    padding: 70px 24px 24px;
    background: var(--surface);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open { transform: translateX(0); }
.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 0;
    color: var(--ink);
    font-size: 2rem;
    cursor: pointer;
}
.overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

.hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: calc(100vh - 82px);
    background: var(--surface);
}

.hero__content {
    align-self: center;
    padding: clamp(40px, 6vw, 90px) clamp(20px, 5vw, 70px);
}

.eyebrow, .section-kicker {
    color: var(--pink-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1, h2, h3 { 
    font-family: Georgia, serif; 
    font-weight: 400; 
}
h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem); 
    line-height: 1.1; 
    margin-bottom: 20px;
    color: var(--ink); 
}

.hero p { 
    color: var(--muted); 
    margin-bottom: 30px;
    max-width: 500px; 
}

.hero__buttons {
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
}

.hero__visual { 
    position: relative; 
}
.hero__visual img { 
    height: 100%; 
    object-fit: cover; 
}

section:not(.hero) {
    padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 76px);
}

.section-heading { 
    text-align: center; 
    max-width: 500px;
    margin: 0 auto 40px; 
}

.section-heading--left {
    text-align: left; 
    margin-left: 0; 
}

.section-heading h2 { 
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--ink); 
    margin-top: 5px; 
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr;
    gap: 40px;
    align-items: center;
    background: var(--bg);
}

.about__image img { 
    border-radius: var(--radius); 
    box-shadow: var(--shadow); 
}

.about__text p { 
    color: var(--muted); 
}

.about__text em { 
    display: block; 
    margin-top: 15px;
    color: var(--pink-dark); 
    font-style: italic; 
    font-size: 1.2rem;
}

.stats { 
    display: grid; 
    gap: 20px; 
    border-left: 1px solid var(--line); 
    padding-left: 30px; 
}

.stats strong { 
    display: block; 
    font-size: 1.5rem; 
    color: var(--pink); 
}

.stats span { 
    color: var(--muted);
    font-size: 0.9rem;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s, border-color 0.25s;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
}
.service-card span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 15px;
    color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 50%;
    font-size: 1.4rem;
}

.service-card h3 { 
    margin-bottom: 10px; 
    font-size: 1.2rem; 
    color: var(--ink); 
}

.service-card p {
    color: var(--muted); 
    font-size: 0.92rem; 
}

.prices {
    background: var(--surface);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow);
}
.price-card.featured {
    border-color: var(--pink);
    transform: scale(1.03);
    background: var(--surface);
}
.price-card .badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    color: var(--ink); 
}

.price-value { 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--pink-dark); 
    margin-bottom: 25px; 
}

.price-value small { 
    font-size: 0.9rem; 
    color: var(--muted); 
    font-weight: 400; 
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0; 
    text-align: left; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.price-card ul li {
    position: relative; 
    padding-left: 24px; 
    color: var(--muted); 
    font-size: 0.95rem; 
}

.price-card ul li::before {
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: var(--pink); 
    font-weight: bold; 
}

.price-card .btn { 
    margin-top: auto; 
    width: 100%; 
}

.price-notice {
    text-align: center; 
    color: var(--muted); 
    font-size: 0.85rem; 
    font-style: italic; 
    margin-top: 35px; 
}

.why { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface); 
    border-top: 1px solid var(--line); 
    border-bottom: 1px solid var(--line); 
    padding: 30px clamp(18px, 5vw, 76px) !important;
}

.why__item { 
    text-align: center;
    border-right: 1px solid var(--line);
    padding: 10px; 
}
.why__item:last-child {
    border-right: 0; 
}
.why__item strong {
    display: block;
    color: var(--pink);
    font-size: 1.6rem; 
}
.why__item span {
    font-weight: 600; 
    font-size: 0.95rem; 
}

.gallery {
    background: var(--bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow);
    background: var(--surface);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%);
    opacity: 0.9;
    transition: opacity 0.3s;
}
.gallery-card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Georgia, serif;
}

.gallery-card:hover img { transform: scale(1.06); }
.gallery-card:hover::after { opacity: 1; }

.faq-quote { 
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; background: var(--surface); }
.accordion {
    display: flex; flex-direction: column; gap: 14px; }
.accordion__item {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s; }
.accordion__item.active { 
    border-color: var(--pink); }
.accordion__trigger { 
    width: 100%; padding: 20px; text-align: left; background: transparent; border: 0; color: var(--ink); font-weight: 600; font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion__trigger::after { 
    content: "+";
    color: var(--pink); 
    font-size: 1.3rem; 
    font-weight: 300; 
    transition: transform 0.2s; 
}
.accordion__item.active .accordion__trigger::after { content: "−"; transform: rotate(180deg); }
.accordion__content { 
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 20px; }
.accordion__item.active .accordion__content {
    max-height: 200px; padding-bottom: 20px; }
.accordion__content p {
    color: var(--muted); margin: 0; font-size: 0.95rem; }

.quote-form { 
    display: grid;
    gap: 12px; 
    padding: 30px; 
    background: var(--bg);
    border: 1px solid var(--line); 
    border-radius: var(--radius); 
    box-shadow: var(--shadow); 
    
}
.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    min-height: 46px; 
    padding: 12px;
    color: var(--ink); 
    background: var(--surface); 
    border: 1px solid var(--line); 
    border-radius: var(--radius); 
    outline: none; 
}

.quote-form textarea {
    min-height: 90px; resize: vertical; }

.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--pink); }

.contact { 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 30px; 
    background: var(--bg); 
    border-top: 1px solid var(--line);
}

.contact-list {
    display: grid; 
    gap: 8px; 
    text-align: right;
    color: var(--muted);
}

.contact-list a:hover { color: var(--pink); }

.whatsapp { 
    position: fixed; 
    right: 20px; 
    bottom: 20px; 
    z-index: 45;
    display: grid; 
    place-items: center; 
    width: 54px;
    height: 54px;
    color: #fff; 
    background: #20bf63; 
    border-radius: 50%; 
    box-shadow: 0 10px 20px rgba(32,191,99,0.3); 
    font-size: 1.4rem; 
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(15, 13, 16, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 20px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 130;
    transition: background 0.2s;
}
.lightbox__close:hover { background: #e96f81; border-color: #e96f81; }

.lightbox__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    height: 80vh;
}
.lightbox__image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    height: 100%;
}
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox__btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    user-select: none;
    z-index: 120;
}
.lightbox__btn:hover { background: var(--pink); border-color: var(--pink); }

.footer { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 30px; align-items: center; padding: 40px clamp(18px, 5vw, 76px); background: var(--surface); border-top: 1px solid var(--line); }
.footer p { margin-top: 10px; color: var(--muted); }
.footer__links { display: flex; gap: 20px; justify-content: center; }
.footer__links a:hover { color: var(--pink); }
.made-by { text-align: right; }
.made-by a { color: var(--pink); font-weight: 600; }

.section-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.section-reveal.is-visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1100px) {
    .desktop-nav, .phone-link, .header-quote { display: none; }
    .menu-toggle { display: block; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    
    .hero {grid-template-columns: 1fr;}
    .hero__visual { display: none; }
    .about {grid-template-columns: 1fr;}
    .stats {display: grid; grid-template-columns: repeat(2, 1fr);  gap: 12px; border-left: 0; padding-left: 0;}
    .stats article {background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 10px;  text-align: center; box-shadow: 0 4px 15px rgba(233, 111, 129, 0.15); }
    .stats strong { font-size: 1.25rem;}
    .stats span { font-size: 0.78rem;}
    .service-grid { grid-template-columns: 1fr;   gap: 10px;}
    .service-card {display: flex; align-items: center;  gap: 14px; padding: 12px 18px; text-align: left;}
    .service-card span { width: 36px;  height: 36px;  min-width: 36px; margin: 0; font-size: 1.1rem;}
    .service-card h3 { margin: 0;   font-size: 0.98rem;}
    .service-card p {  display: none; }
    .price-grid {grid-template-columns: 1fr;  gap: 16px;}
    .price-card { padding: 22px 18px;  border-radius: var(--radius); }
    .price-card.featured {  transform: none;}
    .price-card h3 {  font-size: 1.15rem;  margin-bottom: 6px;}
    .price-value { font-size: 1.45rem;  margin-bottom: 14px;}
    .price-card ul { margin-bottom: 18px; gap: 8px;}
    .price-card ul li { font-size: 0.85rem;}
    .price-card .btn { min-height: 40px; font-size: 0.88rem;}
    .why { grid-template-columns: repeat(4, 1fr) !important;  gap: 4px; padding: 16px 6px !important; }
    .why__item { padding: 4px 2px;  border-right: 1px solid var(--line) !important; border-bottom: 0 !important;}
    .why__item:last-child {border-right: 0 !important; }
    .why__item strong { font-size: 1.1rem; }
    .why__item span { font-size: 0.68rem;   line-height: 1.15;  display: block;}
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-quote { grid-template-columns: 1fr; }
    .contact { flex-direction: column; text-align: center; }
    .contact-list { text-align: center; }
    .footer { grid-template-columns: 1fr; text-align: center; }
    .footer__links { justify-content: center; flex-wrap: wrap; }
    .made-by { text-align: center; }
}

@media (max-width: 520px) {
    .site-header { min-height: 70px; padding: 10px 16px; }
    .gallery-card { aspect-ratio: 3 / 2; }
    .btn, .hero__buttons { width: 100%; }
    .quote-form { padding: 20px; }
    .lightbox { padding: 12px; justify-content: space-between; }
    .lightbox__close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 1.5rem; }
    .lightbox__wrapper { flex-direction: column; height: 85vh; justify-content: center; gap: 20px; }
    .lightbox__image-container { max-width: 100%; height: 60vh; order: 1; }
    .lightbox__btn { width: 48px; height: 48px; font-size: 1.8rem; order: 2; position: absolute; bottom: 10px; }
    .lightbox__btn--prev { left: clamp(20px, 15vw, 100px); }
    .lightbox__btn--next { right: clamp(20px, 15vw, 100px); }
}
