  /* ══════════════════════════════════════════════
           GAVINHO — An Installation, Not a Website
           ══════════════════════════════════════════════ */

        :root {
            --void: #060504;
            --deep: #0e0c08;
            --warm: #1a1610;
            --stone: #ADAA96;
            --cream: #F2F0E7;
            --olive: #8B8670;
            --moss: #6b6858;
            --faint: rgba(173, 170, 150, 0.07);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Quattrocento Sans', sans-serif;
            background: var(--void);
            color: var(--cream);
            overflow-x: hidden;
            cursor: none;
        }

        ::selection {
            background: var(--stone);
            color: var(--void);
        }

        ::-webkit-scrollbar { width: 0; }
        html { scrollbar-width: none; }

        /* ─── Custom Cursor ─── */
        .cursor {
            position: fixed;
            width: 5px;
            height: 5px;
            background: var(--stone);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            opacity: 0;
            transform: translate(-50%, -50%);
            transition: opacity 2s ease, width 0.4s ease, height 0.4s ease, background 0.4s ease;
            mix-blend-mode: difference;
        }
        .cursor.visible { opacity: 1; }
        .cursor.hovering {
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid var(--cream);
        }

        /* ─── Film Grain ─── */
        .grain {
            position: fixed;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            animation: grain-drift 8s linear infinite;
        }
        @keyframes grain-drift {
            0% { transform: translate(0, 0); }
            50% { transform: translate(-2%, -1%); }
            100% { transform: translate(0, 0); }
        }

        /* ─── Living Background — Atmospheric Gradients ─── */
        .atmosphere {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .atmo-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0;
            animation: orb-breathe 20s ease-in-out infinite;
        }

        .atmo-orb.a {
            width: 60vw; height: 60vw;
            top: -20%; left: -15%;
            background: radial-gradient(circle, rgba(60, 45, 30, 0.25) 0%, transparent 70%);
            animation-delay: 0s;
            animation-duration: 25s;
        }
        .atmo-orb.b {
            width: 50vw; height: 50vw;
            bottom: -25%; right: -10%;
            background: radial-gradient(circle, rgba(30, 50, 45, 0.2) 0%, transparent 70%);
            animation-delay: -8s;
            animation-duration: 30s;
        }
        .atmo-orb.c {
            width: 40vw; height: 40vw;
            top: 30%; right: 20%;
            background: radial-gradient(circle, rgba(50, 40, 30, 0.15) 0%, transparent 70%);
            animation-delay: -15s;
            animation-duration: 22s;
        }

        @keyframes orb-breathe {
            0%, 100% { opacity: 0.3; transform: scale(1) translate(0, 0); }
            25% { opacity: 0.6; transform: scale(1.1) translate(2%, -3%); }
            50% { opacity: 0.4; transform: scale(0.95) translate(-1%, 2%); }
            75% { opacity: 0.7; transform: scale(1.05) translate(-2%, -1%); }
        }

        /* ─── Time Line — top of page ─── */
        .time-line {
            position: fixed;
            top: 0; left: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--stone), transparent);
            opacity: 0.12;
            z-index: 100;
            transition: width 60s linear;
        }

        /* ══════════════════════════════════════
           SCENE 1 — THE ENTRANCE
           ══════════════════════════════════════ */
        .scene-entrance {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 9000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: var(--void);
            transition: opacity 2.5s ease;
        }

        .scene-entrance.fading {
            opacity: 0;
            pointer-events: none;
        }

        .entrance-brand-logo {
            width: clamp(110px, 15vw, 210px);
            height: auto;
            opacity: 0;
            animation: soft-emerge 3s ease forwards;
            animation-delay: 0.8s;
            filter: contrast(0.7) opacity(0.75);
        }

        .entrance-line {
            width: 1px;
            height: 0;
            background: var(--stone);
            opacity: 0;
            margin: 2rem 0;
            animation: line-grow 2.5s ease forwards;
            animation-delay: 2.5s;
        }

        .entrance-invite {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-size: clamp(0.75rem, 1.2vw, 0.95rem);
            letter-spacing: 0.35em;
            color: var(--olive);
            opacity: 0;
            animation: soft-emerge 2.5s ease forwards;
            animation-delay: 4s;
            cursor: none;
            transition: color 0.8s ease, letter-spacing 1s ease;
            text-decoration: none;
            padding: 1rem 2rem;
        }

        .entrance-invite:hover {
            color: var(--cream);
            letter-spacing: 0.55em;
        }

        /* ══════════════════════════════════════
           SCENE 2 — THE UNIVERSE (scrollable)
           ══════════════════════════════════════ */
        .universe {
            position: relative;
            z-index: 1;
            opacity: 0;
            transition: opacity 3s ease 1s;
        }

        .universe.revealed { opacity: 1; }

        /* ─── Section: Void (breathing space) ─── */
        .void-space {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* ─── Section: Brand Reveal ─── */
        .brand-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .brand-word {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-size: clamp(2.5rem, 8vw, 7rem);
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--cream);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 2s ease, transform 2s ease;
        }

        .brand-word.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .brand-subtitle {
            position: absolute;
            bottom: 18vh;
            font-family: 'Quattrocento Sans', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--moss);
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 2.5s ease 0.8s, transform 2.5s ease 0.8s;
        }

        .brand-subtitle.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── Section: Manifesto ─── */
        .manifesto-section {
            min-height: 300vh;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20vh 2rem;
        }

        .manifesto-line {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(1.2rem, 3vw, 2.4rem);
            line-height: 1.6;
            color: var(--stone);
            text-align: center;
            max-width: 20ch;
            margin: 12vh 0;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 2.5s ease, transform 2.5s ease, color 2.5s ease;
        }

        .manifesto-line.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .manifesto-line.past {
            opacity: 0.15;
            color: var(--moss);
        }

        /* ─── Horizontal Rule — poetic pause ─── */
        .pause-line {
            width: 0;
            height: 1px;
            background: var(--stone);
            opacity: 0;
            margin: 8vh 0;
            transition: width 3s ease, opacity 2s ease;
        }

        .pause-line.in-view {
            width: min(200px, 30vw);
            opacity: 0.25;
        }

        /* ─── Section: The Discipline ─── */
        .discipline-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 15vh 8vw;
            position: relative;
        }

        .discipline-label {
            font-family: 'Quattrocento Sans', sans-serif;
            font-size: 0.55rem;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--moss);
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 2s ease, transform 2s ease;
        }

        .discipline-label.in-view {
            opacity: 1;
            transform: translateX(0);
        }

        .discipline-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .discipline-item {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-size: clamp(1.4rem, 3.5vw, 3rem);
            color: var(--cream);
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 1.5s ease, transform 1.5s ease;
            letter-spacing: 0.02em;
        }

        .discipline-item.in-view {
            opacity: 0.85;
            transform: translateX(0);
        }

        .discipline-item .dot {
            display: inline-block;
            width: 4px;
            height: 4px;
            background: var(--stone);
            border-radius: 50%;
            margin-right: 1.2rem;
            vertical-align: middle;
            opacity: 0.5;
        }

        /* ─── Section: The Promise ─── */
        .promise-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15vh 2rem;
            position: relative;
        }

        .promise-text {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 400;
            font-size: clamp(1.5rem, 4vw, 3.5rem);
            line-height: 1.5;
            text-align: center;
            color: var(--cream);
            max-width: 18ch;
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 3s ease, transform 3s ease;
        }

        .promise-text.in-view {
            opacity: 1;
            transform: scale(1);
        }

        .promise-text em {
            font-style: italic;
            color: var(--stone);
        }

        /* ─── Section: Time Greeting ─── */
        .greeting-section {
            height: 60vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .greeting-time {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-size: clamp(3rem, 10vw, 8rem);
            color: var(--cream);
            opacity: 0.06;
            letter-spacing: 0.05em;
        }

        .greeting-text {
            font-family: 'Quattrocento Sans', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.45em;
            text-transform: uppercase;
            color: var(--moss);
        }

        /* ─── Section: Contact — The Only Portal ─── */
        .contact-section {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10vh 2rem 8vh;
            gap: 3rem;
            opacity: 0;
            transition: opacity 2.5s ease;
        }

        .contact-section.in-view { opacity: 1; }

        .contact-phrase {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(0.9rem, 1.5vw, 1.15rem);
            color: var(--olive);
            letter-spacing: 0.08em;
        }

        .contact-details {
            display: flex;
            gap: 6rem;
            align-items: flex-start;
        }

        .contact-block {
            text-align: center;
        }

        .contact-label {
            font-family: 'Quattrocento Sans', sans-serif;
            font-size: 0.5rem;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--moss);
            margin-bottom: 0.8rem;
        }

        .contact-value {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300;
            font-size: clamp(0.85rem, 1.2vw, 1rem);
            color: var(--stone);
            text-decoration: none;
            line-height: 1.7;
            letter-spacing: 0.04em;
            transition: color 0.6s ease;
        }

        a.contact-value:hover {
            color: var(--cream);
        }

        /* ─── Footer Whisper ─── */
        .footer-whisper {
            text-align: center;
            padding: 4rem 2rem 3rem;
            font-family: 'Quattrocento Sans', sans-serif;
            font-size: 0.5rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--moss);
            opacity: 0.3;
        }

        /* ─── Animations ─── */
        @keyframes soft-emerge {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes line-grow {
            0% { height: 0; opacity: 0; }
            40% { opacity: 0.3; }
            100% { height: 50px; opacity: 0.3; }
        }

        /* ─── Responsive ─── */
        @media (max-width: 768px) {
            .contact-details {
                flex-direction: column;
                gap: 2.5rem;
                align-items: center;
            }
            .discipline-section {
                padding: 15vh 6vw;
            }
            .manifesto-line {
                margin: 8vh 0;
            }
        }

        .footer-whisper .ig-link {
            display: inline-block;
            color: var(--moss);
            opacity: 0.4;
            transition: opacity 0.6s ease, color 0.6s ease;
            text-decoration: none;
            padding: 0.5rem;
        }
        .footer-whisper .ig-link:hover {
            opacity: 1;
            color: var(--stone);
        }

        /* ─── Touch devices ─── */
        @media (hover: none) {
            body { cursor: auto; }
            .cursor { display: none; }
            .entrance-invite { cursor: pointer; }
        }