        /* Cera GR Font Family - Recovery Project Brand Font */
        @font-face {
            font-family: 'Cera GR';
            src: url('fonts/CeraGR-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Cera GR';
            src: url('fonts/CeraGR-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Cera GR';
            src: url('fonts/CeraGR-Black.woff2') format('woff2');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }
        
        /* Cera Stencil Pro - For accent/display text */
        @font-face {
            font-family: 'Cera Stencil';
            src: url('fonts/CeraStencilPro-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Cera Stencil';
            src: url('fonts/CeraStencilPro-Bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        :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: 'Cera GR', '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;
        }

        /* Sticky Header Group */
        .sticky-header-group {
            position: sticky;
            top: 0;
            z-index: 100;
        }

        /* Header */
        header {
            background: var(--white);
            padding: 16px 0;
            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;
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            min-width: 260px;
            padding: 12px 0;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s, visibility 0.2s;
            z-index: 1000;
            margin-top: 8px;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 0;
            right: 0;
            height: 8px;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            color: var(--text-dark);
            font-size: 0.85rem;
            text-transform: none;
            letter-spacing: 0;
            font-weight: 400;
        }

        .dropdown-menu a:hover {
            background: var(--light-gray);
            color: var(--teal);
        }

        .dropdown-divider {
            height: 1px;
            background: var(--light-gray);
            margin: 8px 0;
        }

        .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: 'Cera Stencil', 'Cera GR', sans-serif;
            font-size: 4rem;
            font-weight: 500;
            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(--white);
            color: var(--primary);
        }

        .approach-grid {
            display: block;
        }

        .approach-text { text-align: left; margin-bottom: 40px; }

        .approach-title-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 6px;
        }

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

        .approach h2 {
            font-family: 'Cera Stencil', 'Cera GR', sans-serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0;
        }

        .approach-heading {
            font-size: 1.6rem !important;
            color: var(--teal) !important;
            margin-bottom: 0 !important;
        }

        .approach h2 span { font-style: normal; color: var(--teal); }
        .approach-location { color: rgba(29,50,66,0.6); margin-bottom: 20px; font-size: 0.9rem; }

        .approach-desc {
            font-size: 1rem;
            color: rgba(29,50,66,0.75);
            line-height: 1.7;
            max-width: 700px;
        }

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

        .pillar-card {
            position: relative;
            background: #f0f8f9;
            border: 2px solid rgba(88, 194, 202, 0.55);
            border-radius: var(--radius);
            padding: 36px 32px 110px;
            text-align: left;
            min-height: 408px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(29,50,66,0.10);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pillar-card:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 40px rgba(88, 194, 202, 0.2);
        }

        /* Grain texture overlay */
        .pillar-card::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.035;
            pointer-events: none;
            z-index: 4;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            border-radius: var(--radius);
        }

        /* Ambient glow blobs — breathe like the template */
        .pillar-card-cloud {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            filter: blur(52px);
            background:
                radial-gradient(ellipse at 28% 30%, rgba(88,194,202,0.30) 0%, transparent 52%),
                radial-gradient(ellipse at 78% 72%, rgba(88,194,202,0.18) 0%, transparent 48%),
                radial-gradient(ellipse at 55% 15%, rgba(29,50,66,0.12) 0%, transparent 42%);
            animation: ambientBreathe 10s ease-in-out infinite alternate;
            border-radius: var(--radius);
        }

        /* Stagger per card */
        .pillars-row .pillar-card:nth-child(1) .pillar-card-cloud { animation-duration: 10s; animation-delay: 0s; }
        .pillars-row .pillar-card:nth-child(2) .pillar-card-cloud { animation-duration: 13s; animation-delay: -4s; }
        .pillars-row .pillar-card:nth-child(3) .pillar-card-cloud { animation-duration: 9s;  animation-delay: -7s; }

        @keyframes ambientBreathe {
            0%   { opacity: 0.55; transform: scale(1) translateY(0); }
            50%  { opacity: 0.85; transform: scale(1.1) translateY(-8px); }
            100% { opacity: 0.65; transform: scale(0.94) translateY(5px); }
        }

        /* Floating particles */
        .pillar-particle {
            position: absolute;
            background: rgba(29, 50, 66, 0.65);
            border-radius: 50%;
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            animation: floatUp 18s linear infinite;
        }

        @keyframes floatUp {
            0%   { transform: translateY(0) translateX(0); opacity: 0; }
            10%  { opacity: 0.55; }
            80%  { opacity: 0.30; }
            100% { transform: translateY(-360px) translateX(12px); opacity: 0; }
        }

        .pillar-card-content {
            position: relative;
            z-index: 3;
        }

        .pillar-card-icon {
            position: absolute;
            bottom: 24px;
            right: 24px;
            width: 64px;
            height: 64px;
            object-fit: contain;
            opacity: 0.90;
            z-index: 3;
        }

        .pillar-card h3 {
            font-family: 'Cera Stencil', 'Cera GR', sans-serif;
            font-size: 1.3rem;
            color: #1D3242;
            margin-bottom: 12px;
        }

        .pillar-card p { color: rgba(29,50,66,0.75); font-size: 0.95rem; line-height: 1.7; margin: 0; }
        
        .pillar-card .highlight { color: #58C2CA; font-weight: 600; }

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

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

        .section-header h2 {
            font-family: 'Cera Stencil', 'Cera GR', sans-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-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 320px;
            margin: 0 auto;
        }

        .discover-tag {
            display: inline-block;
            background: transparent;
            border: 1.5px solid #c8dde3;
            color: var(--navy);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 7px 14px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .discover-tag--more {
            border-color: var(--teal);
            color: var(--teal);
        }

        /* CTA Section */
        .cta-section {
            overflow: hidden;
        }

        .cta-bg {
            position: relative;
            background-image: url('../homepage/images/cta-couple.png');
            background-size: contain;
            background-position: center right;
            background-repeat: no-repeat;
            background-color: #1D3242;
            min-height: 480px;
            display: flex;
            align-items: center;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right,
                rgba(29, 50, 66, 1) 0%,
                rgba(29, 50, 66, 0.97) 45%,
                rgba(29, 50, 66, 0.5) 70%,
                rgba(29, 50, 66, 0.0) 100%);
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 60px;
        }

        .cta-content {
            max-width: 520px;
            display: flex;
            flex-direction: column;
        }

        .cta-section h2 {
            font-family: 'Cera Stencil', 'Cera GR', sans-serif;
            font-size: 3.2rem;
            margin-bottom: 4px;
            color: var(--white);
            line-height: 1.05;
        }

        .cta-desc {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 28px 0 0;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.75);
        }

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

        .cta-price-btn {
            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.85rem;
            transition: background 0.2s ease;
        }

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

        .cta-badge {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
        }

        /* 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: 'Cera Stencil', 'Cera GR', sans-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-text { text-align: center; margin-bottom: 32px; }
            .approach-desc { margin: 0 auto; }
            .pillars-row { grid-template-columns: 1fr; }
            .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-section h2 { font-size: 2.4rem; }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .hero-slider { height: 500px; }
            .cta-inner { padding: 40px 20px; }
        }

/* 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: 'Cera Stencil', 'Cera GR', sans-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: 'Cera Stencil', 'Cera GR', sans-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: 'Cera Stencil', 'Cera GR', sans-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;
}

/* ==========================================================================
   AUTHOR SECTION (Blog Posts)
   Template: shared/author-section.html
   ========================================================================== */

.author-section {
    background: #f8f9fa;
    border-radius: 16px;
    margin: 50px 0;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.author-photo-container {
    flex-shrink: 0;
}

.author-photo {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.author-content {
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 300px;
    overflow: hidden;
}

.author-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 4px;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a3a4a;
}

.author-title {
    font-size: 0.9rem;
    color: #2a7a8a;
    margin-bottom: 10px;
    font-weight: 500;
}

.author-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.author-cta {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Author Section Mobile */
@media (max-width: 768px) {
    .author-section {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    
    .author-photo-container {
        margin: 0 auto;
    }
    
    .author-photo {
        width: 150px;
        height: 150px;
    }
    
    .author-content {
        height: auto;
    }
}

/* ==========================================================================
   MOBILE OPTIMIZATION (P1 Pages)
   Applied globally via shared/styles.css — all pages inherit these rules
   ========================================================================== */

/* --- Hamburger Menu Button --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark, #1D3242);
    margin: 3px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Prevent Horizontal Scroll --- */
html, body {
    overflow-x: clip;
}

/* --- Responsive Images (Global) --- */
img {
    max-width: 100%;
    height: auto;
}

/* --- Responsive Tables --- */
table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* --- Responsive Video Containers --- */
.video-container, .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Word Wrap for Code/Pre --- */
pre, code {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* ==========================================================================
   MOBILE BREAKPOINT (768px and below)
   ========================================================================== */
@media (max-width: 768px) {

    /* --- Typography & Readability --- */
    body {
        font-size: 16px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }

    p, li, td, th {
        font-size: 16px;
        line-height: 1.6;
    }

    /* --- Header: Show Hamburger, Hide Desktop Nav --- */
    .mobile-menu-toggle {
        display: flex;
    }

    nav, .main-nav, .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white, #fff);
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav a {
        display: block;
        padding: 14px 16px;
        font-size: 1.1rem;
        color: var(--text-dark, #1D3242);
        text-decoration: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .mobile-nav a:hover {
        color: var(--teal, #58C2CA);
        background: rgba(88, 194, 202, 0.05);
    }

    .site-logo, .logo img {
        max-width: 120px;
        height: auto;
    }

    /* --- Top Bar --- */
    .top-bar {
        flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
        text-align: center;
    }

    .top-bar-promos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .top-bar-links {
        justify-content: center;
    }

    /* --- Touch Targets --- */
    .btn, button, [role="button"] {
        min-height: 48px;
        padding: 12px 24px;
    }

    nav a, .nav-links a, .mobile-nav a {
        padding: 12px 16px;
        display: block;
        min-height: 44px;
    }

    input, select, textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    a {
        -webkit-tap-highlight-color: rgba(0,0,0,0.05);
    }

    /* --- Images & Floats --- */
    .float-right, .float-left, [style*="float"] {
        float: none !important;
        max-width: 100% !important;
        margin: 16px 0 !important;
    }

    /* --- Hero Sections --- */
    .hero, .page-hero, .hero-slider {
        min-height: auto;
        padding: 60px 16px;
    }

    .hero h1, .page-hero h1, .slide h1 {
        font-size: 1.8rem;
    }

    .hero p, .page-hero p {
        font-size: 1rem;
    }

    .hero-slider {
        height: auto;
        min-height: 400px;
    }

    /* --- Layout & Grid Stacking --- */
    .grid-2, .grid-3, .grid-4,
    .two-column, .three-column, .four-column {
        grid-template-columns: 1fr !important;
    }

    .two-column, .flex-row, .row {
        flex-direction: column;
    }

    .pillars-grid, .services-grid, .blog-grid,
    .approach-grid, .location-grid, .experience-list,
    .instagram-grid, .cta-grid, .features-grid,
    .benefits-grid, .team-grid, .pricing-grid,
    .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Section Spacing --- */
    section {
        padding: 40px 16px;
    }

    .container {
        padding: 0 16px;
    }

    /* --- Forms --- */
    form input, form select, form textarea {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    form label {
        display: block;
        margin-bottom: 8px;
    }

    button[type="submit"], input[type="submit"] {
        width: 100%;
        min-height: 48px;
    }

    /* --- Footer --- */
    .footer-grid, .footer-columns, .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    footer a {
        padding: 10px 0;
        display: inline-block;
    }

    .social-icons a, .social-links a {
        font-size: 24px;
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* --- CTA Sections --- */
    .cta-bg {
        min-height: 400px;
        background-position: 70% center;
    }

    .cta-overlay {
        background: linear-gradient(to bottom,
            rgba(29, 50, 66, 0.97) 0%,
            rgba(29, 50, 66, 0.92) 60%,
            rgba(29, 50, 66, 0.7) 100%);
    }

    .cta-inner {
        padding: 48px 24px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    /* --- Header Actions --- */
    .header-actions {
        display: none;
    }

    /* --- Dropdown Menus (disable on mobile) --- */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    /* --- Announcement Bar --- */
    .announcement-bar {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    /* --- Experience Cards --- */
    .experience-card, .service-card, .blog-card {
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   SMALL PHONE BREAKPOINT (375px and below)
   ========================================================================== */
@media (max-width: 375px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }

    .hero, .page-hero {
        padding: 40px 12px;
    }

    .container {
        padding: 0 12px;
    }

    section {
        padding: 32px 12px;
    }

    .btn, button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* --- Footer Credit --- */
.footer-credit {
    text-align: center;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
}
.powered-by-ace {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.2s;
}
.powered-by-ace:hover {
    color: var(--teal, #58C2CA);
}
.ace-badge-img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.powered-by-ace:hover .ace-badge-img {
    opacity: 1;
}
