        :root {
            /* Deep Teal & Cream Palette */
            --teal-darkest: #062E2E;
            --teal-dark: #0D4A4A;
            --teal: #1A6B6B;
            --teal-medium: #2E8B8B;
            --teal-light: #5CADAD;
            --teal-pale: #C5E5E5;
            --teal-ice: #E8F4F4;

            --cream: #F5F0E8;
            --cream-dark: #EDE6D8;
            --cream-light: #FAF7F2;
            --ivory: #FDFCFA;
            --white: #FFFFFF;
            --off-white: #FEFDFB;

            --coral: #E8816E;
            --coral-dark: #D46955;
            --coral-light: #FCE4DF;

            --gold: #C8963E;
            --gold-light: #F0D78C;
            --gold-pale: #FDF5E6;

            --text-dark: #1A1A1A;
            --text-body: #3A3A3C;
            --text-muted: #6B6B70;
            --text-light: #8E8E93;

            --border-light: #E8E4DF;
            --border-soft: #F0ECE6;
            --border-teal: #B8D8D8;

            --shadow-xs: 0 1px 3px rgba(0,0,0,0.03);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-md: 0 8px 28px rgba(0,0,0,0.06);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
            --shadow-xl: 0 30px 70px rgba(0,0,0,0.10);

            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --radius-full: 50%;

            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

            --max-width: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-body);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        ::selection {
            background: var(--teal-pale);
            color: var(--teal-dark);
        }

        /* ============ NAVBAR ============ */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 80px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-sm);
            background: rgba(255,255,255,0.98);
        }

       .logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            text-decoration: none;
            z-index: 1001;
        }

        .logo-icon {
    width: 95px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.88rem;
            letter-spacing: 0.2px;
            transition: var(--transition-fast);
            position: relative;
            padding: 0.3rem 0;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--teal);
            border-radius: 2px;
            transition: width var(--transition);
        }

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

        .btn-nav {
            background: var(--teal-dark);
            color: var(--white) !important;
            padding: 0.65rem 1.6rem !important;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 0.85rem !important;
            letter-spacing: 0.2px;
            transition: var(--transition) !important;
        }

        .btn-nav:hover {
            background: var(--teal) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(13,74,74,0.25);
            color: var(--white) !important;
        }

        .btn-nav::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            font-size: 1.4rem;
            cursor: pointer;
            color: var(--text-dark);
            background: none;
            border: none;
            padding: 0.5rem;
            z-index: 1001;
        }

        /* ============ HERO SECTION ============ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding: 0 5%;
            margin-top: 0;
        }

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

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(6, 46, 46, 0.75) 0%,
                rgba(13, 74, 74, 0.65) 40%,
                rgba(6, 46, 46, 0.8) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 6rem 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            color: var(--cream);
            padding: 0.5rem 1.3rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-badge i {
            font-size: 0.7rem;
            color: var(--gold-light);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.12;
            color: var(--white);
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold-light);
        }

        .hero-title strong {
            color: var(--teal-light);
        }

        .hero-description {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--teal-darkest);
            padding: 1rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #b8862e;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(200,150,62,0.4);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            border: 2px solid rgba(255,255,255,0.5);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-outline-light:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.6);
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 1rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

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

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image-col {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            aspect-ratio: 4/5;
            object-fit: cover;
        }

        .about-image-float {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 180px;
            height: 180px;
            border-radius: var(--radius-md);
            object-fit: cover;
            box-shadow: var(--shadow-md);
            border: 5px solid var(--white);
        }

        .about-text-col .subhead {
            display: inline-block;
            color: var(--teal);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .about-text-col h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .about-text-col .location-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.8rem;
            background: var(--cream-light);
            padding: 0.5rem 1.1rem;
            border-radius: 50px;
        }

        .about-text-col .location-tag i {
            color: var(--coral);
        }

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

        .about-text-col p strong {
            color: var(--teal-dark);
            font-weight: 600;
        }

        /* ============ MISSION & VISION ============ */
        .mission-section {
            padding: 6rem 0;
            background: var(--ivory);
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }

        .mission-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-soft);
            position: relative;
            overflow: hidden;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--teal);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .mission-card:nth-child(2)::before {
            background: var(--coral);
        }

        .mission-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

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

        .mission-icon {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: var(--white);
            background: var(--teal);
            transition: var(--transition);
        }

        .mission-card:nth-child(2) .mission-icon {
            background: var(--coral);
        }

        .mission-card:hover .mission-icon {
            transform: scale(1.08);
        }

        .mission-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .mission-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* ============ DIFFERENTIATORS ============ */
        .differentiators {
            padding: 7rem 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -1px;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.08rem;
            font-weight: 400;
            max-width: 500px;
            margin: 0 auto;
        }

        .diffs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.8rem;
        }

        .diff-item {
            background: var(--ivory);
            padding: 2.5rem 1.8rem;
            border-radius: var(--radius-md);
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border-soft);
        }

        .diff-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            background: var(--white);
            border-color: var(--teal-pale);
        }

        .diff-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-full);
            background: var(--teal-ice);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 1.4rem;
            color: var(--teal);
            transition: var(--transition);
        }

        .diff-item:hover .diff-icon {
            background: var(--teal);
            color: var(--white);
        }

        .diff-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            letter-spacing: -0.3px;
        }

        .diff-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ============ CONTEST BAND ============ */
        .contest-band {
            background: var(--teal-darkest);
            padding: 6rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .contest-band::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,0.02);
            top: -200px;
            right: -150px;
            z-index: 0;
        }

        .contest-band .contest-subtitle {
            color: var(--teal-light);
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .contest-band .contest-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -1px;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 2;
            line-height: 1.15;
        }

        .contest-band .contest-title strong {
            color: var(--gold-light);
            font-style: italic;
        }

        .contest-band .contest-description {
            color: rgba(255,255,255,0.75);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            position: relative;
            z-index: 2;
            line-height: 1.8;
        }

        .contest-stats {
            display: flex;
            justify-content: center;
            gap: 3.5rem;
            flex-wrap: wrap;
            margin-bottom: 2.8rem;
            position: relative;
            z-index: 2;
        }

        .stat-item .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--cream);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .stat-item .stat-label {
            color: var(--teal-light);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            margin-top: 0.3rem;
        }

        .contest-buttons {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--teal-darkest);
            padding: 1rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-gold:hover {
            background: #b8862e;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(200,150,62,0.4);
        }

      

       
        /* ============ CONTACT ============ */
        .contact-section {
            padding: 7rem 0;
            background: var(--cream-light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
        }

        .contact-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-md);
            text-align: center;
            text-decoration: none;
            color: var(--text-body);
            transition: var(--transition);
            border: 1px solid var(--border-soft);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal-pale);
        }

        .contact-icon-circle {
            width: 58px;
            height: 58px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 0.3rem;
            transition: var(--transition);
        }

        .contact-icon-circle.facebook { background: #1877F2; }
        .contact-icon-circle.instagram { background: #E1306C; }
        .contact-icon-circle.phone { background: var(--teal); }
        .contact-icon-circle.address { background: var(--coral); }

        .contact-card:hover .contact-icon-circle {
            transform: scale(1.08);
        }

        .contact-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.2px;
        }

        .contact-card span {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.5;
        }

        /* ============ NEWSLETTER ============ */
        .newsletter-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .newsletter-box {
            background: var(--ivory);
            padding: 4rem 3rem;
            border-radius: var(--radius-xl);
            text-align: center;
            border: 1px solid var(--border-soft);
            max-width: 750px;
            margin: 0 auto;
        }

        .newsletter-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
            margin-bottom: 0.8rem;
        }

        .newsletter-box > p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0.6rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: 1.5px solid var(--border-light);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }

        .newsletter-form input:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(26,107,107,0.08);
        }

        .newsletter-form button {
            background: var(--teal-dark);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.2px;
            white-space: nowrap;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form button:hover {
            background: var(--teal);
            transform: translateY(-2px);
        }

        .newsletter-note {
            margin-top: 2rem;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .newsletter-note strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--teal-darkest);
            color: var(--cream);
            padding: 5rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: var(--max-width);
            margin: 0 auto 3rem;
        }

        .footer-brand .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
            color: var(--cream);
        }

        .footer-brand .footer-logo span {
            color: var(--teal-light);
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            max-width: 350px;
        }

        .footer-social {
            display: flex;
            gap: 0.8rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            font-size: 1rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--teal);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--cream);
            margin-bottom: 1.2rem;
            letter-spacing: -0.2px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.6);
            font-size: 0.88rem;
            transition: var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--teal-light);
            padding-left: 4px;
        }

        .footer-col ul li {
            color: rgba(255,255,255,0.6);
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-col ul li i {
            color: var(--teal-light);
            font-size: 0.75rem;
            width: 16px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.82rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .footer-bottom a {
            color: var(--teal-light);
            transition: var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--cream);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image-float {
                width: 140px;
                height: 140px;
                right: -15px;
                bottom: -20px;
            }

            .gallery-wrapper {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .gallery-text {
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 6rem 2.5rem;
                gap: 1.8rem;
                box-shadow: -5px 0 40px rgba(0,0,0,0.12);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: block;
            }

            .hero-title {
                font-size: 2.6rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section-header h2,
            .about-text-col h2,
            .gallery-text h2,
            .newsletter-box h2 {
                font-size: 2.2rem;
            }

            .contest-band .contest-title {
                font-size: 2.4rem;
            }

            .contest-stats {
                gap: 2rem;
            }

            .stat-item .stat-number {
                font-size: 2rem;
            }

            .mission-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .newsletter-box {
                padding: 2.5rem 1.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form button {
                width: 100%;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-col ul li {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 90vh;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .btn-primary,
            .btn-outline-light,
            .btn-gold {
                padding: 0.85rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }

            .hero-buttons,
            .contest-buttons {
                flex-direction: column;
                width: 100%;
            }

            .about-image-float {
                width: 100px;
                height: 100px;
                right: -10px;
                bottom: -15px;
            }

            .section-header h2,
            .about-text-col h2,
            .gallery-text h2,
            .newsletter-box h2 {
                font-size: 1.8rem;
            }

            .contest-band .contest-title {
                font-size: 1.8rem;
            }

            .contest-stats {
                gap: 1.2rem;
            }

            .stat-item .stat-number {
                font-size: 1.6rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin: 0 auto;
            }

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

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

        /* ============ DIFFERENTIATORS - MASONRY ============ */
.differentiators {
    padding: 7rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.08rem;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    grid-auto-rows: minmax(200px, auto);
}

.masonry-card {
    opacity: 1;
    transition: var(--transition);
}

.masonry-card.tall {
    grid-row: span 2;
}

.masonry-card.short {
    grid-row: span 1;
}

.masonry-card-inner {
    background: var(--ivory);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.masonry-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--teal);
    transition: height var(--transition-slow);
    border-radius: 0 4px 4px 0;
}

.masonry-card:nth-child(even) .masonry-card-inner::before {
    background: var(--coral);
}

.masonry-card:hover .masonry-card-inner {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    background: var(--white);
}

.masonry-card:hover .masonry-card-inner::before {
    height: 100%;
}

.masonry-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--teal-ice);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.masonry-card:nth-child(even) .masonry-icon {
    background: var(--coral-light);
    color: var(--coral);
}

.masonry-card:hover .masonry-icon {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.06);
}

.masonry-card:nth-child(even):hover .masonry-icon {
    background: var(--coral);
    color: var(--white);
}

.masonry-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal-light);
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.masonry-card:nth-child(even) .masonry-number {
    color: var(--coral);
}

.masonry-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.masonry-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ MASONRY RESPONSIVE ============ */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 500px;
    }

    .masonry-card.tall,
    .masonry-card.short {
        grid-row: span 1;
    }

    .masonry-card-inner {
        padding: 2rem 1.5rem;
    }

    .masonry-text h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .masonry-card-inner {
        padding: 1.8rem 1.3rem;
    }

    .masonry-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

/* ============ HOW IT WORKS - TIMELINE ============ */
.how-it-works {
    padding: 7rem 0;
    background: var(--ivory);
}

/* Timeline Flow */
.timeline-flow {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each Stage Row */
.timeline-stage {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-stage.reverse {
    flex-direction: row-reverse;
}

.timeline-stage.final {
    position: relative;
}

/* Node Circle */
.timeline-node {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.node-circle {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 3px solid var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 0 0 12px var(--ivory);
}

.node-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.node-icon {
    position: absolute;
    font-size: 1rem;
    color: var(--teal);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.timeline-stage:hover .node-circle {
    background: var(--teal);
    border-color: var(--teal);
}

.timeline-stage:hover .node-number {
    opacity: 0;
    transform: scale(0);
}

.timeline-stage:hover .node-icon {
    opacity: 1;
    transform: scale(1);
    color: var(--white);
}

/* Crown node for final stage */
.node-circle.crown {
    border-color: var(--gold-light);
    background: var(--gold-pale);
}

.node-circle.crown .node-number {
    color: var(--gold);
}

.node-circle.crown .node-icon {
    color: var(--gold);
}

.timeline-stage.final:hover .node-circle.crown {
    background: var(--gold);
    border-color: var(--gold);
}

.timeline-stage.final:hover .node-circle.crown .node-icon {
    color: var(--white);
}

/* Connector Line */
.timeline-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--teal-pale) 0%, var(--teal-ice) 100%);
    margin-left: 38px;
    position: relative;
    z-index: 1;
}

.timeline-stage.reverse + .timeline-connector {
    margin-left: auto;
    margin-right: 38px;
}

/* Stage Card */
.timeline-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 2rem 2.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 2px solid var(--teal-pale);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.timeline-stage:not(.reverse) .timeline-card::before {
    left: -9px;
}

.timeline-stage.reverse .timeline-card::before {
    right: -9px;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.timeline-card.highlight {
    border-color: var(--gold-light);
    background: var(--gold-pale);
}

.timeline-card.highlight::before {
    border-color: var(--gold-light);
    background: var(--gold-pale);
}

/* Stage Badge */
.stage-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background: var(--teal-ice);
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.stage-badge.accent {
    background: var(--gold-pale);
    color: #8B6914;
}

/* Vote Count */
.stage-votes {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.vote-count {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}

.timeline-card.highlight .vote-count {
    color: #8B6914;
}

.vote-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Stage Meta */
.stage-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.stage-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stage-duration i {
    color: var(--teal-light);
    font-size: 0.8rem;
}

.stage-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--teal-ice);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
}

.stage-status.winner {
    color: #8B6914;
    background: var(--gold-pale);
}

/* Stage Description */
.stage-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Voting Information Box */
.voting-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-xs);
    max-width: 800px;
    margin: 0 auto;
}

.voting-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.voting-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.voting-info-item i {
    font-size: 1.3rem;
    color: var(--teal);
    background: var(--teal-ice);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voting-info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    letter-spacing: -0.2px;
}

.voting-info-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.voting-info-item p strong {
    color: var(--teal-dark);
}

.voting-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}

.voting-note strong {
    color: var(--text-dark);
}

/* ============ TIMELINE RESPONSIVE ============ */
@media (max-width: 768px) {
    .timeline-flow {
        max-width: 100%;
    }

    .timeline-stage,
    .timeline-stage.reverse {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }

    .node-circle {
        width: 65px;
        height: 65px;
        box-shadow: 0 0 0 8px var(--ivory);
    }

    .node-number {
        font-size: 1.3rem;
    }

    .timeline-connector {
        width: 3px;
        height: 40px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .timeline-card {
        padding: 1.6rem 1.3rem;
        width: 100%;
    }

    .timeline-card::before {
        display: none;
    }

    .vote-count {
        font-size: 1.8rem;
    }

    .stage-meta {
        justify-content: center;
    }

    .stage-votes {
        justify-content: center;
    }

    .voting-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .voting-info-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .node-circle {
        width: 55px;
        height: 55px;
    }

    .node-number {
        font-size: 1.1rem;
    }

    .vote-count {
        font-size: 1.5rem;
    }

    .timeline-card {
        padding: 1.3rem 1rem;
    }

    .stage-badge {
        font-size: 0.7rem;
    }

    .voting-info-box {
        padding: 1.5rem 1rem;
    }
}

/* ============ GALLERY - BENTO LAYOUT ============ */
.gallery-section {
    padding: 7rem 0;
    background:  var(--teal-darkest);
}

/* Bento Grid Container */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid Area Assignments */
.bento-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.bento-text {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.bento-tall {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.bento-small:nth-of-type(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.bento-small:nth-of-type(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.bento-wide {
    grid-column: 2 / 5;
    grid-row: 3 / 4;
}

/* Each Bento Item */
.bento-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    background: var(--cream-light);
}

.bento-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.bento-item:hover img {
    transform: scale(1.05);
}

/* Overlay for tagged images */
.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.bento-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Text Card */
.bento-text {
    background: var(--teal-dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.8rem;
}

.bento-text-inner {
    text-align: center;
    color: var(--white);
}

.bento-star {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    display: block;
}

.bento-text-inner p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.2rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.bento-link i {
    transition: transform var(--transition-fast);
}

.bento-link:hover {
    color: var(--gold-light);
}

.bento-link:hover i {
    transform: translateX(4px);
}

/* Bento Text Card Hover */
.bento-text:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============ BENTO RESPONSIVE ============ */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.8rem;
    }

    .bento-hero {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .bento-text {
        grid-column: 1 / 2;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .bento-tall {
        grid-column: 2 / 3;
        grid-row: auto;
        aspect-ratio: 3/4;
    }

    .bento-small:nth-of-type(4) {
        grid-column: 1 / 2;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .bento-small:nth-of-type(5) {
        grid-column: 2 / 3;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .bento-wide {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 21/9;
    }

    .bento-text {
        padding: 1.5rem;
    }

    .bento-text-inner p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .bento-hero {
        grid-column: 1 / 3;
        aspect-ratio: 4/3;
    }

    .bento-text {
        grid-column: 1 / 3;
        aspect-ratio: auto;
        padding: 2rem 1.5rem;
    }

    .bento-tall {
        grid-column: 1 / 2;
        aspect-ratio: 3/4;
    }

    .bento-small:nth-of-type(4) {
        grid-column: 2 / 3;
        aspect-ratio: 3/4;
    }

    .bento-small:nth-of-type(5) {
        grid-column: 1 / 2;
        aspect-ratio: 1;
    }

    .bento-wide {
        grid-column: 2 / 3;
        aspect-ratio: 1;
    }

    .bento-overlay {
        opacity: 1;
        padding: 0.8rem;
    }
}

/* ============ DIFFERENTIATORS - MASONRY WITH BG IMAGES ============ */
.differentiators {
    padding: 7rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.08rem;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    grid-auto-rows: minmax(220px, auto);
}

.masonry-card {
    transition: var(--transition);
}

.masonry-card.tall {
    grid-row: span 2;
}

.masonry-card.short {
    grid-row: span 1;
}

/* Card Inner - now with background image */
.masonry-card-inner {
    position: relative;
    border-radius: var(--radius-md);
    height: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    isolation: isolate;
}

.masonry-card.tall .masonry-card-inner {
    min-height: 470px;
}

/* Dark Overlay for text visibility */
.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 46, 46, 0.25) 0%,
        rgba(6, 46, 46, 0.45) 40%,
        rgba(6, 46, 46, 0.85) 100%
    );
    z-index: 1;
    transition: background var(--transition-slow);
}

.masonry-card:hover .masonry-overlay {
    background: linear-gradient(
        180deg,
        rgba(6, 46, 46, 0.4) 0%,
        rgba(6, 46, 46, 0.6) 40%,
        rgba(6, 46, 46, 0.9) 100%
    );
}

/* Content sits on top of overlay */
.masonry-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.8rem;
    width: 100%;
    transition: transform var(--transition);
}

.masonry-card:hover .masonry-content {
    transform: translateY(-4px);
}

/* Icon */
.masonry-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.masonry-card:hover .masonry-icon {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.06);
}

/* Number */
.masonry-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2.5px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Text */
.masonry-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.masonry-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    max-width: 95%;
}

/* Hover */
.masonry-card:hover .masonry-card-inner {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Left accent line on hover */
.masonry-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    z-index: 3;
    transition: height var(--transition-slow);
    border-radius: 0 4px 4px 0;
}

.masonry-card:hover .masonry-card-inner::after {
    height: 100%;
}

/* ============ MASONRY RESPONSIVE ============ */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 500px;
    }

    .masonry-card.tall,
    .masonry-card.short {
        grid-row: span 1;
    }

    .masonry-card.tall .masonry-card-inner {
        min-height: 300px;
    }

    .masonry-card-inner {
        min-height: 240px;
    }

    .masonry-content {
        padding: 1.6rem 1.3rem;
    }

    .masonry-text h4 {
        font-size: 1.25rem;
    }

    .masonry-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .masonry-card.tall .masonry-card-inner {
        min-height: 260px;
    }

    .masonry-card-inner {
        min-height: 200px;
    }

    .masonry-content {
        padding: 1.3rem 1rem;
    }

    .masonry-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .masonry-text h4 {
        font-size: 1.15rem;
    }

    .masonry-text p {
        font-size: 0.8rem;
    }
}

/* ============ CONTACT SECTION - SPLIT LAYOUT ============ */
.contact-section {
    padding: 7rem 0;
    background: var(--ivory);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Side - Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header-left {
    margin-bottom: 0.5rem;
}

.section-header-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.section-header-left p {
    color: var(--text-muted);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 1.3rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--teal);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity var(--transition);
}

.contact-list-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-list-item:hover::before {
    opacity: 1;
}

/* Individual social accent colors on hover */
.contact-list-item:nth-child(3):hover::before {
    background: #1877F2;
}

.contact-list-item:nth-child(4):hover::before {
    background: #E1306C;
}

/* Icon */
.contact-list-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-list-icon.phone {
    background: var(--teal);
}

.contact-list-icon.address {
    background: var(--coral);
}

.contact-list-icon.facebook {
    background: #1877F2;
}

.contact-list-icon.instagram {
    background: #E1306C;
}

.contact-list-item:hover .contact-list-icon {
    transform: scale(1.08);
}

/* Text */
.contact-list-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Arrow */
.contact-arrow {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-8px);
}

.contact-list-item:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--teal);
}

/* No arrow for address (not clickable) */
.contact-list-item:not(a) .contact-arrow {
    display: none;
}

/* Footnote */
.contact-footnote {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding-left: 0.3rem;
}

.contact-footnote i {
    color: var(--teal-light);
    font-size: 0.8rem;
}

/* Right Side - Image */
.contact-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3/4;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

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

/* Floating badge on image */
.contact-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.3rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-image-badge i {
    color: var(--coral);
    font-size: 1.1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.contact-image-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============ CONTACT RESPONSIVE ============ */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 550px;
    }

    .contact-image {
        aspect-ratio: 16/9;
        order: -1;
    }

    .section-header-left h2 {
        font-size: 2.4rem;
    }

    .contact-list-item {
        padding: 1rem 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 5rem 0;
    }

    .section-header-left h2 {
        font-size: 2rem;
    }

    .section-header-left p {
        font-size: 0.9rem;
    }

    .contact-list-item {
        padding: 0.9rem 1rem;
        gap: 1rem;
    }

    .contact-list-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .contact-image-badge {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.8rem 1rem;
    }

    .contact-image-badge span {
        font-size: 0.8rem;
    }
}
    