/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --terracotta: #c25e3f;
    --coral: #e87a6a;
    --coral-light: #f5a59a;
    --sand: #f9ebe5;
    --cream: #fff8f4;
    --gold: #d4a55a;
    --gold-dark: #b88a3a;
    --warm-white: #fffefc;
    --charcoal: #2d2d2d;
    --text: #4a4a4a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--sand);
    color: var(--text);
    line-height: 1.7;
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: var(--warm-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 15px rgba(194,94,63,0.1);
    border-bottom: 3px solid var(--terracotta);
}
.logo { 
    font-family: var(--font-heading); 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: var(--terracotta); 
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { 
    color: var(--charcoal); 
    text-decoration: none; 
    font-size: 0.85rem; 
    font-weight: 600; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    transition: all 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--terracotta); }

/* === LANGUAGE SWITCHER === */
.lang-switcher {
    display: flex;
    gap: 0.3rem;
    margin-right: 1.5rem;
}
.lang-btn {
    background: transparent;
    border: 1px solid var(--coral);
    color: var(--charcoal);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.lang-btn:hover {
    background: var(--coral);
    color: var(--warm-white);
}
.lang-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--warm-white);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--coral) 100%);
}
.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 25s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    color: var(--warm-white);
    background: linear-gradient(135deg, rgba(194,94,63,0.65) 0%, rgba(232,122,106,0.55) 100%);
    backdrop-filter: blur(2px);
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-content h1 em { 
    font-style: italic; 
    color: var(--gold);
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--warm-white);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    max-width: 450px;
}
.hero-rating {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-primary {
    background: var(--gold);
    color: var(--warm-white);
    padding: 1rem 2.4rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212,165,90,0.4);
    border: 2px solid var(--gold);
}
.cta-primary:hover { 
    background: transparent; 
    color: var(--gold);
    transform: translateY(-3px);
}
.cta-outline {
    background: transparent;
    color: var(--warm-white);
    padding: 1rem 2.4rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--warm-white);
    transition: all 0.3s;
}
.cta-outline:hover { 
    background: var(--warm-white); 
    color: var(--terracotta);
}

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2.5rem 2rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--coral-light);
}
.trust-item { text-align: center; }
.trust-item .number { 
    display: block; 
    font-family: var(--font-heading); 
    font-size: 2.4rem; 
    font-weight: 700; 
    color: var(--terracotta); 
}
.trust-item .label { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    color: var(--text); 
    margin-top: 0.3rem;
    font-weight: 600;
}

/* === INFO BAR === */
.info-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 2rem;
    background: var(--terracotta);
    color: var(--warm-white);
    flex-wrap: wrap;
}
.info-item { 
    font-size: 0.9rem; 
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === SECTIONS === */
section { padding: 5rem 2rem; }
section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--terracotta);
}
.section-subtitle { 
    text-align: center; 
    color: var(--text); 
    margin-bottom: 3.5rem; 
    font-size: 1rem;
    font-style: italic;
}

/* === GALLERY === */
.gallery { background: var(--warm-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.gallery-grid img { 
    width: 100%; 
    height: 320px; 
    object-fit: cover; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.gallery-grid img:hover { 
    transform: scale(1.05) rotate(1deg); 
    box-shadow: 0 12px 40px rgba(194,94,63,0.25);
}

/* === SERVICES === */
.services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.service-item {
    background: var(--warm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(194,94,63,0.12);
    transition: all 0.4s;
    border: 1px solid var(--coral-light);
    display: flex;
    flex-direction: column;
}
.service-item:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 15px 40px rgba(194,94,63,0.2);
    border-color: var(--terracotta);
}
.service-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}
.service-info { 
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}
.service-info .duration {
    font-size: 0.85rem;
    color: var(--coral);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}
.service-info .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}
.service-info p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.service-cta {
    display: inline-block;
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 0.7rem 1.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: auto;
    align-self: flex-start;
}
.service-cta:hover {
    background: var(--coral);
    transform: translateX(4px);
}

/* === REVIEWS === */
.reviews { background: linear-gradient(135deg, var(--terracotta) 0%, var(--coral) 100%); }
.reviews h2, .reviews .section-subtitle { color: var(--warm-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; }
.review-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    position: relative;
}
.review-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--coral-light);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.review-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.review-author {
    font-weight: 700;
    color: var(--terracotta);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}
.review-date {
    font-size: 0.8rem;
    color: var(--text);
    margin-top: 0.3rem;
}

/* === ABOUT === */
.about { background: var(--warm-white); }
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.team-member { text-align: center; }
.team-member h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-bottom: 0.3rem;
}
.team-member p {
    font-size: 0.8rem;
    color: var(--text);
}

/* === CONTACT === */
.contact { background: var(--sand); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.contact-item .icon {
    font-size: 1.5rem;
    color: var(--terracotta);
}
.map-frame {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* === FOOTER === */
footer {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 3rem 2rem;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--warm-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--coral); }
.footer-bottom {
    font-size: 0.85rem;
    color: var(--text);
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 25px rgba(194,94,63,0.4);
    transition: all 0.3s;
}
.sticky-cta a:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(194,94,63,0.5);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox-img {
    max-width: calc(100vw - 60px);
    max-height: calc(100vh - 60px);
    width: auto;
    height: auto;
    object-fit: contain;
}
.lightbox-close {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}
/* === MOBILE === */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { min-height: 50vh; }
    .hero-content { padding: 3rem 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--warm-white); 
        flex-direction: column; 
        padding: 1.5rem; 
        gap: 1.2rem; 
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-bottom: 3px solid var(--terracotta);
    }
    .nav-links.active { display: flex; }
    
    .hero {
        min-height: auto;
        flex-direction: column;
    }
    .hero-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    .hero-content {
        padding: 2.5rem 1.5rem;
        background: linear-gradient(135deg, rgba(194,94,63,0.9) 0%, rgba(232,122,106,0.85) 100%);
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; }
    
    .trust-bar { gap: 2rem; }
    .trust-item .number { font-size: 2rem; }
    
    .info-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
    
    section { padding: 3.5rem 1.5rem; }
    section h2 { font-size: 2.2rem; }
    
    .services-grid { grid-template-columns: fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .sticky-cta a {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .trust-bar { flex-direction: column; gap: 1.5rem; }
    .cta-primary, .cta-outline {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* === FIX MOBILE OVERFLOW === */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* === REVEAL ANIMATION === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
