/* Theme: Origami - Day 15 (Letter O): Inspired by Japanese paper folding art, geometric precision, delicate craftsmanship, minimalist aesthetics, angular forms, paper textures, mountain and valley folds, crane symbolism, traditional washi paper, zen simplicity */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;600;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #3a3a3a;
    background: #faf8f4;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(210, 180, 140, 0.012) 35px,
            rgba(210, 180, 140, 0.012) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(188, 143, 143, 0.01) 35px,
            rgba(188, 143, 143, 0.01) 70px
        );
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 20%, rgba(210, 180, 140, 0.035) 0%, transparent 45%),
        radial-gradient(circle at 75% 80%, rgba(188, 143, 143, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: paperShift 45s ease-in-out infinite alternate;
}

@keyframes paperShift {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.85;
        transform: translateY(-10px);
    }
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.96);
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    box-shadow: 0 2px 12px rgba(58, 58, 58, 0.06);
    transition: all 0.35s ease;
}

#topnav.scrolled {
    background: rgba(250, 248, 244, 0.98);
    box-shadow: 0 4px 20px rgba(58, 58, 58, 0.1);
    border-bottom-color: rgba(210, 180, 140, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3a3a3a;
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    padding-left: 3rem;
}

.logo h1::before {
    content: '◢';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #d2b48c;
    animation: foldRotate 8s ease-in-out infinite;
}

@keyframes foldRotate {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) rotate(90deg);
    }
    50% {
        transform: translateY(-50%) rotate(180deg);
    }
    75% {
        transform: translateY(-50%) rotate(270deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    background: transparent;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(210, 180, 140, 0.12);
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    transform: scaleX(1);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #8b6f47;
}

.mobile-toggle {
    display: none;
    background: #d2b48c;
    border: none;
    color: #faf8f4;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.mobile-toggle:hover {
    background: #bc8f8f;
    transform: scale(1.05);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '◢◣◥◤';
    position: absolute;
    top: 12%;
    right: 6%;
    font-size: 16rem;
    color: rgba(210, 180, 140, 0.02);
    letter-spacing: -2rem;
    animation: geometricFloat 35s ease-in-out infinite;
}

#hero::after {
    content: '▲';
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 20rem;
    color: rgba(188, 143, 143, 0.015);
    animation: craneFlap 25s ease-in-out infinite;
}

@keyframes geometricFloat {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(45deg);
    }
}

@keyframes craneFlap {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(-5deg);
    }
    75% {
        transform: translateY(20px) rotate(5deg);
    }
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: paperUnfold 1s ease-out;
}

@keyframes paperUnfold {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-45deg);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

.hero-text h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.3rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 2rem;
    color: #3a3a3a;
    letter-spacing: -0.5px;
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    border: 2px solid transparent;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #d2b48c 0%, #bc8f8f 100%);
    color: #faf8f4;
    box-shadow: 0 6px 18px rgba(210, 180, 140, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #bc8f8f 0%, #a0826d 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 180, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b6f47;
    border: 2px solid #d2b48c;
    box-shadow: 0 4px 12px rgba(58, 58, 58, 0.08);
}

.btn-secondary:hover {
    background: #d2b48c;
    color: #faf8f4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 180, 140, 0.3);
}

.hero-image {
    animation: paperUnfold 1s ease-out 0.3s both;
}

.profile-card {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 
        0 1px 3px rgba(58, 58, 58, 0.08),
        0 10px 30px rgba(58, 58, 58, 0.1);
    transition: all 0.4s ease;
    position: relative;
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d2b48c 0%, #bc8f8f 50%, #d2b48c 100%);
}

.profile-card::after {
    content: '◢';
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 4.5rem;
    color: rgba(210, 180, 140, 0.04);
}

.profile-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 
        0 1px 3px rgba(58, 58, 58, 0.08),
        0 20px 50px rgba(58, 58, 58, 0.15);
}

.profile-card img {
    width: 100%;
    margin-bottom: 1.5rem;
}

.profile-details h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.profile-details p {
    color: #6b6b6b;
    margin-bottom: 1.8rem;
    line-height: 1.65;
    font-weight: 300;
}

.social-links a {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #8b6f47 0%, #a0826d 100%);
    color: #faf8f4;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    box-shadow: 0 6px 18px rgba(139, 111, 71, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #6b5437 0%, #8b6f47 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 111, 71, 0.4);
}

section {
    padding: 85px 0;
    position: relative;
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.section-header::before {
    content: '◆';
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(210, 180, 140, 0.25);
}

.section-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: #3a3a3a;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d2b48c;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

#experience {
    background: #ffffff;
}

.timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 95px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        0deg,
        #d2b48c,
        #d2b48c 8px,
        transparent 8px,
        transparent 16px
    );
}

.timeline-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.timeline-year {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b6f47;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 2rem;
    letter-spacing: 1px;
}

.timeline-year::after {
    content: '◆';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #d2b48c;
}

.timeline-content {
    background: #faf8f4;
    padding: 2rem;
    transition: all 0.35s ease;
    box-shadow: 0 2px 10px rgba(58, 58, 58, 0.06);
    position: relative;
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
    border-left: 3px solid transparent;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent #d2b48c transparent transparent;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(58, 58, 58, 0.12);
    border-left-color: #d2b48c;
}

.timeline-content:hover::before {
    opacity: 0.15;
}

.timeline-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.timeline-content h4 {
    color: #8b6f47;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.timeline-content p {
    color: #6b6b6b;
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}

.timeline-content a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.timeline-content a:hover {
    border-bottom-color: #8b6f47;
}

#ai {
    background: #faf8f4;
}

.ai-projects {
    display: grid;
    gap: 3rem;
}

.project-card {
    background: #ffffff;
    padding: 2.5rem;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(58, 58, 58, 0.08);
    clip-path: polygon(1.5% 0%, 100% 0%, 98.5% 100%, 0% 100%);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d2b48c 0%, #bc8f8f 50%, #d2b48c 100%);
}

.project-card::after {
    content: '◢';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: rgba(210, 180, 140, 0.03);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(58, 58, 58, 0.14);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.75rem;
    color: #3a3a3a;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.project-client {
    color: #8b6f47;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.project-card > p {
    color: #6b6b6b;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
}

.project-impact {
    background: rgba(210, 180, 140, 0.08);
    padding: 1.5rem;
    color: #3a3a3a;
    line-height: 1.75;
    clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 0% 100%);
    border-left: 3px solid #d2b48c;
}

.project-impact strong {
    color: #8b6f47;
    font-weight: 600;
}

#speaking {
    background: #ffffff;
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.year-section {
    background: #faf8f4;
    padding: 2.5rem;
    transition: all 0.35s ease;
    box-shadow: 0 3px 12px rgba(58, 58, 58, 0.06);
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d2b48c;
    opacity: 0.3;
    transition: opacity 0.35s ease;
}

.year-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 58, 58, 0.12);
}

.year-section:hover::before {
    opacity: 1;
}

.year-section h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    font-weight: 700;
    letter-spacing: 1px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #d2b48c 0%, #bc8f8f 100%);
}

.year-section.books::before {
    background: rgba(250, 248, 244, 0.3);
}

.year-section.books h3 {
    color: #faf8f4;
    border-bottom-color: rgba(250, 248, 244, 0.2);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1rem 0;
    color: #6b6b6b;
    border-bottom: 1px solid rgba(210, 180, 140, 0.15);
    line-height: 1.75;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
}

.achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: #d2b48c;
}

.year-section.books .achievements li {
    color: rgba(250, 248, 244, 0.95);
    border-bottom-color: rgba(250, 248, 244, 0.15);
}

.year-section.books .achievements li::before {
    color: #faf8f4;
}

.achievements li:last-child {
    border-bottom: none;
}

.achievements strong {
    color: #3a3a3a;
    font-weight: 600;
}

.year-section.books .achievements strong {
    color: #faf8f4;
}

#personal {
    background: #faf8f4;
}

#contact {
    background: rgba(210, 180, 140, 0.06);
}

.contact-card {
    background: #ffffff;
    padding: 4.5rem 3.5rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(58, 58, 58, 0.1);
    max-width: 900px;
    margin: 0 auto;
    clip-path: polygon(1.5% 0%, 100% 0%, 98.5% 100%, 0% 100%);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d2b48c 0%, #bc8f8f 50%, #d2b48c 100%);
}

.contact-card h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.contact-card > p {
    font-size: 1.05rem;
    color: #6b6b6b;
    line-height: 1.75;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.2rem;
    background: linear-gradient(135deg, #d2b48c 0%, #bc8f8f 100%);
    color: #faf8f4;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    box-shadow: 0 8px 20px rgba(210, 180, 140, 0.3);
}

.contact-link:hover {
    background: linear-gradient(135deg, #bc8f8f 0%, #a0826d 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(210, 180, 140, 0.4);
}

.contact-link .icon {
    font-size: 1.4rem;
}

#footer {
    background: #3a3a3a;
    padding: 2.8rem 0;
    text-align: center;
    color: rgba(250, 248, 244, 0.65);
    border-top: 1px solid rgba(210, 180, 140, 0.2);
}

#footer a {
    color: #d2b48c;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #faf8f4;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
    }

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2rem;
        height: 65px;
    }

    html {
        scroll-padding-top: 65px;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #faf8f4;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 12px 35px rgba(58, 58, 58, 0.12);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        clip-path: none;
        border-bottom: 1px solid rgba(210, 180, 140, 0.1);
    }

    .nav-menu li a::before {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
        padding-left: 3.5rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -38px;
        right: auto;
    }

    .contact-card {
        padding: 3.5rem 2rem;
    }
}

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

    .nav-container {
        padding: 0 1.5rem;
        height: 60px;
    }

    html {
        scroll-padding-top: 60px;
    }

    #hero {
        padding: 105px 0 75px;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 65px 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }

    .contact-card h2 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
        padding: 1rem 1.8rem;
    }
}