/* ═══════════════════════════════════════
   LUCÍA NICOLÁS — Portfolio
   Industrial / Brutalist / Punk
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
    --color-bg:       #0a0a0a;
    --color-bg-alt:   #111111;
    --color-surface:  #1a1a1a;
    --color-accent:   #d4a017;
    --color-accent-light: #e6b830;
    --color-text:     #e8e0d4;
    --color-text-dim: #8a8278;
    --color-cream:    #f0ebe3;
    --color-warm:     #c4a882;
    --color-yellow:   #d4a017;
    --color-rust:     #a0522d;

    --font-display: 'Bebas Neue', 'Anton', 'Impact', sans-serif;
    --font-body:    'Outfit', 'Helvetica Neue', sans-serif;
    --font-serif:   'Cormorant Garamond', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

::selection {
    background: var(--color-yellow);
    color: #000;
}

/* ─── HEADER ─────────────────────────── */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 160, 23, 0.08);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-cream);
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.45em;
    color: var(--color-yellow);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.logo-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.logo-social a {
    color: var(--color-text-dim);
    transition: color 0.3s;
}

.logo-social a:hover {
    color: var(--color-yellow);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-cream);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-yellow);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--color-yellow);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.1rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 0.6rem 0;
    min-width: 170px;
    flex-direction: column;
    gap: 0;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.2rem;
    white-space: nowrap;
    font-size: 0.75rem;
}

.dropdown-menu a:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--color-yellow);
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1rem;
}

.lang-switch button {
    background: none;
    border: none;
    color: var(--color-cream);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s;
    padding: 0.2rem;
}

.lang-switch button.active {
    opacity: 1;
    color: var(--color-yellow);
}

.lang-switch button:hover {
    opacity: 0.8;
}

.lang-divider {
    color: var(--color-cream);
    opacity: 0.2;
    font-size: 0.7rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-cream);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ───────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* Video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    filter: saturate(0.6) contrast(1.15) brightness(0.75) sepia(25%);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Scan lines / noise overlay */
.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 3px
    );
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0.5) 100%
    );
}


.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color: var(--color-cream);
    letter-spacing: 0.06em;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 0.3em;
    max-width: 900px;
}

.slogan-accent {
    color: var(--color-yellow);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--color-yellow);
    opacity: 0.5;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.1; transform: scaleY(0.5); }
    50%      { opacity: 0.6; transform: scaleY(1); }
}

/* ─── SECTIONS ───────────────────────── */

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
}

.section-inner {
    max-width: 1100px;
    width: 100%;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    color: var(--color-cream);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-yellow);
}

/* ─── BIO ────────────────────────────── */

.section-bio {
    background-color: var(--color-bg);
}

.bio-intro {
    margin-bottom: 3rem;
}

.bio-question {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
}

.bio-question-bold {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-cream);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.bio-bottom {
    margin-top: 2.5rem;
}

.bio-bottom p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.bio-quote {
    margin-top: 3rem;
    border-left: 3px solid var(--color-yellow);
    padding-left: 2rem;
    max-width: 800px;
}

.bio-quote p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--color-warm);
}

.bio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(40%) sepia(20%) contrast(1.1);
    transition: filter 0.6s ease;
}

.bio-image img:hover {
    filter: grayscale(20%) sepia(15%) contrast(1.05);
}

.bio-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

/* ─── PRENSA (About section) ─────────── */

.section-prensa {
    background-color: var(--color-bg-alt);
}

/* ─── CREACIONES ─────────────────────── */

.section-creaciones {
    background-color: var(--color-bg-alt);
    padding: 0;
    flex-direction: column;
}

/* Creaciones hero banner */
.creaciones-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.creaciones-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.4) grayscale(60%) sepia(15%);
}

.creaciones-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.creaciones-hero-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
}

.creaciones-hero-text h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.1em;
    margin-bottom: 0;
    text-transform: uppercase;
}

.creaciones-hero-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-yellow);
    margin-top: 10px;
}

/* Grid */
.section-creaciones .section-inner {
    padding: 4rem 3rem;
}

.escena-sub {
    padding-top: 1rem;
}

.escena-subtitle {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-yellow);
    margin-bottom: 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.escena-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-warm);
}

.tablao-sub {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-cream);
    margin: 2.5rem 0 1.5rem;
    letter-spacing: 0.05em;
}

.tablao-links {
    margin: 1.5rem 0 3rem;
}

.creaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.prensa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.prensa-item {
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.prensa-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(30%) sepia(15%) contrast(1.05);
}

.prensa-item:hover img {
    transform: scale(1.03);
    filter: grayscale(10%) sepia(10%);
}

/* Prensa Lightbox */
.prensa-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.prensa-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.prensa-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    filter: none;
}

.prensa-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    font-weight: 200;
    line-height: 1;
    transition: color 0.3s;
}

.prensa-lightbox-close:hover {
    color: var(--color-yellow);
}

.creacion-card {
    position: relative;
    overflow: hidden;
    color: var(--color-cream);
    display: block;
    cursor: pointer;
}

.card-img {
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.6s ease;
    filter: grayscale(50%) sepia(20%) brightness(0.7) contrast(1.1);
}

.creacion-card:hover .card-img img {
    transform: scale(1.05);
    filter: grayscale(20%) sepia(15%) brightness(0.85) contrast(1.05);
}

.creacion-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.creacion-card:hover h3 {
    color: var(--color-yellow);
}

.card-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    display: block;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

/* ─── PIECE MODAL ────────────────────── */

.piece-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 4rem 3rem 3rem;
}

.piece-modal.open {
    opacity: 1;
    pointer-events: all;
}

.piece-modal-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
    font-weight: 200;
    line-height: 1;
}

.piece-modal-close:hover {
    color: var(--color-yellow);
}

.piece-modal-content {
    max-width: 1000px;
    width: 100%;
}

.piece-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.piece-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.piece-gallery img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(30%) sepia(15%) contrast(1.05);
}

.piece-gallery img:first-child {
    aspect-ratio: 3 / 2;
}

.piece-gallery img:not(:first-child) {
    aspect-ratio: 4 / 3;
}

.piece-info {
    position: sticky;
    top: 2rem;
    align-self: start;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
}

.piece-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.piece-info h2::after {
    display: none;
}

.piece-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--color-yellow);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-style: italic;
}

.piece-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.piece-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.piece-link {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    transition: all 0.3s;
}

.piece-link:hover {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
}

.piece-link-teaser {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: #000;
}

.piece-link-teaser:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: #000;
}

.piece-credits {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 200;
    font-style: italic;
    color: var(--color-warm);
    line-height: 1.7;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.piece-links-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
}

/* ─── INVESTIGACIÓN ──────────────────── */

.section-investigacion {
    background-color: var(--color-bg);
}

.investigacion-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 2;
    color: var(--color-text-dim);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.investigacion-item {
    margin-bottom: 3rem;
}

.investigacion-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.investigacion-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-yellow);
    margin-bottom: 2rem;
    max-width: 700px;
}

.investigacion-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    border: 2px solid rgba(212, 160, 23, 0.4);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.investigacion-link:hover {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: #000;
}

/* ─── PROSA ──────────────────────────── */

.section-prosa {
    background-color: var(--color-bg-alt);
}

.section-prosa .section-inner {
    display: flex;
    flex-direction: column;
}

.prosa-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.prosa-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(40%) sepia(15%) contrast(1.1);
}

.prosa-intro {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.prosa-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

blockquote {
    border-left: 3px solid var(--color-yellow);
    padding-left: 2rem;
    max-width: 650px;
}

blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.9;
    color: var(--color-warm);
}

/* ─── CONTACTO ───────────────────────── */

.section-contacto {
    background-color: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contacto-content {
    margin-bottom: 4rem;
}

.contacto-content p {
    font-size: 1rem;
    font-weight: 200;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.contact-email {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    display: inline-block;
    margin-bottom: 2rem;
}

.contact-email:hover {
    color: var(--color-yellow);
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-text-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-yellow);
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

footer p {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
    opacity: 0.5;
    text-transform: uppercase;
}

/* ─── ANIMATIONS ─────────────────────── */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────── */

@media (max-width: 600px) {
    header {
        padding: 1.2rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
    }

    nav ul.open {
        right: 0;
    }

    nav a {
        font-size: 1.1rem;
        letter-spacing: 0.25em;
    }

    .lang-switch {
        margin-left: 0;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-image img {
        height: 350px;
    }

    .prosa-layout {
        grid-template-columns: 1fr;
    }

    .prosa-image img {
        height: 300px;
    }

    .creaciones-grid {
        grid-template-columns: 1fr;
    }

    .prensa-grid {
        grid-template-columns: 1fr;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: none;
        border: none;
        backdrop-filter: none;
        padding: 0.5rem 0 0 0;
        min-width: auto;
        margin-top: 0;
        gap: 1rem;
        align-items: center;
    }

    .dropdown-menu a {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }

    .creaciones-hero-text {
        left: 1.5rem;
        bottom: 2rem;
    }

    .section-creaciones .section-inner {
        padding: 3rem 1.5rem;
    }

    .piece-detail {
        grid-template-columns: 1fr;
    }

    .piece-modal {
        padding: 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .hero-slogan {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
    }
    .logo-subtitle {
        font-size: 0.4rem;
        letter-spacing: 0.3em;
    }

}
