* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --bg-dark: #0a0a0a;
            --bg-darker: #050505;
            --text-light: #ffffff;
            --text-muted: #888888;
            --accent: #c9a962;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
        }
        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: 0.3rem;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--text-light);
        }
        .nav-links { display: flex; gap: 3rem; list-style: none; }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 0.2rem;
            text-transform: uppercase;
            font-weight: 300;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover::after { width: 100%; }

        /* Hero */
        .page-hero {
            width: 100%;
            max-width: none;
            margin: 0;
            height: 72vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 4rem;
        }
        .page-hero-bg {
            position: absolute;
            inset: 0;
            background: url('../inicio.jpg') center 28% / cover;
            filter: grayscale(100%) brightness(0.42);
            transform: scale(1.02);
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5,5,5,0.88), rgba(5,5,5,0.18) 52%, rgba(5,5,5,0.7));
        }
        .page-hero-content {
            position: relative;
            text-align: center;
            z-index: 1;
        }
        .page-hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 300;
            letter-spacing: 0.5rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .page-hero-content p {
            font-size: 0.85rem;
            letter-spacing: 0.3rem;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .breadcrumb { display: none; }

        /* Sections */
        section { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; }
        .section-title {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 3rem;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.22rem;
            text-transform: uppercase;
        }
        .section-title::after {
            content: '';
            width: 56px;
            height: 1px;
            background: rgba(201, 169, 98, 0.72);
        }

        /* Bio Extendida */
        .bio-extended {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        .bio-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            line-height: 1.3;
        }
        .bio-text p {
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .bio-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            filter: grayscale(20%);
        }

        /* Repertorio */
        .repertorio-section { background: var(--bg-darker); padding: 6rem 4rem; max-width: none; }
        .repertorio-container { max-width: 1400px; margin: 0 auto; }
        .repertorio-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .repertorio-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
        }
        .repertorio-card:hover {
            border-color: rgba(201, 169, 98, 0.3);
            transform: translateY(-5px);
        }
        .repertorio-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        .repertorio-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* Timeline */
        .timeline { position: relative; margin-top: 3rem; }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255,255,255,0.1);
        }
        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            transform: translateX(-50%);
        }
        .timeline-content {
            padding: 2rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
        }
        .timeline-content.right { grid-column: 2; }
        .timeline-content.left { grid-column: 1; text-align: right; }
        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        .timeline-content h3 {
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
        }
        .timeline-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* Venues */
        .venues-section { background: var(--bg-darker); padding: 6rem 4rem; max-width: none; }
        .venues-container { max-width: 1400px; margin: 0 auto; }
        .venues-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        .venues-intro h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }
        .venues-intro p {
            color: var(--text-muted);
            font-weight: 300;
        }
        .venues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .venue-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        .venue-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) brightness(0.5);
            transition: var(--transition);
        }
        .venue-card:hover img {
            filter: grayscale(0%) brightness(0.7);
            transform: scale(1.05);
        }
        .venue-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }
        .venue-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .venue-info span {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.1rem;
        }

        /* Experiencias */
        .experiences-section {
            background:
                radial-gradient(circle at 12% 0%, rgba(201, 169, 98, 0.12), transparent 24rem),
                var(--bg-dark);
            max-width: none;
            padding: 6rem 4rem;
        }
        .experiences-container { max-width: 1400px; margin: 0 auto; }
        .experiences-intro {
            display: grid;
            grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.52fr);
            gap: 2rem;
            align-items: end;
            margin-bottom: 3rem;
        }
        .experiences-intro h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 4.5vw, 4.4rem);
            font-weight: 300;
            line-height: 1.02;
        }
        .experiences-intro p {
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
        }
        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .experience-card {
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.025);
            overflow: hidden;
        }
        .experience-card summary {
            cursor: pointer;
            list-style: none;
        }
        .experience-card summary::-webkit-details-marker { display: none; }
        .experience-media {
            display: block;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #111;
        }
        .experience-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(92%) brightness(0.62);
            transition: var(--transition);
        }
        .experience-card:hover .experience-media img,
        .experience-card[open] .experience-media img {
            filter: grayscale(10%) brightness(0.82);
            transform: scale(1.05);
        }
        .experience-copy {
            display: grid;
            gap: 0.55rem;
            padding: 1.4rem;
        }
        .experience-date {
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16rem;
            text-transform: uppercase;
        }
        .experience-copy strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            font-weight: 300;
            line-height: 1.05;
        }
        .experience-copy em {
            color: rgba(255,255,255,0.72);
            font-size: 0.78rem;
            font-style: normal;
            letter-spacing: 0.08rem;
            text-transform: uppercase;
        }
        .experience-copy span:last-child,
        .experience-body p {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.75;
        }
        .experience-body {
            padding: 0 1.4rem 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        /* Colaboraciones */
        .colabs-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            align-items: center;
            margin-top: 3rem;
        }
        .colab-item {
            min-height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.02);
            text-align: center;
            opacity: 0.62;
            transition: var(--transition);
        }
        .colab-item img {
            max-width: 150px;
            max-height: 46px;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.58);
            transition: var(--transition);
        }
        .colab-item:hover {
            opacity: 1;
            border-color: rgba(201, 169, 98, 0.35);
            transform: translateY(-4px);
        }
        .colab-item:hover img { filter: grayscale(0%) opacity(1); }
        .colab-item span {
            font-family: 'Inter', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.18rem;
            text-transform: uppercase;
        }
        .logo-sony span {
            font-family: Georgia, serif;
            font-size: 1rem;
            letter-spacing: 0.16rem;
        }
        .logo-rtve span {
            font-size: 1.35rem;
            font-weight: 600;
            letter-spacing: 0.08rem;
        }
        .logo-universal span {
            font-family: Georgia, serif;
            font-size: 1.05rem;
            letter-spacing: 0.08rem;
        }
        .logo-ser span {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: 0.1rem;
        }
        .logo-sgae span {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.12rem;
        }

        /* Prensa */
        .prensa-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .prensa-item {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            border-left: 2px solid var(--accent);
            background: rgba(255,255,255,0.02);
        }
        .prensa-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
        }
        .prensa-source {
            display: block;
            margin-top: auto;
            font-size: 0.75rem;
            color: var(--accent);
            letter-spacing: 0.1rem;
            text-transform: uppercase;
        }

        /* CTA */
        .cta-section {
            text-align: center;
            padding: 8rem 4rem;
            background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
        }
        .cta-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }
        .cta-section p {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .btn-primary {
            display: inline-block;
            padding: 1rem 2.5rem;
            border: 1px solid var(--accent);
            color: var(--accent);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 0.2rem;
            text-transform: uppercase;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background: var(--accent);
            color: var(--bg-dark);
        }

        /* Footer */
        footer {
            padding: 2rem 4rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: var(--reveal-delay, 0s);
            will-change: opacity, transform;
        }
        .reveal.is-visible {
            opacity: 1;
            transform: none;
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
            .reveal { opacity: 1; transform: none; }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .repertorio-grid { grid-template-columns: repeat(2, 1fr); }
            .venues-grid { grid-template-columns: repeat(2, 1fr); }
            .colabs-grid { grid-template-columns: repeat(3, 1fr); }
            .experiences-grid { grid-template-columns: 1fr; }
            .experiences-intro { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            nav { padding: 1rem 2rem; }
            .nav-links { display: none; }
            .page-hero { height: 68vh; padding: 0 2rem; }
            section { padding: 4rem 2rem; }
            .bio-extended { grid-template-columns: 1fr; }
            .repertorio-grid { grid-template-columns: 1fr; }
            .timeline::before { left: 0; }
            .timeline-item { grid-template-columns: 1fr; gap: 0; }
            .timeline-item::before { left: 0; }
            .timeline-content.left, .timeline-content.right { grid-column: 1; text-align: left; margin-left: 2rem; }
            .venues-grid { grid-template-columns: 1fr; }
            .colabs-grid { grid-template-columns: repeat(2, 1fr); }
            .prensa-grid { grid-template-columns: 1fr; }
        }

        /* Story cards + modal */
        .experiences-section {
            padding: clamp(4.5rem, 7vw, 6.2rem) 4rem;
        }
        .experiences-intro {
            grid-template-columns: minmax(0, 0.65fr) minmax(340px, 0.55fr);
            margin-bottom: clamp(2rem, 4vw, 3rem);
        }
        .experiences-intro h2 {
            font-size: clamp(2.6rem, 5.4vw, 5.2rem);
        }
        .story-card {
            appearance: none;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.025);
            color: var(--text-light);
            text-align: left;
            cursor: pointer;
            overflow: hidden;
            transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
        }
        .story-card:hover {
            border-color: rgba(201,169,98,0.48);
            background: rgba(255,255,255,0.045);
            transform: translateY(-6px);
        }
        .story-media {
            display: block;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #111;
        }
        .story-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(92%) brightness(0.58);
            transform: scale(1.02);
            transition: filter 0.45s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .story-card:hover .story-media img {
            filter: grayscale(8%) brightness(0.82);
            transform: scale(1.07);
        }
        .story-copy {
            display: grid;
            gap: 0.65rem;
            padding: 1.35rem;
        }
        .story-date,
        .story-cta {
            color: var(--accent);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.16rem;
            text-transform: uppercase;
        }
        .story-copy strong,
        .story-copy h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.65rem, 2.4vw, 2.35rem);
            font-weight: 300;
            line-height: 1;
        }
        .story-copy em {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: normal;
            font-weight: 300;
            line-height: 1.65;
        }
        .story-modal {
            width: min(1080px, calc(100% - 2rem));
            padding: 0;
            border: 1px solid rgba(201,169,98,0.36);
            background: #080808;
            color: var(--text-light);
        }
        .story-modal::backdrop {
            background: rgba(0,0,0,0.78);
            backdrop-filter: blur(8px);
        }
        .story-modal-grid {
            display: grid;
            grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
            min-height: 560px;
        }
        .story-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(18%) brightness(0.82);
        }
        .story-modal-copy {
            padding: clamp(2rem, 4vw, 4rem);
            display: grid;
            align-content: center;
            gap: 1.2rem;
        }
        .story-modal-copy span {
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.18rem;
            text-transform: uppercase;
        }
        .story-modal-copy h2 {
            font-size: clamp(2.3rem, 5vw, 4.6rem);
            line-height: 0.98;
        }
        .story-modal-summary,
        .story-modal-body {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
        }
        .story-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 2;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(0,0,0,0.45);
            color: var(--text-light);
            font-size: 1.6rem;
            cursor: pointer;
        }
        @media (max-width: 820px) {
            .story-modal-grid { grid-template-columns: 1fr; }
            .story-modal-image { max-height: 320px; }
            .experiences-section { padding-left: 2rem; padding-right: 2rem; }
        }

        /* Header igualado con inicio */
        .site-nav {
            position: fixed;
            inset: 0 0 auto;
            width: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.15rem clamp(1rem, 4vw, 4rem);
            background: linear-gradient(180deg, rgba(5,5,5,0.82), rgba(5,5,5,0.28) 74%, transparent);
            border-bottom: 1px solid transparent;
            backdrop-filter: blur(10px);
            transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
        }
        .site-nav.is-scrolled {
            padding-top: 0.85rem;
            padding-bottom: 0.85rem;
            background: rgba(5,5,5,0.88);
            border-bottom-color: rgba(255,255,255,0.08);
        }
        .brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.35rem, 2vw, 1.75rem);
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--text-light);
            text-decoration: none;
        }
        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(255,255,255,0.02);
            color: var(--text-light);
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-direction: column;
            cursor: pointer;
        }
        .menu-toggle span {
            width: 18px;
            height: 1px;
            background: currentColor;
        }
        .site-nav .nav-links {
            display: flex;
            gap: clamp(1rem, 2.4vw, 2.6rem);
            align-items: center;
            list-style: none;
        }
        .site-nav .nav-links a {
            color: rgba(255,255,255,0.74);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
            padding: 0.5rem 0;
        }
        .site-nav .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0.1rem;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.35s ease;
        }
        .site-nav .nav-links a:hover,
        .site-nav .nav-links a[aria-current="page"] {
            color: var(--text-light);
        }
        .site-nav .nav-links a:hover::after,
        .site-nav .nav-links a[aria-current="page"]::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Secciones narrativas compactas y visibles */
        .experiences-section {
            padding: clamp(4rem, 5.8vw, 5.5rem) clamp(1.25rem, 4vw, 4rem);
        }
        .experiences-container {
            max-width: 1440px;
            margin: 0 auto;
        }
        .experiences-intro {
            display: grid;
            grid-template-columns: minmax(240px, 0.42fr) minmax(360px, 0.58fr);
            gap: clamp(1.4rem, 4vw, 4rem);
            align-items: end;
            margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
        }
        .experiences-intro h2 {
            font-size: clamp(2.8rem, 5vw, 5.4rem);
            line-height: 0.98;
            max-width: 760px;
        }
        .experiences-intro p {
            max-width: 620px;
            margin-top: 1.6rem;
        }
        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(0.9rem, 2vw, 1.35rem);
        }
        .story-card.experience-card {
            display: block;
            min-height: 0;
            border-radius: 0;
        }
        .story-card.reveal {
            opacity: 1;
            transform: none;
        }

        /* Centrado correcto del popup */
        .story-modal {
            position: fixed;
            inset: 0;
            margin: auto;
            width: min(1080px, calc(100% - 2rem));
            max-height: min(760px, calc(100vh - 2rem));
            overflow: auto;
            padding: 0;
            border: 1px solid rgba(201,169,98,0.36);
            background: #080808;
            color: var(--text-light);
        }

        .story-modal[open] {
            display: block;
        }

        .story-modal-grid {
            min-height: min(560px, calc(100vh - 2rem));
        }

        .story-modal-copy {
            max-height: calc(100vh - 2rem);
            overflow-y: auto;
        }

        @media (max-width: 900px) {
            .menu-toggle { display: flex; }
            .site-nav .nav-links {
                position: fixed;
                left: 1rem;
                right: 1rem;
                top: 4.8rem;
                display: grid;
                gap: 0;
                padding: 1rem;
                background: rgba(5,5,5,0.96);
                border: 1px solid rgba(255,255,255,0.12);
                transform: translateY(-130%);
                transition: transform 0.35s ease;
            }
            .site-nav .nav-links.is-open { transform: translateY(0); }
            .site-nav .nav-links a {
                display: flex;
                justify-content: center;
                padding: 0.9rem;
            }
            .experiences-intro,
            .experiences-grid {
                grid-template-columns: 1fr;
            }
        }


