html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #f5f4ed;
    color: #141413;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    color: #141413;
    text-decoration: none;
    transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

a:hover {
    color: #c96442
}

.serif {
    font-family: 'Source Serif 4', serif;
    font-weight: 500;
    line-height: 1.2
}

.wrap-c {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.overline {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: #c96442
}

.overline-lt {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: #b8b6ac
}

.sec {
    padding: 80px 0
}

.sec-dark {
    background: #141413;
    color: #faf9f5
}

.totop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: #faf9f5;
    border: 1px solid #d1cfc5;
    color: #141413;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.totop:hover {
    background: #f0eee6;
    color: #c96442
}

.sec-ivory {
    background: #faf9f5;
    border-top: 1px solid #f0eee6;
    border-bottom: 1px solid #f0eee6
}

.h-sec {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 12px
}

.lede {
    font-size: 18px;
    color: #5e5d59;
    max-width: 720px
}

.sec-dark .lede {
    color: #c2c0b6
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c96442;
    color: #faf9f5;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.btn:hover {
    background: #b5583a;
    color: #faf9f5
}

.btn:active {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 27px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #d1cfc5;
    color: #141413;
    background: transparent;
    cursor: pointer;
    transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #141413
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 244, 237, 0.96);
    border-bottom: 1px solid #e8e6dc;
    height: 64px
}

.navlink {
    font-size: 14px;
    font-weight: 500;
    color: #5e5d59
}

.hero-img {
    width: 100%;
    /*height: clamp(860px, 58vh, 640px);*/
    object-fit: cover;
    display: block;
    border-radius: 16px
}

@media (max-width: 720px) {
    .hero-img {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain
    }
}

.banner {
    background: #141413;
    color: #faf9f5;
    text-align: center;
    padding: 10px 24px;
    font-size: 14px
}

.banner a {
    color: #e8ad8c;
    font-weight: 500
}

.banner a:hover {
    color: #c96442
}

.btn-hero {
    min-width: 140px;
    justify-content: center;
    text-align: center;
}

.card {
    background: #faf9f5;
    border: 1px solid #f0eee6;
    border-radius: 8px;
    padding: 28px
}

.figure-num {
    font-family: 'Source Serif 4', serif;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.1;
    margin: 8px 0 10px
}

.figure-cap {
    font-size: 14px;
    color: #5e5d59
}

.fig-card {
    display: flex;
    flex-direction: column
}

.fig-lbl {
    min-height: 45px
}

.fig-num-row {
    margin: 8px 0 10px
}

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

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

.cols-3 {
    grid-template-columns:repeat(3, 1fr)
}

@media (max-width: 900px) {
    .cols-3 {
        grid-template-columns:repeat(auto-fit, minmax(260px, 1fr))
    }
}

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

.gal-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #e8e6dc
}

.gal-cap {
    font-size: 14px;
    color: #5e5d59;
    margin-top: 8px
}

.sec-dark .gal-cap {
    color: #a8a69c
}

.feat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #faf9f5;
    border: 1px solid #f0eee6;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    min-height: 114px;
    box-sizing: border-box
}

.feat svg {
    flex-shrink: 0;
    color: #c96442
}

.floor {
    padding: 28px 0;
    border-top: 1px solid #e8e6dc
}

.floor-t {
    font-size: 22px;
    margin: 0 0 8px
}

.floor-p {
    margin: 0;
    color: #5e5d59;
    max-width: 820px
}

.plan-img {
    width: 100%;
    display: block;
    border-radius: 8px;
    border: 1px solid #f0eee6;
    background: #fff
}

.chart-img {
    width: 100%;
    display: block;
    border-radius: 8px;
    border: 1px solid #f0eee6;
    background: #fff
}

.pro {
    border-top: 1px solid #30302e;
    padding: 20px 0
}

.pro-role {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: #a8a69c;
    margin: 0 0 8px
}

.pro-name {
    font-size: 18px;
    margin: 0 0 6px;
    color: #faf9f5
}

.pro-addr {
    font-size: 14px;
    color: #a8a69c;
    margin: 0;
    line-height: 1.6
}

.map {
    width: 100%;
    height: 440px;
    border: 0;
    border-radius: 12px;
    display: block
}

.vid-grid {
    display: grid;
    grid-template-columns:1fr 1.15fr;
    gap: 56px;
    align-items: center
}

@media (max-width: 900px) {
    .vid-grid {
        grid-template-columns:1fr;
        gap: 32px
    }
}

.video {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    background: #141413;
    justify-self: end
}

@media (max-width: 900px) {
    .video {
        justify-self: start
    }
}

.foot-mail {
    font-size: clamp(20px, 3vw, 28px)
}

.gal-lg .gal-img {
    aspect-ratio: 16/10
}

.mt24 {
    margin-top: 24px
}

.mt40 {
    margin-top: 40px
}

.mb40 {
    margin-bottom: 40px
}

.gal-img, .plan-img, .chart-img {
    cursor: zoom-in
}

.lb {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(20, 20, 19, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.lb-img {
    max-width: min(1200px, 92vw);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    display: block
}

.lb-cap {
    color: #faf9f5;
    font-size: 15px;
    margin-top: 16px;
    text-align: center
}

.lb-count {
    color: #a8a69c;
    font-size: 13px;
    margin-top: 4px
}

.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250, 249, 245, 0.1);
    border: 1px solid rgba(250, 249, 245, 0.25);
    color: #faf9f5;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.lb-btn:hover {
    background: rgba(250, 249, 245, 0.22)
}

.lb-prev {
    left: 20px
}

.lb-next {
    right: 20px
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(250, 249, 245, 0.1);
    border: 1px solid rgba(250, 249, 245, 0.25);
    color: #faf9f5;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.lb-close:hover {
    background: rgba(250, 249, 245, 0.22)
}

@media (max-width: 720px) {
    .lb-btn {
        width: 42px;
        height: 42px
    }

    .lb-prev {
        left: 10px
    }

    .lb-next {
        right: 10px
    }
}

@media (max-width: 720px) {
    .sec {
        padding: 56px 0
    }

    .navlink-hide {
        display: none
    }
}