/* ==========================================================================
   Editorial Architectural Hero - Clean Full-Screen Background Layout
   ========================================================================== */

.hero-editorial {
    position: relative;
    width: 100%;
    min-height: 140vh;
    padding-top: calc(var(--space-20) + 40px);
    padding-bottom: var(--space-12);
    background-color: #0c0c0c;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Full-Screen Background Image and Overlay Layering */
.hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 12, 12, 0.45) 0%,
        rgba(12, 12, 12, 0.2) 50%,
        rgba(12, 12, 12, 0.75) 100%
    );
    z-index: 2;
}
/* Background Subtle Grid Guidelines */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    pointer-events: none;
    z-index: 3;
}

.grid-line {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.grid-line:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Main Container Structure */
.hero-editorial-container {
    position: relative;
    z-index: 4; /* Keeps text clearly visible above background elements */
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

/* Header Metadata Bar */
.hero-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.meta-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.meta-text {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: rgba(255, 255, 255, 0.8);
}

/* Typography Grid */
.hero-typography-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-16);
    align-items: end;
}

.hero-editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    max-width: 15ch;
    text-transform: none;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-editorial-lead {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding-bottom: var(--space-2);
}

.hero-description {
    font-family: var(--font-body);
    font-size: var(--fs-h5);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 40ch;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Custom Minimal Architectural Button Styling */
.btn-architectural {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-8);
    background-color: #ffffff;
    color: #0c0c0c;
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    border-radius: var(--radius-none);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.btn-architectural:hover {
    background-color: rgba(255, 255, 255, 0.85);
    color: #0c0c0c;
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn-architectural:hover .btn-icon {
    transform: translateX(4px);
}

/* Editorial Footer Bar */
.hero-editorial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: var(--space-8);
}

.scroll-directive {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.scroll-track {
    width: 36px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transform: translateX(-100%);
    animation: scrollTrackAnim 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollTrackAnim {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.scroll-label {
    font-family: var(--font-mono);
    font-size: var(--fs-tiny);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: #ffffff;
}

.hero-footer-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-mono);
    font-size: var(--fs-tiny);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-typography-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .hero-editorial-title {
        max-width: 100%;
    }
}
/* ==========================================================================
   Studio Introduction - Overlapping Parallax Composition
   ========================================================================== */

.section-studio-intro {
    position: relative;
    width: 100%;
    padding: var(--space-24) 0;
    background-color: #0c0c0c;
    color: var(--color-primary);
    overflow: hidden;
}
.s-bg-intro {
    z-index: 0;
    background-image: radial-gradient(circle farthest-corner at 50% 50%, white, #5d9dff 32%, var(--swatch--black) 61%);
    width: 120vw;
    min-width: 120rem;
    max-width: 140rem;
    height: 110vw;
    min-height: 110rem;
    max-height: 130rem;
    margin-top: 60rem;
    position: absolute;
    
}
.studio-intro-container {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.studio-header-meta {
    display: flex;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

/* Master Composition Setup */
.studio-intro-composition {
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-8);
}

/* 1. Center Image Layer (Moves at its own scroll speed behind) */
.studio-media-frame {
    position: relative;
    width: 480px;
    height: 580px;
    background-color: var(--color-background-alt);
    overflow: hidden;
    z-index: 1; /* Stays in the background */
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.studio-media-frame .media-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.studio-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 2. Giant "About" Title Layer (Positioned absolute to overlap IN FRONT of the image on the left) */
.studio-title-wrapper {
    position: absolute;
    left: 2%;
    top: 15%;
    z-index: 3; /* Sits directly IN FRONT of the image */
    pointer-events: none; /* Allows pointer events to pass through if needed */
}

.studio-massive-title {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 14vw, 15rem);
    font-weight: var(--fw-bold);
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: none;
    margin: 0;
}

.studio-massive-title span {
    color: var(--color-primary);
}

/* 3. Right Content Layer (Positioned absolute to overlap IN FRONT of the image on the right) */
.studio-content-wrapper {
    position: absolute;
    right: 4%;
    bottom: 10%;
    width: 420px;
    z-index: 3; /* Sits directly IN FRONT of the image */
    background: rgba(250, 250, 250, 0.9); /* Subtle backdrop readability shield */
    backdrop-filter: blur(12px);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.studio-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.studio-description {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-secondary);
}

.studio-actions {
    margin-top: var(--space-2);
}


/* Ensure smooth hardware-accelerated movement for parallax layers */
.studio-media-frame,
.studio-title-wrapper,
.studio-content-wrapper {
    will-change: transform;
}
/* Responsive adjustments for Tablets and Mobile */
@media (max-width: 1200px) {
    .studio-intro-composition {
        flex-direction: column;
        min-height: auto;
        gap: var(--space-8);
    }

    .studio-title-wrapper,
    .studio-content-wrapper {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
    }

    .studio-media-frame {
        width: 100%;
        height: 420px;
    }
}
/* ===========================
   Philosophy Section
=========================== */

.section-philosophy {
    padding: var(--section-space-lg) 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32);
    align-items: start;
}

.philosophy-text {
    position: sticky;
    top: var(--space-24);
}

.philosophy-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--color-white);
    margin-top: var(--space-8);
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.principle-item {
    display: flex;
    gap: var(--space-8);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.principle-item:last-child {
    border-bottom: none;
}

.principle-number {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-display);
    color: var(--color-accent);
    min-width: 80px;
}

.principle-content {
    flex: 1;
}

.principle-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.principle-description {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: var(--lh-loose);
    color: var(--color-secondary-light);
    max-width: 50ch;
}

@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--space-24);
    }
    
    .philosophy-text {
        position: static;
        max-width: 600px;
    }
    
    .principle-number {
        font-size: var(--fs-h1);
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .section-philosophy {
        padding: var(--section-space-md) 0;
    }
    
    .principle-item {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .principle-number {
        font-size: var(--fs-h2);
    }
    
    .principle-description {
        max-width: 100%;
    }
}
/* ==========================================================================
   Horizontal Scrolling Projects Gallery (Clean Single-Level Flex Architecture)
   ========================================================================== */

.section-projects-horizontal {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--color-background);
    color: var(--color-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horiz-gallery-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    height: 100vh;
    align-items: center;
    will-change: transform;
    padding-left: 4vw;
}

/* Individual Slide Pane */
.project-slide {
    flex: 0 0 44vw; /* Each card takes up roughly half the screen width */
    height: 75vh;
    padding: 0 var(--space-6);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Intro Text Slide Pane */
.project-slide.intro-slide {
    flex: 0 0 36vw;
    padding-right: var(--space-12);
    align-items: flex-start;
    text-align: left;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    max-width: 460px;
}

.intro-content .section-label {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-secondary);
}

.intro-content .projects-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
}

.scroll-cue {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    color: var(--color-secondary);
    margin-top: var(--space-4);
}

.cue-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-primary);
}

/* Project Card Structure */
.project-card-link {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.project-meta-top {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    color: var(--color-secondary);
    padding-bottom: var(--space-2);
}

.project-image-box {
    width: 100%;
    height: 50vh;
    background-color: var(--color-background-alt);
    overflow: hidden;
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-link:hover .project-image-box img {
    transform: scale(1.03);
}

.project-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: var(--space-2);
}

.project-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.project-action {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.project-card-link:hover .project-action {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Mobile responsive fallback (stack vertical on narrow screens) */
@media (max-width: 1024px) {
    .section-projects-horizontal {
        height: auto;
        display: block;
        padding: 80px 0;
    }
    .horiz-gallery-wrapper {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding-left: 0;
    }
    .project-slide,
    .project-slide.intro-slide {
        flex: unset;
        width: 100%;
        height: auto;
        padding: var(--space-8) var(--space-6);
    }
    .project-image-box {
        height: 340px;
    }
}

/*==========================================================================
/*   Space-Tech Services Section (Gru.space Aesthetic)
  ========================================================================== */
.section-services {
position: relative;
padding: clamp(120px, 14vw, 180px) 0;
background-color: #030407; /* Deep cosmic void black */
color: #ffffff;
overflow: hidden;
}
/* Subtle Technical Background Grid */
.space-tech-grid::before {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 80px 80px;
mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
pointer-events: none;
z-index: 1;
}
/* Atmospheric Space Glow Orbs */
.space-glow-orb {
position: absolute;
width: 500px;
height: 500px;
border-radius: 50%;
filter: blur(120px);
z-index: 1;
pointer-events: none;
opacity: 0.15;
}
.space-glow-orb.orb-1 {
top: 10%;
left: -10%;
background: #2563eb; /* Deep cosmic blue */
}
.space-glow-orb.orb-2 {
bottom: 5%;
right: -10%;
background: #0ea5e9; /* Cyan telemetry flare */
}
.section-services .services-container {
position: relative;
z-index: 2;
width: 100%;
max-width: 1480px;
margin: 0 auto;
padding: 0 clamp(24px, 5vw, 64px);
}
/* Header & HUD Label Styling */
.section-services .services-header {
margin-bottom: clamp(60px, 8vw, 90px);
}
.section-label-wrapper {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.hud-indicator {
width: 6px;
height: 6px;
background-color: #38bdf8;
box-shadow: 0 0 10px #38bdf8;
border-radius: 50%;
}
.section-services .section-label {
font-family: var(--font-mono, monospace);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.3em;
color: rgba(255, 255, 255, 0.6);
}
.telemetry-tag {
font-family: var(--font-mono, monospace);
font-size: 10px;
color: #38bdf8;
background: rgba(56, 189, 248, 0.1);
border: 1px solid rgba(56, 189, 248, 0.2);
padding: 2px 8px;
border-radius: 2px;
letter-spacing: 0.15em;
}
.section-services .services-headline {
font-family: var(--font-heading, serif);
font-size: clamp(2.5rem, 5.5vw, 5rem);
font-weight: 300;
line-height: 1.1;
letter-spacing: -0.03em;
color: #ffffff;
}
/* Services List Container */
.services-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/* Engineering Row Item */
.service-item {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: clamp(32px, 4vw, 48px) 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.4s ease, padding-right 0.4s ease;
cursor: pointer;
}
.service-item::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 1px;
background: #38bdf8;
transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item:hover {
background-color: rgba(56, 189, 248, 0.02);
padding-left: 24px;
padding-right: 24px;
}
.service-item:hover::after {
width: 100%;
}
/* Main Info Group */
.service-main-info {
display: flex;
align-items: center;
gap: clamp(24px, 4vw, 48px);
min-width: 380px;
}
.service-number {
font-family: var(--font-mono, monospace);
font-size: 12px;
color: rgba(255, 255, 255, 0.25);
letter-spacing: 0.2em;
}
.title-block {
display: flex;
flex-direction: column;
gap: 4px;
}
.service-code {
font-family: var(--font-mono, monospace);
font-size: 10px;
color: #38bdf8;
letter-spacing: 0.2em;
opacity: 0.7;
}
.service-title {
font-family: var(--font-heading, sans-serif);
font-size: clamp(1.8rem, 2.4vw, 2.4rem);
font-weight: 300;
color: #ffffff;
margin: 0;
transition: color 0.3s ease, transform 0.3s ease;
}
.service-item:hover .service-title {
color: #f0f9ff;
transform: translateX(6px);
}
/* Tech Tags */
.service-tags {
display: flex;
gap: 8px;
flex-wrap: wrap;
flex-grow: 1;
justify-content: flex-start;
padding: 0 32px;
max-width: 650px;
}
.service-tag {
font-family: var(--font-mono, monospace);
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.15em;
color: rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.06);
padding: 6px 14px;
border-radius: 2px;
transition: all 0.3s ease;
}
.service-item:hover .service-tag {
color: rgba(255, 255, 255, 0.9);
background: rgba(56, 189, 248, 0.05);
border-color: rgba(56, 189, 248, 0.2);
}
/* Radar Link Button */
.service-link {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 50%;
color: rgba(255, 255, 255, 0.5);
font-size: 1.2rem;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.radar-ping {
position: absolute;
inset: -3px;
border: 1px solid #38bdf8;
border-radius: 50%;
opacity: 0;
transition: opacity 0.3s ease;
}
.service-item:hover .service-link {
background: rgba(56, 189, 248, 0.1);
border-color: #38bdf8;
color: #38bdf8;
transform: scale(1.05);
}
.service-item:hover .radar-ping {
animation: radarPulse 1.5s infinite;
}
@keyframes radarPulse {
0% { transform: scale(1); opacity: 0.8; }
100% { transform: scale(1.4); opacity: 0; }
}
/* Responsive Handling */
@media (max-width: 1024px) {
.swipeimage-global-wrapper {
display: none !important;
}
.service-tags {
display: none;
}
}
@media (max-width: 768px) {
.service-item {
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.service-main-info {
width: 100%;
min-width: auto;
}
.service-link {
display: none;
}
}
/* ==========================================================================
Scoped Space Cursor Trail Flair System
========================================================================== */
.section-services {
position: relative;
overflow: hidden; /* Ensures falling trails don't bleed out of section */
}
.space-trail-container {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 5;
overflow: hidden;
}
/* Space tech flair nodes instead of generic shapes */
.space-flair {
position: absolute;
opacity: 0;
width: 24px;
height: 24px;
transform: translate(-50%, -50%);
pointer-events: none;
will-change: transform, opacity;
}
/* Variant 1: Cyan Tech Star Pixel */
.space-flair.flair-item-0 {
width: 12px;
height: 12px;
background: #38bdf8;
box-shadow: 0 0 12px #38bdf8, 0 0 24px rgba(56, 189, 248, 0.6);
border-radius: 50%;
}
/* Variant 2: Holographic Star Diamond */
.space-flair.flair-item-1 {
width: 16px;
height: 16px;
background: linear-gradient(135deg, #38bdf8, #818cf8);
transform: rotate(45deg) translate(-50%, -50%);
box-shadow: 0 0 15px rgba(129, 140, 248, 0.5);
border-radius: 2px;
}
/* Variant 3: Orbital Ring Dot */
.space-flair.flair-item-2 {
width: 20px;
height: 20px;
border: 1px solid rgba(56, 189, 248, 0.8);
box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
border-radius: 50%;
}
/* Variant 4: Cosmic Energy Cross/Spark */

.space-flair.flair-item-3 {
width: 18px;
height: 18px;
background: radial-gradient(circle, #ffffff 0%, #38bdf8 60%, transparent 100%);
clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
} 


/* ==========================================================================
   Why Work With Us / Lateral Pin Indicator Section (Viewport-Optimized)
   ========================================================================== */

.section-why-us {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--color-background);
    color: var(--color-primary);
    padding-top: 20px;
    overflow: hidden;
}

.why-container {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-12);
    display: flex;
    align-items: center;
}

/* Master Side-by-Side Grid */
.why-content-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center; /* Centers content block vertically as a unit */
}

/* Left Column Styling - Compacted to fit 100vh viewport */
.why-left-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-5); /* Reduced gap */
    justify-content: center;
    padding: 20px 0; /* Reduced top/bottom padding */
    height: 100%;
    box-sizing: border-box;
}

.why-header {
    width: 100%;
}

.why-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.6rem); /* Slightly smaller scale */
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin: 0 0 var(--space-2) 0;
    padding-top:20px;
}

.why-subtitle {
    font-family: var(--font-body);
    font-size: 14px; /* Reduced size */
    font-weight: 300;
    color: var(--color-secondary);
    line-height: 1.4;
    margin: 0 0 var(--space-4) 0;
    max-width: 45ch;
}

.why-title-rule {
    width: 100%;
    height: 1px;
    background-color: var(--color-border, rgba(255, 255, 255, 0.15));
}

/* Left List Wrapper with Progress Bar */
.why-list-wrapper {
    position: relative;
    padding-left: var(--space-6);
}

.vertical-progress-track {
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: calc(100% - 8px);
    background-color: var(--color-border, rgba(255, 255, 255, 0.12));
}

.vertical-progress-track .fill-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary); 
    transform-origin: top left;
}

.why-list-wrapper ul.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5); /* Tighter spacing between items to fit all 4 steps */
}

/* List Item adjustments */
.why-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
    opacity: 0.3; 
}

.why-list-item.active {
    opacity: 1; 
    transform: translateX(4px);
}

.item-number {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: var(--ls-wide);
    padding-top: 2px;
    color: var(--color-primary);
    font-weight: 600;
}

.item-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem); /* Compacted heading size */
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.item-description {
    font-family: var(--font-body);
    font-size: 13px; /* Scaled down slightly to guarantee zero overflow */
    font-weight: 300;
    line-height: 1.45;
    color: var(--color-secondary);
    opacity: 0.9;
    margin: 0;
    max-width: 44ch;
}

/* Right Side Full-Height Visual Container */
.why-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.right-slides-container,
.right-slides-container .slide,
.slide-image-frame {
    width: 100%;
    height: 100%;
}

.right-slides-container {
    position: relative;
    height: 100vh; /* Keeps image proportional and contained within viewport bounds */
    /*max-height: 850px;*/
}

.right-slides-container .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.slide-image-frame {
    background-color: var(--color-background-alt);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.slide-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================================
   Responsive Overrides for Tablets & Mobile
   ========================================================================== */

@media (max-width: 1024px) {
    .section-why-us {
        height: auto;
        padding: 80px 0;
    }

    .why-container {
        padding: 0 var(--space-6);
        height: auto;
    }

    .why-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        height: auto;
        align-items: start;
    }

    .why-left-column {
        padding: 0;
        height: auto;
    }

    .why-list-wrapper {
        padding-left: var(--space-6);
    }

    .why-list-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .why-visual-wrapper {
        height: 380px;
    }
    
    .right-slides-container {
    position: relative;
    height: 80vh; /* Keeps image proportional and contained within viewport bounds */
    max-height: 650px;
    margin-top:50px;
}

}
/* ===========================
   Team Section Premium
=========================== */

.section-team {
    padding: var(--section-space-lg) 0;
}

.team-header {
    margin-bottom: var(--space-24);
}

.team-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--color-primary);
    margin-top: var(--space-8);
    max-width: 800px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
}

.team-member {
    display: flex;
    gap: var(--space-6);
}

.member-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-initials {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.member-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading);
    color: var(--color-primary);
}

.member-role {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-accent);
}

.member-description {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: var(--lh-loose);
    color: var(--color-secondary);
    max-width: 40ch;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .team-member {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-team {
        padding: var(--section-space-md) 0;
    }
    
    .team-member {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .member-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .member-initials {
        font-size: var(--fs-h4);
    }
    
    .member-description {
        max-width: 100%;
    }
}

/* ==========================================================================
   Editorial Testimonials Section - Architectural Dark Mode Grid
   ========================================================================== */

.section-testimonials {
    position: relative;
    width: 100%;
    padding: 140px 0;
    background-color: var(--color-background); /* Deep architectural black/dark theme */
    color: var(--color-primary);
    overflow: hidden;
}

/* Background Subtle Grid Guidelines (Matches Hero/About system) */
.testimonials-grid-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    pointer-events: none;
    z-index: 1;
}

.testimonials-grid-lines .grid-line {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    height: 100%;
}

.testimonials-grid-lines .grid-line:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

/* Main Container Structure */
.testimonials-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

/* Header Metadata Bar */
.testimonials-header-meta {
    display: flex;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonials-header-meta .meta-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.testimonials-header-meta .meta-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.testimonials-header-meta .meta-text {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-secondary);
}

/* Headline Layout */
.testimonials-header-grid {
    max-width: 900px;
}

.testimonials-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin: 0;
}

/* 3-Column Editorial Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-4);
}

/* Individual Testimonial Card */
.testimonial-card {
    position: relative;
    background-color: var(--color-background-alt);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Card Top Index & Tag */
.card-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: var(--space-4);
}

.card-index {
    font-weight: 600;
    color: var(--color-primary);
}

/* Quote Typography */
.testimonial-quote p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--color-primary);
    margin: 0;
    opacity: 0.9;
}

/* Author Details Footer */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-4);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.author-project {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .testimonials-container {
        padding: 0 var(--space-6);
    }
}
/* ===========================
   Awards Section Premium
=========================== */

.section-awards {
    padding: var(--section-space-lg) 0;
}

.awards-header {
    margin-bottom: var(--space-24);
}

.awards-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--color-primary);
    margin-top: var(--space-8);
    max-width: 800px;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.award-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-border);
}

.award-item:last-child {
    border-bottom: none;
}

.award-year {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-accent);
}

.award-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.award-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

.award-organization {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-light);
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .awards-headline {
        font-size: var(--fs-h3);
    }
    
    .award-item {
        grid-template-columns: 80px 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .section-awards {
        padding: var(--section-space-md) 0;
    }
    
    .award-item {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
}

/* ===========================
   Clients Section Premium
=========================== */

.section-clients {
    padding: var(--section-space-lg) 0;
}

.clients-header {
    margin-bottom: var(--space-24);
}

.clients-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--color-primary);
    margin-top: var(--space-8);
    max-width: 800px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.client-item {
    padding: var(--space-8);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.client-item:hover {
    border-color: var(--color-accent);
    background: var(--color-white);
}

.client-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .clients-headline {
        font-size: var(--fs-h3);
    }
}

@media (max-width: 768px) {
    .section-clients {
        padding: var(--section-space-md) 0;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   CTA Section Premium
=========================== */

.section-cta {
    padding: var(--section-space-lg) 0;
}

.cta-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--color-white);
    margin-bottom: var(--space-8);
}

.cta-description {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    font-weight: var(--fw-light);
    line-height: var(--lh-loose);
    color: var(--color-secondary-light);
    margin-bottom: var(--space-12);
    max-width: 60ch;
}

.cta-button {
    display: inline-block;
}

@media (max-width: 1024px) {
    .cta-headline {
        font-size: var(--fs-h2);
    }
    
    .cta-description {
        font-size: var(--fs-body);
    }
}

@media (max-width: 768px) {
    .section-cta {
        padding: var(--section-space-md) 0;
    }
    
    .cta-headline {
        font-size: var(--fs-h3);
    }
    
    .cta-description {
        font-size: var(--fs-small);
    }
}

/* ===========================
   Contact Section Premium
=========================== */

.section-contact {
    padding: var(--section-space-lg) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--color-primary);
    margin-top: var(--space-8);
    margin-bottom: var(--space-16);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.contact-label {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-secondary);
}

.contact-value {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.contact-value:hover {
    color: var(--color-accent);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-primary);
    background: var(--color-background);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }
    
    .contact-headline {
        font-size: var(--fs-h3);
    }
}

@media (max-width: 768px) {
    .section-contact {
        padding: var(--section-space-md) 0;
    }
    
    .contact-form-wrapper {
        padding: var(--space-6);
    }
}

/* ===========================
   Footer Premium
=========================== */

.footer {
    background: var(--color-primary);
    padding: var(--section-space-lg) 0 var(--space-8);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    color: var(--color-secondary-light);
    max-width: 40ch;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-secondary-light);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-social a {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-secondary-light);
    transition: color var(--transition-base);
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    color: var(--color-secondary-light);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--section-space-md) 0 var(--space-6);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}
/* ==========================================================================
   Editorial Architectural Banner Section
   ========================================================================== */

.section-editorial-banner {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: var(--space-24) 0;
    background-color: #0c0c0c;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image and Cinematic Dark Overlay */
.banner-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-editorial-banner:hover .banner-bg-wrapper img {
    transform: scale(1.06);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 12, 12, 0.85) 0%,
        rgba(12, 12, 12, 0.7) 50%,
        rgba(12, 12, 12, 0.9) 100%
    );
    z-index: 2;
}

/* Background Subtle Grid Guidelines (Matches Hero) */
.banner-grid-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    pointer-events: none;
    z-index: 3;
}

.banner-grid-lines .grid-line {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    height: 100%;
}

.banner-grid-lines .grid-line:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

/* Main Container Structure */
.banner-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

/* Header Metadata Bar */
.banner-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-header-meta .meta-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.banner-header-meta .meta-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.banner-header-meta .meta-text {
    font-family: var(--font-mono);
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: rgba(255, 255, 255, 0.7);
}

/* Asymmetric Content Grid Layout */
.banner-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-16);
    align-items: end;
}

.banner-editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: var(--fw-bold);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #ffffff;
    max-width: 14ch;
    text-transform: none;
    margin: 0;
}

.banner-editorial-lead {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding-bottom: var(--space-2);
}

.banner-description {
    font-family: var(--font-body);
    font-size: var(--fs-h5);
    font-weight: var(--fw-regular);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    max-width: 40ch;
    margin: 0;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

/* Reusing your Custom Minimal Architectural Button Styling */
.section-editorial-banner .btn-architectural {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-8);
    background-color: #ffffff;
    color: #0c0c0c;
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    border-radius: var(--radius-none);
    text-decoration: none;
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.section-editorial-banner .btn-architectural:hover {
    background-color: rgba(255, 255, 255, 0.85);
    color: #0c0c0c;
    transform: translateY(-2px);
}

.section-editorial-banner .btn-icon {
    transition: transform var(--transition-fast);
}

.section-editorial-banner .btn-architectural:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .banner-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .banner-editorial-title {
        max-width: 100%;
    }
    
    .banner-description {
        max-width: 100%;
    }
}
/* ===========================
   Process Timeline
=========================== */

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.process-step {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.process-number {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent);
    line-height: 1;
    min-width: 80px;
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-3);
    color: var(--color-primary);
}

.process-description {
    color: var(--color-secondary);
    line-height: var(--lh-loose);
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .process-number {
        min-width: auto;
    }
}

/* ===========================
   Project Location
=========================== */

.project-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-secondary-light);
    font-size: var(--fs-small);
}

.project-location svg {
    flex-shrink: 0;
}

/* ===========================
   Careers List
=========================== */

.careers-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.career-item {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.career-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   WhatsApp CTA
=========================== */

.whatsapp-cta {
    padding: var(--space-16) 0;
}

.whatsapp-cta h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-4);
}

.whatsapp-cta p {
    font-size: var(--fs-body);
    line-height: var(--lh-loose);
}

/* ===========================
   Consultation Items
=========================== */

.consultation-item {
    text-align: center;
    transition: transform var(--transition-base);
}

.consultation-item:hover {
    transform: translateY(-4px);
}

/* ===========================
   Testimonial Author
=========================== */

.testimonial-author strong {
    display: block;
    margin-bottom: var(--space-1);
}

.testimonial-author p {
    margin: 0;
}

/* ===========================
   Contact Form
=========================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info svg {
    flex-shrink: 0;
}




/* ==========================================================================
   Space Radial Glow Intro Section (Matched to Reference Screenshot)
   ========================================================================== */

.section-space-intro {
    position: relative;
    background-color: var(--swatch--black, #070707);
    color: #ffffff;
    padding: clamp(100px, 15vw, 180px) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Wrapper to center the massive overflowing radial circle */
.s-bg-intro-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* The Exact Radial Glow Provided */
.s-bg-intro {
    z-index: 0;
    background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(255, 255, 255, 0.95) 0%, #5d9dff 32%, var(--swatch--black, #070707) 61%);
    width: 120vw;
    min-width: 120rem;
    max-width: 140rem;
    height: 110vw;
    min-height: 110rem;
    max-height: 130rem;
    margin-top: 10rem; /* Adjusted contextually so the peak glow is positioned nicely behind texts */
    position: absolute;
    opacity: 0.85;
}

/* Container & Layout */
.space-intro-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 var(--space-6, 24px);
}

/* Subtitle (e.g. Community) */
.space-intro-subtitle {
    display: block;
    font-family: var(--font-heading, serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-4, 16px);
    letter-spacing: 0.05em;
}

/* Massive Main Title Styling */
.space-intro-title {
    font-family: var(--font-heading, sans-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: var(--space-6, 24px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Description Text */
.space-intro-description {
    font-family: var(--font-body, sans-serif);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto var(--space-10, 40px);
}

/* Capsule White Button matching screenshot style ("RESERVE A SPOT") */
.space-intro-actions {
    display: flex;
    justify-content: center;
}

.btn-capsule-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #070707;
    font-family: var(--font-mono, sans-serif);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-capsule-white:hover {
    background-color: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(93, 157, 255, 0.3);
}

@media (max-width: 768px) {
    .section-space-intro {
        padding: 80px 0;
    }
    .s-bg-intro {
        width: 180vw;
        min-width: 180rem;
        height: 140vw;
    }
}