:root {
    --bg-cream: #fffdfa;
    --bg-peach: #fff5ee;
    --bg-mint: #f2fbf7;
    --ink: #353942;
    --sub: #5f6674;
    --line: #e8dfd6;
    --accent-pink: #ee8f79;
    --accent-green: #66a98d;
    --accent-navy: #344162;
    --utility-height: 40px;
    --header-height: 86px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: var(--ink);
    line-height: 1.72;
    background: linear-gradient(180deg, #fffefa 0%, #fffaf4 55%, #fffdf9 100%);
    padding-top: var(--utility-height);
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: var(--utility-height);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #f8cbbd 0%, #f4ad99 100%);
    border-bottom: 1px solid rgba(110, 80, 70, 0.18);
}

.back-link {
    font-size: 0.9rem;
    color: #4b3e3a;
    font-weight: 600;
}

.back-link:hover {
    color: #2e2928;
}

.header {
    position: fixed;
    top: var(--utility-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid #eedfd7;
    background: rgba(255, 253, 250, 0.95);
    backdrop-filter: blur(8px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f29e87, #e88278);
    color: #fff9f2;
    font-family: "Yomogi", cursive;
    font-size: 1.2rem;
    border: 1px solid rgba(112, 77, 67, 0.22);
}

.brand-main {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #44323b;
}

.brand-sub {
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    color: #8a8092;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    font-size: 0.92rem;
    color: #594f62;
    font-weight: 600;
}

.nav a:hover {
    color: #2f3b5d;
}

.btn-nav {
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff9f2 !important;
    background: linear-gradient(135deg, #46527b 0%, #2f3d62 100%);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: #4d4b61;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

main {
    margin-top: var(--header-height);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 76px;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.6;
}

.shape-left {
    width: 380px;
    height: 380px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, #ffd9ca 0%, #ffd9ca 45%, transparent 70%);
}

.shape-right {
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -100px;
    background: radial-gradient(circle, #c8efd9 0%, #c8efd9 42%, transparent 70%);
}

.hero-inner {
    position: relative;
    display: grid;
    gap: 22px;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff9f2;
    background: linear-gradient(135deg, #f39b87, #df7e76);
}

.hero h1 {
    margin-top: 12px;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.42;
    letter-spacing: 0.01em;
    color: #2e3449;
}

.nowrap {
    white-space: nowrap;
}

.hero p {
    margin-top: 14px;
    color: #5f6474;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 22px;
    font-size: 0.93rem;
    font-weight: 700;
}

.btn-primary {
    color: #fffaf4;
    background: linear-gradient(135deg, #456082 0%, #2d3b5f 100%);
}

.btn-soft {
    color: #4c5060;
    border-color: #dbc9bc;
    background: #fff7ef;
}

.btn-primary:hover,
.btn-soft:hover {
    filter: brightness(1.03);
}

.main-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(130, 90, 70, 0.15);
    border: 4px solid #ffffff;
}

.section {
    padding: 84px 0;
}

.section-peach {
    background: linear-gradient(180deg, #fff8f2 0%, #fff2ea 100%);
}

.section-mint {
    background: linear-gradient(180deg, #f8fdfb 0%, #ecf8f3 100%);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head-left {
    margin: 0 0 20px;
    text-align: left;
}

.section-label {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: #ec8f78;
    font-weight: 800;
}

.section-head h2 {
    margin-top: 8px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: #394159;
}

.section-head p {
    margin-top: 10px;
    color: #626b7a;
}

.beginner-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.beginner-card {
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(128, 94, 78, 0.09);
}

.beginner-card h3 {
    color: #37557a;
    font-size: 1.1rem;
}

.beginner-card p {
    margin-top: 10px;
    color: #565f70;
}

.menu-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
    padding: 16px;
    border: 1px solid #efddd2;
    border-radius: 18px;
    background: #fffdfc;
    box-shadow: 0 12px 24px rgba(141, 93, 70, 0.09);
}

.menu-photo {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.menu-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card h3 {
    margin-top: 14px;
    color: #334664;
    font-size: 1.08rem;
}

.menu-card p {
    margin-top: 8px;
    color: #5e6675;
}

.voice-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-card {
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid #e9ddd4;
    background: #fffdfb;
}

.voice-title {
    margin: 0;
    font-size: 1.05rem;
    color: #2f3f60;
    font-weight: 800;
}

.voice-card p {
    margin-top: 10px;
    color: #585f6f;
}

.voice-meta {
    margin-top: 14px;
    font-size: 0.84rem;
    color: #8a7b75;
}

.fee-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
}

.fee-table-wrap {
    border: 1px solid #d9eee4;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e4f2ec;
    text-align: left;
}

.fee-table th {
    font-size: 0.9rem;
    color: #486675;
    background: #f1faf6;
}

.fee-table td {
    color: #3f4d5f;
}

.consult-card {
    padding: 22px 18px;
    border: 1px solid #d7ebde;
    border-radius: 18px;
    background: #ffffff;
}

.consult-card h3 {
    color: #2e4f5e;
    font-size: 1.28rem;
}

.consult-card ul {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.consult-card li {
    position: relative;
    padding-left: 18px;
    color: #526173;
}

.consult-card li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #69a58b;
}

.consult-photo {
    margin-top: 14px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.consult-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid #eadfd6;
    border-radius: 12px;
    background: #fffefb;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 15px 42px 15px 16px;
    color: #3a4663;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 13px;
    font-size: 1.2rem;
    color: #6f7087;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 16px 14px;
    color: #5a6474;
}

.news-list {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.news-card {
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid #ecdacf;
    background: #fffdfc;
}

.news-date {
    margin: 0;
    color: #8e7b71;
    font-size: 0.84rem;
    font-weight: 700;
}

.news-card h3 {
    margin-top: 6px;
    font-size: 1.06rem;
    color: #3c4967;
}

.access-section {
    background: linear-gradient(135deg, #fefaf6 0%, #f2f8f4 100%);
}

.access-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 20px;
}

.access-card,
.reserve-card {
    border: 1px solid #e7ddd6;
    border-radius: 18px;
    background: #ffffff;
    padding: 22px 18px;
}

.access-card h2,
.reserve-card h2 {
    margin-top: 8px;
    font-size: 1.6rem;
    color: #34425d;
}

.access-card p {
    margin-top: 10px;
    color: #576074;
}

.reserve-form {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.reserve-form label {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: #475263;
}

.reserve-form input,
.reserve-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e6d9cf;
    padding: 10px 12px;
    font: inherit;
    color: #404957;
    background: #fffdfb;
}

.footer {
    background: #454f6f;
    color: #e7edf8;
    padding: 32px 0;
}

.footer-inner {
    display: grid;
    gap: 10px;
}

.footer-logo {
    font-size: 1.15rem;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    font-size: 0.8rem;
    color: #d2dcf2;
}

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

@media (max-width: 1080px) {

    .beginner-grid,
    .menu-grid,
    .voice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fee-layout,
    .access-layout,
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1120px) {
    .menu-toggle {
        display: block;
    }

    .brand {
        max-width: calc(100% - 56px);
    }

    .nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100%;
        border-bottom: 1px solid #ecded5;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 253, 250, 0.98);
        transition: max-height 0.25s ease;
    }

    .nav ul {
        padding: 16px 4%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav.active {
        max-height: 70vh;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    .brand-main {
        font-size: 0.92rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-sub {
        font-size: 0.58rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 76px;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.5;
    }

    .hero h1 br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .beginner-grid,
    .menu-grid,
    .voice-grid {
        grid-template-columns: 1fr;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 1.08rem;
    }

    .brand-main {
        font-size: 0.85rem;
    }

    .brand-sub {
        display: none;
    }
}