@charset "UTF-8";

/* =========================================================
   THE GRID / common ct-header
========================================================= */

.ct-header,
.ct-header * {
    box-sizing: border-box;
}

.ct-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: 0.3s;
}

.ct-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--line, #e4e1db);
}

.ct-header-inner {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--ink, #2e2c29);
    text-decoration: none;
}

.ct-logo:hover {
    color: var(--ink, #2e2c29);
    text-decoration: none;
}

.ct-logo img {
    display: block;
    width: 14rem;
    max-width: 100%;
    height: auto;
}

.ct-logo-mark {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 2.4rem;
    letter-spacing: 0.18em;
    line-height: 1;
}

.ct-logo-sub {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    color: var(--mute, #a8a4a0);
}

.ct-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ct-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink, #2e2c29);
    text-decoration: none;
    transition: color 0.2s;
}

.ct-tel:hover {
    color: var(--accent, #81724E);
    text-decoration: none;
}

.ct-tel svg {
    width: 20px;
    height: 20px;
    color: var(--accent, #81724E);
    flex: 0 0 auto;
}

.ct-tel-num {
    font-family: "Jost", sans-serif;
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink, #2e2c29);
    line-height: 1;
}

.ct-tel:hover .ct-tel-num {
    color: var(--accent, #81724E);
}

.ct-tel-time {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: var(--mute, #a8a4a0);
    margin-top: 4px;
}

.ct-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--ink, #2e2c29);
    color: #fff !important;
    font-size: 1.3rem;
    letter-spacing: 0.16em;
    line-height: 1;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.ct-header-cta:hover {
    background: var(--accent-deep, #5e532e);
    color: #fff !important;
    text-decoration: none;
}

.ct-header-cta svg {
    width: 18px;
    height: 18px;
}

.ct-burger {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    background: none;
    border: 0;
    padding: 0;
}

.ct-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--ink, #2e2c29);
    transition: 0.3s;
}

.ct-burger span:nth-child(1) {
    top: 8px;
}

.ct-burger span:nth-child(2) {
    bottom: 8px;
}

body.v2 .v2-main {
    padding-top: 80px;
}

@media (max-width: 960px) {
    html {
        scroll-padding-top: 70px;
    }

    .ct-header {
        height: 70px;
    }

    .ct-header-inner {
        padding: 0 20px;
    }

    .ct-logo-mark {
        font-size: 2rem;
    }

    .ct-logo-sub {
        font-size: 0.85rem;
        letter-spacing: 0.22em;
    }

    .ct-logo img {
        width: 11rem;
    }

    .ct-tel-time {
        display: none;
    }

    .ct-tel-num {
        font-size: 1.5rem;
    }

    .ct-header-cta {
        padding: 10px 14px;
    }

    .ct-header-cta span {
        display: none;
    }

    .ct-header-right {
        gap: 14px;
    }

    body.v2 .v2-main {
        padding-top: 70px;
    }
}

@media (max-width: 420px) {
    .ct-header {
        height: 65px;
    }

    .ct-header-inner {
        padding: 0 16px;
    }

    .ct-logo-mark {
        font-size: 1.7rem;
    }

    .ct-logo-sub {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .ct-logo img {
        width: 9.8rem;
    }

    .ct-header-right {
        gap: 10px;
    }

    .ct-tel {
        gap: 6px;
    }

    .ct-tel-num {
        font-size: 1.3rem;
    }

    .ct-header-cta {
        padding: 9px;
    }
}
