:root {
    --bg: #14001f;
    --bg-accent: #1f022c;
    --text: #f7f2ff;
    --muted: #cdbfe8;
    --accent: #f5d76e;
    --border: #3b184d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #200335 0, var(--bg) 55%, #050008 100%);
    color: var(--text);
    line-height: 1.6;
}

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

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

/* HEADER / NAV */

header {
    text-align: center;
    padding: 32px 0 12px;
}

.site-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tagline {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 18px;
}

nav {
    display: inline-flex;
    gap: 24px;
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    border-radius: 999px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

nav a {
    position: relative;
    padding: 2px 0;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
    width: 100%;
}

hr.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0 40px;
}

section {
    margin-bottom: 72px;
}

section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

section p {
    font-size: 0.98rem;
    color: var(--muted);
}

/* ABOUT */

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 1.02rem;
}

.about-text p + p {
    margin-top: 0.8em;
}

.about-photo-wrapper {
    justify-self: center;
    background: linear-gradient(145deg, #2f0b46, #08000c);
    padding: 4px;
    border-radius: 22px;
    box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.about-photo {
    display: block;
    max-width: 320px;
    border-radius: 18px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* PIECES */

.piece-card {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--bg-accent), #12001c);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    padding: 24px 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.piece-meta h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.piece-meta .subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.piece-meta p {
    font-size: 0.94rem;
    margin-bottom: 10px;
}

.piece-meta .meta {
    margin-top: 10px;
    font-size: 0.86rem;
    color: var(--muted);
}

/* CONTACT */

.contact-card {
    border-radius: 18px;
    padding: 22px 22px 24px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    max-width: 520px;
}

.contact-card p + p {
    margin-top: 0.8em;
}

.contact-card a {
    color: var(--accent);
    font-weight: 500;
}

/* FOOTER */

footer {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .about-layout,
    .piece-card {
    grid-template-columns: 1fr;
    }

    .about-photo-wrapper {
    order: -1;
    }
}

@media (max-width: 640px) {
    .page {
    padding-inline: 16px;
    }

    nav {
    gap: 16px;
    padding-inline: 16px;
    font-size: 0.98rem;
    }

    .piece-card {
    padding: 18px 16px 20px;
    }
}