
:root {
    --primary-brown: #8B5A3C;
    --primary-orange: #D4825C;
    --light-peach: #F4E4D7;
    --cream: #FBF7F4;
    --warm-beige: #E8D5C4;
    --text-dark: #3D2817;
    --text-medium: #6B4E3D;
    --accent-terracotta: #C97B63;
    --soft-coral: #F0B9A5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--soft-coral), var(--primary-orange));
    opacity: 0.2;
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: var(--warm-beige);
    opacity: 0.3;
    bottom: 20%;
    right: 8%;
    animation: float 8s ease-in-out infinite;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-terracotta));
    opacity: 0.15;
    top: 10%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
}

.circle-4 {
    width: 90px;
    height: 90px;
    background: var(--soft-coral);
    opacity: 0.25;
    bottom: 15%;
    left: 5%;
    animation: float 9s ease-in-out infinite;
}

.decorative-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, var(--primary-orange) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
}

.dots-1 {
    top: 25%;
    right: 10%;
}

.dots-2 {
    bottom: 10%;
    right: 5%;
}

.dots-3 {
    bottom: 10%;
    left: 8%;
}

.dots-4 {
    top: 15%;
    right: 8%;
}

.section-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-terracotta));
    border-radius: 2px;
    opacity: 0.7;
}

.accent-2 {
    top: 0;
}

.decorative-wave {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    background: repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            var(--primary-orange) 20px,
            var(--primary-orange) 22px
    );
    transform: rotate(-2deg);
}

.decorative-curve {
    position: absolute;
    top: 50%;
    right: 0;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    transform: translate(50%, -50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(251, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(139, 90, 60, 0.1);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(139, 90, 60, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-brown);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-brown);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--cream);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border-bottom: 1px solid var(--warm-beige);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary-orange);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-peach) 100%);
    width: 100%;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    color: var(--primary-brown);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 550px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 130, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 90, 60, 0.4);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--primary-orange);
    border-radius: 12px;
    z-index: -1;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--warm-beige), var(--soft-coral));
    border-radius: 12px;
    z-index: -2;
    opacity: 0.4;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 90, 60, 0.25);
    position: relative;
    z-index: 1;
    border: 4px solid white;
}

.hero-decoration {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.work-section {
    padding: 8rem 0;
    background: var(--cream);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-brown);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.project-card {
    cursor: pointer;
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(139, 90, 60, 0.08);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-orange), var(--accent-terracotta));
    transition: height 0.4s ease;
    z-index: 2;
}

.project-card:hover::before {
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 90, 60, 0.15);
}

.project-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-brown));
    position: relative;
    overflow: hidden;
}

.project-image-2 {
    background: linear-gradient(135deg, var(--soft-coral), var(--accent-terracotta));
}

.project-image-3 {
    background: linear-gradient(135deg, var(--warm-beige), var(--primary-orange));
}

.project-image-4 {
    background: linear-gradient(135deg, var(--accent-terracotta), var(--primary-brown));
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 40, 23, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.project-info {
    padding: 1.5rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-description {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.about-section {
    padding: 8rem 0;
    background: var(--light-peach);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--primary-orange);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.about-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 90, 60, 0.2);
    display: block;
}

.about-decoration {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-brown) 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 90, 60, 0.2);
}

.contact-section {
    padding: 8rem 0;
    background: var(--cream);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(139, 90, 60, 0.1);
    margin-bottom: 3rem;
    width: 100%;
    border-top: 4px solid var(--primary-orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--primary-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--warm-beige);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--cream);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.file-input {
    padding: 0.8rem 1rem !important;
    cursor: pointer;
}

.file-input::file-selector-button {
    padding: 0.6rem 1.2rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 1rem;
    transition: var(--transition);
}

.file-input::file-selector-button:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 130, 92, 0.3);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 90, 60, 0.4);
}

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

.contact-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-peach);
    border-radius: 8px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.contact-link:hover::before {
    opacity: 1;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-orange);
}

.contact-link:hover::after {
    width: 80%;
}

.footer {
    padding: 2rem 0;
    background: var(--primary-brown);
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-terracotta), var(--primary-orange));
}

.footer p {
    color: var(--light-peach);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }

    .hero-image {
        max-width: 400px;
    }

    .hero-image-container::before {
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
    }

    .hero-image-container::after {
        top: 12px;
        left: 12px;
        right: -12px;
        bottom: -12px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .project-image {
        height: 280px;
    }

    .decorative-circle {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: 0;
        padding-top: 1.5rem;
    }

    .hero-image-container {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        height: 450px;
        object-fit: cover;
        object-position: center 20%;
    }

    .hero-decoration {
        width: 400px;
        height: 400px;
        right: -15%;
        opacity: 0.1;
    }

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

    .about-content {
        order: 0;
    }

    .about-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        object-position: center 20%;
    }

    .about-decoration {
        height: 400px;
    }

    .decorative-curve {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-grid {
        gap: 1.5rem;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-image-container {
        max-width: 320px;
    }

    .hero-image {
        height: 380px;
        object-position: center 25%;
    }

    .hero-image-container::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
        border-width: 2px;
    }

    .hero-image-container::after {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    .hero-decoration {
        width: 350px;
        height: 350px;
        right: -25%;
    }

    .work-section,
    .about-section,
    .contact-section {
        padding: 5rem 0;
    }

    .about-visual {
        max-width: 320px;
    }

    .about-image {
        height: 380px;
        object-position: center 25%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .project-image {
        height: 240px;
    }

    .decorative-dots,
    .decorative-wave {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-image-container {
        max-width: 280px;
    }

    .hero-image {
        height: 330px;
        border-width: 3px;
        object-position: center 30%;
    }

    .hero-image-container::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
        border-width: 2px;
    }

    .hero-image-container::after {
        top: 8px;
        left: 8px;
        right: -8px;
        bottom: -8px;
    }

    .hero-decoration {
        width: 300px;
        height: 300px;
        right: -35%;
    }

    .about-visual {
        max-width: 280px;
    }

    .about-image {
        height: 330px;
        object-position: center 30%;
    }

    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .about-decoration {
        height: 300px;
    }

    .projects-grid {
        gap: 1.2rem;
    }

    .project-image {
        height: 200px;
    }

    .logo {
        font-size: 1.3rem;
    }

}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 15px;
    box-sizing: border-box;
    transform: scale(1.6);
}



.project-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
    border-top: 5px solid var(--primary-orange);
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.popup-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.popup-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-close {
    padding: 0.8rem 2.5rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
}
