:root {
    --navy: #1F2A36;
    --ivory: #F6F2EA;
    --dusty-rose: #B76E79;
    --gold: #C6A75E;
    --charcoal: #2B2B2B;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(31, 42, 54, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(31, 42, 54, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--dusty-rose);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.nav-cta:hover {
    background: #a05d68;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--navy);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    right: 0;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.3s ease;
}

.mobile-links a:hover {
    color: var(--gold);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(31, 42, 54, 0.65), rgba(31, 42, 54, 0.65)), 
                url('image/founder-4.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Fallback for when no image loads */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dusty-rose) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    /* Remove heavy animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When hero loads */
.hero-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--dusty-rose);
    color: white;
}

.btn-primary:hover {
    background-color: #a05d68;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid var(--ivory);
}

.btn-outline:hover {
    background-color: rgba(246, 242, 234, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--ivory));
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 8rem 2rem;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Who She Is Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--gold) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #555;
}

.link-arrow {
    color: var(--dusty-rose);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--navy);
}

/* Card Grid Section */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e5e5e5;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 42, 54, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    stroke: var(--dusty-rose);
    stroke-width: 1.5;
    fill: none;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.card p {
    color: #666;
    line-height: 1.7;
}

/* Focus Section */
.focus-section {
    background: linear-gradient(to bottom, rgba(183, 110, 121, 0.05), rgba(246, 242, 234, 0.5));
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin-top: 4rem;
}

.pillar {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.pillar:last-child {
    border-right: none;
}

.pillar h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* Speaking Section */
.speaking-section {
    background-color: var(--navy);
    color: white;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    background-color: white;
    padding: 8rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(31, 42, 54, 0.97);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 85vh;
    border-radius: 2px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

.quote {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.quote::before {
    content: '"';
    color: var(--gold);
}

.quote::after {
    content: '"';
    color: var(--gold);
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.split-item {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.split-item:first-child {
    background-color: white;
    border-right: 1px solid var(--gold);
}

.split-item:last-child {
    background-color: var(--ivory);
}

.split-image {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dusty-rose) 100%);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.split-item h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.split-item p {
    max-width: 400px;
    margin-bottom: 2rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--ivory);
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 42, 54, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 999;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #F6F2EA;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    transition: 0.3s ease;
}

.modal.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.active {
    display: block;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal form input,
.modal form textarea,
.modal form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}


/* Footer */
footer {
    background-color: var(--navy);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* .mobile-menu {
        display: block;
    }

    .menu-overlay {
        display: block;
    } */
}

@media (max-width: 768px) {
    section {
        padding: 5rem 1.5rem;
    }

    .hero {
        background: linear-gradient(rgba(31, 42, 54, 0.575), rgba(31, 42, 54, 0.541)),
                    url('image/founder-4.png');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* disable fixed for mobile */
        padding: 6rem 1.5rem;
    }

    /* Remove pseudo gradient on mobile */
    .hero::before {
        display: none;
    }

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

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

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

    .about-image {
        height: 400px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-item:first-child {
        border-right: none;
        border-bottom: 1px solid var(--gold);
    }

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

    .pillar {
        border-right: none;
    }

    .btn-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

/* Remove old mobile menu button */
.mobile-menu-btn {
    display: none;
}