:root {
    --bg: #0c0b0a;
    --bg-2: #161412;
    --bg-3: #1e1b18;
    --ink: #f4ece3;
    --muted: #b7aea4;
    --gold: #c9a36a;
    --gold-2: #e2c48a;
    --line: rgba(201, 163, 106, 0.22);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --serif: "Outfit", system-ui, sans-serif;
    --sans: "Outfit", system-ui, sans-serif;
    --display: "Syne", "Outfit", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
}
button { cursor: pointer; }

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 4vw;
    transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(12, 11, 10, 0.88);
    backdrop-filter: blur(18px);
    border-color: var(--line);
}
.nav-mark {
    font-family: var(--display);
    letter-spacing: 0.42em;
    font-size: 1.15rem;
}
.nav-links { display: flex; gap: 1.7rem; align-items: center; }
.nav-links a {
    position: relative;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color .3s;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -5px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.22,.7,.25,1);
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 10px; right: 10px;
    height: 1px;
    background: var(--ink);
    transition: transform .3s, opacity .3s;
}
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { bottom: 16px; }

.eyebrow {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin: 0 0 1rem;
}
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.12;
    margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
h3 { font-size: 1.7rem; }
.lede {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 36rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    transition: transform .35s, background .35s, color .35s, box-shadow .35s;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
    background: var(--gold);
    color: #16120e;
    box-shadow: 0 12px 28px rgba(201, 163, 106, 0.22);
}
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { color: var(--gold-2); }
.btn-ghost:hover { background: rgba(201, 163, 106, 0.1); }

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5vw;
    align-items: center;
    padding: 8rem 6vw 5rem;
    position: relative;
}
.hero-copy h1 { margin-bottom: 1.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-frame { display: grid; place-items: center; }
.hero-photo {
    margin: 0;
    overflow: hidden;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    animation: float 8s ease-in-out infinite;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    animation: ken 18s ease-in-out infinite alternate;
}

.scroll-cue {
    position: absolute;
    bottom: 1.6rem;
    left: 6vw;
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--muted);
}

.section { padding: 5.5rem 6vw; }
.section-head { max-width: 40rem; margin-bottom: 2.4rem; }
.section-head p:last-child { color: var(--muted); }

.session-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.session-card {
    display: block;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: transform .55s cubic-bezier(.22,.7,.25,1), box-shadow .55s;
}
.session-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}
.session-card-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.session-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}
.session-card:hover img { transform: scale(1.07); }
.session-card-meta { padding: 1.15rem 1.15rem 1.35rem; }
.session-card-meta span, .session-card-meta em {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 0.95rem;
}
.session-card-meta h3 { margin: 0.35rem 0 0.5rem; }

.film-section { padding: 1rem 0 5.5rem; }
.film-section .section-head { padding: 0 6vw; }
.filmstrip {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0 6vw 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.film-frame {
    flex: 0 0 210px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0;
    background: var(--bg-2);
    transition: transform .45s;
}
.film-frame:hover { transform: translateY(-6px) rotate(-1deg); }
.film-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s;
}
.film-frame:hover img { transform: scale(1.06); }

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4vw;
    padding: 3rem 6vw 6rem;
    align-items: center;
}
.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.about-photos figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}
.about-photos figure:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }
.about-photos img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.about-photos figure:hover img { transform: scale(1.05); }
.about-copy p { color: var(--muted); line-height: 1.8; }

.cta-band {
    margin: 0 6vw 6rem;
    padding: 4.2rem 7vw;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.cta-band h2 { max-width: 18ch; margin-bottom: 1.5rem; }

.page-hero { padding: 9rem 6vw 2.2rem; }
.page-hero .lede { margin-top: 1rem; }

.gallery-index {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    padding: 1rem 6vw 6rem;
}
.gallery-tile {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 22px;
}
.gallery-tile:nth-child(3) { grid-column: 1 / -1; min-height: 54vh; }
.gallery-tile-media, .gallery-tile-media img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-copy {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(8, 7, 6, .72));
    width: 100%;
}
.gallery-tile-copy span {
    color: var(--gold-2);
    font-family: var(--serif);
}
.gallery-tile-copy p { color: var(--muted); margin: 0.3rem 0 0; }

.session-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 6vw 4rem;
    overflow: hidden;
}
.session-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.95);
    transform: scale(1.04);
    animation: ken 22s ease-in-out infinite alternate;
}
.session-hero-copy { position: relative; max-width: 46rem; }
.session-hero-copy .lede { color: rgba(244, 236, 227, 0.82); }
.session-facts {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    color: var(--gold-2);
    font-family: var(--serif);
}

.masonry { columns: 3; column-gap: 0.9rem; }
.shot {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.9rem;
    padding: 0;
    break-inside: avoid;
    overflow: hidden;
    display: inline-block;
    border-radius: 16px;
    background: var(--bg-2);
}
.shot img {
    width: 100%;
    height: auto;
    transition: transform .9s ease, filter .4s;
}
.shot:hover img { transform: scale(1.04); filter: saturate(1.08); }

.about-page {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5vw;
    padding: 1rem 6vw 5rem;
    align-items: start;
}
.portrait-frame {
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { color: var(--muted); line-height: 1.9; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    padding: 1rem 6vw 6rem;
}
.contact-card, .contact-aside, .login-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem;
}
.contact-form, .login-card form { display: grid; gap: 1rem; }
.contact-form label, .login-card label, .admin-form label {
    display: grid;
    gap: 0.4rem;
    font-family: var(--serif);
    color: var(--gold);
}
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    background: #100e0c;
    padding: 0.85rem 0.9rem;
    color: var(--ink);
    font-style: normal;
    font-family: var(--sans);
    font-size: 1rem;
    border-radius: 12px;
}
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-errors, .field-validation-error { color: #e3a89a; font-size: 0.85rem; }
.contact-aside { display: grid; align-content: start; gap: 0.7rem; }
.socials { display: grid; gap: 0.55rem; }
.socials a {
    font-family: var(--serif);
    color: var(--gold-2);
    transition: transform .3s, color .3s;
}
.socials a:hover { transform: translateX(6px); color: var(--ink); }

.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 8rem 6vw 4rem;
}
.login-card { width: min(460px, 100%); }
.login-card h1 { font-size: 3rem; margin-bottom: 0.6rem; }
.back-link {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: var(--serif);
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 3rem 6vw;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}
.footer-brand {
    font-family: var(--display);
    letter-spacing: 0.36em;
}
.footer-note, .footer-meta p { color: var(--muted); }
.footer-links, .footer-meta { display: grid; gap: 0.55rem; }
.footer-links a, .footer-meta a {
    font-family: var(--serif);
    color: var(--muted);
    transition: color .3s, transform .3s;
}
.footer-links a:hover, .footer-meta a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(8, 7, 6, 0.94);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 2rem;
    animation: fade .35s ease;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img {
    max-height: 82vh;
    max-width: min(1100px, 86vw);
    margin: 0 auto;
    object-fit: contain;
    border-radius: 10px;
    animation: fade .45s ease;
}
.lightbox figcaption {
    margin-top: 0.8rem;
    font-family: var(--serif);
    color: var(--gold);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    font-size: 2.4rem;
    color: var(--gold-2);
    padding: 0.4rem 0.8rem;
}
.lightbox-close { position: absolute; top: 1rem; right: 1rem; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
}
.reveal.in {
    animation: rise .95s cubic-bezier(.22,.7,.25,1) forwards;
}
.delay { animation-delay: .16s; }
.session-rail .reveal:nth-child(2) { animation-delay: .1s; }
.session-rail .reveal:nth-child(3) { animation-delay: .2s; }

@keyframes rise {
    to { opacity: 1; transform: none; }
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes ken {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.contact-stage {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
    padding: 0 6vw 5rem;
    align-items: start;
}
.chat-shell, .agenda-shell {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}
.chat-head, .agenda-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--line);
}
.chat-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #7dba7a;
    box-shadow: 0 0 0 6px rgba(125, 186, 122, 0.15);
}
.chat-head small { display: block; color: var(--muted); font-size: 0.78rem; }
.chat-thread {
    height: 420px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.bubble {
    max-width: 78%;
    padding: 0.75rem 0.95rem;
    border-radius: 16px;
    line-height: 1.45;
    animation: rise .35s ease;
}
.bubble.me {
    margin-left: auto;
    background: var(--gold);
    color: #16120e;
    border-bottom-right-radius: 4px;
}
.bubble.them {
    background: #241f1b;
    border-bottom-left-radius: 4px;
}
.chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0 1rem 0.6rem;
}
.chat-chips button {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    color: var(--gold-2);
}
.chat-composer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 0.85rem;
    border-top: 1px solid var(--line);
}
.chat-composer input {
    background: #100e0c;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.75rem 1rem;
}
.agenda-shell { padding-bottom: 1.2rem; }
.agenda-head { justify-content: space-between; }
.agenda-head button, .agenda-head a { color: var(--gold); font-size: 1.4rem; padding: 0 0.4rem; }
.agenda-toggle {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
    pointer-events: none;
}
.agenda-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.agenda-chevron {
    display: none;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    margin-top: -0.2rem;
    transition: transform .25s ease;
}
.agenda-shift { flex: 0 0 auto; }
.agenda-legend {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem 1.1rem 0;
    color: var(--muted);
    font-size: 0.85rem;
}
.agenda-legend span {
    width: 12px; height: 12px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 0.3rem;
}
.agenda-legend .busy { background: #8a4a4a; }
.agenda-legend .free { background: #2a2a26; border: 1px solid var(--line); }
.cal-week, .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
    padding: 0.4rem 1.1rem;
}
.cal-week {
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
    letter-spacing: 0.02em;
}
.cal-week span {
    min-width: 0;
    overflow: visible;
}
.cal-day, .cal-grid button.cal-day {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #1b1916;
    width: 100%;
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 0.88rem;
    line-height: 1;
}
.cal-day.busy {
    background: #4a2a2a;
    border-color: #8a4a4a;
    color: #f0cfcf;
}
.cal-day.free:hover { border-color: var(--gold); }
.cal-day.past { opacity: 0.35; pointer-events: none; }
.cal-day.is-on { outline: 1px solid var(--gold); }
.cal-grid form { margin: 0; }
.day-sheet {
    margin: 0.6rem 1.1rem 0;
    display: grid;
    gap: 0.5rem;
}
.wa-btn {
    display: block;
    margin: 1rem 1.1rem 0;
    text-align: center;
    background: #1f3d32;
    border: 1px solid #3f7a62;
    color: #d4efe4;
    border-radius: 999px;
    padding: 0.85rem 1rem;
}
.agenda-shell .socials { padding: 0.8rem 1.1rem 0; }

.chat-admin {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    min-height: 70vh;
}
.chat-list { display: grid; align-content: start; gap: 0.4rem; }
.chat-item {
    display: grid;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-2);
}
.chat-item span { color: var(--muted); font-size: 0.78rem; }
.chat-item.is-on { border-color: var(--gold); }
.chat-item.unread strong { color: var(--gold-2); }
.chat-live {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}
.chat-live header { padding: 1rem; border-bottom: 1px solid var(--line); }
.chat-live header span { display: block; color: var(--muted); font-size: 0.85rem; }
.admin-thread { flex: 1; height: auto; }

@media (max-width: 980px) {
    .hero, .about-split, .about-page, .contact-grid, .footer-grid, .chat-admin {
        grid-template-columns: 1fr;
    }
    .gallery-index {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0.4rem 4vw 4.2rem;
        align-items: start;
    }
    .gallery-tile,
    .gallery-tile:nth-child(3) {
        display: flex;
        width: auto;
        min-height: 0;
        margin: 0;
        border-radius: 14px;
        grid-column: auto;
    }
    .gallery-tile:nth-child(3n + 1) { aspect-ratio: 3 / 4.15; }
    .gallery-tile:nth-child(3n + 2) { aspect-ratio: 4 / 5.4; }
    .gallery-tile:nth-child(3n) { aspect-ratio: 3 / 4.8; }
    .gallery-tile-copy { padding: 0.95rem 0.9rem 0.85rem; }
    .gallery-tile-copy h2 { font-size: 1.2rem; }
    .gallery-tile-copy p { font-size: 0.78rem; }
    .session-rail {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }
    .contact-stage {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .chat-shell,
    .agenda-shell {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
        flex: 0 0 auto;
    }
    .agenda-shell { order: -1; }
    .cal-week,
    .cal-grid {
        width: 100%;
        box-sizing: border-box;
    }
    .about-photos figure:first-child { grid-row: auto; aspect-ratio: 3/4; }
    .masonry { column-count: 2; column-gap: 0.5rem; }
    .shot { margin-bottom: 0.5rem; border-radius: 12px; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(12, 11, 10, 0.96);
        flex-direction: column;
        padding: 1.4rem 6vw 2rem;
        border-bottom: 1px solid var(--line);
        gap: 1.1rem;
        align-items: flex-start;
    }
    .nav.open .nav-links { display: flex; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .masonry { column-count: 2; column-gap: 0.4rem; }
    .shot { margin-bottom: 0.4rem; }
    .hero { padding-top: 7rem; }
    .page-hero { padding: 7.2rem 5vw 1.2rem; }
    .page-hero h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
    .contact-stage {
        gap: 0.85rem;
        padding: 0 4vw 4rem;
        align-items: stretch;
    }
    .chat-shell,
    .agenda-shell {
        width: 100%;
        max-width: 100%;
    }
    .agenda-chevron { display: block; }
    .agenda-toggle { pointer-events: auto; }
    .agenda-shell:not(.is-open) .agenda-body { display: none; }
    .agenda-shell:not(.is-open) .agenda-shift {
        opacity: 0;
        pointer-events: none;
    }
    .agenda-shell.is-open .agenda-chevron { transform: rotate(180deg); }
    .chat-thread {
        height: min(62vh, 520px);
        min-height: 280px;
    }
    .cal-week, .cal-grid {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        gap: 0.28rem;
    }
    .cal-week span {
        font-size: 0.7rem;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .cal-day, .cal-grid button.cal-day {
        aspect-ratio: auto;
        height: 2.45rem;
        min-height: 2.45rem;
        font-size: 0.82rem;
        line-height: 1;
        padding: 0;
        overflow: visible;
    }
    .day-sheet .btn { width: 100%; }
}
