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

        :root {
            --bg: #050508;
            --surface: rgba(255,255,255,0.03);
            --surface-hover: rgba(255,255,255,0.06);
            --glass: rgba(255,255,255,0.05);
            --glass-border: rgba(255,255,255,0.08);
            --text: #eaeaea;
            --text-dim: #888;
            --red: #d63031;
            --red-glow: rgba(214,48,49,0.35);
            --silver: #b2bec3;
        }

        html { scroll-behavior: smooth; }
        #about, #contact { scroll-margin-top: 80px; }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            font-weight: 300;
            letter-spacing: 0.12em;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ─── Animated cloud canvas ─── */
        #clouds {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        /* ─── Navigation ─── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 1rem 2.5rem;
            background: rgba(5,5,8,0.95);
            -webkit-backdrop-filter: blur(30px) saturate(1.5);
            backdrop-filter: blur(30px) saturate(1.5);
            border-bottom: 1px solid var(--glass-border);
            display: flex; justify-content: space-between; align-items: center;
            transition: padding 0.3s;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        nav.scrolled { padding: 0.6rem 2.5rem; }
        nav img { height: 36px; width: auto; }
        /* ─── Nav dropdown ─── */
        .nav-dropdown { position: relative; }
        .nav-menu-btn {
            color: var(--text-dim); background: none; border: 1px solid transparent;
            font-family: inherit; font-size: 0.85rem; font-weight: 300;
            letter-spacing: 0.2em;
            padding: 0.5rem 1.2rem; border-radius: 6px;
            cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem;
            transition: all 0.3s;
        }
        .nav-menu-btn:hover { color: var(--text); border-color: var(--glass-border); background: var(--surface); }
        .nav-menu-btn svg { transition: transform 0.3s; }
        .nav-dropdown.open .nav-menu-btn svg { transform: rotate(180deg); }
        .nav-dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); right: 0;
            background: rgba(15,15,20,0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border); border-radius: 10px;
            padding: 0.4rem; min-width: 160px;
            opacity: 0; visibility: hidden; transform: translateY(-8px);
            transition: all 0.25s ease;
        }
        .nav-dropdown.open .nav-dropdown-menu {
            opacity: 1; visibility: visible; transform: translateY(0);
        }
        .nav-dropdown-menu a {
            display: block; color: var(--text-dim); text-decoration: none;
            font-size: 0.85rem; font-weight: 300; letter-spacing: 0.15em;
            text-transform: none;
            padding: 0.65rem 1rem; border-radius: 6px; transition: all 0.2s;
        }
        .nav-dropdown-menu a:hover { color: var(--text); background: var(--surface-hover); }

        /* ─── Hero ─── */
        .hero {
            position: relative; z-index: 1;
            padding: 80px 2rem 2rem 2rem;
            min-height: 100vh;
            min-height: 100svh;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            text-align: center;
        }

        .hero-logo-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        /* Clouds flow behind transparent logo — no extra CSS glow needed */

        .hero-logo {
            position: relative;
            z-index: 1;
            width: min(95vw, 85vh, 1200px); height: auto;
            filter: drop-shadow(0 0 40px rgba(214,48,49,0.15)) drop-shadow(0 0 100px rgba(214,48,49,0.06));
            animation: logoReveal 0.5s ease-out;
        }

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

        .hero-tagline {
            color: #fff;
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-weight: 300;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: ctaReveal 0.8s ease-out 1s both;
        }

        .hero-line.hero-line-delayed {
            animation-delay: 3s;
        }

        .hero-fade-in {
            opacity: 0; transform: translateY(20px);
            animation: ctaReveal 1s ease-out 1.8s both;
        }

        /* ─── About section ─── */
        .about-section {
            max-width: 700px;
            text-align: center;
            margin-bottom: 2rem;
        }

        .about-heading {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-weight: 300;
            letter-spacing: 0.35em;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .about-text {
            color: var(--text-dim);
            font-size: clamp(0.9rem, 1.5vw, 1.05rem);
            font-weight: 300;
            line-height: 1.9;
        }

        .hero-line {
            width: 80px; height: 2px;
            background: linear-gradient(90deg, var(--red), var(--silver));
            margin-bottom: 2rem;
            animation: lineGrow 1s ease-out 1.4s both;
        }

        @keyframes lineGrow {
            from { width: 0; opacity: 0; }
            to { width: 80px; opacity: 1; }
        }

        .hero-cta {
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 0.85rem 2.2rem;
            background: linear-gradient(135deg, var(--red), #c0392b);
            color: #fff; text-decoration: none;
            font-size: 0.9rem; font-weight: 300;
            letter-spacing: 0.2em;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 25px var(--red-glow);
            animation: ctaReveal 0.8s ease-out 3s both;
        }
        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 40px var(--red-glow);
        }
        .hero-cta svg { width: 16px; height: 16px; transition: transform 0.3s; }
        .hero-cta:hover svg { transform: translateX(3px); }

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

        /* ─── Contact Section ─── */
        .contact {
            position: relative; z-index: 1;
            padding: 7rem 2rem;
        }

        .contact-container {
            max-width: 640px; margin: 0 auto;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem; font-weight: 300;
            letter-spacing: 0.2em;
            color: #e85d5e;
            margin-bottom: 1rem;
            padding: 0.3rem 0.8rem;
            border: 1px solid rgba(214,48,49,0.3);
            border-radius: 4px;
            background: rgba(214,48,49,0.05);
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: var(--silver);
            background: linear-gradient(135deg, var(--text) 0%, var(--silver) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--text-dim);
            font-size: 1rem; font-weight: 300;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        /* ─── Glass card form ─── */
        .form-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2.5rem;
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
        }

        .contact-form {
            display: flex; flex-direction: column; gap: 1.25rem;
        }

        .form-row {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem; font-weight: 300;
            color: var(--text-dim);
            margin-bottom: 0.4rem;
            letter-spacing: 0.15em;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            color: var(--text);
            font-family: inherit; font-size: 1rem;
            transition: all 0.3s; outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.55);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--red);
            background: rgba(255,255,255,0.06);
            box-shadow: 0 0 0 3px rgba(214,48,49,0.1);
        }

        .form-group textarea { min-height: 130px; resize: vertical; }

        .submit-btn {
            align-self: flex-start;
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, var(--red), #c0392b);
            color: #fff; border: none;
            border-radius: 8px;
            font-family: inherit; font-size: 0.85rem;
            font-weight: 300; letter-spacing: 0.2em;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px var(--red-glow);
        }
        .submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 30px var(--red-glow);
        }
        .submit-btn:active { transform: translateY(0); }
        .submit-btn svg { width: 16px; height: 16px; }

        .form-status {
            margin-top: 0.75rem; font-size: 0.9rem;
            border-radius: 8px;
        }
        .form-status.success {
            color: #00b894; padding: 0.75rem 1rem;
            background: rgba(0,184,148,0.08); border: 1px solid rgba(0,184,148,0.2);
        }
        .form-status.error {
            color: #e74c3c; padding: 0.75rem 1rem;
            background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.2);
        }

        /* ─── Footer ─── */
        footer {
            position: relative; z-index: 1;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--glass-border);
        }
        footer p { color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.15em; }

        /* ─── Scroll reveal ─── */
        .js .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ─── Responsive ─── */
        @media (max-width: 600px) {
            .form-row { grid-template-columns: 1fr; }
            nav { padding: 0.5rem 1rem; } nav.scrolled { padding: 0.4rem 1rem; }
            nav img { height: 22px; }
            .form-card { padding: 1.5rem; }
            .submit-btn { width: 100%; justify-content: center; }
            .hero { padding-top: 10rem; justify-content: flex-start; }
            .hero-logo { width: min(95vw, 500px); }

            /* Disable all fade-in/delay animations on mobile */
            .hero-logo { animation: none !important; opacity: 1 !important; transform: none !important; }
            .hero-tagline { animation: none !important; opacity: 1 !important; transform: none !important; }
            .hero-line { animation: none !important; width: 80px !important; opacity: 1 !important; }
            .hero-line-delayed { animation: none !important; width: 80px !important; opacity: 1 !important; }
            .hero-fade-in { animation: none !important; opacity: 1 !important; transform: none !important; }
            .hero-cta { animation: none !important; opacity: 1 !important; transform: none !important; }
            .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
        }

        /* ─── Accessibility and progressive enhancement ─── */
        .hp { display: none; }

        .skip-link {
            position: absolute; top: 0; left: 0; z-index: 200;
            padding: 0.75rem 1.25rem;
            background: var(--red); color: #fff; text-decoration: none;
            font-size: 0.85rem; letter-spacing: 0.1em;
            border-radius: 0 0 8px 0;
            transform: translateY(-110%);
            transition: transform 0.2s;
        }
        .skip-link:focus { transform: translateY(0); }

        .nav-menu-btn:focus-visible,
        .nav-dropdown-menu a:focus-visible,
        .hero-cta:focus-visible,
        .submit-btn:focus-visible {
            outline: 2px solid var(--red);
            outline-offset: 2px;
        }

        .submit-btn[aria-disabled="true"] {
            opacity: 0.65;
            pointer-events: none;
        }

        @media (forced-colors: active) {
            .section-title { background: none; -webkit-text-fill-color: currentColor; }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
