@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600&family=Alex+Brush&display=swap');

:root {
    --color-primary: #1a1a1a;
    --color-accent: #c07a74; /* Rose gold / blush */
    --color-accent-light: #e6b8b4;
    --color-bg-light: #fffaf9;
    --color-bg-white: #ffffff;
    --color-bg-dark: #121212;
    --color-text-muted: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Alex Brush', cursive;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.title-accent {
    color: var(--color-accent);
    font-family: var(--font-script);
    font-size: 5.2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 0.8;
}

.hero-divider {
    width: 100%;
    max-width: 380px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 30px 0;
    position: relative;
}

.hero-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    border: 1px solid var(--color-accent);
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: white;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 15px 5%;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.text-logo-main {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.text-logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-top: 5px;
}

.text-logo-footer {
    color: white;
    align-items: flex-start;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wishlist-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    text-decoration: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    display: block;
    margin-top: 10px;
}

.hero-services {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

.hero-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 400px;
}

.hero-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.hero-social a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-social a:hover {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* El elemento de la imagen será el que tenga parallax */
.hero-image, .hero-video {
    width: 100%;
    height: 100%; /* El video no necesita extra height como el parallax */
    object-fit: cover;
    object-position: center top;
    will-change: transform, opacity;
    /* Feather edge gradient mask to blend into the left side */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 100px 5%;
    background-color: var(--color-bg-light);
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.section-header h2 span {
    color: var(--color-accent);
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 20px auto 0 auto;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    transform: translateX(-50%) rotate(45deg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    text-align: center;
    cursor: pointer;
    background-color: #f7ede8;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    width: 100%;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-info {
    position: relative;
    padding: 40px 20px 30px;
    flex-grow: 1;
}

.service-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #352822;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f7ede8;
    z-index: 2;
    transition: var(--transition);
    font-size: 1.5rem;
}

.service-card:hover .service-icon {
    background-color: var(--color-accent);
}

.service-info h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.btn-services {
    display: inline-block;
    margin-top: 20px;
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent-light);
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-services:hover {
    background-color: var(--color-accent);
    color: white;
}

/* ==========================================================================
   Testimonial Banner
   ========================================================================== */
.testimonial-banner {
    display: flex;
    background-color: var(--color-bg-dark);
    color: white;
}

.testimonial-content {
    flex: 1.4;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    position: relative;
    background-image: 
        linear-gradient(to right, rgba(18,18,18,0.1) 0%, rgba(18,18,18,0.95) 60%),
        url('/assets/fondo-testimonio.jpg');
    background-size: cover;
    background-position: left center;
}

.testimonial-carousel {
    flex: 1;
    text-align: center;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: white;
}

.testimonial-content h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.title-accent-uppercase {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

.testimonial-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 20px auto 30px auto;
    position: relative;
}

.testimonial-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    transform: translateX(-50%) rotate(45deg);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.stars {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-author {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--color-accent);
}

.instagram-promo {
    flex: 1;
    background: url('/assets/fondo-instagram-1.jpg') center/cover no-repeat;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-right: 150px;
}

.promo-content h3 {
    font-size: 3.5rem;
    font-family: var(--font-script);
    color: white;
    margin-bottom: 5px;
    font-weight: 400;
}

.promo-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: white;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-insta {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 30px;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.btn-insta:hover {
    background: white;
    color: #b17970;
}

.promo-subtext {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 30px;
}

.insta-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.insta-icon {
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.insta-handle span {
    color: white;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.instagram-mockup {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   Experiences (Features)
   ========================================================================== */
.experiences {
    padding: 80px 5%;
    background-color: #fffaf9;
    text-align: center;
    position: relative;
}

.experiences-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: #333;
    letter-spacing: 2px;
}

.experiences-accent {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--color-accent);
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.12);
    box-shadow: 0 15px 30px rgba(177, 121, 112, 0.15);
}

.feature-item h4 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.feature-item p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

/* ==========================================================================
   Staff Section
   ========================================================================== */
.staff-section {
    padding: 100px 5%;
    background-color: #F7EDE8;
    position: relative;
}

.staff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.staff-title-area h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: #333;
    letter-spacing: 2px;
}

.staff-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.staff-subtitle .title-accent {
    font-size: 1.8rem;
    color: var(--color-accent);
}

.staff-divider {
    height: 1px;
    width: 60px;
    background-color: var(--color-accent);
}

.btn-staff {
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.85rem;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-staff:hover {
    background-color: var(--color-accent);
    color: white;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.staff-card {
    background-color: #F7EDE8;
    border: 1px solid rgba(177, 121, 112, 0.1);
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.staff-card:hover {
    box-shadow: 0 15px 30px rgba(177, 121, 112, 0.15);
    transform: translateY(-5px);
}

.staff-card .staff-info {
    padding: 25px 15px;
    text-align: center;
    background-color: #F7EDE8;
    position: relative;
    z-index: 2;
}

.staff-img-wrapper {
    overflow: hidden;
}

.staff-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.staff-card:hover .staff-img {
    transform: scale(1.08);
}

.staff-card h4 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: #222;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.staff-card p {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: #444;
    font-weight: 400;
}

/* ==========================================================================
   About / Interior
   ========================================================================== */
.about-section {
    display: flex;
    background-color: #fdf3f0;
    max-height: 550px;
    overflow: hidden;
}

.about-image {
    flex: 0 0 58%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 0 0 42%;
    padding: 30px 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #333;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    font-weight: 400;
}

.about-subtitle {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    line-height: 0.8;
}

.about-desc {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-btn-container {
    margin-bottom: 25px;
}

.btn-solid-rose {
    background-color: var(--color-accent);
    color: white;
    font-size: 0.9rem;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-solid-rose:hover {
    background-color: #a0665c;
    color: white;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
}

.about-gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 2px solid white;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 80px 5% 40px 5%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}

.footer-brand {
    text-align: center !important;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.brand-subtitle {
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255,255,255,0.9);
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--color-accent);
    color: white;
    border: none;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    color: white;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

/* ==========================================================================
   Responsive & Mobile Menu
   ========================================================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
}
.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}
.header-light-text:not(.scrolled) .mobile-menu-btn span {
    background-color: white;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--color-primary) !important; }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--color-primary) !important; }

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 999;
    backdrop-filter: blur(5px);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav {
    position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; height: 100dvh;
    background: white; z-index: 1000; box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    transition: var(--transition); display: flex; flex-direction: column;
    padding: 100px 30px 80px; overflow-y: auto;
}
.mobile-nav.active { left: 0; }

.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 20px; flex-grow: 1; }
.mobile-nav-links a { text-decoration: none; color: var(--color-primary); font-size: 1.2rem; font-weight: 500; font-family: var(--font-heading); display: block; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; transition: var(--transition); }
.mobile-nav-links a:hover { color: var(--color-accent); padding-left: 10px; }
.mobile-nav-footer { margin-top: 30px; }
.btn-mobile-book { display: block; text-align: center; width: 100%; }

body.no-scroll { overflow: hidden; }

@media (max-width: 992px) {
    .nav-links { display: none !important; }
    .header { flex-direction: column; justify-content: center; padding: 15px 5% !important; gap: 15px; }
    .header-actions { margin: 0; justify-content: center; width: 100%; display: flex; align-items: center; }
    .header-actions .btn, .header-actions .wishlist-icon, .hidden-mobile { display: none !important; }
    .mobile-menu-btn { display: flex !important; margin: 0 auto; background: transparent; padding: 10px; }
    .header:not(.scrolled) .text-logo { color: white !important; }
    .header:not(.scrolled) .mobile-menu-btn span { background-color: white !important; }
    .hero-compact { padding-top: 100px !important; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .staff-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-banner { flex-direction: column; }
    .testimonial-content { padding: 40px 10px; gap: 5px; justify-content: space-between; overflow: hidden; }
    .testimonial-carousel { padding: 0 5px; min-width: 0; }
    .testimonial-text br, .testimonial-content h2 br { display: none; }
    .promo-content { margin-right: 0; padding: 0 10px; }
    .about-section { flex-direction: column; max-height: none; }
    .about-image { height: 400px; flex: auto; }
    .instagram-mockup { display: none; }
    .staff-header { flex-direction: column; gap: 20px; text-align: center; }
    .staff-divider { display: none; }
}

@media (max-width: 768px) {
    .hero-scroll-container { height: auto !important; }
    .hero { position: relative !important; padding-top: 100px; flex-direction: column; padding-bottom: 50px; height: auto !important; min-height: 100vh !important; justify-content: center; text-align: center; background-color: #000; }
    .hero-content { margin: 0 auto; align-items: center; display: flex; flex-direction: column; color: white; }
    .hero-content h1, .hero-content .title-accent, .hero-services, .hero-description { color: white !important; }
    .hero-image-wrapper { width: 100%; opacity: 0.5; }
    .hero h1 { font-size: 2.2rem; }
    .hero h1 span { font-size: 2.5rem; }
    .title-accent { font-size: 4rem; }
    .hero-services { flex-wrap: wrap; justify-content: center; gap: 10px; }
    
    .promo-content h3 { font-size: 3rem; line-height: 1.2; }
    .promo-subtitle { font-size: 0.75rem; letter-spacing: 1px; }
    .btn-insta { padding: 10px 20px; font-size: 0.8rem; }
    
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .text-logo-footer { align-items: center; }
    .footer-contact li { justify-content: center; }
    .footer-social { justify-content: center; }
    
    .features-grid { grid-template-columns: 1fr; }
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    
    .about-image { height: 300px; }
    .about-gallery { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .about-title { font-size: 2rem; }
    .about-subtitle { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .staff-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .hero h1 span { font-size: 2rem; }
    .title-accent { font-size: 3rem; }
    .carousel-btn { width: 35px; height: 35px; font-size: 0.9rem; }
    .testimonial-content h2 { font-size: 1.5rem; }
}
