/* --- LUXURY DESIGN SYSTEM DESIGN DIRECTIVES --- */
:root {
    /* Brand Accent Focus (Used with extreme restraint) */
    --guava: #7EC04B;          /* Primary Accent */
    
    /* Editorial Design System Color Palette */
    --obsidian: #11160D;       /* Dark Neutral (Typography & Contrast Elements) */
    --sage-gray: #70796B;      /* Muted Neutral (Secondary Text & Clean Labels) */
    --alabaster-silk: #F9FBF7; /* Background (Organic, Editorial Canvas) */
    --linen-mist: #E4EAE0;     /* Dividers (Ultra-thin Structural Borders) */
    --white: #FFFFFF;
    
    /* Typography System */
    --font-display: 'Playfair Display', serif; /* Elegant, premium headers */
    --font-sans: 'Inter', sans-serif;         /* Modern geometric sans-serif */
    
    /* Layout Variables */
    --ws-macro: 8rem;                          /* Expansive luxury desktop padding */
    --radius-premium: 4px;                     /* Flat, sharp/slightly rounded corners */
}

/* --- SYSTEM RESET & CORE ENGINE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--alabaster-silk);
    color: var(--obsidian);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- REUSABLE EDITORIAL COMPONENTS --- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--obsidian);
}

/* High-Contrast Flat Button Architecture */
.luxury-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid var(--obsidian);
    border-radius: var(--radius-premium);
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

/* Primary Button: Pops with Guava only when active or hovered */
.luxury-btn.primary {
    background: var(--obsidian);
    color: var(--white);
    border-color: var(--obsidian);
}

.luxury-btn.primary:hover {
    background: var(--guava);
    color: var(--obsidian);
    border-color: var(--guava);
}

/* Secondary Button: Clean outline structure */
.luxury-btn.secondary {
    background: transparent;
    color: var(--obsidian);
    border-color: var(--obsidian);
}

.luxury-btn.secondary:hover {
    background: var(--obsidian);
    color: var(--white);
}

/* --- NAVIGATION HEADER --- */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 1000;
    background: rgba(249, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--linen-mist);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--obsidian);
}

.nav-right-zone {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--obsidian);
    margin-left: 3rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--guava);
}

.nav-instagram-icon {
    margin-left: 3rem;
    display: flex;
    align-items: center;
}

.nav-instagram-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--obsidian);
    transition: fill 0.3s ease;
}

.nav-instagram-icon svg:hover {
    fill: var(--guava);
}

/* Fallback hidden setting for desktop viewports */
.mobile-menu-burger {
    display: none;
}

/* --- GLOBAL FOOTER --- */
footer {
    background: var(--obsidian);
    color: var(--white);
    padding: var(--ws-macro) 4rem 3rem 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    border-bottom: 1px solid rgba(228, 234, 224, 0.1);
    padding-bottom: 4rem;
}

.footer-brand h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--white); letter-spacing: 0.1em; }
.footer-brand p { color: var(--sage-gray); font-size: 0.9rem; }
.footer-col h4 { color: var(--guava); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--guava); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.05em; }

/* ==========================================
   PAGE-SPECIFIC ARCHITECTURAL STYLES
   ========================================== */

/* --- HOME HERO LAYOUT --- */
.hero-viewport {
    height: 100vh;
    width: 100vw;
    background: var(--alabaster-silk); 
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    border-bottom: 1px solid var(--linen-mist);
}
.hero-content {
    max-width: 700px;
    z-index: 10;
}
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 2.5rem; }

/* --- INTRO SECTION WITH WHITESPACE --- */
.luxury-intro {
    padding: var(--ws-macro) 4rem;
    background: var(--white);
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--linen-mist);
}
.intro-container { max-width: 850px; text-align: center; }
.intro-container span { color: var(--sage-gray); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.75rem; font-weight: 600; display: block; margin-bottom: 1.5rem; }
.intro-container h2 { font-size: 2.6rem; line-height: 1.4; color: var(--obsidian); }

/* --- ASYMMETRIC FEATURED GALLERY GRID --- */
.featured-gallery { padding: var(--ws-macro) 4rem; background: var(--alabaster-silk); border-bottom: 1px solid var(--linen-mist); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}
.gallery-item { background: var(--white); min-height: 500px; position: relative; overflow: hidden; border: 1px solid var(--linen-mist); border-radius: var(--radius-premium); }
.item-large { grid-column: span 8; min-height: 650px; }
.item-tall { grid-column: span 4; }

/* --- SPLIT PREVIEW SERVICES --- */
.services-preview { display: flex; height: 80vh; border-bottom: 1px solid var(--linen-mist); }
.preview-side { flex: 1; padding: 6rem; display: flex; flex-direction: column; justify-content: center; }
.preview-side.dark { background: var(--obsidian); color: var(--white); }
.preview-side.dark h2 { color: var(--white); margin-bottom: 1.5rem; font-size: 3rem; }
.preview-side.image-placeholder { background: var(--alabaster-silk); border-left: 1px solid var(--linen-mist); }

/* --- MONOLITHIC CTA --- */
.monolithic-cta {
    padding: var(--ws-macro) 4rem;
    text-align: center;
    background: var(--white);
}
.monolithic-cta h2 { font-size: 3.5rem; margin-bottom: 2.5rem; color: var(--obsidian); }

/* --- QUOTES PAGE CUSTOM UI --- */
.quotes-hero { padding: 12rem 4rem 4rem 4rem; background: var(--alabaster-silk); border-bottom: 1px solid var(--linen-mist); }
.quotes-hero h1 { font-size: 4rem; color: var(--obsidian); }
.quotes-container { padding: var(--ws-macro) 4rem; max-width: 1000px; margin: 0 auto; }
.quote-step-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sage-gray); margin-bottom: 2.5rem; border-bottom: 1px solid var(--linen-mist); padding-bottom: 0.75rem; font-weight: 600; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.checkbox-card { border: 1px solid var(--linen-mist); padding: 1.75rem; display: flex; align-items: center; gap: 1.25rem; cursor: pointer; transition: all 0.3s; background: var(--white); border-radius: var(--radius-premium); }
.checkbox-card:hover { border-color: var(--guava); background: var(--alabaster-silk); }
.checkbox-card input { accent-color: var(--guava); width: 18px; height: 18px; }
.checkbox-card label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer; color: var(--obsidian); font-weight: 500; }

/* ==========================================
   SERVICES CATALOG ARCHITECTURE 
   ========================================== */
.services-hero {
    padding: 14rem 4rem 4rem 4rem;
    background: var(--alabaster-silk);
    border-bottom: 1px solid var(--linen-mist);
}

.services-hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Master Layout Framework Workspace Container */
.services-split-wrapper {
    display: flex;
    max-width: 100vw;
    background: var(--white);
    border-bottom: 1px solid var(--linen-mist);
}

/* Left Sticky Sidebar Component */
.services-sidebar-menu {
    width: 320px;
    background: var(--alabaster-silk);
    border-right: 1px solid var(--linen-mist);
    padding: 5rem 3rem;
}

.sidebar-sticky-container {
    position: sticky;
    top: 10rem; /* Locks below your header navigation bar cleanly while scrolling */
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.sidebar-menu-group h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--sage-gray);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.sidebar-menu-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-menu-group ul li {
    font-size: 0.95rem;
    color: var(--obsidian);
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Right Content Grid Stream */
.services-content-feed {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* Fitted Content Cards Container Engine */
.service-feed-card {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--linen-mist);
    border-radius: var(--radius-premium);
    padding: 3rem;
}

.service-meta {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.service-meta span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sage-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-meta h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.service-meta p {
    color: var(--sage-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--obsidian);
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--alabaster-silk);
    border: 1px solid var(--linen-mist);
    border-radius: var(--radius-premium);
}

.service-visual-placeholder {
    flex: 1;
    min-height: 380px;
    background: var(--alabaster-silk);
    border: 1px solid var(--linen-mist);
    border-radius: var(--radius-premium);
}

/* --- SUB-PAGE STRUCTURAL ARCHITECTURE --- */
/* About Section */
.about-hero, .gallery-hero, .reviews-hero { 
    padding: 12rem 4rem 4rem 4rem; 
    background: var(--alabaster-silk); 
    border-bottom: 1px solid var(--linen-mist); 
}
.about-hero h1, .gallery-hero h1, .reviews-hero h1 { 
    font-size: 4rem; 
    color: var(--obsidian); 
}
.story-block { 
    padding: var(--ws-macro) 4rem; 
    display: flex; 
    gap: 6rem; 
    align-items: center; 
    background: var(--white);
}
.story-content { flex: 1; }
.story-visual { 
    flex: 1; 
    height: 550px; 
    background: var(--alabaster-silk); 
    border: 1px solid var(--linen-mist); 
    border-radius: var(--radius-premium); 
}

/* Gallery Panels */
.dynamic-portfolio-grid { 
    padding: 4rem; 
    display: grid; 
    grid-template-columns: repeat(12, 1fr); 
    gap: 2.5rem; 
    background: var(--white);
}
.grid-w-6 { grid-column: span 6; height: 450px; background: var(--alabaster-silk); border: 1px solid var(--linen-mist); border-radius: var(--radius-premium); }
.grid-w-12 { grid-column: span 12; height: 650px; background: var(--alabaster-silk); border: 1px solid var(--linen-mist); border-radius: var(--radius-premium); }

/* Reviews Deck */
.case-studies-vault { 
    padding: var(--ws-macro) 4rem; 
    display: flex; 
    flex-direction: column; 
    gap: 4rem; 
    background: var(--white);
}
.review-card-premium { 
    background: var(--alabaster-silk); 
    padding: 4rem; 
    border-left: 3px solid var(--guava); 
    border-radius: var(--radius-premium);
}
.review-quote { 
    font-family: var(--font-display); 
    font-size: 1.8rem; 
    line-height: 1.4; 
    font-style: italic; 
    margin-bottom: 2rem; 
    color: var(--obsidian);
}
.review-author { 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    font-size: 0.8rem; 
    color: var(--sage-gray); 
    font-weight: 600; 
}

/* ==========================================
   GLOBAL RESPONSIVE ARCHITECTURE & FIXED DROPDOWN ENGINE
   ========================================== */

   @media (max-width: 1024px) {
    :root {
        --ws-macro: 5rem;
    }
    html {
        font-size: 15px;
    }
    .nav-header {
        padding: 1.5rem 2.5rem;
    }
    
    /* Global Padding Compression */
    .hero-viewport, .luxury-intro, .featured-gallery, .quotes-hero, footer, 
    .about-hero, .gallery-hero, .reviews-hero, .services-hero, .quotes-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    /* 1. TURN ON THE HAMBURGER BUTTON ICON */
    .mobile-menu-burger {
        display: flex !important; /* Overrides the generic top-level desktop hidden state */
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 2.5rem;
        z-index: 2000;
        outline: none;
    }

    .mobile-menu-burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--obsidian);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: left center;
    }

    /* Transform lines smoothly into an 'X' close indicator when active */
    .mobile-menu-burger.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(2px, -1px);
    }
    .mobile-menu-burger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-burger.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 1px);
    }

    /* 2. OVERHAUL NAV-LINKS INTO A SMOOTH DROPDOWN OVERLAY */
    .nav-links {
        display: flex !important; 
        position: fixed;
        top: 0;
        right: -100%; /* Sits completely off-screen until toggled */
        width: 320px;
        height: 100vh;
        background: var(--alabaster-silk);
        border-left: 1px solid var(--linen-mist);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 8rem 3rem 4rem 3rem;
        gap: 2rem;
        z-index: 1500;
        box-shadow: -10px 0 30px rgba(17, 22, 13, 0.03);
        
        /* Interactive Animation States */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0.3s ease;
    }

    /* When class is appended by your header.js click script, reveal menu */
    .nav-links.is-open {
        right: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Format vertical list links to stack cleanly */
    .nav-links a {
        margin-left: 0 !important; /* Strips desktop horizontal spacing out completely */
        font-size: 1.1rem !important; 
        letter-spacing: 0.1em;
        width: 100%;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(112, 121, 107, 0.15);
        text-align: left;
    }

    /* Services Layout Content Splits */
    .services-split-wrapper { flex-direction: column; }
    .services-sidebar-menu {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--linen-mist);
        padding: 4rem 2.5rem;
    }
    .sidebar-sticky-container {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .services-content-feed { padding: 4rem 2.5rem; }
    .service-feed-card {
        flex-direction: column-reverse;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    .story-block { flex-direction: column; gap: 3rem; }
    .story-visual { width: 100%; height: 400px; }
    .hero-content h1 { font-size: 3.5rem; }
    .gallery-grid { gap: 1.5rem; }
    .item-large { grid-column: span 7; min-height: 500px; }
    .item-tall { grid-column: span 5; }
    .services-preview { height: auto; flex-direction: column; }
    .preview-side { padding: 4rem 2.5rem; }
    .preview-side.image-placeholder {
        min-height: 400px;
        border-left: none;
        border-top: 1px solid var(--linen-mist);
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* --- SMARTPHONE BREAKPOINT (Max-Width: 768px) --- */
@media (max-width: 768px) {
    :root {
        --ws-macro: 4rem;
    }
    .nav-header { padding: 1.25rem 1.5rem; }
    .nav-instagram-icon { margin-left: auto; }
    .mobile-menu-burger { margin-left: 1.5rem; }

    /* Expand drop panel to full view width on phone screens */
    .nav-links {
        width: 100vw;
    }
    
    .hero-viewport, .luxury-intro, .featured-gallery, .quotes-hero, .quotes-container, footer, 
    .services-hero, .services-sidebar-menu, .services-content-feed,
    .story-block, .dynamic-portfolio-grid, .case-studies-vault {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .sidebar-sticky-container { flex-direction: column; gap: 2.5rem; }
    .services-content-feed { padding-top: 3rem; padding-bottom: 3rem; gap: 4rem; }
    .service-feed-card { padding: 1.5rem; gap: 2rem; }
    .service-meta h2 { font-size: 1.8rem; }
    .service-visual-placeholder { min-height: 280px; }
    .hero-content h1 { font-size: 2.8rem; }
    .luxury-intro h2 { font-size: 1.8rem; }
    .about-hero h1, .gallery-hero h1, .reviews-hero h1, .services-hero h1 { font-size: 2.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .item-large, .item-tall, .grid-w-6, .grid-w-12 { grid-column: span 12; min-height: 380px; }
    .monolithic-cta h2 { font-size: 2.4rem; }
    .checkbox-grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .review-card-premium { padding: 2.5rem 1.5rem; }
    .review-quote { font-size: 1.35rem; }
}

/* --- SMARTPHONE BREAKPOINT (Max-Width: 768px) --- */
@media (max-width: 768px) {
    :root {
        --ws-macro: 4rem;
    }
    
    .nav-header {
        padding: 1.25rem 1.5rem;
    }
    
    .nav-links {
        display: none; /* Desktop menu safely retracts when .is-open is absent */
    }
    
    .nav-links.is-open {
        display: flex; /* Restores flex execution context for structural drop panels */
        width: 100vw;  /* Occupy full viewport width on smartphone aspect thresholds */
        border-left: none;
    }
    
    .nav-instagram-icon {
        margin-left: auto; /* Aligns brand icon properly on mobile screen boundaries */
    }
    
    .mobile-menu-burger {
        margin-left: 1.5rem;
    }
    
    /* Maximum Padding Compression */
    .hero-viewport, .luxury-intro, .featured-gallery, .quotes-hero, .quotes-container, footer, 
    .services-hero, .services-sidebar-menu, .services-content-feed,
    .story-block, .dynamic-portfolio-grid, .case-studies-vault {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* 1. Services Sidebar Minimal Stack */
    .sidebar-sticky-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .services-content-feed {
        padding-top: 3rem;
        padding-bottom: 3rem;
        gap: 4rem;
    }
    
    .service-feed-card {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .service-meta h2 {
        font-size: 1.8rem;
    }
    
    .service-visual-placeholder {
        min-height: 280px;
    }
    
    /* 2. Global Section Compressions */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .luxury-intro h2 {
        font-size: 1.8rem;
    }
    
    .about-hero h1, .gallery-hero h1, .reviews-hero h1, .services-hero h1 {
        font-size: 2.8rem;
    }
    
    /* Force asymmetry into clean full-width vertical column cards */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .item-large, .item-tall, .grid-w-6, .grid-w-12 {
        grid-column: span 12;
        min-height: 380px;
    }
    
    .monolithic-cta h2 {
        font-size: 2.4rem;
    }
    
    /* Contact Form Optimization */
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .review-card-premium {
        padding: 2.5rem 1.5rem;
    }
    
    .review-quote {
        font-size: 1.35rem;
    }
}

/* ==========================================
   DROPDOWN VISIBILITY REPAIR PATCH
   ========================================== */
   @media (max-width: 1024px) {
    /* Forces the panel to hidden by default but preserves its structural visibility setup */
    .nav-links {
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Snaps everything back to completely active and clickable when the burger button is pressed */
    .nav-links.is-open {
        right: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 768px) {
    /* Wipes out the conflicting display:none rule that was breaking the menu container structure */
    .nav-links {
        display: flex !important; 
    }
}