        :root {
            /* Extracted from original site */
            --primary: #1D3242;        /* Dark navy blue (header, footer, text) */
            --primary-light: #2a4a5e;  /* Lighter navy */
            --accent: #CCB88B;         /* Gold/tan (buttons) */
            --accent-light: #ddd0b5;   /* Light gold */
            --teal: #58C2CA;           /* Teal/cyan (links, accents) */
            --bg-cream: #FBFBFA;       /* Main background */
            --bg-secondary: #E5E4DE;   /* Secondary sections */
            --text-dark: #1D3242;      /* Match primary */
            --text-muted: #666;
            --white: #ffffff;
            --radius: 12px;
            --radius-lg: 20px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
        }

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

        /* Top Promo Bar */
        .top-bar {
            background: var(--primary);
            color: var(--white);
            padding: 10px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .top-bar-promos {
            display: flex;
            gap: 32px;
        }

        .top-bar-promos a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .top-bar-promos a:hover { text-decoration: underline; }

        .top-bar-links {
            display: flex;
            gap: 16px;
        }

        .top-bar-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            font-size: 0.8rem;
        }

        .top-bar-links a:hover { opacity: 1; }

        /* Announcement Banner */
        .announcement-bar {
            background: var(--teal);
            color: var(--primary);
            text-align: center;
            padding: 12px 24px;
            font-size: 0.9rem;
        }

        .announcement-bar p { margin: 0; }
        .announcement-bar strong { font-weight: 700; }
        .announcement-bar a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 500;
        }

        /* Header */
        header {
            background: var(--white);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img { height: 50px; width: auto; }

        nav { display: flex; gap: 28px; align-items: center; }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        nav a:hover { color: var(--teal); }

        .nav-highlight { color: var(--teal); }

        .nav-badge {
            background: var(--teal);
            color: var(--white);
            font-size: 0.6rem;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
            vertical-align: super;
        }

        .header-actions {
            display: flex;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary { background: var(--primary); color: var(--white); }
        .btn-primary:hover { background: var(--primary-light); }
        .btn-outline-dark { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
        .btn-outline-dark:hover { background: var(--primary); color: var(--white); }
        .btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
        .btn-outline:hover { background: var(--white); color: var(--primary); }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 780px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active { opacity: 1; }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
        }

        .slide-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 24px;
        }

        .slide-badge {
            background: var(--accent);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .slide h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 6px;
            color: #58c2ca;
        }

        .slide-sub {
            font-size: 1.3rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .slide p {
            font-size: 1.1rem;
            max-width: 700px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .slide-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active { background: var(--accent); transform: scale(1.2); }

        /* Approach Section - Dark navy background for teal icons to show */
        .approach {
            padding: 60px 0;
            background: var(--primary);
            color: var(--white);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .approach-text { text-align: left; }

        .approach-icon { margin-bottom: 16px; }
        .approach-icon img { height: 50px; }

        .approach h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 6px;
        }

        .approach h2 span { font-style: italic; color: var(--teal); }
        .approach-location { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.9rem; }

        .approach-desc {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
        }

        .pillars-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

        .pillar { 
            text-align: left;
            background: rgba(255,255,255,0.05);
            padding: 24px 28px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .pillar-icon { width: 90px; height: 90px; flex-shrink: 0; }
        .pillar-icon img, .pillar-icon svg { width: 100%; height: 100%; object-fit: contain; }

        .pillar-content { flex: 1; }

        .pillar h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--teal);
            margin-bottom: 4px;
        }

        .pillar p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.5; margin: 0; }
        
        .pillar-divider {
            width: 40px;
            height: 2px;
            background: var(--teal);
            margin: 12px auto 0;
        }
        
        .pillar .highlight { color: var(--teal); }

        /* Services */
        .services { padding: 80px 0; background: var(--bg-secondary); }

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

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .section-header p { color: var(--text-muted); }

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

        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-card img { width: 100%; height: 220px; object-fit: cover; }

        .service-card-content { padding: 24px; }

        .service-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .service-card h4 {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
        .service-card .link { color: var(--teal); font-weight: 600; text-decoration: none; }
        .service-card .link:hover { text-decoration: underline; }

        /* Discover More Card */
        .discover-card {
            background: var(--white); /* Same as other cards */
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 350px;
        }

        .discover-card-content {
            padding: 32px;
            text-align: center;
        }

        .discover-btn {
            display: inline-block;
            background: var(--teal);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            transition: background 0.2s;
        }

        .discover-btn:hover {
            background: #4ab0b8;
        }

        .discover-text {
            color: var(--text-muted);
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: var(--teal);
            color: var(--primary);
            overflow: hidden;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 400px;
            max-height: 450px;
        }

        .cta-content {
            padding: 48px 48px; /* Reduced from 80px 60px */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 8px;
            color: var(--primary);
            line-height: 1.1;
        }

        .cta-desc {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 32px 0;
            line-height: 1.8;
            color: var(--primary);
        }

        .cta-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 16px;
        }

        .cta-price-btn {
            background: var(--primary);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .cta-price-btn:hover {
            background: var(--primary-light);
        }

        .cta-badge {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .cta-image {
            position: relative;
            overflow: hidden;
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Scale to fit, don't crop */
            object-position: center;
        }

        /* Blog Section */
        .blog-section { padding: 80px 0; background: var(--bg-cream); }

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

        .blog-card { background: var(--bg-cream); border-radius: var(--radius-lg); overflow: hidden; }
        .blog-card img { width: 100%; height: 180px; object-fit: cover; }
        .blog-card-content { padding: 24px; }

        .blog-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .blog-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
        .blog-card .link { color: var(--teal); font-weight: 600; text-decoration: none; }

        /* Instagram Section */
        .instagram-section {
            padding: 40px 0; /* Compact */
            background: var(--bg-secondary);
            text-align: center;
        }

        .instagram-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .instagram-handle {
            color: var(--teal);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 20px;
            display: block;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .instagram-item {
            aspect-ratio: 1;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .instagram-item:hover img { transform: scale(1.1); }

        .instagram-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 58, 50, 0);
            transition: background 0.3s;
        }

        .instagram-item:hover::after { background: rgba(26, 58, 50, 0.3); }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--white);
            padding: 60px 0 30px;
        }

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

        .footer-col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .footer-col a { display: block; color: var(--white); opacity: 0.8; text-decoration: none; font-size: 0.9rem; margin-bottom: 12px; }
        .footer-col a:hover { opacity: 1; }
        
        .footer-contact { opacity: 0.8; font-size: 0.9rem; margin-bottom: 12px; line-height: 1.5; }
        .footer-contact strong { opacity: 1; }
        
        .footer-newsletter-text { opacity: 0.8; font-size: 0.9rem; margin-bottom: 16px; }
        
        .newsletter-form { display: flex; flex-direction: column; gap: 10px; }
        .newsletter-input {
            padding: 12px 16px;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            width: 100%;
        }
        .newsletter-btn {
            padding: 12px 20px;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .newsletter-btn:hover { background: var(--accent-light); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            text-align: center;
            margin-bottom: 24px;
        }
        .footer-logo { 
            height: 40px; 
            margin-bottom: 12px;
            /* Invert dark logo to white for dark footer background */
            filter: brightness(0) invert(1);
        }
        .footer-bottom p { opacity: 0.8; font-size: 0.9rem; }

        .footer-legal { 
            font-size: 0.7rem; 
            opacity: 0.5; 
            line-height: 1.6; 
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .footer-legal p { margin-bottom: 12px; }

        /* Responsive */
        @media (max-width: 900px) {
            nav { display: none; }
            .approach-grid { grid-template-columns: 1fr; text-align: center; }
            .approach-text { text-align: center; margin-bottom: 32px; }
            .pillars-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
            .instagram-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .slide h1 { font-size: 2rem; letter-spacing: 3px; }
            .hero-slider { height: 600px; }
            .cta-grid { grid-template-columns: 1fr; }
            .cta-image { min-height: 300px; }
            .cta-section h2 { font-size: 2.2rem; }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .hero-slider { height: 500px; }
            .cta-content { padding: 40px 24px; }
            .cta-actions { flex-direction: column; align-items: flex-start; }
        }

/* Page Hero (for inner pages) */
.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 16px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero h1 span {
    font-style: italic;
    color: var(--teal);
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Nav active state */
nav a.active {
    color: var(--teal);
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: var(--bg-cream);
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text .highlight {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 24px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* Experience List */
.experience-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.experience-item {
    background: var(--white);
    padding: 24px;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.experience-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 32px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 8px;
}

.location-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.location-item .link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

/* Responsive for new sections */
@media (max-width: 900px) {
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .experience-list {
        grid-template-columns: 1fr;
    }
}

/* Experience Marquee */
.experience-marquee {
    text-align: center;
    padding: 24px 0;
}

.experience-marquee p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 2px;
}
