/* ============================================
   HUNTER CULBERSON — ARTIST PORTFOLIO
   Dark Ethereal / Cosmic Aesthetic
   ============================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    /* Colors */
    --bg-deep:        #050508;
    --bg-primary:     #0a0a10;
    --bg-surface:     #0f0f1a;
    --bg-card:        #111122;
    --bg-elevated:    #161630;
    
    --text-primary:   #e8e6f0;
    --text-secondary: #9896a8;
    --text-muted:     #5c5a6e;
    --text-bright:    #ffffff;
    
    --accent-cyan:    #00e5ff;
    --accent-violet:  #9c4dff;
    --accent-gold:    #ffb74d;
    --accent-pink:    #ff4da6;
    
    --glow-cyan:      rgba(0, 229, 255, 0.15);
    --glow-violet:    rgba(156, 77, 255, 0.15);
    --glow-subtle:    rgba(0, 229, 255, 0.06);
    
    --border:         rgba(255, 255, 255, 0.06);
    --border-light:   rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-display:   'Cormorant Garamond', Georgia, serif;
    --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-pad:    clamp(4rem, 10vw, 8rem);
    --container:      1200px;
    
    /* Transitions */
    --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-violet) var(--bg-primary);
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(156, 77, 255, 0.3);
    color: var(--text-bright);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}
a:hover {
    color: var(--text-bright);
}

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

/* --- AMBIENT BACKGROUND CANVAS --- */
#ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* --- SECTION --- */
.section {
    position: relative;
    z-index: 1;
    padding: var(--section-pad) 0;
}

.section__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-bright);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section__title--center {
    text-align: center;
}

.section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.nav--scrolled {
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-bright);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav__logo-mark {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; text-shadow: 0 0 8px var(--glow-cyan); }
    50% { opacity: 1; text-shadow: 0 0 20px var(--accent-cyan), 0 0 40px var(--glow-cyan); }
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__links a {
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
    color: var(--text-bright);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__social {
    display: flex !important;
    align-items: center;
}

.nav__social svg {
    opacity: 0.6;
    transition: opacity 0.3s;
}
.nav__social:hover svg {
    opacity: 1;
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(156, 77, 255, 0.08), transparent),
        radial-gradient(ellipse 60% 80% at 30% 70%, rgba(0, 229, 255, 0.06), transparent),
        radial-gradient(ellipse 50% 50% at 80% 30%, rgba(255, 75, 166, 0.04), transparent);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
}

.hero__pre {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 0.9;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero__title-line {
    display: block;
}

.hero__title-line:first-child {
    font-style: italic;
    color: var(--accent-cyan);
    font-size: 0.55em;
    letter-spacing: 0.05em;
    margin-bottom: 0.15em;
    text-shadow: 0 0 60px var(--glow-cyan);
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero__sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent-cyan);
    color: var(--bg-deep);
    border-radius: 0;
}

.btn--primary:hover {
    background: var(--text-bright);
    color: var(--bg-deep);
    box-shadow: 0 0 30px var(--glow-cyan);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn--ghost:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: inset 0 0 20px var(--glow-subtle);
}

.btn--full {
    width: 100%;
}

/* --- ABOUT --- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.about__image-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about__image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at center, var(--glow-violet), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.about__image {
    position: relative;
}

.about__text p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.about__text p:first-child {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.about__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.tag:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.3);
}

/* --- GALLERY --- */
.gallery__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.gallery__filter {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.gallery__filter:hover,
.gallery__filter.active {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--glow-subtle);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.gallery__item.hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
}

.gallery__card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    transition: all 0.5s var(--ease-out);
}

.gallery__card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-subtle);
}

.gallery__card-info {
    padding: 1.25rem 1.5rem;
}

.gallery__card-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.gallery__card-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- PLACEHOLDER IMAGES --- */
.placeholder-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.placeholder-image--portrait {
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 40%, hsla(270, 60%, 20%, 0.4), transparent 70%),
        linear-gradient(135deg, var(--bg-surface), var(--bg-card));
}

.placeholder-image__icon {
    font-size: 2.5rem;
    color: var(--accent-violet);
    opacity: 0.4;
    margin-bottom: 0.75rem;
}

.placeholder-image__text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.placeholder-image--art {
    aspect-ratio: 4/5;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 50%, hsla(var(--hue, 200), 80%, 15%, 0.6), transparent),
        radial-gradient(ellipse 50% 70% at 30% 60%, hsla(var(--hue, 200), 60%, 8%, 0.5), transparent),
        linear-gradient(160deg, var(--bg-surface), var(--bg-card));
}

.placeholder-image--featured {
    aspect-ratio: 16/10;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 50%, hsla(var(--hue, 200), 80%, 15%, 0.6), transparent),
        radial-gradient(ellipse 50% 70% at 30% 60%, hsla(var(--hue, 200), 60%, 8%, 0.5), transparent),
        linear-gradient(160deg, var(--bg-surface), var(--bg-card));
}

.placeholder-image__shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        hsla(var(--hue, 200), 80%, 50%, 0.03) 40%,
        hsla(var(--hue, 200), 80%, 50%, 0.06) 50%,
        hsla(var(--hue, 200), 80%, 50%, 0.03) 60%,
        transparent 75%
    );
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-image__cat {
    position: relative;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: hsla(var(--hue, 200), 50%, 70%, 0.5);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 1rem;
}

/* --- SELECTED WORKS --- */
.selected {
    background: 
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(156, 77, 255, 0.04), transparent),
        var(--bg-deep);
}

.selected__grid {
    display: grid;
    gap: 2rem;
}

.selected__item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    transition: all 0.5s var(--ease-out);
}

.selected__item:hover {
    border-color: rgba(156, 77, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-violet);
}

.selected__item--featured {
    border-color: rgba(255, 183, 77, 0.15);
}

.selected__item--featured:hover {
    border-color: rgba(255, 183, 77, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 183, 77, 0.1);
}

.selected__item:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.selected__item:nth-child(even) .selected__image {
    order: 2;
}

.selected__image {
    position: relative;
    overflow: hidden;
}

.selected__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 1px solid rgba(255, 183, 77, 0.3);
    background: rgba(255, 183, 77, 0.08);
    z-index: 2;
}

.selected__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.selected__meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.selected__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.selected__status {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.selected__status--available {
    color: var(--accent-cyan);
}

/* --- BIO --- */
.bio {
    background: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 229, 255, 0.04), transparent),
        var(--bg-deep);
}

.bio__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bio__text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}

.bio__text p:first-child {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.bio__text a {
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}

.bio__text a:hover {
    border-color: var(--accent-cyan);
}

.bio__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio__card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    transition: border-color 0.3s;
}

.bio__card:hover {
    border-color: rgba(156, 77, 255, 0.2);
}

.bio__card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.bio__card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.bio__card ul {
    list-style: none;
}

.bio__card li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.bio__card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 0.55rem;
    top: 0.55rem;
}

/* --- CTA BANNER --- */
.cta-banner {
    position: relative;
    padding: 4rem;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    overflow: hidden;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
}

.cta-banner__glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 50%, var(--glow-violet), transparent 50%);
    opacity: 0.5;
    pointer-events: none;
    animation: cta-glow 8s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(-5%, 5%); opacity: 0.6; }
}

/* --- CONTACT --- */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all 0.3s;
    outline: none;
}

.form__input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--glow-subtle);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c5a6e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__info-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: var(--bg-surface);
}

.contact__info-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.contact__info-card p,
.contact__info-card a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact__social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.contact__social:hover {
    color: var(--accent-cyan);
}

/* --- NEWSLETTER --- */
.newsletter {
    padding: var(--section-pad) 0;
}

.newsletter__inner {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.newsletter__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.newsletter__inner > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.newsletter__form {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto 0.75rem;
}

.newsletter__form .form__input {
    flex: 1;
    border-right: none;
}

.newsletter__form .btn {
    white-space: nowrap;
}

.newsletter__note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- FOOTER --- */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer__name {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 500;
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--border);
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__social a {
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer__social a:hover {
    color: var(--accent-cyan);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.footer__credit {
    font-size: 0.7rem !important;
    color: var(--text-muted) !important;
    opacity: 0.6;
}

/* --- ANIMATIONS --- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s var(--ease-out) forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.25s; }
.animate-in:nth-child(3) { animation-delay: 0.4s; }
.animate-in:nth-child(4) { animation-delay: 0.55s; }
.animate-in:nth-child(5) { animation-delay: 0.7s; }
.animate-in:nth-child(6) { animation-delay: 0.85s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 2.5rem;
    }
    
    .bio__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .selected__item {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .selected__item:nth-child(even) .selected__image {
        order: 0;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s var(--ease-out);
        border-left: 1px solid var(--border);
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__links a {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about__image-frame {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__brand {
        flex-direction: column;
    }
    
    .footer__tagline {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }
    
    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .newsletter__form {
        flex-direction: column;
    }
    
    .newsletter__form .form__input {
        border-right: 1px solid var(--border);
    }
    
    .hero__title {
        font-size: clamp(3rem, 15vw, 5rem);
    }
    
    .section__subtitle br {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery__filters {
        gap: 0.35rem;
    }
    
    .gallery__filter {
        padding: 0.4rem 0.85rem;
        font-size: 0.65rem;
    }
    
    .selected__item {
        padding: 1.25rem;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* --- PRINT --- */
@media print {
    .nav, .hero__scroll, #ambient-bg, .cta-section, .newsletter {
        display: none;
    }
    
    body {
        background: white;
        color: #111;
    }
    
    .section {
        break-inside: avoid;
    }
}
