/* ===================================
   GPL
   Lightship-Inspired Modern Design
   =================================== */

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

:root {
    /* Neutral Modern Palette */
    --primary-dark: #1A1A1A;
    --secondary-dark: #2D2D2D;
    --medium-gray: #4A4A4A;
    --light-gray: #8F8F8F;
    --lighter-gray: #D4D4D4;
    --off-white: #F7F7F7;
    --pure-white: #FFFFFF;

    /* Wood Accent */
    --wood-accent: #8B7355;
    --wood-dark: #6B5744;

    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
    --spacing-2xl: 128px;

    /* Shadows */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

::selection {
    background: var(--primary-dark);
    color: var(--pure-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===================================
   NAVIGATION - Minimal & Fixed
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    /* Transparent initially */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pure-white);
    /* White on hero */
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--pure-white);
}

.navbar.scrolled .nav-menu a {
    color: var(--medium-gray);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-dark);
}

.lang-switch {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pure-white);
}

.navbar.scrolled .lang-switch {
    color: var(--primary-dark);
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .lang-switch:hover {
    background: var(--primary-dark);
    color: var(--pure-white);
    border-color: var(--primary-dark);
}

/* ===================================
   HERO - Full Viewport Immersive
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--primary-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--pure-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--pure-white);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    z-index: 3;
    animation: fadeInUp 0.6s ease 0.8s forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ===================================
   IMAGE BREAKOUT SECTIONS
   =================================== */
.image-breakout,
.full-width-banner {
    padding: 0;
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.breakout-container,
.full-width-banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.breakout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.breakout-text,
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-lg);
    color: var(--pure-white);
}

.breakout-text h2,
.banner-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.breakout-text p,
.banner-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}


/* ===================================
   SECTIONS - Clean & Spacious
   =================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-number {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--primary-dark);
    margin: 0 auto var(--spacing-md);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===================================
   ABOUT - Two Column Clean Layout
   =================================== */
.about {
    background: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.intro-text {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    line-height: 1.5;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-item {
    padding: var(--spacing-lg);
    background: var(--off-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.stat-plus {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-left: 4px;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--light-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: var(--spacing-sm);
}

/* ===================================
   COLLAGE GRID - Lightship Inspired
   =================================== */
.gallery {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    background: var(--off-white);
    overflow: hidden;
    /* For parallax bounds */
}

.collage-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    /* Space between columns */
    padding: var(--spacing-lg) 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 800px;
}

.collage-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    /* Vertical space between items */
}

.left-col {
    padding-top: 100px;
    /* Offset start */
    width: 25%;
}

.center-col {
    width: 40%;
    margin-top: -50px;
    /* Pull up slightly */
    z-index: 2;
}

.right-col {
    padding-top: 150px;
    /* Different offset */
    width: 25%;
}

.collage-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s linear;
    /* Smooth parallax */
    background: var(--pure-white);
    will-change: transform;
}

/* Aspect Ratios */
.small-landscape {
    width: 100%;
    aspect-ratio: 4/3;
}

.medium-landscape {
    width: 100%;
    aspect-ratio: 16/9;
}

.tall-portrait {
    width: 100%;
    aspect-ratio: 9/12;
}

.collage-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.collage-item:hover .collage-image {
    transform: scale(1.05);
}


/* ===================================
   SERVICES - Card Grid
   =================================== */
.services {
    background: var(--pure-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--off-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.service-index {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    display: block;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* ===================================
   CONTACT - Clean Form Layout
   =================================== */
.contact {
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-item {
    margin-bottom: var(--spacing-lg);
    padding: 0;
    transition: all 0.3s ease;
}

.contact-item strong {
    display: block;
    color: var(--light-gray);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.contact-item p {
    color: var(--primary-dark);
    line-height: 1.6;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: var(--pure-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
}

.contact-form input,
.contact-form textarea {
    padding: var(--spacing-md);
    border: 1px solid var(--lighter-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--pure-white);
    color: var(--primary-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-dark);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===================================
   FOOTER - Minimal
   =================================== */
.footer {
    background: var(--primary-dark);
    color: var(--pure-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 400;
}

.footer-tagline {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.6;
    font-weight: 400;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .collage-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        padding: 0;
    }

    .collage-column {
        width: 100%;
        padding-top: 0;
        margin-top: 0;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .collage-item {
        width: 45%;
    }

    .tall-portrait {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 4/5;
    }

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

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

    .image-breakout,
    .full-width-banner {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 32px;
        --spacing-xl: 64px;
        --spacing-2xl: 80px;
    }

    .nav-menu {
        display: none;
    }

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

    .collage-item {
        width: 90%;
    }

    .about-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        /* Smaller for very small screens */
    }

    .breakout-text h2,
    .banner-content h2 {
        font-size: 2rem;
    }

    .collage-item {
        width: 100%;
        /* Full width on mobile */
    }

    .container {
        padding: 0 16px;
    }

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