:root {
    --navy: #102846;
    --navy-deep: #091b31;
    --red: #c51f3d;
    --red-dark: #a51631;
    --cream: #f6f3ed;
    --white: #fff;
    --text: #1c2b3b;
    --muted: #687687;
    --line: #d9dee5;
    --shadow: 0 24px 70px rgba(15, 36, 63, .13);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 10%, rgba(197, 31, 61, .1), transparent 29rem),
        linear-gradient(180deg, var(--cream), #f8f8f7 43rem, #edf1f4);
    font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}
body::before {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    height: 8px;
    background: linear-gradient(90deg, var(--red) 0 31%, var(--navy) 31%);
    content: "";
}
a { color: var(--red-dark); font-weight: 750; }
.page-shell { width: min(1120px, calc(100% - 40px)); margin: auto; padding: 76px 0 60px; }
.intro { position: relative; min-height: 195px; padding-left: 252px; }
.brand-mark { position: absolute; top: 0; left: 0; width: 229px; height: 70px; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.eyebrow { margin: 0 0 8px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
h1 {
    margin: 0;
    color: var(--navy-deep);
    font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.08;
}
.subtitle { margin: 12px 0 18px; color: var(--muted); font-size: 17px; }
.scope-note { max-width: 790px; padding: 12px 15px; border-left: 4px solid var(--red); color: #526171; background: rgba(255, 255, 255, .7); font-size: 13px; }
.scope-note strong { margin-right: 8px; color: var(--navy); }
.quick-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
    margin: 22px 0 28px;
    border: 1px solid rgba(16, 40, 70, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(15, 36, 63, .08);
}
.quick-nav a { display: flex; min-height: 74px; align-items: center; gap: 10px; padding: 14px; border-right: 1px solid var(--line); color: var(--navy); font-size: 13px; text-decoration: none; }
.quick-nav a:last-child { border-right: 0; }
.quick-nav a:hover { background: #f7f8f9; }
.quick-nav span { color: var(--red); font: 600 22px Georgia, serif; }
.critical-alert { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; padding: 21px 24px; border-radius: 13px; color: #fff; background: var(--red); box-shadow: 0 14px 32px rgba(197, 31, 61, .2); }
.alert-icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border: 2px solid rgba(255, 255, 255, .75); border-radius: 50%; font-size: 25px; font-weight: 900; }
.critical-alert strong { font-size: 18px; }
.critical-alert p { margin: 4px 0 0; color: rgba(255, 255, 255, .85); font-size: 13px; }
.stage-card {
    margin-top: 28px;
    padding: clamp(28px, 5vw, 56px);
    scroll-margin-top: 24px;
    border: 1px solid rgba(16, 40, 70, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow);
}
.stage-heading { display: flex; align-items: center; gap: 17px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.stage-heading > span { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--navy); font-size: 13px; font-weight: 900; }
.stage-heading p { margin: 0 0 2px; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.stage-heading h2 { margin: 0; color: var(--navy-deep); font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(24px, 3.3vw, 34px); line-height: 1.2; }
.stage-heading small { display: block; margin-top: 5px; color: var(--muted); }
.checklist-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.check-item { display: flex; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.check-item b { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--navy); font-size: 12px; }
.check-item h3 { margin: 0; color: var(--navy-deep); font-size: 15px; }
.check-item p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.required-item { border-color: rgba(197, 31, 61, .35); background: #fff6f7; }
.required-item b { background: var(--red); }
.resource-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.resource-grid a { display: grid; min-height: 132px; align-content: center; padding: 17px; border-radius: 10px; color: #fff; background: var(--navy); text-decoration: none; transition: transform .18s ease; }
.resource-grid a:hover { transform: translateY(-2px); }
.resource-grid span { color: #e4a7b2; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.resource-grid strong { margin-top: 5px; font-size: 15px; }
.resource-grid small { margin-top: 5px; color: #b8c4d0; }
.accommodation-stage { background: linear-gradient(145deg, #fff, #f4f7f8); }
.accommodation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.accommodation-card { min-width: 0; padding: 22px; border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: 0 12px 30px rgba(15, 36, 63, .07); }
.accommodation-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.accommodation-card-heading p { margin: 0 0 2px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.accommodation-card-heading h3 { margin: 0; color: var(--navy-deep); font: 600 24px Georgia, "Noto Serif SC", serif; }
.accommodation-card-heading > span { padding: 5px 8px; border-radius: 20px; color: var(--navy); background: #eaf0f4; font-size: 10px; font-weight: 900; white-space: nowrap; }
.accommodation-card > .accommodation-actions { margin-top: 18px; }
.accommodation-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.accommodation-download, .accommodation-photo-button { display: flex; min-height: 43px; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 7px; text-align: center; text-decoration: none; font-size: 12px; font-weight: 900; }
.accommodation-download { color: #fff; background: var(--red); }
.accommodation-photo-button { color: var(--navy); background: #edf1f4; }
.accommodation-info-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 18px; margin-top: 22px; }
.accommodation-tip, .application-flow { padding: 24px; border-radius: 13px; }
.accommodation-tip { color: #fff; background: var(--navy); }
.accommodation-tip .eyebrow { color: #e9a7b4; }
.accommodation-tip h3, .application-flow h3 { margin: 0 0 13px; font: 600 23px Georgia, "Noto Serif SC", serif; }
.accommodation-tip ul { display: grid; gap: 12px; margin: 0; padding-left: 20px; }
.accommodation-tip li { color: #d7e1e9; font-size: 13px; }
.application-flow { border: 1px solid var(--line); background: #fff; }
.application-flow h3 { color: var(--navy-deep); }
.application-flow ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.application-flow li { display: flex; align-items: flex-start; gap: 11px; }
.application-flow li > span { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: 10px; font-weight: 900; }
.application-flow li p { margin: 1px 0 0; color: #526171; font-size: 12px; }
.two-column, .medical-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.info-panel { padding: 24px; border-radius: 12px; background: #f5f7f8; }
.info-panel h3, .medical-layout h3 { margin: 0 0 12px; color: var(--navy-deep); }
.info-panel ul, .document-list { margin: 0; padding-left: 20px; }
.info-panel li, .document-list li { margin: 8px 0; color: #526171; font-size: 13px; }
.arrival-video-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 15px 0;
}
.arrival-video-thumbnails a {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(16, 40, 70, .12);
    border-radius: 9px;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 36, 63, .08);
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}
.arrival-video-thumbnails a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 36, 63, .14);
}
.arrival-video-thumbnails img {
    display: block;
    width: 100%;
    aspect-ratio: 129 / 92;
    object-fit: cover;
}
.arrival-video-thumbnails strong {
    display: grid;
    min-height: 46px;
    place-items: center;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.35;
}
.arrival-video-thumbnails + .arrival-actions { margin-top: 15px; }
.action-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.action-row > a, .action-row > details > summary, .help-actions a { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 18px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 900; }
.primary-action { color: #fff; background: var(--red); }
.secondary-action { color: var(--navy); background: #edf1f4; }
.special-pass-button { display: inline-flex; min-height: 28px; align-items: center; margin-left: 7px; padding: 0 10px; border-radius: 5px; color: #fff; background: var(--red); text-decoration: none; font-size: 11px; font-weight: 900; white-space: nowrap; }
.arrival-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.arrival-actions > .arrival-action-card, .arrival-actions > details > summary {
    display: grid;
    min-height: 92px;
    align-content: center;
    justify-items: start;
    padding: 17px 19px;
    border: 1px solid rgba(16, 40, 70, .1);
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(15, 36, 63, .1);
}
.arrival-actions > .arrival-action-card { color: #fff; background: var(--red); }
.arrival-actions > details > summary { color: #fff; background: var(--navy); }
.arrival-actions > .video-modal-trigger { color: #fff; background: var(--navy); }
.arrival-actions span { font-size: 9px; letter-spacing: .16em; opacity: .65; }
.arrival-actions strong { margin-top: 4px; font-size: 15px; }
.arrival-detail { flex: 0 0 auto; }
.arrival-detail summary { cursor: pointer; list-style: none; }
.arrival-detail summary::-webkit-details-marker { display: none; }
.arrival-detail[open] { grid-column: 1 / -1; }
.arrival-detail[open] summary { width: min(260px, 100%); background: var(--red); }
.arrival-detail-content { width: 100%; margin-top: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: #f7f9fa; }
.modal-card.video-modal-card { width: min(760px, 100%); padding: 26px; }
.video-modal-card h3 { margin: 0 48px 18px 2px; color: var(--navy-deep); font: 600 27px Georgia, "Noto Serif SC", serif; }
.video-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.video-link-grid a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border: 1px solid rgba(16, 40, 70, .12);
    border-radius: 8px;
    color: var(--navy);
    background: #eef2f5;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 36, 63, .08);
}
.video-link-grid a:hover { transform: translateY(-1px); }
.video-link-grid .video-link-primary {
    min-height: 72px;
    border-color: rgba(197, 31, 61, .35);
    color: #fff;
    background: var(--red);
    font-size: 15px;
    box-shadow: 0 14px 28px rgba(197, 31, 61, .22);
}
.video-link-grid .video-link-guide {
    min-height: 64px;
    border-color: rgba(16, 40, 70, .28);
    color: #fff;
    background: var(--navy);
    font-size: 14px;
    box-shadow: 0 12px 24px rgba(15, 36, 63, .18);
}
.vehicle-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.vehicle-grid figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.vehicle-grid img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.vehicle-grid figcaption { padding: 8px; color: #526171; text-align: center; font-size: 11px; }
.driver-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.driver-grid article { padding: 17px; border-radius: 9px; background: #fff; }
.driver-grid h4 { margin: 0 0 7px; color: var(--navy-deep); }
.driver-grid h4 b { margin-left: 5px; padding: 3px 6px; border-radius: 4px; color: #fff; background: var(--red); font-size: 9px; }
.driver-grid p { margin: 0 0 8px; color: #526171; font-size: 12px; }
.driver-grid small { color: var(--muted); }
.tips-detail ul { display: grid; gap: 9px; margin: 0; padding-left: 22px; }
.tips-detail li { color: #526171; font-size: 13px; }
.image-modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; }
.image-modal:target { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4, 14, 27, .82); backdrop-filter: blur(4px); }
.modal-card { position: relative; z-index: 1; width: min(700px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: 18px; border-radius: 15px; background: #fff; box-shadow: 0 30px 90px rgba(0, 0, 0, .4); }
.modal-card p { margin: 0 48px 12px 2px; color: var(--navy-deep); font-weight: 900; }
.modal-card img { display: block; width: 100%; height: auto; border-radius: 8px; }
.modal-close { position: absolute; top: 10px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: var(--red); text-decoration: none; font-size: 25px; line-height: 1; }
.gallery-modal-card { width: min(980px, 100%); }
.gallery-modal-card h3 { margin: 0 48px 16px 2px; color: var(--navy-deep); font: 600 25px Georgia, "Noto Serif SC", serif; }
.modal-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.modal-gallery a { display: block; overflow: hidden; border-radius: 9px; background: #e7ecef; }
.modal-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .2s ease; }
.modal-gallery a:hover img { transform: scale(1.03); }
.process-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.guide-image {
    display: block;
    width: min(100%, 670px);
    margin: 0 auto 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 36, 63, .1);
}
.guide-image img { display: block; width: 100%; height: auto; }
.guide-image-link { transition: transform .18s ease, box-shadow .18s ease; }
.guide-image-link:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15, 36, 63, .16); }
.medical-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
    margin-top: 24px;
}
.medical-image-grid .guide-image { width: 100%; margin-bottom: 0; }
.process-list li { display: flex; gap: 17px; padding: 20px; border-left: 4px solid var(--navy); border-radius: 8px; background: #f6f8fa; }
.process-list li > span { color: var(--red); font: 600 30px/1 Georgia, serif; }
.process-content { min-width: 0; flex: 1; }
.process-title-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.process-list h3 { margin: 0; color: var(--navy-deep); font-size: 16px; }
.process-list p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.process-download {
    display: inline-flex;
    min-height: 38px;
    flex: 0 0 auto;
    align-items: center;
    padding: 0 14px;
    border-radius: 7px;
    color: #fff;
    background: var(--red);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}
.registration-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.registration-details details { overflow: hidden; border-radius: 11px; background: #fff; box-shadow: 0 12px 28px rgba(15, 36, 63, .11); }
.registration-details details:first-child { border: 2px solid rgba(197, 31, 61, .35); }
.registration-details details:last-child { border: 2px solid rgba(16, 40, 70, .28); }
.registration-details summary {
    position: relative;
    display: grid;
    min-height: 82px;
    align-content: center;
    padding: 15px 48px 15px 19px;
    color: #fff;
    background: var(--red);
    cursor: pointer;
    list-style: none;
}
.registration-details details:last-child summary { background: var(--navy); }
.registration-details summary span { font-size: 9px; font-weight: 900; letter-spacing: .16em; opacity: .65; }
.registration-details summary strong { margin-top: 4px; font-size: 16px; }
.registration-details summary::-webkit-details-marker { display: none; }
.registration-details summary::after { position: absolute; top: 26px; right: 18px; content: "+"; color: #fff; font-size: 25px; line-height: 1; }
.registration-details details[open] summary { border-bottom: 1px solid rgba(255, 255, 255, .25); }
.registration-details details[open] summary::after { content: "−"; }
.detail-content { padding: 14px 16px 16px; color: #526171; font-size: 13px; }
.detail-content ol { display: grid; gap: 8px; margin: 0; padding-left: 21px; }
.detail-content li { display: list-item; padding: 0; border: 0; border-radius: 0; background: transparent; }
.email-template { margin-top: 8px; padding: 12px; border-radius: 7px; color: #344658; background: #f2f5f7; line-height: 1.8; }
.booking-alert { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-bottom: 24px; padding: 20px 22px; border-radius: 10px; color: #fff; background: var(--navy); }
.booking-alert strong { font-size: 17px; }
.booking-alert p { flex: 1 1 520px; margin: 0; color: #d6e0e9; font-size: 13px; }
.booking-alert a { color: #fff; }
.medical-layout > article { padding: 24px; border: 1px solid var(--line); border-radius: 11px; }
.clinic-card { color: #fff; background: var(--red); border-color: var(--red) !important; }
.clinic-card p { margin: 0; font-size: 10px; font-weight: 900; letter-spacing: .15em; opacity: .75; }
.clinic-card h3 { color: #fff; }
.clinic-card address { font-style: normal; font-size: 13px; }
.clinic-card small { display: block; margin-top: 14px; color: rgba(255, 255, 255, .78); }
.handover-box { display: grid; grid-template-columns: 150px 1fr; gap: 18px; margin-top: 22px; padding: 21px; border-radius: 10px; background: #f4f6f7; }
.handover-box span { color: var(--navy); font-weight: 900; }
.handover-box p { margin: 0; color: #354e67; font-size: 15px; font-weight: 700; line-height: 1.75; }
.final-stage { background: linear-gradient(135deg, #fff, #f2f6f7); }
.finish-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.finish-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.finish-grid span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: #fff; background: #2f7658; font-weight: 900; }
.finish-grid h3 { margin: 13px 0 5px; color: var(--navy-deep); font-size: 15px; }
.finish-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.gift-card:has(details[open]) { grid-column: 1 / -1; }
.gift-card details { margin-top: 11px; }
.gift-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    list-style: none;
}
.gift-card summary::-webkit-details-marker { display: none; }
.gift-card summary strong { color: var(--navy-deep); font-size: 15px; }
.gift-card summary b { padding: 8px 11px; border-radius: 6px; color: #fff; background: var(--red); font-size: 11px; white-space: nowrap; }
.gift-details { margin-top: 14px; padding: 18px; border-radius: 9px; background: #f4f7f8; }
.gift-details > p { color: #405469; font-size: 13px; }
.gift-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 16px; }
.gift-detail-grid section { padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.gift-detail-grid h4 { margin: 0 0 8px; color: var(--navy); font-size: 14px; }
.gift-detail-grid ul { margin: 0; padding-left: 20px; }
.gift-detail-grid li { margin: 6px 0; color: #526171; font-size: 13px; }
.gift-details .gift-contact { margin-top: 15px; color: #405469; }
.help-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 28px; padding: 34px; border-radius: 16px; color: #fff; background: var(--navy-deep); }
.help-card h2 { margin: 0; font-family: Georgia, "Noto Serif SC", serif; font-size: 27px; }
.help-card div > p:last-child { max-width: 650px; margin: 8px 0 0; color: #b7c5d2; font-size: 13px; }
.help-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.help-actions a { color: var(--navy-deep); background: #fff; }
.pickup-float {
    position: fixed;
    top: 50%;
    right: 18px;
    z-index: 80;
    transform: translateY(-50%);
}
.pickup-float-button {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    align-content: center;
    gap: 1px;
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--red), #e24a61);
    box-shadow: 0 16px 32px rgba(197, 31, 61, .3), 0 0 0 7px rgba(197, 31, 61, .1);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.05;
    animation: pickup-wiggle 2.4s ease-in-out infinite;
    transition: transform .18s ease, box-shadow .18s ease, width .18s ease, height .18s ease;
}
.pickup-float-button:hover {
    animation-play-state: paused;
    transform: scale(1.14);
    box-shadow: 0 20px 40px rgba(197, 31, 61, .38), 0 0 0 9px rgba(197, 31, 61, .14);
}
.pickup-float-button span { display: block; }
.pickup-float-menu {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    display: none;
    min-width: 94px;
    overflow: hidden;
    border: 1px solid rgba(16, 40, 70, .12);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 36, 63, .2);
    transform: translateY(-50%);
}
.pickup-float.is-menu-open .pickup-float-menu { display: grid; }
.pickup-float-menu button {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    background: #fff;
    cursor: pointer;
    font: 900 13px/1 Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    text-align: center;
}
.pickup-float-menu button:last-child { border-bottom: 0; }
.pickup-float-menu button:hover { color: #fff; background: var(--red); }
.pickup-float.is-minimized .pickup-float-button {
    width: 22px;
    height: 22px;
    gap: 0;
    border-width: 1px;
    box-shadow: 0 8px 18px rgba(197, 31, 61, .24), 0 0 0 4px rgba(197, 31, 61, .08);
    font-size: 0;
    animation: none;
}
.pickup-float.is-minimized .pickup-float-button::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    content: "";
}
.pickup-float.is-minimized .pickup-float-button:hover { transform: scale(1.35); }

@keyframes pickup-wiggle {
    0%, 78%, 100% { transform: rotate(0deg) translateX(0); }
    82% { transform: rotate(-7deg) translateX(-2px); }
    86% { transform: rotate(7deg) translateX(2px); }
    90% { transform: rotate(-5deg) translateX(-1px); }
    94% { transform: rotate(5deg) translateX(1px); }
}

@media (max-width: 900px) {
    .quick-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .quick-nav a { border-bottom: 1px solid var(--line); }
    .accommodation-grid { grid-template-columns: 1fr; }
    .accommodation-card > p { min-height: 0; }
    .resource-grid, .finish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .help-card { align-items: flex-start; flex-direction: column; }
    .help-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
    .page-shell { width: min(100% - 24px, 1120px); padding-top: 48px; }
    .intro { min-height: 0; padding-left: 0; text-align: center; }
    .brand-mark { position: static; display: block; width: 205px; height: 64px; margin: 0 auto 28px; }
    .scope-note { text-align: left; }
    .quick-nav, .checklist-grid, .resource-grid, .accommodation-info-grid, .two-column, .medical-layout, .medical-image-grid, .finish-grid { grid-template-columns: 1fr; }
    .quick-nav a { min-height: 60px; border-right: 0; }
    .critical-alert { align-items: flex-start; }
    .stage-card { padding: 25px 18px; border-radius: 15px; }
    .stage-heading { align-items: flex-start; }
    .process-title-row { align-items: flex-start; flex-direction: column; }
    .process-download { width: 100%; justify-content: center; }
    .registration-details { grid-template-columns: 1fr; }
    .gift-detail-grid { grid-template-columns: 1fr; }
    .handover-box { grid-template-columns: 1fr; }
    .arrival-actions { grid-template-columns: 1fr; }
    .action-row > a, .action-row > details, .action-row > details > summary, .help-actions a { width: 100%; }
    .arrival-detail[open] summary { width: 100%; }
    .video-link-grid, .driver-grid { grid-template-columns: 1fr; }
    .arrival-video-thumbnails { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .accommodation-actions { grid-template-columns: 1fr; }
    .modal-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .help-card { padding: 27px 22px; }
    .help-actions { width: 100%; }
    .pickup-float { right: 10px; }
    .pickup-float-button { width: 62px; height: 62px; font-size: 14px; }
    .pickup-float-menu { right: calc(100% + 8px); }
}
