:root {
    --accent: #e07a5f;
    --muted: #7a7a7a;
    --bg: #fafafa;
    --card: #ffffff;
}

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

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: #222;
    line-height: 1.5
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e8235b91, #91d6ed8d);
    backdrop-filter: blur(4px);
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0
}

.brand {
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none !important;
    color: inherit;
    vertical-align: middle;
}

.brand .logo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand .brand-text {
    display: inline-block;
    margin: 0 !important;
    line-height: 1;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none !important;
    color: inherit;
    vertical-align: middle;
    white-space: nowrap;
}


@media (max-width: 600px) {
    .brand {
        flex-direction: column;
        gap: .35rem;
        text-align: center;
    }

    .brand .logo {
        width: 56px;
        height: 56px;
    }
}


.nav {
    display: flex;
    gap: 1rem;
    align-items: center
}

.nav a {
    color: #222;
    padding: .4rem .6rem;
    border-radius: 6px;
    font-weight: 600
}

.nav a.cta {
    background: var(--accent);
    color: #fff
}

#nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 1.2rem
}

.center-text {
    position: relative;
    text-align: center;
    font-weight: bolder;
}

#welcome .intro {
    text-align: center;
    margin-bottom: 0.6rem;
    color: #333;
}

.style-line {
    text-align: center;
    font-weight: 700;
    margin-top: 0.4rem;
}

.adapt {
    text-align: center;
    color: #e07a5f;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.lead {
    text-align: center;
    max-width: 800px;
    margin: 0.8rem auto;
    color: #444;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0.6rem auto;
    max-width: 420px;
    text-align: left;
}

.benefits li {
    margin: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
}

.benefits li::before {
    content: "•";
    color: var(--accent, #e07a5f);
    position: absolute;
    left: 0;
    top: 0;
}

.cta {
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
}

/* HERO */
.hero {
    position: relative;
    padding: 12rem 0 6rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e8235b91, #91d6ed8d)
}

.hero-inner h1 {
    font-size: 2.4rem;
    margin-bottom: .4rem
}

.lead {
    font-size: 1.1rem;
    margin-bottom: .6rem;
    color: #333
}

.mini {
    color: var(--muted);
    margin-bottom: 1rem
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 999px;
    font-weight: 700
}

.btn-outline {
    display: inline-block;
    padding: .5rem .9rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 8px
}

/* sections */
.section {
    padding: 3.5rem 0
}

.section.small {
    padding: 1.2rem 0
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem
}

.info-list {
    margin-top: .8rem
}

.info-list li {
    margin: .35rem 0;
    color: var(--muted)
}

.muted {
    color: var(--muted);
    font-size: .95rem;
    text-align: center
}

/* timeline/news */
.news {
    background: var(--card);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 1rem
}

.news time {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: .5rem
}

.date {
    color: var(--accent);
    font-weight: 700
}

/* gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px
}

.gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    display: block
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 6px
}

.hidden {
    display: none
}

#lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 2rem
}

/* responsive nav */
@media(max-width:800px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        position: absolute;
        right: 1rem;
        top: 60px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
    }

    #nav-toggle {
        display: block
    }

    .nav.open {
        display: flex
    }
}