/* index — page-specific styles (loaded after style.css) */

/* Luxury Design System Variables */
        :root {
            --bg-deep-black: #111111;
            --burnt-orange: #C65A11;
            --saffron: #D97706;
            --warm-cream: #F7F1E8;
            --soft-gold: #D4AF37;
            
            --font-serif: 'Cormorant Garamond', serif;
               --font-serif: 'Cormorant Garamond', serif;
            
            --transition-smooth: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-slow: all 1.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

/* Reset & Global Scaffolding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
            background-color: var(--bg-deep-black);
            color: var(--warm-cream);
            font-family: var(--font-sans);
            overflow-x: hidden;
            letter-spacing: 0.02em;
            line-height: 1.6;
        }

/* Custom Premium Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

/* Typography Utilities */
        h1, h2, h3, .serif-text {
            font-family: var(--font-serif);
            font-weight: 300;
        }

p {
            
            font-size: 1.25rem;
            color: rgba(247, 241, 232, 0.85);
        }

/* Minimal Luxury Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1010;
            transition: var(--transition-smooth);
        }

/* Scroll Animation Engine Base */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition-slow);
        }

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

/* Section 1: Hero Experience */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 10%;
            background: radial-gradient(circle at center, rgba(198, 90, 17, 0.08) 0%, rgba(17, 17, 17, 1) 70%);
        }

.hero-bg-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--saffron);
            filter: blur(160px);
            opacity: 0.03;
            pointer-events: none;
        }

.hero-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.hero-mark {
            width: clamp(240px, 34vw, 460px);
            height: auto;
            margin-bottom: 1.4rem;
            animation: fadeInTitle 2s cubic-bezier(0.25, 0.35, 0.45, 0.5) forwards;
        }

.hero-subline {
            font-family: 'Federo', sans-serif;
            font-size: clamp(0.9rem, 1.4vw, 1.1rem);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(247, 241, 232, 0.6);
            margin-bottom: 3rem;
            opacity: 0;
            width: 60%;
            margin-top:12px;
            animation: fadeInSubtitle 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
        }

.cta-container {
            display: flex;
            gap: 2.5rem;
            opacity: 0;
            animation: fadeInSubtitle 2s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards;
        }

/* Hero flanking imagery, asymmetric editorial composition */
        .hero-image {
            position: absolute;
            z-index: 20;
            opacity: 0;
            overflow: hidden;
            padding: 0.5rem 0.5rem 0.5rem;
            background: var(--warm-cream);
            box-shadow: 0 30px 70px rgba(0,0,0,0.55);
        }

.hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.85) saturate(1.05);
        }

.hero-image-temple {
            width: 36%;
            max-width: 560px;
            aspect-ratio: 4 / 3;
            left: 2%;
            bottom: 4%;
            transform: rotate(-3deg);
        }

.hero-image-portrait {
            width: 22%;
            max-width: 360px;
            aspect-ratio: 3 / 4;
            right: 3%;
            top: 14%;
            transform: rotate(3deg);
        }

@media (max-width: 1600px) {
            .hero-image { display: none; }
        }

.cta-btn {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--warm-cream);
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-bottom: 1px solid rgba(247, 241, 232, 0.3);
            transition: var(--transition-smooth);
        }

.cta-btn:hover {
            border-bottom-color: var(--burnt-orange);
            color: var(--soft-gold);
            transform: translateY(-2px);
        }

/* Section 1.5: Living Practice Statement (GSAP pinned scroll story) */
        .statement-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding: 0 8%;
            background: var(--bg-deep-black);
        }

.statement-text {
            position: relative;
            z-index: 4;
            font-family: var(--font-serif);
            font-weight: 300;
            font-style: italic;
            font-size: clamp(2.8rem, 6.5vw, 6.5rem);
            line-height: 1.3;
            max-width: 1600px;
        }

.statement-text .word {
            color: rgba(247, 241, 232, 0.12);
            display: inline-block;
        }

.statement-images {
            position: absolute;
            inset: 0;
            z-index: 5;
            pointer-events: none;
        }

.photo-card {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 38%;
            max-width: 460px;
            aspect-ratio: 3 / 4;
            padding: 0.6rem 0.6rem 0.6rem;
            background: var(--warm-cream);
            box-shadow: 0 25px 55px rgba(0,0,0,0.55);
            opacity: 0;
        }

.photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: saturate(1.05);
        }

/* card-2 (sundeep-main-2 / paralax-2) is the centered card the other two deal out from */
        .card-1 { z-index: 1; }

.card-2 { z-index: 3; }

.card-3 { z-index: 1; }

@media (max-width: 768px) {
            .photo-card { width: 50%; max-width: 280px; }
        }

/* Section 2: The Journey (Faithfully adapting and elevating the hand-drawn sketch layout) */
        .journey-section {
            padding: 12rem 8% 8rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

/* Custom layout mapping to 'Screenshot 2026-06-23 at 16.07.04.jpg' */
        .sketch-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
        }

.sketch-image-composite {
            position: relative;
            width: 100%;
            height: 650px;
        }

/* Single featured image filling the composite frame */
        .img-block-main {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

.composite-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%) sepia(10%);
            transition: var(--transition-slow);
            transform: scale(1.05);
        }

.sketch-image-composite:hover .composite-img {
            transform: scale(1);
        }

.sketch-text-block {
            padding-right: 10%;
        }

.sketch-text-block h2 {
            font-size: clamp(2.5rem, 4vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 2rem;
        }

.sketch-text-block p {
            margin-bottom: 1.5rem;
            font-family: var(--font-serif);
            font-size: clamp(1.5rem, 2.5vw, 2.4rem);
            font-style: italic;
            line-height: 1.4;
            color: var(--warm-cream);
        }

/* Section 3: What is Chardi Kala? */
        .philosophy-section {
            background: #161616;
            padding: 10rem 15%;
            text-align: center;
            position: relative;
        }

.philosophy-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 80px;
            background: var(--soft-gold);
            opacity: 0.3;
        }

.philosophy-content h2 {
            font-size: clamp(3rem, 5vw, 5.5rem);
            color: var(--warm-cream);
            margin-bottom: 3rem;
            line-height: 1.2;
        }

.philosophy-quote {
            font-family: var(--font-serif);
            font-size: clamp(1.5rem, 2.5vw, 2.4rem);
            font-style: italic;
            line-height: 1.4;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            color: var(--warm-cream);
        }

.drop-cap {
            font-size: 5rem;
            font-family: var(--font-serif);
            color: var(--saffron);
            float: left;
            line-height: 60px;
            padding-top: 4px;
            padding-right: 12px;
        }

/* Section 4: Featured Journeys */
        .portals-section {
            padding: 10rem 4rem;
        }

.portals-header {
            text-align: center;
            margin-bottom: 6rem;
        }

.portals-header h2 {
            font-size: 3rem;
        }

/* Grid translation of the multi-block panel row layout in your sketch */
        .portals-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1700px;
            margin: 0 auto;
        }

.portal-card {
            position: relative;
            height: 600px;
            overflow: hidden;
            background-color: #1a1a1a;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 3rem 2rem;
            text-decoration: none;
            color: var(--warm-cream);
            transition: var(--transition-smooth);
        }

.portal-img-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

.portal-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            transition: var(--transition-slow);
        }

.portal-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.2) 60%, transparent 100%);
            z-index: 2;
            transition: var(--transition-smooth);
        }

.portal-content {
            position: relative;
            z-index: 3;
            transform: translateY(20px);
            transition: var(--transition-smooth);
        }

.portal-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

.portal-content p {
            font-size: 0.95rem;
            opacity: 0;
            transition: var(--transition-smooth);
            max-width: 280px;
            margin-bottom: 2rem;
        }

.portal-cta {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--soft-gold);
            display: inline-block;
            border-bottom: 1px solid transparent;
            transition: var(--transition-smooth);
        }

/* Hover Mechanics for Luxury Motion Feel */
        .portal-card:hover .portal-img {
            transform: scale(1.08);
            opacity: 0.6;
        }

.portal-card:hover .portal-content {
            transform: translateY(0);
        }

.portal-card:hover .portal-content p {
            opacity: 0.85;
        }

.portal-card:hover .portal-cta {
            border-bottom-color: var(--soft-gold);
        }

/* Section 8: Intimate Contact / Invitation Journey Close */
        .contact-section {
            padding: 10rem 10%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

.contact-section h2 {
            font-size: clamp(3rem, 5vw, 5rem);
            margin-bottom: 2rem;
        }

.contact-section p {
            max-width: 600px;
            margin: 0 auto 4rem auto;
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.4rem;
        }

.contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

.form-group {
            position: relative;
        }

.form-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(247, 241, 232, 0.2);
            padding: 1rem 0;
            color: var(--warm-cream);
            font-family: var(--font-sans);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

.form-input:focus {
            outline: none;
            border-bottom-color: var(--burnt-orange);
        }

.form-label {
            position: absolute;
            left: 0;
            top: 1rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(247, 241, 232, 0.4);
            pointer-events: none;
            transition: var(--transition-smooth);
        }

.form-input:focus ~ .form-label,
        .form-input:not(:placeholder-shown) ~ .form-label {
            top: -1rem;
            font-size: 0.7rem;
            color: var(--soft-gold);
        }

.submit-btn {
            background: transparent;
            border: 1px solid var(--warm-cream);
            color: var(--warm-cream);
            padding: 1.2rem 3rem;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            cursor: pointer;
            align-self: center;
            transition: var(--transition-smooth);
            margin-top: 2rem;
        }

.submit-btn:hover {
            background: var(--warm-cream);
            color: var(--bg-deep-black);
        }

/* ── Mobile Menu ── */
        .menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
            z-index: 1010;
            flex-direction: column;
            gap: 6px;
        }

.mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(198,90,17,0.94);
            z-index: 1005;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1.3rem;
            padding-top: 5rem;
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }

.mobile-nav a {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.4rem, 5.5vw, 1.8rem);
            font-weight: 300;
            font-style: italic;
            color: var(--warm-cream);
            text-decoration: none;
            letter-spacing: 0.04em;
            transition: color 0.3s;
            padding: 0.2rem 0.5rem;
        }

html { overflow-x: hidden; }

/* ── Footer ── */
        footer { background: #0d0d0d; padding: 6rem 8% 0; border-top: 1px solid rgba(247,241,232,0.06); }

/* Responsive Architecture / Mobile Optimization */
        @media (max-width: 1240px) {
            nav { display: none; }
            .menu-btn { display: flex; }
            .mobile-nav { display: flex; }
        }

@media (max-width: 1100px) {
            .portals-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .sketch-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .sketch-text-block {
                padding-right: 0;
            }
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
        }

@media (max-width: 768px) {
            
            header { padding: 1.5rem 2rem; }
            .hero-subline { width: 90%; }
            .portals-grid { grid-template-columns: 1fr; }
            .portals-section { padding: 8rem 1.5rem; }
            .portals-header h2 { font-size: 2.2rem; }
            .sketch-image-composite { height: 420px; }
            .portal-card { height: 480px; }
            .journey-section { padding: 8rem 5% 6rem; }
            .philosophy-section { padding: 8rem 8%; }
            .drop-cap { font-size: 3.2rem; line-height: 38px; }
            .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
            .footer-base { flex-direction: column; gap: 0.5rem; }
        }

/* Core Animation Timelines */
        @keyframes fadeInTitle {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

