/* ═══════════════════════════════════════════════════════════
   VISIO — Layout v5
   Fixed navbar. Horizontal scroll work. Clean hero.
   ═══════════════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────────────────── */

body {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    color: var(--white);
    background-color: var(--black);
}

/* ══════════════════════════════════════════════════════════════
   SITE HEADER — fixed, siempre visible
   ══════════════════════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    /* Full width to handle gradient */
    z-index: 1000;
    padding: var(--gutter);
    display: flex;
    justify-content: flex-end;
    /* Align nav to right */
    align-items: center;
    gap: 16px;
    pointer-events: none;
    /* Let clicks pass through gradient */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.header__nav {
    display: flex;
    gap: 16px;
    pointer-events: auto;
    /* Re-enable for links */
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.1em;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--black);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--gutter);
    padding-bottom: clamp(48px, 8vh, 100px);
}

/* Video noir de fondo */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%) contrast(1.2);
    z-index: 1;
    pointer-events: none;
}

/* Grain noise — SVG filter animado encima del video */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {

    0%,
    100% {
        background-position: 0 0;
    }

    10% {
        background-position: -5% -10%;
    }

    20% {
        background-position: -15% 5%;
    }

    30% {
        background-position: 7% -25%;
    }

    40% {
        background-position: -5% 25%;
    }

    50% {
        background-position: -15% 10%;
    }

    60% {
        background-position: 15% 0%;
    }

    70% {
        background-position: 0% 15%;
    }

    80% {
        background-position: 3% 35%;
    }

    90% {
        background-position: -10% 10%;
    }
}

/* Z2: Isotipo — arriba izquierda */
.hero__isotipo {
    position: absolute;
    top: var(--gutter);
    left: var(--gutter);
    width: clamp(48px, 6vw, 80px);
    z-index: 5;
}

.hero__isotipo svg {
    width: 100%;
    height: auto;
}

/* Info line — move to bottom right (swapped with year) */
.hero__info-line {
    position: absolute;
    bottom: var(--gutter);
    right: var(--gutter);
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 5;
    text-align: right;
}

/* Year can stay bottom right, or move if it conflicts. 
   Let's check hero__year. currently bottom right.
   Swap: Info line bottom left. Year bottom right. */

/* Z3: Título masivo */
.hero__title {
    position: relative;
    width: clamp(300px, 85vw, 1200px);
    z-index: 4;
}

.hero__title svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Año — abajo izquierda (swapped with info line) */
.hero__year {
    position: absolute;
    bottom: var(--gutter);
    left: var(--gutter);
    font-family: var(--font-mono);
    font-size: var(--text-meta);
    color: var(--gray);
    letter-spacing: 0.08em;
    z-index: 6;
}

/* ══ MANIFIESTO — Isotipo gigante como ventana al video ══ */
.manifesto {
    position: relative;
    background: #FFFFFF;
    width: 100%;
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

/* Video fijo a la SECCIÓN — no al isotipo */
.manifesto-video-bg-local {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Isotipo oversized — el SVG blanco cubre toda el area visible incluso al rotar */
.manifesto-iso {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Necesario para centrar el absolute */
    width: 100%;
    max-width: none;
    aspect-ratio: 289.82 / 145;
    flex-shrink: 0;
    will-change: transform;
    z-index: 1;
    pointer-events: none;
}

/* SVG overlay llena todo el contenedor y desborda para tapar leaks */
.manifesto-iso__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    /* Permite que el matte gigante se vea fuera del viewBox */
}

/* Mobile */
@media (max-width: 768px) {
    .manifesto {
        height: 70vh;
    }

    .manifesto-iso {
        width: 125%;
    }
}



/* ══════════════════════════════════════════════════════════════
   CAPABILITIES / SERVICIOS
   ══════════════════════════════════════════════════════════════ */

.capabilities {
    background: var(--black);
    color: var(--white);
    padding: var(--section-pad) var(--gutter);
}

.capabilities__header {
    max-width: var(--max-width);
    margin: 0 auto clamp(32px, 4vw, 64px);
}

.section-label {
    font-family: var(--font-mono);
    font-size: var(--text-meta);
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.capabilities__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.capability-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(16px, 2vw, 24px) 0;
    border-bottom: 1px solid #1A1A1A;
    cursor: none;
    transition: background 0.25s ease, padding-left 0.3s var(--ease-out), padding-right 0.3s var(--ease-out);
}

.capability-item:first-child {
    border-top: 1px solid #1A1A1A;
}

.capability-item:hover {
    background: var(--accent);
    padding-left: 16px;
    padding-right: 16px;
}

.capability-item__title {
    font-family: var(--font-display);
    font-weight: var(--weight-medium);
    /* Lighter weight */
    font-size: clamp(20px, 2.5vw, 32px);
    /* Much smaller, minimalist */
    line-height: 1.2;
    color: var(--white);
    transition: color 0.25s ease;
}

.capability-item:hover .capability-item__title {
    color: var(--black);
}

.capability-item__num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #444;
    letter-spacing: 0.08em;
    transition: color 0.25s ease;
}

.capability-item:hover .capability-item__num {
    color: var(--black);
}

/* ══════════════════════════════════════════════════════════════
   SHOWROOM — Two-row parallax (SHIO-inspired)
   ══════════════════════════════════════════════════════════════ */

.showroom {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 32px);
}


/* ── Filas ── */
.showroom-row {
    overflow: visible;
    position: relative;
    width: 100%;
    /* Ensure container has width */
}

.showroom-track {
    display: flex;
    flex-wrap: nowrap;
    /* Force single line */
    width: max-content;
    /* Allow width to expand */
    gap: clamp(12px, 1.5vw, 24px);
    align-items: stretch;
    /* Ensure cards fill height */
    will-change: transform;
    animation: showroomScroll 60s linear infinite;
    /* Slow, infinite scroll */
}

@keyframes showroomScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Cards ── */
.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
    /* Explicitly don't shrink */
    position: relative;
    background: #0D0D0D;
    border: 1px solid #222;
    /* Added visibility for structure */
}

.project-card[data-ratio="portrait"] {
    width: clamp(200px, 22vw, 340px);
    aspect-ratio: 3/4;
}

.project-card[data-ratio="landscape"] {
    width: clamp(320px, 38vw, 580px);
    aspect-ratio: 16/9;
}

.project-card[data-ratio="square"] {
    width: clamp(200px, 24vw, 360px);
    aspect-ratio: 1/1;
}

/* ── Media ── */
.card-media {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.card-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #111 0%, #1a1a1a 50%, #0f0f0f 100%);
    transition: transform 0.8s var(--ease-out);
}

.project-card:hover .card-placeholder-bg {
    transform: scale(1.06);
}

.card-media img,
.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
    will-change: transform;
}

.project-card:hover .card-media img,
.project-card:hover .card-media video {
    transform: scale(1.06);
}

/* ── Overlay — aparece en hover ── */
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(16px, 2vw, 24px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: var(--weight-bold);
    color: var(--white);
    display: block;
    margin-bottom: 4px;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.project-card:hover .card-title {
    transform: translateY(0);
}

.card-year {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    transform: translateY(8px);
    transition: transform 0.35s ease 0.05s;
}

.project-card:hover .card-year {
    transform: translateY(0);
}

/* ── Placeholder cards ── */
.project-card--placeholder {
    border: 1px solid #1A1A1A;
    cursor: default;
}

.card-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: clamp(16px, 2vw, 24px);
}

.card-placeholder-inner span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #2A2A2A;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — Canvas 2D Eye Background
   Canvas at z:0, content at z:1
   ══════════════════════════════════════════════════════════════ */

.footer {
    position: relative;
    min-height: 100vh;
    background: #0A0A0A;
    overflow: hidden;
}

/* Canvas — full bleed background */
.footer-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Content wrapper — on top of canvas */
.footer-content {
    position: relative;
    z-index: 1;
    padding: clamp(48px, 7vw, 100px) clamp(32px, 5vw, 80px) clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* TOP — email + nav */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: auto;
    padding-bottom: clamp(48px, 6vw, 80px);
}

/* CTA Block */
.footer-cta-block {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 40px);
    width: 100%;
    /* Full width to avoid compression */
    justify-content: center;
    padding-top: clamp(32px, 4vw, 48px);
}

/* Question — big, white, display */
.footer-question {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 100px);
    /* Slightly larger */
    font-weight: 700;
    color: #FFFFFF;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Button */
.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    cursor: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.footer-btn:hover {
    background: var(--accent);
    color: #0A0A0A;
    border-color: var(--accent);
}

/* Small Email */
.footer-email-small {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #333333;
    letter-spacing: 0.08em;
}

.footer-email-small a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email-small a:hover {
    color: var(--accent);
}

/* Film grain — CSS only, no JS overhead */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #1A1A1A;
    margin-bottom: clamp(32px, 4vw, 48px);
}

/* Bottom columns */
.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 48px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #2A2A2A;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-col p,
.footer-col a {
    font-family: var(--font-body);
    font-size: 13px;
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #FFFFFF;
}

/* Right column */
.footer-col--right {
    text-align: right;
    justify-self: end;
}

.footer-copy,
.footer-rights {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #2A2A2A;
    letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Manifesto mobile */
    .manifesto__label {
        display: none;
        /* Hide rotated label on mobile */
    }

    .manifesto__content {
        padding: clamp(32px, 6vw, 80px) clamp(24px, 4vw, 48px);
        padding-left: clamp(24px, 4vw, 48px);
    }

    .manifesto__headline {
        font-size: clamp(22px, 6vw, 36px);
    }

    .manifesto__accent {
        font-size: clamp(28px, 8vw, 48px);
        transform: none;
    }

    .manifesto__body {
        margin-left: 0;
        max-width: 100%;
        padding-right: 0;
    }

    .manifesto__coords {
        left: clamp(24px, 4vw, 48px);
    }

    .hero__title {
        width: 95vw;
    }

    .hero {
        align-items: center;
        justify-content: center;
        padding-bottom: clamp(80px, 14vh, 160px);
    }

    /* Header responsive */
    .site-header {
        padding: 16px;
    }

    /* Showroom: degradar a una sola fila con swipe nativo */
    .showroom-row--bottom {
        display: none;
    }

    .showroom-row--top {
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .showroom-row--top::-webkit-scrollbar {
        display: none;
    }

    .showroom-track {
        transform: none !important;
        padding: 0 clamp(24px, 4vw, 48px);
    }

    .project-card {
        scroll-snap-align: start;
    }

    .project-card[data-ratio="portrait"] {
        width: 72vw;
    }

    .project-card[data-ratio="landscape"] {
        width: 88vw;
    }

    .project-card[data-ratio="square"] {
        width: 72vw;
    }

    /* Footer mobile */
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav-top {
        justify-content: flex-start;
    }

    .footer-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col--right {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .capability-item__title {
        font-size: clamp(24px, 7vw, 40px);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }
}

@media (pointer: coarse) {
    body {
        cursor: auto;
    }

    .footer-email {
        cursor: pointer;
    }

    .footer-col a {
        cursor: pointer;
    }

    .capability-item {
        cursor: default;
    }

    .project-card {
        cursor: pointer;
    }

    .cursor {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PROJECT DETAIL
   ══════════════════════════════════════════════════════════════ */
.project-body {
    background: #0A0A0A;
    color: #FFFFFF;
}

.project-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 32px;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    mix-blend-mode: difference;
    pointer-events: none;
}

.project-close-btn {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.project-close-btn:hover {
    background: #FFFFFF;
    color: #000000;
}

.project-detail {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 100vh;
    padding-top: 120px;
    /* Space for fixed header/breathing */
}

/* Empty column (42%) */
.project-intro {
    padding: 0 48px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.project-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 64px);
    margin-bottom: 24px;
    line-height: 1;
}

.project-meta {
    display: flex;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: #888;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #CCC;
    max-width: 400px;
}

/* Gallery column (58%) */
.project-gallery {
    padding: 0 48px 120px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.project-media-item {
    width: 100%;
    background: #1A1A1A;
    border: 1px solid #333;
}

/* Footer */
.project-footer {
    padding: 80px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #222;
}

.next-project-link {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 48px);
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.next-project-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .project-detail {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }

    .project-intro {
        position: relative;
        top: 0;
        margin-bottom: 64px;
        padding: 0 24px;
    }

    .project-gallery {
        padding: 0 24px 80px 24px;
    }
}


/* ── CAPA DE TEXTO — flota sobre el background ── */
.manifesto-text-layer {
    position: relative;
    z-index: 10;
    padding: clamp(60px, 8vw, 120px) 0;
    pointer-events: none;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ── GRID LAYOUT ── */
.manifesto-grid {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(48px, 6vw, 120px);
    align-items: center;
    padding: 0 var(--gutter);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ── COLUMNA IZQUIERDA: HEADLINE ── */
.manifesto-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 72px);
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
}

.text-highlight {
    color: #0A0A0A;
    background: #C8FF00;
    padding: 2px 10px;
    display: inline-block;
    line-height: 1;
}

/* ── COLUMNA DERECHA: BLOQUES ── */
.manifesto-col-right {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 64px);
    padding-top: clamp(48px, 6vw, 120px);
    /* Desplazamiento vertical para efecto escalonado */
}

.manifesto-text-block {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    color: #0A0A0A;
    line-height: 1.7;
    letter-spacing: -0.01em;
    max-width: 450px;
    border-left: 2px solid #C8FF00;
    padding-left: 20px;
    /* Comienza invisible y en posición */
    opacity: 0;
    transform: translateY(20px);
}

.manifesto-text-block p {
    display: inline;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 0;
    padding: 2px 0;
    /* Hace que el fondo se vea bien en saltos de línea */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.block-1 {
    margin-left: 0;
}

.block-2 {
    margin-left: clamp(40px, 6vw, 100px);
}

.block-3 {
    margin-left: clamp(80px, 12vw, 200px);
    border-right: none;
    /* Remove previous right border if any */
    border-left: 2px solid #C8FF00;
    /* Maintain consistency */
    padding-right: 0;
    padding-left: 16px;
    text-align: left;
    /* Reset alignment */
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .manifesto-col-right {
        padding-top: 0;
        gap: 40px;
    }

    .manifesto-text-block {
        max-width: 100%;
        margin-right: 0;
        align-self: flex-start;
        text-align: left;
        border-right: none;
        border-left: 2px solid #C8FF00;
        padding-right: 0;
        padding-left: 16px;
    }
}