html {
    scroll-behavior: smooth;
}
:root {
    /* The Palette: Utilitarian Luxury */
    --bg-obsidian: #131313;
    --text-white: #f7f7f7;
    --text-muted: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(255, 255, 255, 0.15);
    
    /* Spacing */
    --gap-size: 1.5rem;
}

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

body {
    background-color: var(--bg-obsidian);
    color: var(--text-white);
    font-family: 'Inter', sans-serif; /* Clean, geometric sans-serif */
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 120px; /* Space for the floating dock */
}

/* --- Hero Section --- */
.hero-section {
    padding: 6rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-statement {
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive typography */
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-muted);
}

.hero-statement .highlight {
    color: var(--text-white);
}

/* --- Masonry Layout Logic --- */
.gallery-container {
    column-count: 3; /* Creates the Pinterest columns */
    column-gap: var(--gap-size);
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Responsive Columns */
@media (max-width: 1024px) {
    .gallery-container { column-count: 2; }
}
@media (max-width: 600px) {
    .gallery-container { column-count: 1; }
}

/* --- The Art Cards --- */
.gallery-item {
    break-inside: avoid; /* Keeps the card whole in Masonry grid */
    margin-bottom: var(--gap-size);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #1a1a1a;
    transition: transform 0.4s ease;
    
    /* NEW: specific styles to make the Link look like a Card */
    display: block;          /* Makes the link act like a box, not text */
    text-decoration: none;   /* Removes the default underline */
    color: inherit;          /* Forces it to use our white text color, not blue link color */
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(40%) contrast(110%); /* Cinematic look */
    transition: filter 0.4s ease, transform 0.6s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%); /* Color returns on hover */
    transform: scale(1.03); /* Subtle zoom */
}

/* --- Overlay Content (Invisible until interaction) --- */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.overlay h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 0.9rem;
    color: #d4d4d4;
    font-weight: 300;
}

.arrow-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.arrow-btn:hover {
    background: var(--text-white);
    color: var(--bg-obsidian);
}

/* --- Glass-Morphism Dock (Navigation) --- */
.glass-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 100;
}

.dock-content {
    background: var(--glass-bg);
    backdrop-filter: blur(16px); /* The Frosted Glass Effect */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px; /* Pill shape */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 
                inset 0 0 20px rgba(255,255,255,0.02); /* Inner glow */
}

.menu-icon {
    color: var(--text-white);
    padding: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.menu-icon:hover { opacity: 1; }

.command-input {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    flex-grow: 1;
    padding: 0 15px;
    outline: none;
}

.command-input::placeholder {
    color: var(--text-muted);
}

.cta-button {
    background-color: var(--text-white);
    color: var(--bg-obsidian);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}
/* --- Service Page Layout --- */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(19, 19, 19, 0.9);
    backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover { color: var(--text-white); }

.brand-small {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-white); /* Ensure this uses your white variable */
}

/* Split Container */
.split-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px; /* Space for top nav */
}

/* LEFT COLUMN (Sticky) */
.sticky-sidebar {
    width: 40%;
    height: calc(100vh - 80px); /* Full height minus nav */
    position: sticky;
    top: 80px;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.category-tag {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
}

.service-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-block {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.price-block .currency { font-size: 2rem; vertical-align: super; }
.price-block .period { font-size: 1rem; color: var(--text-muted); }

.quick-specs p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
}

.feature-list li {
    margin-bottom: 1rem;
    color: #d4d4d4;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "•";
    color: var(--text-muted);
    margin-right: 10px;
}

.full-width {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.micro-copy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* RIGHT COLUMN (Scrollable) */
.content-stream {
    width: 60%;
    padding: 6rem 8%;
    background-color: #0e0e0e; /* Slightly darker than sidebar */
}

.content-block {
    margin-bottom: 5rem;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.content-block p {
    font-size: 1.1rem;
    color: #d4d4d4;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Grid for Details */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.detail-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.detail-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive Service Page */
@media (max-width: 900px) {
    .split-container { flex-direction: column; }
    .sticky-sidebar { 
        width: 100%; 
        height: auto; 
        position: relative; 
        top: 0; 
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .content-stream { width: 100%; padding: 4rem 5%; }
    .grid-2-col { grid-template-columns: 1fr; }
    .service-header h1 { font-size: 2.5rem; }
} /* <--- THIS BRACKET WAS MISSING. ADD IT HERE. */

/* --- Cinematic Menu Overlay --- */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(19, 19, 19, 0.95); /* Deep dark overlay */
    backdrop-filter: blur(15px); /* Heavy blur on the background */
    -webkit-backdrop-filter: blur(15px);
    z-index: 200; /* Sit on top of everything */
    
    /* Animation State: Hidden */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation State: Active (Added via JS) */
.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    position: absolute;
    top: 40px;
    right: 5%;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    transition: transform 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg); /* Nice spin effect on hover */
}

/* Menu Layout */
.menu-content {
    width: 90%;
    max-width: 1200px;
}

.menu-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Typography for Links */
.nav-link {
    display: block;
    font-size: 4rem; /* Massive, luxury font size */
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0.5; /* Dimmed by default */
    transition: all 0.3s ease;
    transform: translateY(20px); /* Start slightly lower for animation */
}

/* Hover Effects */
.nav-link:hover {
    opacity: 1;
    transform: translateX(20px); /* Move right on hover */
    color: #fff;
}

/* Info Column */
.menu-info {
    text-align: right;
    color: var(--text-muted);
}

.menu-info h3 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.menu-info p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-columns {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-link { font-size: 2.5rem; }
    .menu-info { 
        text-align: left; 
        margin-top: 3rem; 
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 2rem;
        width: 100%;
    }
}

/* Animation State: Active (Added via JS) */
.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}
/* --- CRITICAL MENU FIX --- */

/* 1. This defines the hidden state */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(19, 19, 19, 0.95); /* Dark background */
    z-index: 999; /* Sit on top of EVERYTHING */
    
    /* Start hidden */
    opacity: 0;
    pointer-events: none; 
    
    /* Animation settings */
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. This defines the VISIBLE state */
/* If this is missing, the menu never shows up! */
.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* 3. Style the Content */
.menu-content {
    width: 90%;
    max-width: 1200px;
    text-align: center; /* Center the links */
}

.nav-link {
    display: block;
    font-size: 3rem; 
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

.close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
/* --- BLOG HUB LAYOUT --- */

.hub-header {
    padding: 8rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hub-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hub-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.hub-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 5% 8rem;
}

/* Featured Article Card */
.featured-article {
    display: block;
    text-decoration: none;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 6rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.featured-article:hover {
    transform: scale(1.02);
}

.featured-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Glowing AI Badge */
.ai-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.featured-content {
    padding: 2.5rem;
}

.featured-content h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin: 1rem 0;
}

.featured-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.read-more {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* The Article Stream (List View) */
.article-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: var(--text-white);
    transition: background 0.2s;
}

.article-row:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 1rem; /* Slide effect */
    padding-right: 1rem;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 150px;
}

.tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.article-title {
    font-size: 1.5rem;
    font-weight: 400;
    flex-grow: 1;
    padding: 0 2rem;
}

.arrow-icon {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .hub-title { font-size: 2.5rem; }
    .featured-image { height: 250px; }
    .article-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .article-title { padding: 0; }
    .article-meta { flex-direction: row; width: 100%; justify-content: space-between; }
}
/* --- SINGLE POST TEMPLATE --- */

/* Reading Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

.progress-bar {
    height: 4px;
    background: #00ff88; /* Green Glow */
    width: 0%;
    box-shadow: 0 0 10px #00ff88;
}

/* Header Typography */
.article-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.meta-tags {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pill {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Layout Grid (Content + Sidebar) */
.layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content takes 2/3, Sidebar takes 1/3 */
    gap: 4rem;
    align-items: start;
}

/* The Article Content */
.content-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d4d4d4;
}

.hero-img {
    width: 100%;
    height: 450px; /* LIMITS the height so it doesn't take over the screen */
    object-fit: cover; /* Crops the image smartly (like a mask) so it doesn't stretch */
    object-position: center; /* Keeps the focus in the middle */
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.intro-text {
    font-size: 1.35rem; /* Slightly larger for intro */
    color: var(--text-white);
    margin-bottom: 2rem;
}

.content-body h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 3rem 0 1rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.content-body li {
    margin-bottom: 0.5rem;
}

.content-body strong {
    color: var(--text-white);
}

/* Stat Box Feature */
.stat-box {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid #00ff88;
    padding: 2rem;
    margin: 3rem 0;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Sticky Sidebar CTA */
.sidebar-cta {
    position: sticky;
    top: 100px; /* Sticks 100px from top of screen */
}

.cta-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-white);
    margin: 1.5rem 0;
}

.small-print {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .layout-grid {
        display: flex;
        flex-direction: column;
    }
    
    .sidebar-cta {
        position: relative; /* Stop sticking on mobile */
        top: 0;
        margin-top: 2rem;
        width: 100%;
    }
}
/* --- ABOUT PAGE STYLES --- */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
}

/* Manifesto (Hero) */
.manifesto-section {
    margin-bottom: 8rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.manifesto-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.manifesto-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 800px;
}

.manifesto-text .highlight {
    color: var(--text-white);
    border-bottom: 1px solid #00ff88;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 10rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    opacity: 0.8;
}

.value-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Team Grid (Editorial Style) */
.team-section {
    margin-bottom: 8rem;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    cursor: pointer;
}

.member-photo {
    width: 100%;
    aspect-ratio: 3 / 4; /* Portrait ratio */
    overflow: hidden;
    margin-bottom: 1.5rem;
    filter: grayscale(100%); /* Start Black & White */
    transition: filter 0.5s ease;
}

.team-member:hover .member-photo {
    filter: grayscale(0%); /* Color on Hover */
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.member-info h4 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.member-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer CTA */
.footer-cta {
    text-align: center;
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Responsive About */
@media (max-width: 900px) {
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .manifesto-title { font-size: 3rem; }
}
/* --- CONTACT PAGE STYLES --- */

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
    align-items: flex-start;
}

/* Left Info */
.contact-headline {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contact-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 4rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-item a, .info-item p {
    font-size: 1.2rem;
    color: var(--text-white);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 20px;
}

/* Right Form */
.contact-form-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

/* The Invisible Input Style */
.glass-form input, 
.glass-form select, 
.glass-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.glass-form input:focus, 
.glass-form select:focus, 
.glass-form textarea:focus {
    border-bottom-color: var(--text-white);
}

/* Custom Dropdown Style */
.glass-form select {
    cursor: pointer;
}

.glass-form select option {
    background-color: var(--bg-obsidian); /* Needs dark bg when opened */
    color: white;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .contact-container { padding-top: 6rem; }
}