@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #050806;
    --bg-surface: #0C120F;
    --bg-card: rgba(22, 38, 30, 0.4); /* Glassmorphism base */
    --text-primary: #EEEEE8;
    --text-secondary: #B0B0A0;
    --accent: #E5C17E; /* Luminous Gold */
    --gold-glow: rgba(229, 193, 126, 0.3);
    --glass-bg: rgba(18, 28, 23, 0.8);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 16rem;
    
    /* Transitions */
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Filmic Grain & Mesh Gradient */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    will-change: transform;
    backface-visibility: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(at 10% 10%, rgba(22, 38, 30, 0.5) 0px, transparent 50%),
        radial-gradient(at 90% 10%, rgba(229, 193, 126, 0.1) 0px, transparent 40%),
        radial-gradient(at 50% 90%, rgba(12, 18, 15, 0.8) 0px, transparent 50%);
    filter: blur(80px);
    opacity: 0.6;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wrapperPulse 2.5s infinite ease-in-out;
}

.preloader-logo-bg, 
.preloader-logo-fill {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader-logo-bg {
    opacity: 0.1;
    filter: brightness(0.5);
}

.preloader-logo-fill {
    clip-path: inset(100% 0 0 0);
    animation: logoFill 2.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes logoFill {
    0% { clip-path: inset(100% 0 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

@keyframes wrapperPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: load 2.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes load {
    to { left: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Typography Utilities */
.section-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    margin-top: 2rem;
    display: block;
}

/* Layout Utilities */
.flex { display: flex; }
.grid { display: grid; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Reveal Animation Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10005; /* Above grain (9998) and preloader (10000) for stability */
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 55px; /* Significant increase as requested */
    width: auto;
    filter: brightness(1.2);
    transition: var(--transition-smooth);
}

.footer-logo-img {
    height: 65px; /* Significant increase as requested */
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg-dark)), linear-gradient(to bottom, rgba(10, 17, 13, 0.2), var(--bg-dark));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* Extra height for parallax */
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5) contrast(1.1);
    will-change: transform;
    backface-visibility: hidden;
    transition: transform 0.1s ease-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--spacing-md);
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn:hover {
    background-color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Services Spotlight */
.services {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxl) 0;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(229, 193, 126, 0.15) 0%, #000000 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.services.active .spotlight-overlay {
    opacity: 1;
    animation: shine 4s infinite alternate ease-in-out;
}

@keyframes shine {
    from { transform: translateX(-10%) rotate(-5deg); }
    to { transform: translateX(10%) rotate(5deg); }
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--bg-card);
    padding: var(--spacing-lg);
    border: 1px solid rgba(229, 193, 126, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-icon {
    margin-bottom: var(--spacing-md);
    color: var(--accent);
    opacity: 0.8;
}

.service-card:hover {
    background-color: rgba(22, 38, 30, 0.6);
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    filter: grayscale(1) brightness(0.8);
    transition: var(--transition-smooth);
}

.service-card:hover img {
    filter: grayscale(0) brightness(1);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-secondary);
}

/* Vision Tunnel Styles Removed */

/* Portfolio Section */
.portfolio {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-surface);
}

.folio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-md);
}

.folio-item {
    grid-column: span 6;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.folio-item:nth-child(3n+1) {
    grid-column: span 8;
}

.folio-item:nth-child(3n+2) {
    grid-column: span 4;
}

.folio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.folio-item:hover img {
    transform: scale(1.05);
}

.folio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.folio-item:hover .folio-info {
    opacity: 1;
}

/* See More Button Container */
.see-more-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
    width: 100%;
}

/* Watermark Typography */
.watermark-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    white-space: nowrap;
    user-select: none;
}

.watermark-text {
    font-size: 30vw;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: -2rem;
    color: var(--text-primary);
    filter: blur(5px);
}

/* Booking Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    width: 90%;
    max-width: 900px;
    background: #030504;
    border: 1px solid rgba(229, 193, 126, 0.1);
    padding: var(--spacing-xl);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .booking-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* Modal Steps Hierarchy */
.step-indicator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.step-dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.step-dot.active {
    background: var(--accent);
}

/* --- "THE METHOD" Alternating Scroll Timeline --- */
.method-timeline {
    padding: var(--spacing-xxl) 0;
    margin-top: 4rem; /* Extra breathing space */
    background-color: #050806;
    position: relative;
    overflow: hidden;
}

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

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
    min-height: 200vh;
}

/* The Spine (Vertical Axis) */
.spine-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
}

.spine-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 2px dashed rgba(255, 255, 255, 0.1);
}

.spine-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0%; /* Animated by GSAP */
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    z-index: 2;
}

/* Booking System Styling */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(229, 193, 126, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.booking-step {
    position: absolute;
    width: calc(100% - (var(--spacing-lg) * 2));
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.booking-option {
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.booking-option:hover, .booking-option.selected {
    border-color: var(--accent);
    background: rgba(229, 193, 126, 0.05);
    transform: translateY(-5px);
}

/* Custom Calendar Grid */
.calendar-wrapper {
    margin-top: var(--spacing-md);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-day-label {
    font-size: 0.7rem;
    color: var(--accent);
    opacity: 0.5;
    padding-bottom: 5px;
}

.calendar-day {
    padding: 1rem 0;
    border: 1px solid rgba(255,255,255,0.03);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.calendar-day:hover:not(.disabled) {
    background: rgba(229,193,126,0.1);
    color: var(--accent);
}

.calendar-day.selected {
    background: var(--accent);
    color: var(--bg-dark);
}

.calendar-day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Time Slots */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: var(--spacing-md);
}

.slot {
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.slot:hover:not(.disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.slot.selected {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Method Rows */
.method-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 20vh; /* Controlled by scroll distance */
    position: relative;
    z-index: 5;
}

.method-empty {
    width: 100%;
}

/* Nodes & Connectors */
.method-node-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.method-node {
    width: 12px;
    height: 12px;
    background: #050806;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0); /* Animated by GSAP */
    z-index: 10;
    transition: border-color 0.4s ease;
}

.method-node.active {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.method-connector {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
    width: 0; /* Animated by GSAP */
    z-index: 1;
}

.left .method-connector {
    right: 50%;
    background: linear-gradient(270deg, var(--accent), transparent);
}

.right .method-connector {
    left: 50%;
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* Method Cards */
.method-card {
    opacity: 0;
    will-change: transform, opacity;
}

.left .method-card { transform: translateX(-80px); }
.right .method-card { transform: translateX(80px); }

.card-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 193, 126, 0.1);
    padding: var(--spacing-lg);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: border-color 0.6s var(--transition-main);
}

.method-card:hover .card-inner {
    border-color: rgba(229, 193, 126, 0.4);
}

.method-icon {
    width: 44px;
    height: 44px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

/* Responsive Overrides */
@media (max-width: 768px) {
    .timeline-container {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .spine-wrapper {
        left: 20px;
        transform: none;
    }
    
    .method-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding-left: 50px;
    }
    
    .method-empty {
        display: none;
    }
    
    .method-node-container {
        position: absolute;
        left: -50px;
        top: 2rem;
    }
    
    .method-connector {
        width: 30px !important; /* Fixed on mobile */
        left: 12px !important;
        right: auto !important;
        background: var(--accent) !important;
    }
    
    .left .method-card, .right .method-card {
        transform: translateX(50px);
    }
}

/* Service Card Refinement (Borderless & Minimal) */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: 28px;
    height: 100%;
    transition: all 0.6s var(--transition-main);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 193, 126, 0.2);
    transform: translateY(-5px);
}

.border-glow-card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color, hsl(40deg 80% 80% / 100%)),
    inset 0 0 15px 0 var(--glow-color-30, hsl(40deg 80% 80% / 30%)),
    inset 0 0 50px 2px var(--glow-color-10, hsl(40deg 80% 80% / 10%)),
    0 0 15px 0 var(--glow-color-30, hsl(40deg 80% 80% / 30%)),
    0 0 50px 2px var(--glow-color-10, hsl(40deg 80% 80% / 10%));
}

.border-glow-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.magic-rings-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Contact & CTA */
.section-padding { padding: var(--spacing-xl) 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.glass-form {
    background: rgba(255,255,255,0.02);
    padding: var(--spacing-lg);
    border: 1px solid rgba(229, 193, 126, 0.1);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.glass-form input, 
.glass-form textarea, 
.glass-form select {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

.glass-form input:focus, 
.glass-form textarea:focus, 
.glass-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(229, 193, 126, 0.1);
}

.ready-cta {
    position: relative;
    overflow: hidden;
}

.ready-cta::before,
.ready-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 500px; /* Larger spread */
    height: 500px;
    background: radial-gradient(circle, rgba(229, 193, 126, 0.25), transparent 75%); /* Higher opacity */
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.ready-cta::before {
    left: -100px;
    transform: translateY(-50%);
}

.ready-cta::after {
    right: -100px;
    transform: translateY(-50%);
}

.ready-cta .reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg); /* Increased spacing as requested */
}

.ready-cta h2 {
    font-size: clamp(2rem, 7vw, 3.2rem); /* Even smaller for more refinement */
    position: relative;
    z-index: 1;
}

.ready-cta .btn-xl {
    padding: 0.8rem 2.2rem; /* Significantly smaller as per feedback */
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Strategic Partnerships (Original Text Design Reverted) */
.partners {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.partner-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'Playfair Display', serif;
    opacity: 0.6;
    letter-spacing: 0.05rem;
}

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background-color: #030504;
    border-top: 1px solid rgba(229, 193, 126, 0.05);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border-radius: 50%;
}

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

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    background: rgba(229, 193, 126, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Staggered Reveal Delay */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        gap: var(--spacing-md);
    }
    .nav-links.active { display: flex; }
    .folio-item { grid-column: span 12 !important; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        justify-items: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    .partner-grid {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .partner-separator {
        display: none;
    }
    .mobile-toggle { 
        display: block !important; 
        z-index: 10010;
    }
}

/* --- BRAHMS SESSIONS (Subscription) --- */
.sessions-section {
    background: #030504;
    border-top: 1px solid rgba(229, 193, 126, 0.05);
    position: relative;
    overflow: hidden;
}

.sessions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(229, 193, 126, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.sessions-content {
    position: relative;
    z-index: 2;
}

.sessions-form {
    margin-top: var(--spacing-xl);
}

.sessions-input-wrapper {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
}

.sessions-input-wrapper input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1.2rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.sessions-input-wrapper input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.btn-sessions {
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.btn-sessions:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 193, 126, 0.2);
}

.sessions-success {
    margin-top: var(--spacing-md);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .sessions-input-wrapper {
        flex-direction: column;
    }
    
    .btn-sessions {
        width: 100%;
    }
}
