.wcch-header {
    width: 100%;
    min-height: 300px;
    padding: 3em 1em 2em 1em;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5em;
}
.wcch-header-inner {
    background: rgba(255,255,255,0.84);
    border-radius: 2em;
    max-width: 720px;
    width: 100%;
    padding: 2em 2em 1.5em 2em;
    box-shadow: 0 3px 24px #0002;
    text-align: center;
}
.wcch-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0 0 0.2em 0;
}
.wcch-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.1em;
}
.wcch-btn {
    display: inline-block;
    padding: 0.7em 2.2em;
    margin-top: 1.2em;
    border-radius: 40px;
    color: #111;
    background: #fff;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 12px #0001;
    transition: background .22s;
}
.wcch-btn:hover { background: #e5c988; color: #222; }
.wcch-breadcrumb {
    text-align: left;
    margin-bottom: 1.2em;
    font-size: .98em;
}
.wcch-header-menu {
    margin-top: 1.5em;
}
.wcch-menu-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 1em;
    justify-content: center;
}
.wcch-menu-list li {
    display: inline-block;
}
.wcch-menu-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.4em 1em;
    border-radius: 4px;
    transition: background .18s;
}
.wcch-menu-list a:hover {
    background: #eee;
    color: #a99e6c;
}
@media (max-width: 700px) {
    .wcch-header-inner { padding: 1em 0.3em 1em 0.3em; border-radius: 1em; }
    .wcch-title { font-size: 1.4rem; }
    .wcch-btn { font-size: 1em; }
    .wcch-header { min-height: 120px; }
}
