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

:root {
    --primary: #a89b89;
    --primary-dark: #8f8272;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --white: #ffffff;
    --off-white: #f7f6f4;
    --light-bg: #eeece8;
    --text-dark: #222222;
    --text-body: #555555;
    --text-light: #999999;
    --border-light: #e0dcd6;
    --font-heading: 'Krona One', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ========== HEADER ========== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}
.site-header.transparent {
    background: transparent; border-bottom-color: transparent;
}
.site-header.transparent .logo { color: var(--white); }
.site-header.transparent .main-nav a { color: rgba(255,255,255,0.7); }
.site-header.transparent .main-nav a:hover,
.site-header.transparent .main-nav a.active { color: var(--white); }
.site-header.transparent .mobile-menu-btn span { background: var(--white); }

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    border-bottom-color: var(--border-light);
}
.site-header.scrolled .logo { color: var(--text-dark); }
.site-header.scrolled .main-nav a { color: var(--text-body); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active { color: var(--text-dark); }
.site-header.scrolled .mobile-menu-btn span { background: var(--text-dark); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 90px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.logo-white { display: none; }
.site-header.transparent .logo-color { display: none; }
.site-header.transparent .logo-white { display: block; }
.site-header.scrolled .logo-color { display: block; }
.site-header.scrolled .logo-white { display: none; }
.site-footer .logo-img { height: 45px; }

.main-nav ul { display: flex; gap: 40px; }
.main-nav a {
    font-size: 13px; font-weight: 500; letter-spacing: 3px;
    color: var(--text-body);
    transition: color 0.3s;
    position: relative;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--primary);
    transition: width 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--text-dark); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-nav-logo { display: none; }
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px; background: var(--text-dark);
    margin: 5px 0; transition: 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO (dark with photo) ========== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    color: var(--white);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-bg.active { opacity: 1; }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content { position: relative; z-index: 2; }
.hero-subtitle {
    font-size: 14px; letter-spacing: 8px; color: var(--primary);
    margin-bottom: 24px; font-weight: 300;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 400; letter-spacing: 6px; line-height: 1.2;
    margin-bottom: 40px; color: var(--white);
}
.hero-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 13px; letter-spacing: 3px; font-weight: 400;
    transition: all 0.4s; cursor: pointer;
}
.hero-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}
.hero-btn svg { transition: transform 0.3s; }
.hero-btn:hover svg { transform: translateX(4px); }

.hero-social {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 20px; z-index: 2;
}
.hero-social a {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); transition: all 0.3s;
}
.hero-social a:hover { border-color: var(--white); color: var(--white); }

/* ========== SECTIONS ========== */
.section { padding: 120px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--off-white); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    font-size: 12px; letter-spacing: 5px; color: var(--primary);
    margin-bottom: 16px; display: block; font-weight: 500;
}
.section-title {
    font-family: var(--font-heading); font-size: clamp(24px, 3vw, 40px);
    font-weight: 400; letter-spacing: 2px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
    margin-top: 20px; color: var(--text-body); max-width: 600px;
    margin-left: auto; margin-right: auto; font-size: 15px; font-weight: 300;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ========== ABOUT ========== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.about-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-label { font-size: 12px; letter-spacing: 5px; color: var(--primary); margin-bottom: 16px; font-weight: 500; }
.about-title {
    font-family: var(--font-heading); font-size: 30px;
    font-weight: 400; letter-spacing: 1px; margin-bottom: 24px;
    color: var(--text-dark);
}
.about-text { color: var(--text-body); font-size: 15px; font-weight: 300; margin-bottom: 20px; line-height: 1.8; }
.about-btn {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--primary-dark); font-size: 13px; letter-spacing: 2px;
    margin-top: 16px; transition: gap 0.3s; font-weight: 500;
}
.about-btn:hover { gap: 16px; }

/* ========== STATS (dark with photo bg) ========== */
.stats-section {
    position: relative; padding: 100px 0; overflow: hidden;
}
.stats-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-attachment: fixed;
}
.stats-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 40px 20px; }
.stat-number {
    font-family: var(--font-heading); font-size: 40px; font-weight: 400;
    color: var(--white); margin-bottom: 8px;
}
.stat-label { font-size: 13px; letter-spacing: 3px; color: rgba(255,255,255,0.6); }

/* ========== PROJECTS ========== */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.project-card {
    position: relative; overflow: hidden; aspect-ratio: 1/1;
    cursor: pointer;
}
.project-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}
.project-card:hover .project-card-bg { transform: scale(1.05); }
.project-card-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.project-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px; z-index: 2; color: var(--white);
}
.project-card-label {
    font-size: 11px; letter-spacing: 3px; color: #fff;
    margin-bottom: 8px; font-weight: 600;
    background: rgba(0,0,0,0.4); display: inline-block; padding: 4px 10px;
    backdrop-filter: blur(4px);
}
.project-card-title {
    font-family: var(--font-heading); font-size: 24px;
    font-weight: 400; margin-bottom: 8px;
}
.project-card-desc { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 300; }
.project-card-arrow {
    position: absolute; top: 30px; right: 30px;
    width: 50px; height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); z-index: 2;
    opacity: 0; transform: translateX(-10px);
    transition: all 0.4s;
}
.project-card:hover .project-card-arrow { opacity: 1; transform: translateX(0); }

/* ========== PAGE HERO (dark with photo) ========== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative; overflow: hidden;
    color: var(--white);
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-label { font-size: 12px; letter-spacing: 5px; color: var(--primary); margin-bottom: 16px; display: block; }
.page-hero-title {
    font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px);
    font-weight: 400; letter-spacing: 3px;
}
.page-hero-desc {
    margin-top: 20px; color: rgba(255,255,255,0.7); max-width: 600px;
    margin-left: auto; margin-right: auto; font-size: 15px; font-weight: 300;
}

/* ========== VALUES (white bg) ========== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card {
    padding: 50px 40px; border: 1px solid var(--border-light);
    background: var(--white); transition: all 0.4s;
}
.value-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.value-icon {
    width: 56px; height: 56px; margin-bottom: 24px;
    border: 1px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.value-title {
    font-family: var(--font-heading); font-size: 16px;
    font-weight: 400; margin-bottom: 16px; color: var(--text-dark);
}
.value-text { color: var(--text-body); font-size: 14px; font-weight: 300; line-height: 1.8; }

/* ========== TIMELINE (light bg) ========== */
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: var(--border-light);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex; align-items: flex-start; margin-bottom: 60px;
    position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-year {
    flex: 0 0 50%; padding: 0 40px;
    font-family: var(--font-heading); font-size: 24px; color: var(--primary-dark); font-weight: 400;
}
.timeline-content { flex: 0 0 50%; padding: 0 40px; }
.timeline-content h4 {
    font-family: var(--font-heading); font-size: 16px;
    margin-bottom: 8px; font-weight: 400; color: var(--text-dark);
}
.timeline-content p { color: var(--text-body); font-size: 14px; font-weight: 300; }
.timeline-dot {
    position: absolute; left: 50%; top: 8px;
    width: 12px; height: 12px;
    border: 2px solid var(--primary);
    background: var(--off-white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* ========== MEDIA CARDS (white bg) ========== */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.media-card {
    background: var(--white); border: 1px solid var(--border-light);
    overflow: hidden; transition: all 0.4s;
}
.media-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.media-card-image {
    aspect-ratio: 16/10; overflow: hidden;
}
.media-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
}
.media-card:hover .media-card-image img { transform: scale(1.05); }
.media-card-body { padding: 30px; }
.media-card-date { font-size: 12px; letter-spacing: 2px; color: var(--primary-dark); margin-bottom: 12px; font-weight: 500; }
.media-card-title {
    font-family: var(--font-heading); font-size: 14px;
    font-weight: 400; margin-bottom: 12px; line-height: 1.6; color: var(--text-dark);
}
.media-card-desc { color: var(--text-body); font-size: 14px; font-weight: 300; }

/* ========== CONTACT (white bg) ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info-item { margin-bottom: 40px; }
.contact-info-label { font-size: 12px; letter-spacing: 3px; color: var(--primary-dark); margin-bottom: 8px; font-weight: 500; }
.contact-info-value { font-size: 18px; font-weight: 300; color: var(--text-dark); }
.contact-info-value a { color: var(--text-dark); transition: color 0.3s; }
.contact-info-value a:hover { color: var(--primary-dark); }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; letter-spacing: 2px; color: var(--text-light); font-weight: 500; }
.form-group input, .form-group textarea {
    background: var(--off-white); border: 1px solid var(--border-light);
    color: var(--text-dark); padding: 16px 20px;
    font-family: var(--font-body); font-size: 14px;
    transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 150px; resize: vertical; }

.form-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 18px 48px; background: var(--dark); color: var(--white);
    border: none; cursor: pointer;
    font-size: 13px; letter-spacing: 3px; font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s; align-self: flex-start;
}
.form-btn:hover { background: var(--dark-3); }

.map-section {
    height: 450px; background: var(--off-white);
    position: relative; overflow: hidden;
}
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ========== FADE IN ANIMATION ========== */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== FOOTER (dark) ========== */
.site-footer {
    background: var(--dark); color: var(--white);
    border-top: none;
    padding: 80px 0 0;
}
.site-footer .logo { color: var(--white); }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-slogan { color: var(--primary); font-size: 14px; font-weight: 500; letter-spacing: 2px; margin-top: 16px; font-style: italic; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; margin-top: 12px; max-width: 300px; }
.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 12px; letter-spacing: 3px; color: var(--primary);
    margin-bottom: 24px; font-weight: 400;
}
.footer-links li, .footer-contact li { margin-bottom: 12px; }
.footer-links a, .footer-contact a, .footer-contact li {
    color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all 0.3s;
}
.social-icons a:hover { border-color: var(--primary); color: var(--primary); }

.footer-bottom {
    padding: 30px 0; text-align: center;
    color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 300;
}

/* ========== PROJECT DETAIL ========== */
.project-detail-hero {
    padding: 160px 0 80px;
    position: relative; overflow: hidden;
    color: var(--white);
}
.project-detail-hero .project-detail-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.project-detail-hero .project-detail-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
}
.project-detail-content { position: relative; z-index: 2; }
.project-detail-content .page-hero-desc { margin-left: 0; margin-right: 0; text-align: left; }
.project-meta {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 40px;
}
.project-meta-item {
    background: rgba(255,255,255,0.08); padding: 14px 18px; border-left: 2px solid var(--primary);
}
.project-meta-label { font-size: 11px; letter-spacing: 3px; color: #fff; margin-bottom: 6px; font-weight: 600; }
.project-meta-value { font-size: 15px; font-weight: 300; }

.project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-gallery-item {
    aspect-ratio: 16/10; overflow: hidden; position: relative; cursor: pointer;
}
.project-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
}
.project-gallery-item:hover img { transform: scale(1.05); }
.gallery-zoom-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(0,0,0,0.5); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.project-gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; pointer-events: auto; }
body.lightbox-open .site-header { display: none; }
.lightbox-content {
    max-width: 90vw; max-height: 85vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-content img {
    max-width: 90vw; max-height: 85vh; object-fit: contain;
    border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: #fff;
    font-size: 40px; cursor: pointer; line-height: 1;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 0.7; }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; cursor: pointer;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 14px; letter-spacing: 2px;
}

.project-desc-text { color: var(--text-body); font-size: 15px; font-weight: 300; line-height: 1.9; max-width: 800px; }
.project-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.project-feature {
    display: flex; align-items: center; gap: 12px;
    padding: 20px; border: 1px solid var(--border-light);
}
.project-feature-icon { color: var(--primary-dark); flex-shrink: 0; }
.project-feature-text { font-size: 14px; font-weight: 300; color: var(--text-body); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .header-inner { height: 70px; }
    .main-nav {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #ffffff;
        z-index: 1001;
        display: flex; flex-direction: column; align-items: center;
        padding-top: 100px; gap: 0;
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .mobile-nav-logo { display: block; margin-bottom: 50px; }
    .mobile-nav-logo img { height: 45px; width: auto; }
    .mobile-menu-btn { position: relative; z-index: 1002; }
    .main-nav ul { flex-direction: column; gap: 30px; text-align: center; }
    .main-nav a { font-size: 16px; color: var(--text-dark) !important; }
    .mobile-menu-btn { display: block; }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .hero { min-height: 600px; }
    .projects-grid { grid-template-columns: 1fr !important; }
    .values-grid { grid-template-columns: 1fr !important; }
    .media-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 32px; }
    .stats-section { background-attachment: scroll; }
    .stats-bg { background-attachment: scroll; }

    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; text-align: left; }
    .timeline-year { flex: none; padding: 0 0 8px 50px; font-size: 22px; }
    .timeline-content { flex: none; padding: 0 0 0 50px; }
    .timeline-dot { left: 20px; }

    .project-gallery { grid-template-columns: 1fr; }
    .project-features { grid-template-columns: 1fr; }
    .project-meta {
        display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .project-meta-item { flex: none; }
}
