/* ====================================
   KWIACIARNIA BUKIETERIA — Crystal Glass + Apple Design
   ==================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-deep: #C2547D;
    --green-soft: #E8A0BF;
    --rose-gold: #C8956C;
    --rose-light: #E8C5A8;
    --pink-soft: #F2D1D1;
    --pink-accent: #E8A0BF;
    --cream: #FDF8F3;
    --cream-dark: #F5EDE4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #555555;
    --text-light: #888888;

    /* Crystal Glass */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(194, 84, 125, 0.08);
    --glass-blur: blur(20px);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 40px;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--rose-gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--rose-gold);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--green-deep);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.section {
    padding: 100px 0;
}

/* ====================================
   NAVIGATION — Crystal Glass
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    order: 0;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    filter: brightness(0);
}

.logo-icon { display: flex; align-items: center; }
.logo-icon svg { color: var(--rose-gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    order: 1;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link { color: var(--text-medium); }
.navbar.scrolled .nav-link:hover { color: var(--text-dark); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--rose-gold);
    color: var(--white) !important;
    border-color: var(--rose-gold);
}

.navbar.scrolled .nav-cta {
    background: var(--green-deep);
    color: var(--white) !important;
    border-color: var(--green-deep);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    order: 2;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* ====================================
   HERO — Cinematic Full Screen
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #5E1A3A;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(194, 84, 125, 0.85) 0%,
            rgba(139, 34, 82, 0.75) 40%,
            rgba(94, 26, 58, 0.70) 100%
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--rose-light), var(--pink-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 149, 108, 0.35);
}

.btn-primary:hover {
    background: #D4A57A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 149, 108, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(194, 84, 125, 0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.15), rgba(232, 160, 191, 0.1));
    z-index: -1;
}

.about-content { padding: 20px 0; }

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
}

.stat { text-align: center; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--rose-gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ====================================
   GALLERY — Masonry Bento Grid
   ==================================== */
.section-gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

/* ====================================
   SERVICES — Crystal Glass Cards
   ==================================== */
.section-services {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.06) 0%, transparent 70%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(194, 84, 125, 0.1);
    border-color: var(--rose-light);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--green-deep);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon { color: var(--rose-gold); }

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Last 2 cards center in bottom row */
.services-grid .service-card:nth-child(4) { grid-column: 1 / 2; }
.services-grid .service-card:nth-child(5) { grid-column: 2 / 3; }

/* ====================================
   TESTIMONIALS — Elegant Carousel
   ==================================== */
.section-testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(194, 84, 125, 0.06);
    padding: 10px 24px;
    border-radius: 100px;
    margin-top: 16px;
}

.badge-stars {
    display: flex;
    gap: 2px;
}

.badge-stars svg {
    width: 16px;
    height: 16px;
    color: #F5A623;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-deep);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -12px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 24px);
    margin: 0 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #F5A623;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.carousel-btn:hover {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}

.carousel-btn svg { width: 20px; height: 20px; }

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--green-deep);
    width: 24px;
    border-radius: 4px;
}

/* ====================================
   BLOG SECTION
   ==================================== */
.section-blog {
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(194, 84, 125, 0.08);
}

.blog-date {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rose-gold);
    margin-bottom: 12px;
    padding: 20px 28px 0;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    padding: 0 28px;
}

.blog-excerpt {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    padding: 0 28px;
}

.blog-full {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
    padding: 0 28px;
}

.blog-full p {
    margin-bottom: 12px;
}

.blog-full p:last-child {
    margin-bottom: 0;
}

.blog-toggle {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-deep);
    padding: 8px 28px 24px;
    transition: var(--transition);
    cursor: pointer;
}

.blog-toggle:hover {
    color: var(--rose-gold);
}

/* ====================================
   SOCIAL LINKS (Contact Section)
   ==================================== */
.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-social-fb {
    background: #1877F2;
}

.contact-social-ig {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.section-contact {
    background: var(--white);
    padding: 100px 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.contact-info {
    padding: 60px 60px 60px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(194, 84, 125, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--green-deep);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover { color: var(--rose-gold); }

.contact-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: var(--white);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-social svg { width: 20px; height: 20px; }
.contact-social:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3); }

.contact-map {
    border-radius: var(--radius-lg) 0 0 0;
    overflow: hidden;
    min-height: 600px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ====================================
   CTA STRIP — Phone / Order
   ==================================== */
.section-contact::before {
    content: '';
    display: block;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-brand .logo-icon svg { color: var(--rose-gold); }

.footer-info p {
    font-size: 0.85rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-powered {
    margin-top: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer-powered a:hover {
    color: var(--rose-gold);
}

/* ====================================
   LIGHTBOX
   ==================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; }

/* ====================================
   ANIMATIONS — Scroll Reveal
   ==================================== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.animate-in:nth-child(2) { transition-delay: 0.15s; }
.animate-in:nth-child(3) { transition-delay: 0.3s; }
.animate-in:nth-child(4) { transition-delay: 0.45s; }

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrapper img { height: 400px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid .service-card:nth-child(5) { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .testimonial-card { flex: 0 0 calc(50% - 24px); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { padding: 40px 0; }
    .contact-map { border-radius: var(--radius-md); min-height: 400px; margin-bottom: -1px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open { right: 0; }
    .nav-links .nav-link { color: var(--text-dark); font-size: 1.1rem; }
    .nav-links .nav-cta { background: var(--green-deep); color: var(--white) !important; border-color: var(--green-deep); }

    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero-title-line { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item-tall { grid-row: span 1; }
    .gallery-item-wide { grid-column: span 1; }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) { grid-column: auto; max-width: none; }

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

    .testimonial-card { flex: 0 0 calc(100% - 24px); }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 2rem; }

    .footer-content { flex-direction: column; gap: 20px; text-align: center; }

    .page-header { padding-top: 100px; padding-bottom: 40px; }
    .page-header .section-subtitle { max-width: 90%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
    .service-card { padding: 28px 24px; }
    .testimonial-card { padding: 28px 24px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-number { font-size: 1.8rem; }

    .page-header { padding-top: 80px; padding-bottom: 30px; }

    .contact-map { min-height: 300px; }

    .btn-phone, .btn-order { padding: 14px 28px; font-size: 0.9rem; }
    .cta-title { font-size: 1.5rem; }
}

/* ====================================
   PAGE HEADER — Subpages
   ==================================== */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.page-header .section-label {
    color: var(--rose-gold);
}

.page-header .section-title {
    margin-bottom: 16px;
}

.page-header .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   CTA Phone Strip (above footer)
   ==================================== */
.cta-strip {
    background: linear-gradient(135deg, var(--green-deep) 0%, #8B2252 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(200, 149, 108, 0.12) 0%, transparent 70%);
}

.cta-strip .container { position: relative; z-index: 1; }

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-phone {
    background: var(--rose-gold);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200, 149, 108, 0.4);
}

.btn-phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(200, 149, 108, 0.5);
}

.btn-phone svg { width: 22px; height: 22px; }

.btn-order {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-order:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

/* ====================================
   FLOATING CTA (Mobile)
   ==================================== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--rose-gold);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(200, 149, 108, 0.45);
    transition: var(--transition);
    text-decoration: none;
}

.floating-cta svg { width: 20px; height: 20px; }

.floating-cta:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 149, 108, 0.55);
}

@media (max-width: 768px) {
    .floating-cta { display: flex; }
}

/* ====================================
   PREFERS REDUCED MOTION
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
