:root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-soft: #f8f9ff;
    --card: rgba(255, 255, 255, 0.94);
    --card-border: rgba(143, 153, 251, 0.14);
    --text: #26293f;
    --muted: #6f7388;
    --accent: #8f99fb;
    --accent-2: #b8befd;
    --shadow: 0 14px 30px rgba(143, 153, 251, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(143, 153, 251, 0.1), transparent 30%),
        radial-gradient(circle at top right, rgba(184, 190, 253, 0.12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 95%);
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.intro-hero {
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.intro-hero__media {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
}

.intro-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.intro-hero__media img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center 40%;
}

.intro-hero__overlay {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
    text-align: center;
}

.intro-hero__overlay h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    line-height: 0.92;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.page-shell {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

main {
    position: relative;
    z-index: 1;
    margin-top: -14vh;
    padding-top: 14vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.78) 10vh, #ffffff 16vh);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 18px;
    position: sticky;
    top: 12px;
    margin: 12px 0 8px;
    border: 1px solid rgba(143, 153, 251, 0.12);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(143, 153, 251, 0.08);
    z-index: 20;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand strong {
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
    background: rgba(143, 153, 251, 0.1);
    color: var(--text);
    transform: translateY(-1px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
    background: linear-gradient(135deg, #8f99fb, #c9ceff);
    color: #fff;
    box-shadow: 0 12px 24px rgba(143, 153, 251, 0.14);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--card-border);
    color: var(--text);
}

.button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(143, 153, 251, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(143, 153, 251, 0.08);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    padding: 42px 0 24px;
}

.section-heading h2,
.media-panel h3,
.contact-panel h3,
.portrait-overlay h2 {
    font-family: "Cormorant Garamond", serif;
}

.eyebrow {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.78rem;
}

.about-bio {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 0;
}

.media-panel,
.contact-panel {
    border: 1px solid var(--card-border);
    background: var(--card);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 20px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 255, 0.9));
    border: 1px solid rgba(143, 153, 251, 0.1);
    box-shadow: var(--shadow);
}

.portrait-frame {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 10, 20, 0) 45%, rgba(10, 10, 20, 0.45) 100%),
        url("Images/Screenshot_20250604_211613_Gallery.jpg") 60% 22% / cover;
}

.portrait-overlay {
    position: absolute;
    inset: auto 20px 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
}

.portrait-overlay p {
    margin: 0 0 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
}

.portrait-overlay h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 0.95;
}

.contact-panel p,
.media-panel p,
.site-footer p {
    color: var(--muted);
}

.section {
    padding: 82px 0 0;
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4.8vw, 4.2rem);
    line-height: 0.98;
    margin: 8px 0 0;
    max-width: 11ch;
}

.contact-grid {
    display: grid;
    gap: 18px;
}

.media-panel,
.contact-panel {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.media-panel h3,
.contact-panel h3 {
    font-size: 2rem;
    margin: 0 0 10px;
}

.genre-featured {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
}

.genre-featured h3,
.genre-featured p {
    margin: 0;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin-top: 8px;
}

.video-card {
    margin: 0;
    flex: 1 1 300px;
    max-width: 380px;
}

.video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: #000;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(28, 32, 74, 0.12);
}

.contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.contact-panel {
    position: sticky;
    top: 108px;
}

.contact-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.contact-list li {
    display: grid;
    gap: 3px;
}

.contact-label {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.contact-list a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    word-break: break-word;
}

.contact-list a:hover {
    color: var(--accent);
}

.note-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(143, 153, 251, 0.06);
    display: grid;
    gap: 6px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px 0 40px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Content is visible by default. The fade-in animation only applies when
   JavaScript is running (html.js), so a browser that can't run the reveal
   script still shows everything instead of a blank page. */
.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .intro-hero {
        padding: 0;
    }

    .intro-hero__media {
        min-height: 100vh;
        border-radius: 0;
    }

    .intro-hero__overlay {
        width: min(88vw, 620px);
    }

    .site-header {
        flex-wrap: wrap;
        top: 8px;
        margin: 8px 0 6px;
        padding: 14px 16px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(143, 153, 251, 0.12);
        box-shadow: 0 12px 24px rgba(143, 153, 251, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 20px;
    }

    .contact-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    main {
        margin-top: -10vh;
        padding-top: 10vh;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 8vh, #ffffff 14vh);
    }

    .intro-hero {
        min-height: 100vh;
        padding: 0;
    }

    .intro-hero__media {
        min-height: 100vh;
        border-radius: 0;
    }

    .intro-hero__overlay {
        width: calc(100% - 32px);
    }

    .intro-hero__overlay h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
        white-space: normal;
    }

    .page-shell {
        width: min(calc(100% - 20px), var(--max));
    }

    .site-header {
        gap: 14px;
    }

    .media-panel,
    .contact-panel {
        padding: 20px;
    }

    .section {
        padding-top: 64px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}