:root {
    --bg: #fbf6ef;
    --paper: #fffdf8;
    --cream: #fff8ef;
    --line: #eaded1;
    --text: #222222;
    --muted: #756f68;
    --coral: #ec7457;
    --coral-dark: #d85e43;
    --teal: #2f817d;
    --gold: #d99a2b;
    --shadow: 0 18px 44px rgba(99, 73, 45, 0.10);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Noto Sans TC", sans-serif;
    background:
        radial-gradient(circle at 5% 10%, rgba(255, 231, 210, .55), transparent 24%),
        linear-gradient(180deg, #fbf6ef 0%, #fffaf4 50%, #fbf6ef 100%);
    color: var(--text);
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 244, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    min-height: 78px;
}

.brand {
    font-family: "Noto Serif TC", serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #d85e43;
    line-height: 1;
}

.brand:hover { color: #d85e43; }
.brand span { color: #ef886d; }

.brand-subtitle {
    margin-left: 10px;
    color: #6c675f;
    font-size: 14px;
    white-space: nowrap;
}

.main-menu {
    gap: 28px;
}

.main-menu .nav-link {
    color: #3f3b37;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 0;
    white-space: nowrap;
}

.main-menu .nav-link:hover {
    color: var(--coral);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    border-radius: 14px;
    font-weight: 800;
    padding: 11px 22px;
}

.btn-soft {
    color: #514c47;
    border: 1px solid #e5bda9;
    background: #fffaf4;
}

.btn-coral {
    color: #fff;
    border: 1px solid var(--coral);
    background: var(--coral);
    box-shadow: 0 12px 28px rgba(236, 116, 87, .20);
}

.btn-coral:hover {
    color: #fff;
    background: var(--coral-dark);
    border-color: var(--coral-dark);
}

.hero-section {
    padding: 34px 0 18px;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    min-height: 430px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 62px 56px;
    align-self: center;
}

.eyebrow {
    color: var(--coral);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero-copy h1,
.activity-copy h2,
.section-title h2 {
    font-family: "Noto Serif TC", serif;
    font-weight: 800;
    letter-spacing: .02em;
}

.hero-copy h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.18;
    margin: 0 0 20px;
}

.hero-desc {
    color: #5e5952;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 26px;
}

.hero-image {
    position: relative;
    min-height: 430px;
    background: #f6eadf;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, .60), transparent 42%);
}

.hero-note {
    position: absolute;
    right: 34px;
    top: 78px;
    z-index: 2;
    color: var(--teal);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.7;
    transform: rotate(-4deg);
}

.search-panel {
    width: min(860px, calc(100% - 42px));
    margin: -34px auto 0;
    position: relative;
    z-index: 4;
    display: flex;
    gap: 14px;
}

.search-input {
    flex: 1;
    min-height: 66px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(90, 68, 43, .12);
}

.search-input input,
.mini-search input {
    flex: 1;
    border: 0;
    outline: none;
    color: #625d56;
    background: transparent;
}

.search-input button,
.mini-search button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    display: grid;
    place-items: center;
    font-size: 23px;
}

.location-btn {
    min-width: 142px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    color: #55504a;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(90, 68, 43, .08);
}

.feature-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 42px 12px 26px;
}

.feature-card {
    min-height: 202px;
    position: relative;
    overflow: hidden;
    padding: 26px 24px;
    border: 1px solid rgba(234, 222, 209, .9);
    border-radius: 26px;
    box-shadow: 0 14px 32px rgba(100, 76, 47, .07);
}

.card-coral { background: #fff0e8; }
.card-teal { background: #eef8f3; }
.card-gold { background: #fff5da; }
.card-peach { background: #fff0e8; }

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    margin-bottom: 16px;
    font-size: 22px;
}

.feature-card h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 10px;
}

.feature-card p {
    max-width: 150px;
    color: #5e5952;
    font-weight: 700;
    line-height: 1.65;
    margin: 0;
}

.feature-card img {
    position: absolute;
    width: 116px;
    height: 82px;
    right: -6px;
    bottom: -4px;
    object-fit: cover;
    border-radius: 60px 0 24px 0;
}

.recommend-section {
    padding: 22px 12px 56px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: 34px;
    margin: 0;
}

.more-link {
    color: var(--teal);
    font-weight: 800;
    white-space: nowrap;
}

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

.recommend-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    align-items: stretch;
    overflow: hidden;
    min-height: 138px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(97, 71, 44, .07);
}

.recommend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-card div {
    padding: 18px 18px;
}

.tag {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
}

.tag.coral { color: var(--coral); }
.tag.teal { color: var(--teal); }
.tag.gold { color: var(--gold); }

.recommend-card h3,
.dining-info h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 6px;
}

.recommend-card p,
.dining-info p {
    color: #746e67;
    margin: 0 0 8px;
}

.recommend-card strong,
.dining-info strong {
    color: var(--gold);
    font-size: 18px;
}

.recommend-card small { color: #73706b; }

.dining-section {
    padding: 58px 0;
    background: rgba(255, 250, 244, .78);
    border-block: 1px solid var(--line);
}

.section-title.compact {
    margin-bottom: 18px;
}

.dining-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.mini-search {
    flex: 1;
    min-width: 280px;
    height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding-left: 20px;
}

.mini-search button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 6px;
}

.dining-toolbar > button {
    height: 54px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: #5c574f;
    background: #fff;
    font-weight: 800;
}

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

.dining-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(97, 71, 44, .07);
}

.dining-card > img {
    width: 100%;
    height: 158px;
    object-fit: cover;
}

.dining-info {
    padding: 18px;
}

.dining-info > span {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--teal);
    font-size: 12px;
    font-weight: 900;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.chips em {
    font-style: normal;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #746b60;
    background: #f7eee5;
}

.activity-section {
    padding: 70px 0;
}

.activity-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr .9fr;
    gap: 18px;
    align-items: stretch;
}

.activity-copy {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,240,232,.78)),
        #fff;
    box-shadow: var(--shadow);
}

.activity-copy h2 {
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.28;
    margin: 0 0 16px;
}

.activity-copy p {
    color: #5e5952;
    line-height: 1.8;
    font-weight: 700;
}

.event-panel,
.checkin-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fffdf8;
    box-shadow: var(--shadow);
}

.panel-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.panel-head > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff0e8;
    font-size: 22px;
}

.panel-head h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.panel-head p {
    color: #77716b;
    font-size: 14px;
    margin: 0;
}

.event-list {
    display: grid;
    gap: 12px;
}

.event-list article {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.event-list img {
    width: 104px;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
}

.event-list span {
    color: var(--teal);
    font-weight: 900;
    font-size: 13px;
}

.event-list h4 {
    font-size: 18px;
    font-weight: 900;
    margin: 4px 0;
}

.event-list p {
    color: #716b64;
    font-size: 14px;
    margin: 0;
}

.status-box,
.contact-box {
    padding: 18px;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.status-box small,
.contact-box small {
    display: block;
    color: #77716b;
    font-weight: 800;
    margin-bottom: 8px;
}

.status-box strong {
    display: block;
    color: var(--teal);
    font-size: 22px;
    margin-bottom: 4px;
}

.status-box p {
    margin: 0;
    color: #665f58;
}

.avatars {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.avatars span,
.avatars button {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff7ef;
    color: #6d5e52;
    font-weight: 900;
    font-size: 12px;
}

.avatars button {
    background: #fff;
    color: var(--teal);
    font-size: 22px;
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #fffaf4;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #756f68;
}

.footer-brand {
    font-family: "Noto Serif TC", serif;
    font-size: 30px;
    font-weight: 800;
    color: #d85e43;
}

.footer-brand span {
    color: #ef886d;
}

@media (max-width: 1199px) {
    .main-menu { gap: 18px; }
    .main-menu .nav-link { font-size: 14px; }
    .brand-subtitle { display: none; }
    .feature-section,
    .dining-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .activity-layout { grid-template-columns: 1fr 1fr; }
    .activity-copy { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
    .nav-actions {
        padding-top: 12px;
    }

    .main-menu {
        gap: 6px;
        padding-top: 12px;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 42px 30px;
    }

    .hero-image {
        min-height: 310px;
    }

    .search-panel {
        flex-direction: column;
        width: calc(100% - 36px);
    }

    .location-btn {
        min-height: 56px;
    }

    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .activity-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand {
        font-size: 32px;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-card,
    .feature-card,
    .recommend-card,
    .dining-card,
    .activity-copy,
    .event-panel,
    .checkin-panel {
        border-radius: 22px;
    }

    .hero-copy {
        padding: 34px 22px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-note {
        right: 22px;
        top: 40px;
        font-size: 15px;
    }

    .feature-section,
    .dining-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 180px;
    }

    .recommend-card {
        grid-template-columns: 118px 1fr;
    }

    .recommend-card div {
        padding: 16px;
    }

    .section-title {
        align-items: start;
        flex-direction: column;
    }

    .dining-toolbar {
        flex-direction: column;
    }

    .mini-search {
        min-width: 100%;
    }

    .dining-toolbar > button {
        width: 100%;
    }

    .event-list article {
        grid-template-columns: 92px 1fr;
    }

    .event-list img {
        width: 92px;
        height: 82px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
