        /* ============ RESET & BASE ============ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --ocean: #1a5f6f;
            --ocean-deep: #0d3a47;
            --ocean-light: #5fa8b5;
            --sand: #f5f0e8;
            --sand-dark: #e8dfd0;
            --gold: #c4a661;
            --gold-light: #d9c28a;
            --charcoal: #2c3338;
            --gray: #6b7280;
            --white: #ffffff;
            --off-white: #faf9f7;
            --serif: 'Cormorant Garamond', serif;
            --sans: 'Jost', sans-serif;
            --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            --shadow-soft: 0 10px 40px rgba(13, 58, 71, 0.08);
            --shadow-medium: 0 20px 60px rgba(13, 58, 71, 0.12);
            --shadow-strong: 0 30px 80px rgba(13, 58, 71, 0.18);
        }
        
        html { scroll-behavior: smooth; font-size: 16px; }
        
        body {
            font-family: var(--sans);
            color: var(--charcoal);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 300;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--serif);
            font-weight: 400;
            line-height: 1.2;
            color: var(--ocean-deep);
        }
        
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        
        .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
        .container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
        
        /* ============ TOP BAR ============ */
        .topbar {
            background: var(--ocean-deep);
            color: var(--sand);
            padding: 0.5rem 0;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
        }
        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .topbar-contact { display: flex; gap: 2rem; align-items: center; }
        .topbar-contact a { color: var(--sand); opacity: 0.9; display: flex; align-items: center; gap: 0.4rem; }
        .topbar-contact a:hover { opacity: 1; color: var(--gold-light); }
        .topbar-badge {
            background: var(--gold);
            color: var(--ocean-deep);
            padding: 2px 12px;
            border-radius: 20px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
        }
        .topbar-socials { display: flex; gap: 1rem; }
        .topbar-socials a { opacity: 0.7; }
        .topbar-socials a:hover { opacity: 1; }
        
        /* ============ NAVIGATION ============ */
        .nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--sand-dark);
            transition: var(--transition);
        }
        .nav.scrolled { box-shadow: var(--shadow-soft); }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-family: var(--serif);
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--ocean-deep);
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span { color: var(--gold); }
        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-links a {
            font-size: 0.9rem;
            color: var(--charcoal);
            font-weight: 400;
            position: relative;
            padding: 0.3rem 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: var(--transition);
        }
        .nav-links a:hover { color: var(--ocean); }
        .nav-links a:hover::after { width: 100%; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 2rem;
            font-family: var(--sans);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: var(--ocean);
            color: var(--white);
        }
        .btn-primary:hover {
            background: var(--ocean-deep);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }
        .btn-outline {
            border: 1.5px solid var(--white);
            color: var(--white);
            background: transparent;
        }
        .btn-outline:hover {
            background: var(--white);
            color: var(--ocean-deep);
        }
        .btn-gold {
            background: var(--gold);
            color: var(--ocean-deep);
        }
        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }
        
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--ocean-deep); }
        
        /* ============ HERO ============ */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--ocean-deep);
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13,58,71,0.75) 0%, rgba(26,95,111,0.5) 50%, rgba(13,58,71,0.7) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--white);
            max-width: 700px;
            padding: 4rem 0;
        }
        .hero-tagline {
            font-size: 0.85rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 1.5rem;
            font-weight: 500;
            opacity: 0;
            animation: fadeInUp 0.8s 0.2s forwards;
        }
        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            color: var(--white);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s 0.4s forwards;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--gold-light);
        }
        .hero p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem;
            max-width: 540px;
            font-weight: 300;
            opacity: 0;
            animation: fadeInUp 0.8s 0.6s forwards;
        }
        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s 0.8s forwards;
        }
        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            background: linear-gradient(to top, rgba(13,58,71,0.9), transparent);
            padding: 3rem 0 1.5rem;
        }
        .hero-stats-inner {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat .number {
            font-family: var(--serif);
            font-size: 2.5rem;
            color: var(--gold-light);
            font-weight: 400;
        }
        .hero-stat .label {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-top: 0.25rem;
        }
        
        /* ============ SCROLL INDICATOR ============ */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: var(--white);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            opacity: 0.6;
        }
        
        /* ============ SECTION GENERAL ============ */
        section { padding: 6rem 0; }
        .section-tag {
            font-size: 0.8rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 1rem;
            display: block;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            margin-bottom: 1.5rem;
        }
        .section-title em { font-style: italic; color: var(--ocean); }
        .section-text {
            font-size: 1.05rem;
            color: var(--gray);
            max-width: 600px;
        }
        
        /* ============ ABOUT SECTION ============ */
        .about { background: var(--off-white); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .about-images {
            position: relative;
            height: 600px;
        }
        .about-img-main {
            position: absolute;
            top: 0;
            left: 0;
            width: 75%;
            height: 75%;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: var(--shadow-medium);
        }
        .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
        .about-img-secondary {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 55%;
            height: 55%;
            overflow: hidden;
            border-radius: 4px;
            border: 8px solid var(--white);
            box-shadow: var(--shadow-medium);
        }
        .about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
        .about-badge {
            position: absolute;
            top: 10px;
            right: 0;
            background: var(--gold);
            color: var(--ocean-deep);
            padding: 1.2rem 1.5rem;
            text-align: center;
            z-index: 2;
            box-shadow: var(--shadow-medium);
        }
        .about-badge .year {
            font-family: var(--serif);
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1;
        }
        .about-badge .text {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 0.25rem;
        }
        
        .about-features {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .about-feature-icon {
            width: 42px;
            height: 42px;
            background: var(--sand);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--ocean);
            font-size: 1.1rem;
        }
        .about-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
        .about-feature p { font-size: 0.85rem; color: var(--gray); }
        
        /* ============ SERVICES ============ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        .service-card {
            background: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            position: relative;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-strong);
        }
        .service-card-img {
            height: 260px;
            overflow: hidden;
            position: relative;
        }
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .service-card:hover .service-card-img img { transform: scale(1.08); }
        .service-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(13,58,71,0.6));
        }
        .service-card-body { padding: 2rem 1.75rem 2.5rem; }
        .service-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
        .service-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.25rem; }
        .service-card-link {
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--ocean);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .service-card-link:hover { color: var(--gold); gap: 0.75rem; }
        
        /* ============ APPROACH (360°) ============ */
        .approach {
            background: var(--ocean-deep);
            color: var(--sand);
            position: relative;
            overflow: hidden;
        }
        .approach::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196,166,97,0.1), transparent);
        }
        .approach .section-title { color: var(--white); }
        .approach .section-tag { color: var(--gold-light); }
        .approach .section-text { color: rgba(245,240,232,0.7); }
        .approach-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
        
        .approach-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
        }
        .approach-step {
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }
        .approach-step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--serif);
            font-size: 2rem;
            color: var(--gold-light);
            position: relative;
            z-index: 2;
            background: var(--ocean-deep);
        }
        .approach-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 60%;
            width: 80%;
            height: 1px;
            background: linear-gradient(to right, var(--gold), transparent);
            z-index: 1;
        }
        .approach-step h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.75rem; }
        .approach-step p { color: rgba(245,240,232,0.7); font-size: 0.9rem; }
        
        /* ============ SANCTUARY / LOCATION ============ */
        .sanctuary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 300px 300px;
            gap: 1rem;
            margin-top: 3rem;
        }
        .sanctuary-item {
            overflow: hidden;
            border-radius: 4px;
            position: relative;
            cursor: pointer;
        }
        .sanctuary-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .sanctuary-item:hover img { transform: scale(1.1); }
        .sanctuary-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13,58,71,0.7), transparent 60%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: var(--transition);
        }
        .sanctuary-item:hover .sanctuary-item-overlay { opacity: 1; }
        .sanctuary-item-overlay h4 { color: var(--white); font-size: 1.3rem; }
        .sanctuary-item.large { grid-column: span 2; grid-row: span 2; }
        
        /* ============ FEATURES / WHY CHOOSE ============ */
        .features { background: var(--sand); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .feature-box {
            text-align: center;
            padding: 2rem 1.5rem;
        }
        .feature-box-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.25rem;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ocean);
            font-size: 1.5rem;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }
        .feature-box:hover .feature-box-icon {
            background: var(--ocean);
            color: var(--white);
            transform: translateY(-5px);
        }
        .feature-box h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
        .feature-box p { font-size: 0.85rem; color: var(--gray); }
        
        /* ============ TESTIMONIALS ============ */
        .testimonials { background: var(--off-white); position: relative; overflow: hidden; }
        .testimonials-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        .testimonial-track {
            display: flex;
            overflow: hidden;
            border-radius: 8px;
        }
        .testimonial-card {
            min-width: 100%;
            padding: 3rem;
            background: var(--white);
            box-shadow: var(--shadow-soft);
            text-align: center;
            display: none;
        }
        .testimonial-card.active { display: block; animation: fadeIn 0.5s; }
        .testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 0.2em; }
        .testimonial-text {
            font-family: var(--serif);
            font-size: 1.5rem;
            font-style: italic;
            color: var(--charcoal);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        .testimonial-author {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--ocean);
        }
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid var(--ocean);
            cursor: pointer;
            transition: var(--transition);
            background: transparent;
        }
        .testimonial-dot.active { background: var(--ocean); width: 30px; border-radius: 5px; }
        
        /* ============ AWARDS / PRESS ============ */
        .awards {
            background: var(--white);
            border-top: 1px solid var(--sand-dark);
            border-bottom: 1px solid var(--sand-dark);
            padding: 4rem 0;
        }
        .awards-title {
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 2.5rem;
            font-weight: 500;
        }
        .awards-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }
        .award-item {
            font-family: var(--serif);
            font-size: 1.4rem;
            color: var(--gray);
            opacity: 0.6;
            transition: var(--transition);
            text-align: center;
        }
        .award-item:hover { opacity: 1; color: var(--ocean); }
        .award-item .small { font-size: 0.7rem; display: block; font-family: var(--sans); letter-spacing: 0.1em; text-transform: uppercase; }
        
        /* ============ CTA / LEAD FORM ============ */
        .cta-section {
            position: relative;
            padding: 0;
            overflow: hidden;
        }
        .cta-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
        .cta-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13,58,71,0.92), rgba(26,95,111,0.85));
        }
        .cta-content {
            position: relative;
            z-index: 1;
            padding: 6rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .cta-left h2 {
            color: var(--white);
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }
        .cta-left p {
            color: rgba(255,255,255,0.8);
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }
        .cta-contact-list { margin-top: 2rem; }
        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 1rem;
        }
        .cta-contact-item .icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
        }
        
        .cta-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: var(--shadow-strong);
        }
        .cta-form h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .cta-form .form-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 2rem; }
        .form-group { margin-bottom: 1.25rem; }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--ocean);
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1px solid var(--sand-dark);
            border-radius: 4px;
            font-family: var(--sans);
            font-size: 0.95rem;
            color: var(--charcoal);
            transition: var(--transition);
            background: var(--off-white);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--ocean);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(26,95,111,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 80px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .cta-form .btn { width: 100%; }
        .form-disclaimer { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 1rem; }
        
        /* ============ LANGUAGES STRIP ============ */
        .languages {
            background: var(--sand);
            padding: 2.5rem 0;
            text-align: center;
        }
        .languages-label {
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 1rem;
            display: block;
        }
        .languages-list {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .languages-list span {
            font-family: var(--serif);
            font-size: 1.3rem;
            color: var(--ocean);
            font-weight: 500;
        }
        
        /* ============ FOOTER ============ */
        .footer {
            background: var(--ocean-deep);
            color: rgba(245,240,232,0.7);
            padding: 5rem 0 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-brand .logo { color: var(--white); margin-bottom: 1.5rem; }
        .footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
        .footer-socials { display: flex; gap: 1rem; }
        .footer-socials a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(245,240,232,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(245,240,232,0.7);
        }
        .footer-socials a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--ocean-deep);
        }
        .footer-col h4 {
            color: var(--white);
            font-family: var(--sans);
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        .footer-col ul li { margin-bottom: 0.75rem; }
        .footer-col ul li a {
            font-size: 0.9rem;
            color: rgba(245,240,232,0.6);
        }
        .footer-col ul li a:hover { color: var(--gold-light); }
        
        .footer-contact-item {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .footer-contact-item .icon { color: var(--gold); font-size: 1.1rem; }
        
        .footer-bottom {
            border-top: 1px solid rgba(245,240,232,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(245,240,232,0.5);
        }
        .footer-bottom-links { display: flex; gap: 1.5rem; }
        .footer-bottom-links a:hover { color: var(--gold-light); }
        
        /* ============ ANIMATIONS ============ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .nav-toggle { display: block; }
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .about-images { height: 450px; max-width: 600px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .approach-steps { grid-template-columns: 1fr; gap: 3rem; }
            .approach-step::after { display: none; }
            .sanctuary-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-content { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .topbar-contact { gap: 1rem; }
            .topbar-socials { display: none; }
        }
        
        @media (max-width: 768px) {
            section { padding: 4rem 0; }
            .container { padding: 0 1.5rem; }
            .topbar { font-size: 0.7rem; }
            .topbar-inner { flex-direction: column; gap: 0.5rem; }
            .hero { min-height: 80vh; }
            .hero-stats-inner { gap: 1rem; }
            .hero-stat .number { font-size: 1.8rem; }
            .hero-stat .label { font-size: 0.65rem; }
            .about-images { height: 350px; }
            .about-features { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .sanctuary-grid { grid-template-columns: 1fr; grid-template-rows: 250px; }
            .sanctuary-item.large { grid-column: span 1; grid-row: span 1; }
            .features-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .cta-form { padding: 2rem 1.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .languages-list { gap: 1.25rem; }
            .languages-list span { font-size: 1.1rem; }
            .testimonial-card { padding: 2rem 1.5rem; }
            .testimonial-text { font-size: 1.2rem; }
        }
        
        /* Mobile nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-strong);
            z-index: 2000;
            padding: 2rem;
            transform: translateX(100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }
        .mobile-nav.open { transform: translateX(0); display: block; }
        .mobile-nav-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--ocean-deep);
        }
        .mobile-nav-links { margin-top: 2rem; }
        .mobile-nav-links li { margin-bottom: 1rem; }
        .mobile-nav-links a { font-size: 1.1rem; color: var(--charcoal); }
        .overlay-bg {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1500;
        }
        .overlay-bg.show { display: block; }
