@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");

@font-face {
    font-family: "Fixel";
    src: url("assets/fonts/FixelVariable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Ultra-Premium Cinematic Theme Variables (Atone Standard) */
:root {
    --bg-base: #050505;
    --bg-elevated: rgba(15, 15, 15, 0.8);
    
    --text-pure: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    
    --bone-light: #fdf7e2;
    --bone-accent: #cdb057; /* Primary Gold */
    --bone-dark: #66582a;
    
    --border-glass: #1a1a1a;
    --border-highlight: rgba(205, 176, 87, 0.15);
    
    --font-serif: "Cinzel", serif;
    --font-sans: "Fixel", system-ui, sans-serif;

    --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Engine: Prevent orphans and balance headlines */
h1, h2, h3, h4, .section-title, .ritual-title {
    text-wrap: balance;
}

p, span, .editorial-text, .cinematic-paragraph, .ritual-desc, .faq-answer {
    text-wrap: pretty;
}

body { 
    position: relative; 
    overflow-x: hidden; 
    min-width: 320px;
    min-height: 100vh; 
    background-image: radial-gradient(circle at 50% 0%, rgba(205, 176, 87, 0.1), transparent 70%);
}

::selection { background-color: var(--bone-accent); color: var(--bg-base); }

/* Typography */
h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 700; letter-spacing: 0.02em; }

.italic { font-style: italic; font-weight: 400; }

.text-accent {
    color: var(--bone-accent);
}

/* Ambient Lighting & Physical Grain */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: overlay;
}

.cursor-spotlight {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(205, 176, 87, 0.05), transparent 80%);
    will-change: background;
}

@media (hover: none) {
    .cursor-spotlight { display: none; }
}

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}

.section { 
    padding-top: clamp(6rem, 15vh, 12rem); 
    padding-bottom: clamp(6rem, 15vh, 12rem); 
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-description {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Ultra-Minimal Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 50;
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(5,5,5,0.9) 0%, transparent 100%);
    transition: padding 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem clamp(1.5rem, 5vw, 4rem);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.brand {
    flex: 1;
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; color: var(--text-pure);
}

.logo-svg {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-text {
    font-family: var(--font-serif);
    font-weight: 700; font-size: 1.1rem;
    letter-spacing: 0.2em; text-transform: uppercase;
}

.nav-links { flex: none; display: flex; gap: 3.5rem; }

.nav-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; transition: color 0.4s ease;
}
.nav-link:hover { color: var(--bone-accent); }

/* Premium Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.2rem 2.8rem; border-radius: 8px;
    font-weight: 600; text-decoration: none;
    transition: all 0.6s var(--ease-lux);
    font-size: 0.85rem; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
    position: relative; overflow: hidden;
}

.btn-primary {
    background: var(--bone-accent);
    color: var(--bg-base);
    border: 1px solid var(--bone-accent);
}

.btn-primary:hover {
    background: #e0c878;
    color: var(--bg-base);
    box-shadow: 0 4px 20px rgba(205, 176, 87, 0.3);
    transform: translateY(-2px);
}

/* Hero Section (Cinematic Centered) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(3rem, 7.5vw, 6.5rem); 
    line-height: 0.95;
    margin-bottom: 3.5rem;
    color: var(--text-pure);
    letter-spacing: -0.02em;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 4.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
}

/* Atmospheric Background Artifacts */
.hero-visual {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.artifact-card {
    position: absolute; width: min(340px, 80vw); aspect-ratio: 9/16;
    padding: 2.5rem; border-radius: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-glass);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(205,176,87,0.15);
    display: flex; flex-direction: column; justify-content: center;
}

/* Top Bar of IG Story */
.artifact-card::before {
    content: ''; position: absolute;
    top: 1.5rem; left: 50%; transform: translateX(-50%);
    width: 80%; height: 2px;
    background: rgba(205,176,87,0.3);
    border-radius: 2px;
}

.card-1 {
    top: 15%; left: 8%; z-index: 2;
    transform: rotate(-12deg) scale(0.85);
    opacity: 0.35;
    animation: floatSlow 12s ease-in-out infinite;
    filter: blur(4px);
}

.card-2 {
    bottom: 10%; right: 5%; z-index: 1;
    transform: rotate(8deg) scale(1.1);
    opacity: 0.25;
    filter: blur(6px) brightness(0.6);
    animation: floatSlow 15s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(var(--r, 0deg)) scale(var(--s, 1)) translateZ(var(--z, 0px)); }
    50% { transform: translateY(-20px) rotate(calc(var(--r, 0deg) + 1deg)) scale(var(--s, 1)) translateZ(var(--z, 0px)); }
}

/* Kinetic Scroll-Driven Typography (Awwwards Standard) */
.kinetic-marquee-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 6rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 20;
    background: transparent;
}

.kinetic-track {
    white-space: nowrap;
    will-change: transform;
    display: flex;
    width: max-content;
}

/* For the reverse track to start off-screen left */
.track-reverse {
    transform: translateX(-40%);
}

.kinetic-track h2 {
    font-family: var(--font-sans);
    font-size: clamp(5rem, 14vw, 18rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-pure);
    margin: 0;
    padding-right: 3vw;
}

.kinetic-track h2.outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

.card-1 { --r: -4deg; --z: 50px; } .card-2 { --r: 5deg; --s: 0.9; --z: -50px; }

.artifact-quote {
    font-family: var(--font-serif); font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-style: italic; color: var(--text-pure);
    line-height: 1.3; text-align: center;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.artifact-watermark {
    position: absolute; bottom: 2.5rem; left: 0; width: 100%;
    text-align: center; font-family: var(--font-sans);
    font-size: 0.6rem; letter-spacing: 0.15em;
    color: var(--bone-accent); text-transform: uppercase;
}

/* Aesthetic Philosophy Grid */
.aesthetic-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem); align-items: center;
}

.editorial-text { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; color: var(--text-pure); margin-bottom: 2rem;}

.editorial-caption { 
    font-family: var(--font-sans); font-size: 0.75rem; 
    color: var(--bone-accent); text-transform: uppercase; 
    font-weight: 600;
    letter-spacing: 0.25em; margin-bottom: 1.5rem; display: block;
}

/* Emotional Image Gallery (Awwwards Filmstrip Track) */
.soul-gallery-container {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 4rem 0;
}

.soul-gallery-track {
    display: flex;
    gap: 4vw;
    width: max-content;
    padding-left: 10vw;
    padding-right: 15vw;
}

.soul-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-elevated);
    width: 60vw;
    height: 70vh;
    flex: 0 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.soul-image {
    width: 100%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: 0;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.soul-image-wrapper:hover .soul-image {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

/* The Rituals Architecture */
.rituals-container {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 5rem;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.ritual-box {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border-glass);
    position: relative; overflow: hidden;
    transition: background 0.6s var(--ease-lux);
}

.ritual-box:last-child { border-right: none; }
.ritual-box:hover { background: rgba(205,176,87,0.03); }

.ritual-number {
    font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
    color: var(--bone-accent); letter-spacing: 0.2em;
    margin-bottom: 3rem; display: block;
}

.ritual-title {
    font-family: var(--font-serif); font-size: 2.5rem;
    color: var(--text-pure); margin-bottom: 1.5rem; line-height: 1.1;
}

.ritual-desc {
    font-size: 1.05rem; color: var(--text-secondary);
    font-weight: 300; line-height: 1.7;
}

/* Monumental Quote Section */
.quote-section {
    padding: clamp(8rem, 20vh, 15rem) 0; text-align: center;
}

.huge-quote {
    font-family: var(--font-serif); 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.1; 
    max-width: 900px; 
    margin: 2rem auto 0 auto;
    letter-spacing: 0.01em;
}

.huge-quote p {
    margin-bottom: 2rem;
}

.huge-quote p:last-child {
    margin-bottom: 0;
}

.quote-author {
    margin-top: 3rem; font-family: var(--font-sans);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--bone-accent);
}

/* Oracle Awwwards Layout */
.oracle-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.oracle-mark {
    position: absolute;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: clamp(10rem, 25vw, 18rem);
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    z-index: -1;
}

.oracle-content {
    flex: 1;
}

.oracle-lead {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.oracle-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text-pure);
    line-height: 1.4;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.oracle-challenge {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
}

/* Editorial Split Layout */
.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: clamp(4rem, 10vh, 8rem) 0;
}

.huge-quote.text-left {
    text-align: left;
    margin: 1rem 0 0 0;
}

/* Cinematic Manifesto */
.cinematic-paragraph {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-pure);
    margin-bottom: 2rem;
    text-align: center;
}

.cinematic-paragraph:last-child {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Parallax Monolith */
.parallax-monolith {
    width: 100%;
    max-width: 1600px;
    margin: clamp(4rem, 10vh, 8rem) auto;
    padding: 0 1.5rem;
}

.parallax-container {
    width: 100%;
    height: clamp(400px, 60vh, 700px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--bg-elevated);
}

.parallax-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    position: absolute;
    top: -15%;
    left: 0;
    will-change: transform;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 1.5s ease;
}

.parallax-container:hover .parallax-img {
    filter: grayscale(0%) brightness(1);
}

/* Offset Portrait */
.offset-portrait-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.offset-portrait {
    width: clamp(300px, 45vw, 600px);
    aspect-ratio: 1/1; /* Square aspect ratio for radial fade */
    position: relative;
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 70%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 70%);
    overflow: hidden;
}

.portrait-img {
    width: 100%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: 0;
    object-fit: cover;
    will-change: transform;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 1.5s ease, transform 1.5s ease;
}

.offset-portrait:hover .portrait-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

/* Cinematic CTA */
.cta-section {
    padding: clamp(10rem, 25vh, 15rem) 0; 
    border-top: 1px solid var(--border-glass);
    position: relative;
    background: #050505;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(205,176,87,0.06) 0%, rgba(5,5,5,0) 60%);
    z-index: 1;
    pointer-events: none;
}

.btn-primary {
    background: var(--bone-accent); color: #000;
    padding: 1.2rem 3rem; border-radius: 4px;
    font-family: var(--font-sans); font-size: 0.9rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
    text-decoration: none; display: inline-block;
    transition: transform 0.3s var(--ease-lux), opacity 0.3s ease;
}

.btn-primary:hover { 
    transform: translateY(-2px); 
    opacity: 0.9; 
}

/* Premium Cinematic Footer */
.footer {
    position: relative;
    padding: 6rem 0 3rem 0;
    background: var(--bg-base);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: -30%; right: -15%;
    width: 80vw; height: 80vw;
    background: radial-gradient(circle, rgba(205,176,87,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-watermark {
    position: absolute;
    bottom: -4vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 26vw;
    font-weight: 700;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    letter-spacing: -0.05em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2rem;
}

.footer-nav-area {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-pure);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    justify-content: flex-start;
    gap: 6rem;
    text-align: left;
}

.footer-col h4 {
    color: var(--bone-accent);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-pure);
}

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

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin: 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.faq-container {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-pure);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--bone-accent);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    color: var(--bone-accent);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s var(--ease-lux);
}

details[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 18px;
    position: relative;
    z-index: 100;
}

.burger-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-pure);
    transition: all 0.3s var(--ease-lux);
    left: 0;
}

.burger-line:first-child { top: 0; }
.burger-line:last-child { bottom: 0; }

.mobile-menu-btn.open .burger-line:first-child {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open .burger-line:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--bg-elevated);
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-lux);
    backdrop-filter: blur(20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-pure);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-lux);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Layouts */
@media (max-width: 1024px) {
    .hero { flex-direction: column; padding-top: 140px; text-align: center; }
    .hero-content h1 { margin-left: 0; font-size: clamp(2.8rem, 7vw, 4rem); }
    .hero-subtitle { margin: 0 auto 4.5rem auto; }
    .hero-visual { height: auto; min-height: 400px; width: 100%; margin-top: 4rem; padding-bottom: 4rem; }
    .card-1 { position: relative; top: 0; left: 0; transform: none; animation: floatSlow 6s ease-in-out infinite; margin: 0 auto; }
    .card-2 { display: none; } /* Hide for clean mobile aesthetic */
    .aesthetic-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .rituals-container { grid-template-columns: 1fr; border-right: none; border-left: none; margin-top: 3rem; }
    .ritual-box { border-right: none; border-bottom: 1px solid var(--border-glass); padding: 3rem 1rem; text-align: center; }
    .ritual-box:last-child { border-bottom: none; }
    .section-description { margin-left: auto; margin-right: auto; text-align: center; }
    .editorial-caption { margin-bottom: 1rem; }
    .soul-gallery-track {
        flex-direction: column;
        width: 100%;
        padding: 0 5vw;
        gap: 2rem;
    }
    .soul-image-wrapper {
        width: 90vw;
        height: 50vh;
    }
    .editorial-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .cinematic-paragraph, .section-title, .editorial-caption, .editorial-text {
        text-align: center !important;
    }
    .huge-quote.text-left {
        text-align: center;
    }
    .quote-author {
        text-align: center !important;
    }
    .offset-portrait-wrapper {
        justify-content: center;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-content h2, .faq-content .editorial-caption {
        text-align: center !important;
    }
    
    /* Show mobile menu on iPad */
    .navbar { padding: 1.5rem clamp(1.5rem, 5vw, 4rem); }
    .navbar.scrolled { padding: 1rem clamp(1.5rem, 5vw, 4rem); }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    /* Hide unnecessary images to reduce scroll fatigue on tablets and phones */
    .soul-gallery-track .soul-image-wrapper:nth-child(2),
    .soul-gallery-track .soul-image-wrapper:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .footer-nav-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-nav {
        justify-content: center;
        gap: 4rem;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .artifact-card { padding: 2rem; aspect-ratio: auto; min-height: 400px; }
    .artifact-quote { font-size: 1.6rem; }
    .section { 
        padding-top: clamp(4rem, 10vh, 8rem);
        padding-bottom: clamp(4rem, 10vh, 8rem); 
    }
}

/* Text Reveal Util */
.reveal-wrap { overflow: hidden; display: inline-block; vertical-align: top; }