/* ========================================
   MONTE CONSTRUCTION - Main Stylesheet
   Author: Vinícius Bastos (https://midias.me)
   Version: 1.1.0
   Date: 14/04/2026
   ======================================== */

/* --- Custom Properties --- */
:root {
    /* Colors */
    --c-orange: #FE4501;
    --c-orange-hover: #E53E00;
    --c-orange-glow: rgba(254, 69, 1, 0.15);
    --c-orange-subtle: rgba(254, 69, 1, 0.08);
    --c-black: #000000;
    --c-white: #FFFFFF;
    --c-pastel: #DADAD0;
    --c-trunk: #717264;
    --c-powder: #33322E;
    --c-powder-light: #3d3c37;

    /* Typography */
    --f-heading: 'Archivo', sans-serif;
    --f-body: 'Work Sans', sans-serif;
    --f-mono: 'Inconsolata', monospace;

    /* Spacing */
    --header-h: 80px;
    --section-py: clamp(80px, 12vw, 140px);
    --gap-xs: 8px;
    --gap-sm: 16px;
    --gap-md: 24px;
    --gap-lg: 48px;
    --gap-xl: 80px;

    /* Layout */
    --max-w: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --t-fast: 0.2s;
    --t-base: 0.35s;
    --t-slow: 0.6s;
}


/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-white);
    background-color: var(--c-black);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast) ease;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}


/* ========================================
   ACCESSIBILITY
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--c-orange);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ========================================
   LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gap-md);
    padding-right: var(--gap-md);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}


/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 1.5vw, 1.25rem); }

p {
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    line-height: 1.7;
}

.text-lg {
    font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
    line-height: 1.8;
}

.text-orange {
    color: var(--c-orange);
}

.mono {
    font-family: var(--f-mono);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8125rem;
}


/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    transition: all var(--t-base) var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary {
    background: var(--c-orange);
    color: var(--c-white);
    border: 2px solid var(--c-orange);
}

.btn-primary:hover {
    background: var(--c-orange-hover);
    border-color: var(--c-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 69, 1, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(254, 69, 1, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--c-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-outline:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Botões na seção light */
.section-light .btn-outline {
    color: var(--c-black);
    border-color: rgba(0, 0, 0, 0.2);
}

.section-light .btn-outline:hover {
    border-color: var(--c-black);
    background: rgba(0, 0, 0, 0.04);
}


/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: all var(--t-base) ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo,
.footer-logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: 0.02em;
    color: var(--c-white);
}

.logo-sub {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.5625rem;
    letter-spacing: 0.3em;
    color: var(--c-trunk);
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--t-fast) ease;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-orange);
    transition: width var(--t-base) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Nav CTA */
.nav-cta {
    padding: 10px 24px;
    font-size: 0.8125rem;
}


/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.lang-switcher {
    position: relative;
    z-index: 1002;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--t-fast) ease;
    cursor: pointer;
    background: transparent;
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--c-white);
}

.lang-btn svg {
    display: inline;
    flex-shrink: 0;
}

.lang-current {
    font-family: var(--f-mono);
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
}

.lang-arrow {
    transition: transform var(--t-fast) ease;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--t-fast) var(--ease-out);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 14px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--t-fast) ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-white);
}

.lang-option.active {
    color: var(--c-orange);
    font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
    cursor: pointer;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--t-base) ease;
    transform-origin: center;
}

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

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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


/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0a0a08;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35) saturate(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--c-white) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-white) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.hero-title {
    margin-bottom: 28px;
    font-weight: 800;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.35);
}

.hero-scroll .mono {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--c-orange), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}


/* ========================================
   SECTION VARIANTS
   ======================================== */

.section-dark {
    background: var(--c-black);
    color: var(--c-white);
}

.section-dark-alt {
    background: var(--c-powder);
    color: var(--c-white);
}

.section-light {
    background: var(--c-pastel);
    color: var(--c-black);
}

.section-statement {
    background: var(--c-black);
}

.section-cta {
    background: var(--c-powder);
}


/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--gap-xl);
}

.section-header-dark h2,
.section-header-dark p {
    color: var(--c-black);
}

.section-label {
    display: inline-block;
    color: var(--c-orange);
    margin-bottom: 16px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.section-desc {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 20px;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.section-header-dark .section-desc {
    color: var(--c-trunk);
}


/* ========================================
   BRAND INTRO (About)
   ======================================== */

.intro-grid {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--gap-lg);
    max-width: 800px;
    margin: 0 auto;
}

.accent-line {
    width: 3px;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(180deg, var(--c-orange), transparent);
    border-radius: 2px;
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-content .text-lg {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 44px;
}

.values-row {
    display: flex;
    gap: var(--gap-lg);
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-number {
    color: var(--c-orange);
    font-size: 0.875rem;
}

.value-name {
    font-weight: 600;
    font-size: 0.9375rem;
}


/* ========================================
   FOR BUILDERS - Benefits Grid
   ======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-md);
    margin-bottom: var(--gap-xl);
}

.benefit-card {
    background: var(--c-powder);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--t-base) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--c-orange);
    transform: scaleX(0);
    transition: transform var(--t-base) var(--ease-out);
}

.benefit-card:hover {
    border-color: rgba(254, 69, 1, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Partnership Block */
.partnership-block {
    background: linear-gradient(135deg, var(--c-powder), var(--c-powder-light));
    border: 1px solid rgba(254, 69, 1, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}

.partnership-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--c-orange);
}

.partnership-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.partnership-content p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 680px;
    line-height: 1.8;
}


/* ========================================
   SERVICES
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
    margin-bottom: var(--gap-lg);
}

.service-card {
    background: var(--c-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: clamp(32px, 4vw, 48px);
    transition: all var(--t-base) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow) var(--ease-out);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    line-height: 1;
}

.service-card h3 {
    color: var(--c-black);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--c-trunk);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 14px;
    font-size: 0.6875rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    color: var(--c-trunk);
    letter-spacing: 0.04em;
}

/* Services Bottom / Process */
.services-bottom {
    background: var(--c-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: clamp(32px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.services-bottom-content h3 {
    color: var(--c-black);
    margin-bottom: 12px;
}

.services-bottom-content p {
    color: var(--c-trunk);
    line-height: 1.7;
}

.progress-stages {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    min-width: 60px;
}

.stage-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--c-trunk);
    background: var(--c-pastel);
    transition: all var(--t-base) ease;
    flex-shrink: 0;
}

.stage-dot.active {
    border-color: var(--c-orange);
    background: var(--c-orange);
    box-shadow: 0 0 0 5px var(--c-orange-glow);
}

.stage-label {
    font-size: 0.5625rem;
    color: var(--c-trunk);
    white-space: nowrap;
}

.stage-line {
    flex: 1;
    height: 2px;
    min-width: 24px;
    background: rgba(113, 114, 100, 0.3);
    margin-top: 6px;
    align-self: flex-start;
}

.stage-line.active {
    background: var(--c-orange);
}


/* ========================================
   PROJECTS
   ======================================== */

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
}

.project-card {
    background: var(--c-powder);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--t-base) var(--ease-out);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 69, 1, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-card-featured {
    grid-column: 1 / -1;
}

.project-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

/* Construção visual para Marrickville Library */
.project-image-1 {
    background: linear-gradient(135deg, #1c1c18 0%, #2d2a24 40%, #1a1917 100%);
}

.project-image-1::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(254, 69, 1, 0.3) 20px, rgba(254, 69, 1, 0.3) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 21px);
}

.project-image-1::after {
    content: 'LIBRARY';
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: var(--f-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.05em;
}

/* Sydney Fish Market */
.project-image-2 {
    background: linear-gradient(135deg, #1a1d1c 0%, #232825 40%, #171a18 100%);
}

.project-image-2::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.15) 15px, rgba(255, 255, 255, 0.15) 16px);
}

.project-image-2::after {
    content: 'SFM';
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: var(--f-mono);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(254, 69, 1, 0.06);
    letter-spacing: 0.1em;
}

/* Residential Builds */
.project-image-3 {
    background: linear-gradient(135deg, #1f1c18 0%, #2a2520 40%, #1c1a16 100%);
}

.project-image-3::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(var(--c-white) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-white) 1px, transparent 1px);
    background-size: 40px 40px;
}

.project-image-3::after {
    content: 'RES';
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: var(--f-mono);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.1em;
}

.project-card-featured .project-image {
    height: 380px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.project-info {
    padding: 28px;
}

.project-tag {
    display: inline-block;
    font-size: 0.6875rem;
    color: var(--c-orange);
    margin-bottom: 10px;
    letter-spacing: 0.12em;
}

.project-info h3 {
    font-size: 1.375rem;
    margin-bottom: 10px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    line-height: 1.6;
}


/* ========================================
   TRUST / REPUTATION
   ======================================== */

.trust-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--gap-xl);
    align-items: center;
}

.trust-content .section-label {
    margin-bottom: 16px;
}

.trust-content h2 {
    margin-bottom: 24px;
}

.trust-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

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

.trust-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all var(--t-base) var(--ease-out);
}

.trust-stat:hover {
    border-color: rgba(254, 69, 1, 0.15);
    background: rgba(254, 69, 1, 0.03);
}

.trust-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-orange);
}

.trust-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   CAREERS
   ======================================== */

.careers-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--gap-xl);
    align-items: start;
}

.careers-content .section-label {
    display: block;
    margin-bottom: 16px;
}

.careers-content h2 {
    color: var(--c-black);
    margin-bottom: 24px;
}

.careers-content > p {
    color: var(--c-trunk);
    margin-bottom: 36px;
    line-height: 1.8;
}

.career-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.career-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-check {
    flex-shrink: 0;
    margin-top: 2px;
}

.career-benefit span {
    font-size: 0.9375rem;
    color: var(--c-powder);
    font-weight: 500;
    line-height: 1.5;
}

.careers-cta-text {
    color: var(--c-trunk);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Careers Visual / Stats Card */
.careers-visual {
    position: relative;
}

.careers-image-wrapper {
    background: var(--c-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.careers-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(var(--c-black) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-black) 1px, transparent 1px);
    background-size: 32px 32px;
}

.careers-stats-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.careers-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(218, 218, 208, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--t-base) ease;
}

.careers-stat-item:hover {
    background: rgba(254, 69, 1, 0.06);
}

.careers-stat-icon {
    flex-shrink: 0;
}

.careers-stat-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-black);
    display: block;
}

.careers-stat-desc {
    font-size: 0.8125rem;
    color: var(--c-trunk);
}


/* ========================================
   BRAND STATEMENT
   ======================================== */

.section-statement {
    padding: var(--section-py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(var(--c-white) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-white) 1px, transparent 1px);
    background-size: 80px 80px;
}

.statement-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.statement-line {
    width: 60px;
    height: 3px;
    background: var(--c-orange);
    margin: 0 auto 44px;
    border-radius: 2px;
}

.statement-content h2 {
    margin-bottom: 28px;
    font-weight: 800;
}

.statement-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.8;
}


/* ========================================
   FINAL CTA
   ======================================== */

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
}

.cta-card {
    background: var(--c-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 56px);
    position: relative;
    overflow: hidden;
    transition: all var(--t-base) var(--ease-out);
}

.cta-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--c-orange), transparent);
    opacity: 0;
    transition: opacity var(--t-base) ease;
}

.cta-card:hover {
    border-color: rgba(254, 69, 1, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-card:hover .cta-card-accent {
    opacity: 1;
}

.cta-label {
    display: inline-block;
    color: var(--c-orange);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.cta-card h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    line-height: 1.7;
}


/* ========================================
   LOCATION / MAP SECTION
   ======================================== */

.section-map {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: var(--c-rich-black);
    overflow: hidden;
}

.map-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.6;
}

.map-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(90deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.8) 45%, rgba(10,10,12,0) 100%);
    pointer-events: none;
}

.map-info {
    max-width: 480px;
    pointer-events: auto;
}

.map-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 32px;
}

.map-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.map-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(254, 69, 1, 0.1);
    flex-shrink: 0;
}

.map-detail-title {
    display: block;
    font-size: 0.75rem;
    font-family: var(--f-mono);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-detail-text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-white);
}

.map-detail-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-white);
    text-decoration: none;
    transition: color var(--t-fast) ease;
}

.map-detail-link:hover {
    color: var(--c-orange);
}


/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--c-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--gap-lg);
    margin-bottom: 60px;
}

.footer-logo-link {
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9375rem;
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t-base) ease;
}

.social-link:hover {
    border-color: var(--c-orange);
    color: var(--c-orange);
    background: var(--c-orange-subtle);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--c-white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact-list li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--t-fast) ease;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-list a:hover {
    color: var(--c-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
    font-size: 0.75rem !important;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--t-fast) ease;
}

.footer-credit a:hover {
    color: var(--c-orange);
}


/* ========================================
   ANIMATIONS
   ======================================== */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity var(--t-slow) var(--ease-out),
        transform var(--t-slow) var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(35px); }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}


/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-layout {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }

    .trust-stats {
        flex-direction: row;
    }

    .trust-stat {
        flex: 1;
    }

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

    .careers-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-py: clamp(60px, 10vw, 100px);
        --header-h: 64px;
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 80px 40px;
        transform: translateX(100%);
        transition: transform var(--t-base) var(--ease-out);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.75rem;
        font-family: var(--f-heading);
        font-weight: 700;
        color: var(--c-white);
    }

    .nav-link::after {
        bottom: -4px;
        height: 3px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Language Switcher Mobile */
    .lang-switcher {
        order: -1;
        margin-right: auto;
        margin-left: 16px;
    }

    /* Hero */
    .hero-content {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-scroll {
        display: none;
    }

    /* Intro */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .intro-accent {
        display: none;
    }

    .values-row {
        flex-direction: column;
        gap: 16px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

    .progress-stages {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-featured {
        grid-column: 1;
    }

    .project-card-featured .project-image {
        height: 240px;
    }

    /* Trust */
    .trust-stats {
        flex-direction: column;
    }

    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Map Section Mobile */
    .map-content-wrapper {
        background: linear-gradient(180deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.8) 60%, rgba(10,10,12,0) 100%);
        padding: 60px 0 160px;
    }
}


/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .partnership-block {
        padding: 28px 20px;
    }

    .project-image {
        height: 200px;
    }

    .cta-card {
        padding: 32px 24px;
    }
}


/* ========================================
   PRINT
   ======================================== */

@media print {
    .site-header,
    .hero-scroll,
    .mobile-toggle,
    .hero-bg,
    .hero-overlay,
    .hero-pattern { display: none !important; }

    body {
        color: #000;
        background: #fff;
    }

    a { color: #000; }

    .section {
        break-inside: avoid;
        padding: 20px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
}
