:root{
    --navy:#19304c;
    --navy-deep:#11243d;
    --sea:#2b88c8;
    --sea-soft:#dff2ff;
    --coral:#ff7b57;
    --coral-deep:#ef5a31;
    --gold:#ffd39b;
    --sand:#fff6ee;
    --card:#ffffff;
    --ink:#17314d;
    --muted:#66758b;
    --line:rgba(23,49,77,.1);
    --shadow:0 24px 60px rgba(17,36,61,.12);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body.tour-home{
    font-family:"PingFang SC","Microsoft YaHei",sans-serif;
    color:var(--ink);
    background:
        radial-gradient(circle at 18% -8%, rgba(255,182,153,.34) 0%, rgba(255,182,153,0) 28%),
        radial-gradient(circle at 84% 0%, rgba(72,168,222,.2) 0%, rgba(72,168,222,0) 24%),
        linear-gradient(180deg,#f7fbff 0%, #f4f8fc 100%);
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input{font:inherit}

.site-nav{
    position:sticky;
    top:16px;
    z-index:48;
    padding:0 0 4px;
}
.site-nav__inner{
    width:min(1260px,calc(100% - 32px));
    margin:0 auto;
    min-height:86px;
    padding:14px 18px 14px 22px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:18px;
    border-radius:30px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,199,163,.34) 0%, rgba(255,199,163,0) 24%),
        radial-gradient(circle at 90% 0%, rgba(170,216,247,.38) 0%, rgba(170,216,247,0) 28%),
        linear-gradient(135deg, rgba(255,249,243,.9) 0%, rgba(244,249,253,.88) 58%, rgba(223,241,252,.92) 100%);
    border:1px solid rgba(255,255,255,.72);
    box-shadow:0 22px 40px rgba(73,96,123,.1);
    backdrop-filter:blur(18px);
}
.site-brand{
    display:flex;
    align-items:center;
    gap:0;
    color:var(--navy);
}
.site-brand__seal{
    display:none;
}
.site-brand__sun{
    position:absolute;
    top:10px;
    left:11px;
    width:15px;
    height:15px;
    border-radius:50%;
    background:linear-gradient(180deg,#ffd78d 0%, #ffb35b 100%);
}
.site-brand__wave{
    position:absolute;
    left:-8px;
    right:-8px;
    border-radius:999px;
    transform:rotate(-8deg);
}
.site-brand__wave--one{
    bottom:16px;
    height:16px;
    background:linear-gradient(90deg,#57c5e9 0%, #2a85ca 100%);
}
.site-brand__wave--two{
    bottom:5px;
    height:18px;
    background:linear-gradient(90deg,#124c7f 0%, #2e7199 100%);
}
.site-brand__text strong{
    display:block;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:23px;
    line-height:1.12;
    letter-spacing:.03em;
}
.site-brand__text span{
    display:block;
    margin-top:3px;
    color:rgba(25,48,76,.64);
    font-size:11px;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.site-links-wrap{
    display:flex;
    justify-content:center;
}
.site-links{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px;
    border-radius:999px;
    color:rgba(25,48,76,.88);
    font-size:15px;
    background:rgba(255,255,255,.42);
    border:1px solid rgba(255,255,255,.58);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.42);
}
.site-links a{
    position:relative;
    opacity:.88;
    padding:11px 16px;
    border-radius:999px;
    transition:opacity .2s ease, background .2s ease, color .2s ease;
}
.site-links a:hover,
.site-links a.is-active{
    opacity:1;
}
.site-links a::after{
    display:none;
}
.site-links a:hover{
    background:rgba(255,255,255,.5);
}
.site-links a.is-active{
    color:var(--coral-deep);
    background:linear-gradient(135deg,rgba(255,255,255,.88) 0%, rgba(255,247,239,.92) 100%);
    box-shadow:
        0 10px 18px rgba(73,96,123,.08),
        inset 0 0 0 1px rgba(255,255,255,.52);
}
.site-actions{
    display:flex;
    align-items:center;
    gap:12px;
}
.site-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:112px;
    height:40px;
    padding:0 18px;
    border-radius:999px;
    font-size:14px;
    transition:transform .2s ease, box-shadow .2s ease;
}
.site-btn:hover{transform:translateY(-1px)}
.site-btn--ghost{
    color:var(--navy);
    border:1px solid rgba(25,48,76,.16);
    background:rgba(255,255,255,.5);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.48);
}
.site-btn--solid{
    color:#fff;
    background:linear-gradient(135deg,var(--coral) 0%,var(--coral-deep) 100%);
    box-shadow:0 16px 28px rgba(255,123,87,.24);
}

.tour-shell{
    width:min(1240px,calc(100% - 40px));
    margin:0 auto;
    padding:18px 0 72px;
}

.festival-header{
    position:relative;
    display:grid;
    gap:24px;
    padding:34px;
    border-radius:38px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255,191,153,.32) 0%, rgba(255,191,153,0) 24%),
        radial-gradient(circle at 92% 8%, rgba(168,215,247,.36) 0%, rgba(168,215,247,0) 26%),
        linear-gradient(135deg, rgba(255,249,244,.92) 0%, rgba(239,247,253,.96) 100%);
    border:1px solid rgba(255,255,255,.72);
    box-shadow:0 28px 58px rgba(17,36,61,.1);
}
.festival-header::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:38px;
    background:linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 100%);
    pointer-events:none;
}
.festival-header__lead{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,420px);
    gap:24px;
    align-items:start;
}
.festival-header__copy{
    max-width:700px;
}
.festival-header__eyebrow{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;
    color:var(--coral-deep);
    background:rgba(255,255,255,.7);
    border:1px solid rgba(255,255,255,.78);
    box-shadow:0 12px 24px rgba(17,36,61,.06);
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
}
.festival-header__copy h1{
    margin:16px 0 12px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:56px;
    line-height:1.1;
    letter-spacing:.03em;
}
.festival-header__summary{
    margin:0;
    max-width:660px;
    color:var(--muted);
    font-size:17px;
    line-height:1.92;
}
.festival-header__tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}
.festival-header__tags span{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    color:var(--navy);
    background:rgba(255,255,255,.72);
    border:1px solid rgba(255,255,255,.74);
    box-shadow:0 10px 18px rgba(17,36,61,.05);
    font-size:14px;
    font-weight:700;
}
.festival-header__search{
    display:flex;
    justify-content:flex-end;
    align-self:start;
    padding-top:76px;
}
.search-panel{
    width:100%;
    padding:22px;
    border-radius:28px;
    background:rgba(255,255,255,.7);
    border:1px solid rgba(255,255,255,.8);
    box-shadow:0 20px 30px rgba(17,36,61,.08);
}
.search-panel__label{
    display:block;
    margin-bottom:12px;
    color:var(--coral-deep);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.search-row{
    width:100%;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(23,49,77,.08);
    box-shadow:0 18px 30px rgba(17,36,61,.06);
}
.search-input{
    flex:1 1 auto;
    min-width:0;
    height:44px;
    border:0;
    padding:0 16px;
    color:var(--ink);
    background:transparent;
    outline:none;
}
.search-input::placeholder{color:#8b98aa}
.search-btn{
    flex:0 0 auto;
    min-width:92px;
    height:44px;
    border:0;
    border-radius:999px;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,var(--coral) 0%,var(--coral-deep) 100%);
    box-shadow:0 10px 18px rgba(255,123,87,.22);
    cursor:pointer;
}
.search-panel__hint{
    margin:12px 2px 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

.hero-layout{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(320px,.75fr);
    gap:24px;
    align-items:stretch;
}
.hero-poster,
.hero-card{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    box-shadow:var(--shadow);
}
.hero-poster{
    min-height:620px;
    background:#dbeef8;
}
.hero-poster img{
    width:100%;
    height:100%;
    min-height:620px;
    object-fit:cover;
}
.hero-poster__overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
    gap:12px;
    padding:42px;
    color:#fff;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,214,154,.32) 0%, rgba(255,214,154,0) 28%),
        linear-gradient(180deg, rgba(15,29,46,.1) 0%, rgba(15,29,46,.24) 36%, rgba(15,29,46,.74) 100%);
}
.hero-poster__overlay p{
    margin:0;
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;
    color:#fff3df;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,240,217,.22);
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
}
.hero-poster__overlay h1{
    margin:0;
    max-width:520px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:64px;
    line-height:1.08;
    letter-spacing:.04em;
    text-shadow:0 10px 30px rgba(0,0,0,.22);
}
.hero-main-cta{
    min-width:138px;
    height:48px;
    border:0;
    border-radius:999px;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,var(--coral) 0%,var(--coral-deep) 100%);
    box-shadow:0 16px 24px rgba(239,90,49,.24);
    cursor:pointer;
}
.hero-poster__overlay strong{
    font-size:15px;
    letter-spacing:.12em;
    color:#ffe8c7;
}

.hero-stack{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:22px;
}
.hero-card{
    min-height:299px;
    border:1px solid rgba(255,255,255,.18);
}
.hero-card--light{
    background:#d9ecf8;
}
.hero-card--light img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-card--light::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(13,40,67,.12) 28%, rgba(13,40,67,.58) 100%);
}
.hero-card--dark{
    background:
        radial-gradient(circle at 78% 22%, rgba(255,215,167,.18) 0%, rgba(255,215,167,0) 32%),
        linear-gradient(135deg,#183554 0%, #1f5374 56%, #ff7f5a 140%);
}
.hero-card--dark img{
    position:absolute;
    top:24px;
    right:24px;
    width:112px;
    height:112px;
    object-fit:contain;
    filter:drop-shadow(0 14px 24px rgba(0,0,0,.2));
}
.hero-card__copy{
    position:relative;
    z-index:1;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:8px;
    padding:28px 26px 30px;
}
.hero-card--light .hero-card__copy{color:#fff}
.hero-card--dark .hero-card__copy{color:#fff}
.hero-card__copy small{
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    opacity:.85;
}
.hero-card__copy h2{
    margin:0;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:34px;
    line-height:1.16;
}
.hero-card__copy p{
    margin:0;
    line-height:1.8;
    font-size:15px;
    max-width:280px;
    opacity:.92;
}

.module{
    margin-top:26px;
    padding:28px;
    border-radius:30px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(23,49,77,.08);
    box-shadow:var(--shadow);
}
.module-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    margin-bottom:22px;
}
.module-head h2{
    margin:0;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:36px;
    line-height:1.15;
}
.module-head h2 small{
    display:inline-block;
    margin-left:10px;
    font-family:"PingFang SC","Microsoft YaHei",sans-serif;
    font-size:14px;
    color:var(--muted);
    font-weight:600;
}

.ai-quick{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(255,255,255,.24) 0%, rgba(255,255,255,0) 34%),
        radial-gradient(circle at 88% 12%, rgba(255,225,183,.24) 0%, rgba(255,225,183,0) 28%),
        linear-gradient(135deg,#ff8f6d 0%, #ff7058 42%, #ffc985 100%);
    color:#fff;
    box-shadow:0 28px 46px rgba(239,90,49,.18);
}
.ai-quick-layout{
    display:grid;
    grid-template-columns:minmax(0,1.24fr) minmax(320px,.76fr);
    gap:20px;
    align-items:stretch;
}
.ai-quick-main{
    display:grid;
    grid-template-columns:116px minmax(0,1fr) auto;
    align-items:center;
    gap:22px;
    padding:28px 28px 28px 24px;
    border-radius:28px;
    background:linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.1) 100%);
    border:1px solid rgba(255,255,255,.24);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 18px 28px rgba(170,57,32,.12);
    backdrop-filter:blur(8px);
}
.ai-quick-main--plain{
    grid-template-columns:minmax(0,1fr) auto;
    padding-left:28px;
}
.ai-avatar-img{
    width:116px;
    height:116px;
    border-radius:30px;
    background:rgba(255,251,247,.96);
    padding:14px;
    object-fit:contain;
    border:1px solid rgba(255,255,255,.55);
    box-shadow:0 18px 28px rgba(131,37,16,.12);
}
.ai-copy{
    flex:1 1 auto;
    min-width:0;
}
.ai-copy h3{
    margin:0 0 12px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:34px;
    line-height:1.15;
    letter-spacing:.04em;
}
.ai-greeting,
.ai-subtitle{
    margin:0;
    max-width:520px;
    line-height:1.78;
    color:rgba(255,255,255,.92);
}
.ai-greeting{
    font-size:15px;
    font-weight:700;
}
.ai-subtitle{
    margin-top:8px;
    font-size:15px;
    color:rgba(255,245,232,.92);
}
.ai-cta{
    justify-self:end;
    align-self:center;
    min-width:136px;
    height:48px;
    padding:0 24px;
    border:0;
    border-radius:999px;
    color:var(--coral-deep);
    font-weight:700;
    background:linear-gradient(180deg,#fffaf3 0%,#fff1df 100%);
    box-shadow:
        0 16px 24px rgba(156,53,20,.16),
        inset 0 1px 0 rgba(255,255,255,.5);
    cursor:pointer;
}
.quick-grid{
    display:grid;
    gap:16px;
}
.quick-card{
    min-height:132px;
    padding:24px 22px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.2);
    box-shadow:0 18px 28px rgba(156,53,20,.1);
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.quick-card strong{
    display:block;
    margin-bottom:8px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:22px;
    line-height:1.2;
}
.quick-card p{
    margin:0;
    line-height:1.72;
    color:rgba(255,255,255,.88);
}
.quick-card--comfort{
    background:linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.16) 100%);
}
.quick-card--pass{
    background:linear-gradient(135deg, rgba(128,74,41,.28) 0%, rgba(111,64,36,.38) 100%);
}
.icon-nav{
    margin-top:18px;
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:14px;
}
.icon-nav span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:12px 16px;
    border-radius:999px;
    text-align:center;
    font-weight:700;
    color:var(--coral-deep);
    background:rgba(255,248,241,.96);
    border:1px solid rgba(255,255,255,.38);
    box-shadow:0 12px 20px rgba(156,53,20,.1);
    transition:transform .2s ease, box-shadow .2s ease;
}
.icon-nav span:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 24px rgba(156,53,20,.14);
}

.district-discover{
    background:
        linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.district-feature-card{
    position:relative;
    overflow:hidden;
    width:100%;
    min-height:360px;
    padding:0;
    border:0;
    border-radius:28px;
    background:#dceef9;
}
.district-feature-card img{
    width:100%;
    height:360px;
    object-fit:cover;
}
.district-feature-card__overlay{
    position:absolute;
    inset:auto 0 0;
    padding:30px;
    color:#fff;
    background:linear-gradient(180deg, rgba(15,29,46,0) 0%, rgba(15,29,46,.75) 100%);
}
.district-feature-card__overlay h3{
    margin:0 0 10px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:34px;
    line-height:1.16;
}
.district-feature-card__overlay p{
    margin:0 0 10px;
    max-width:700px;
    line-height:1.82;
    color:rgba(255,255,255,.92);
}
.district-feature-card__overlay span{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    font-size:14px;
}
.district-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:18px;
}
.district-tab{
    height:44px;
    padding:0 18px;
    border:1px solid rgba(23,49,77,.1);
    border-radius:999px;
    background:#fff;
    color:var(--ink);
    font-weight:700;
    cursor:pointer;
    transition:transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.district-tab:hover{transform:translateY(-1px)}
.district-tab.is-active{
    color:#fff;
    border-color:transparent;
    background:linear-gradient(135deg,var(--navy) 0%,var(--sea) 100%);
    box-shadow:0 14px 24px rgba(25,48,76,.18);
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}
.media-card{
    overflow:hidden;
    border-radius:26px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 18px 36px rgba(17,36,61,.08);
    transition:transform .24s ease, box-shadow .24s ease;
}
.media-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 40px rgba(17,36,61,.12);
}
.media-card img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
}
.media-card--food img{aspect-ratio:4/3}
.media-card__cover{
    position:relative;
    overflow:hidden;
    min-height:240px;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    color:#fff;
    isolation:isolate;
}
.media-card__cover::before,
.media-card__cover::after{
    content:"";
    position:absolute;
    z-index:-1;
}
.media-card__cover::before{
    inset:auto -18% -26% auto;
    width:190px;
    height:190px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
}
.media-card__cover::after{
    inset:20px auto auto 18px;
    width:96px;
    height:96px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
}
.media-card--food .media-card__cover{
    min-height:260px;
}
.media-card__cover span{
    align-self:flex-start;
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}
.media-card__cover strong{
    display:block;
    margin-top:auto;
    margin-bottom:8px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:34px;
    line-height:1.12;
}
.media-card__cover em{
    display:block;
    font-style:normal;
    font-size:15px;
    line-height:1.7;
    opacity:.92;
}
.media-card__cover--jinshawan{
    background:
        radial-gradient(circle at 24% 22%, rgba(255,223,154,.9) 0%, rgba(255,223,154,.16) 18%, transparent 19%),
        linear-gradient(180deg,#f8d39a 0%, #8fd9e8 54%, #2c8fc5 100%);
}
.media-card__cover--jinshawan::after{
    inset:auto -6% 24px auto;
    width:120%;
    height:96px;
    border-radius:50% 50% 0 0;
    background:rgba(255,255,255,.32);
}
.media-card__cover--huguangyan{
    background:
        radial-gradient(circle at 52% 42%, rgba(124,212,206,.78) 0%, rgba(92,173,165,.88) 18%, rgba(55,111,102,.0) 19%),
        linear-gradient(180deg,#93cf7b 0%, #4f9f79 38%, #295868 100%);
}
.media-card__cover--huguangyan::after{
    inset:auto 18px 18px auto;
    width:160px;
    height:160px;
    border-radius:50%;
    background:rgba(35,84,96,.22);
}
.media-card__cover--naozhou{
    background:
        radial-gradient(circle at 68% 16%, rgba(255,235,194,.16) 0%, rgba(255,235,194,0) 18%),
        linear-gradient(180deg,#4f90cb 0%, #20597f 58%, #142f4d 100%);
}
.media-card__cover--naozhou::after{
    inset:auto 28px 18px auto;
    width:20px;
    height:120px;
    border-radius:10px 10px 4px 4px;
    background:linear-gradient(180deg,#fefefe 0%, #e9edf2 100%);
    box-shadow:18px -72px 0 -6px rgba(255,243,196,.8);
}
.media-card__cover--seafood{
    background:
        radial-gradient(circle at 24% 24%, rgba(255,226,174,.3) 0%, rgba(255,226,174,0) 18%),
        linear-gradient(135deg,#ff9464 0%, #f05e45 48%, #7b2444 100%);
}
.media-card__cover--seafood::after{
    inset:auto 18px 18px auto;
    width:168px;
    height:168px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
}
.media-card__cover--tangsui{
    color:var(--navy);
    background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 20%),
        linear-gradient(135deg,#fff2de 0%, #ffd1a2 52%, #f2a5a3 100%);
}
.media-card__cover--tangsui span{
    background:rgba(255,255,255,.5);
    border-color:rgba(255,255,255,.4);
}
.media-card__cover--tangsui::after{
    inset:auto 18px 16px auto;
    width:178px;
    height:112px;
    border-radius:0 0 90px 90px;
    background:rgba(255,255,255,.44);
}
.media-card__cover--chicken{
    color:var(--navy);
    background:
        radial-gradient(circle at 26% 20%, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 18%),
        linear-gradient(135deg,#fff6de 0%, #f7d88d 48%, #e8af64 100%);
}
.media-card__cover--chicken span{
    background:rgba(255,255,255,.48);
    border-color:rgba(255,255,255,.42);
}
.media-card__cover--chicken::after{
    inset:auto 20px 18px auto;
    width:172px;
    height:118px;
    border-radius:50%;
    background:rgba(255,248,230,.52);
}
.media-card__body{
    padding:20px 20px 22px;
}
.media-card__body strong{
    display:block;
    margin-bottom:8px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:26px;
    line-height:1.18;
}
.media-card__body p{
    margin:0;
    color:var(--muted);
    line-height:1.85;
}

.mini-activity{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.mini-card{
    padding:22px 22px 24px;
    border-radius:24px;
    color:#fff;
    background:linear-gradient(135deg,#1b4267 0%,#2d7db7 100%);
    box-shadow:0 18px 28px rgba(25,48,76,.14);
}
.mini-card--day{
    background:linear-gradient(135deg,#ff8b64 0%,#ffbb72 100%);
}
.mini-card h3{
    margin:0 0 8px;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:30px;
    line-height:1.14;
}
.mini-card p{
    margin:0;
    line-height:1.72;
    color:rgba(255,255,255,.9);
}

.planner-shell{
    padding:0;
    background:transparent;
    border:0;
    box-shadow:none;
}
.panel{
    padding:30px;
    border-radius:30px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}
.panel.result{
    background:
        radial-gradient(circle at 100% 0%, rgba(255,211,155,.24) 0%, rgba(255,211,155,0) 30%),
        linear-gradient(180deg,#ffffff 0%,#fdf7f1 100%);
}
.service-list{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.service-list__item{
    padding:20px;
    border-radius:22px;
    background:#f7fbff;
    border:1px solid rgba(43,136,200,.12);
}
.service-list__item strong{
    display:block;
    margin-bottom:8px;
    font-size:20px;
}
.service-list__item p{
    margin:0;
    color:var(--muted);
    line-height:1.78;
}
.result-actions{
    display:flex;
    gap:14px;
    margin-top:24px;
}
.copy-btn{
    min-width:152px;
    height:46px;
    border:0;
    border-radius:999px;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,var(--coral) 0%,var(--coral-deep) 100%);
    box-shadow:0 14px 24px rgba(239,90,49,.22);
    cursor:pointer;
}
.copy-btn--secondary{
    color:var(--navy);
    background:#edf6ff;
    box-shadow:none;
}

.tour-footer{
    margin-top:28px;
    padding:32px 34px;
    border-radius:30px;
    background:linear-gradient(135deg,var(--navy-deep) 0%, var(--navy) 56%, #255f8a 100%);
    box-shadow:0 30px 60px rgba(17,36,61,.18);
}
.tour-footer__inner{
    display:grid;
    gap:14px;
    color:#eef5ff;
}
.tour-footer__brand strong{
    display:block;
    font-family:"Source Han Serif SC","Songti SC",serif;
    font-size:26px;
    line-height:1.16;
}
.tour-footer__brand p,
.tour-footer__meta,
.tour-footer__copy{
    margin:0;
    color:rgba(238,245,255,.8);
    line-height:1.8;
}
.tour-footer__meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}
.tour-footer a{color:#fff3cf}

@media (max-width:1180px){
    .site-nav__inner{
        grid-template-columns:auto 1fr;
    }
    .site-links-wrap{
        order:3;
        grid-column:1/-1;
    }
    .hero-layout{
        grid-template-columns:1fr;
    }
    .hero-stack{
        grid-template-columns:repeat(2,minmax(0,1fr));
        grid-template-rows:none;
    }
    .festival-header__lead{
        grid-template-columns:1fr;
    }
    .festival-header__search{
        justify-content:flex-start;
        padding-top:0;
    }
    .icon-nav{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media (max-width:960px){
    .site-nav__inner{
        width:calc(100% - 24px);
        padding:14px 16px;
        min-height:auto;
    }
    .site-links{
        width:100%;
        overflow-x:auto;
        padding-bottom:4px;
        gap:8px;
        white-space:nowrap;
    }
    .site-actions{
        margin-left:auto;
    }
    .tour-shell{
        width:calc(100% - 24px);
        padding:16px 0 52px;
    }
    .festival-header{
        padding:26px;
        border-radius:30px;
    }
    .festival-header__copy h1{
        font-size:44px;
    }
    .festival-header__summary{
        font-size:16px;
        line-height:1.86;
    }
    .hero-poster,
    .hero-poster img{
        min-height:520px;
    }
    .hero-poster__overlay h1{
        font-size:50px;
    }
    .ai-quick-layout,
    .service-list,
    .media-grid{
        grid-template-columns:1fr 1fr;
    }
    .mini-activity{
        grid-template-columns:1fr;
    }
}

@media (max-width:720px){
    .site-brand__text strong{font-size:22px}
    .site-actions{
        width:100%;
        margin-left:0;
    }
    .site-btn{
        flex:1 1 auto;
        min-width:0;
    }
    .search-row{
        width:100%;
    }
    .festival-header{
        padding:22px;
    }
    .festival-header__copy h1{
        font-size:36px;
    }
    .festival-header__summary{
        font-size:15px;
        line-height:1.8;
    }
    .festival-header__tags{
        gap:8px;
    }
    .festival-header__tags span{
        font-size:13px;
    }
    .hero-poster,
    .hero-poster img{
        min-height:460px;
    }
    .hero-poster__overlay{
        padding:28px 24px 30px;
    }
    .hero-poster__overlay h1{
        font-size:40px;
    }
    .hero-stack{
        grid-template-columns:1fr;
    }
    .module{
        padding:22px;
        border-radius:24px;
    }
    .module-head h2{
        font-size:30px;
    }
    .ai-quick-layout,
    .media-grid,
    .service-list{
        grid-template-columns:1fr;
    }
    .ai-quick-main{
        grid-template-columns:96px 1fr;
        align-items:start;
    }
    .ai-quick-main--plain{
        grid-template-columns:1fr;
        padding-left:22px;
    }
    .ai-copy{
        grid-column:2/3;
    }
    .ai-quick-main--plain .ai-copy{
        grid-column:auto;
    }
    .ai-cta{
        grid-column:1/-1;
        justify-self:start;
        width:auto;
    }
    .ai-quick-main--plain .ai-cta{
        grid-column:auto;
        width:100%;
    }
    .icon-nav{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .district-feature-card,
    .district-feature-card img{
        min-height:300px;
        height:300px;
    }
    .district-feature-card__overlay h3{
        font-size:28px;
    }
    .tour-footer{
        padding:26px 22px;
        border-radius:24px;
    }
    .tour-footer__meta{
        flex-direction:column;
        gap:8px;
    }
}

@media (max-width:480px){
    .tour-shell{
        width:calc(100% - 16px);
    }
    .site-nav__inner{
        width:calc(100% - 16px);
        padding:12px;
        border-radius:24px;
    }
    .site-brand__seal{
        width:48px;
        height:48px;
        flex-basis:48px;
    }
    .site-brand__text strong{
        font-size:20px;
    }
    .site-brand__text span{
        font-size:11px;
        letter-spacing:.12em;
    }
    .site-links a{
        padding:10px 14px;
    }
    .search-row{
        padding:8px;
    }
    .search-input,
    .search-btn{
        height:42px;
    }
    .festival-header{
        padding:18px;
        border-radius:26px;
    }
    .festival-header__eyebrow{
        font-size:12px;
    }
    .hero-poster,
    .hero-poster img{
        min-height:400px;
    }
    .hero-poster__overlay h1{
        font-size:34px;
    }
    .hero-card{
        min-height:250px;
    }
    .hero-card__copy h2,
    .mini-card h3,
    .media-card__body strong{
        font-size:24px;
    }
    .ai-quick-main{
        grid-template-columns:1fr;
        gap:16px;
    }
    .ai-avatar-img{
        width:92px;
        height:92px;
    }
    .ai-copy{
        grid-column:auto;
    }
    .ai-cta{
        grid-column:auto;
        width:100%;
        justify-self:stretch;
    }
    .module-head h2{
        font-size:28px;
    }
    .result-actions{
        flex-direction:column;
    }
    .copy-btn{
        width:100%;
    }
}
