* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { display: flex; flex-direction: column; min-height: 100vh; margin: 0; min-width: 320px; color: var(--me-blue); background: var(--me-page); font-family: Inter, Arial, sans-serif; }
button, input, select, textarea { font: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex="-1"]:focus-visible {
    outline: 3px solid var(--me-blue-2); outline-offset: 3px;
}
button:disabled { cursor: wait; opacity: .55; }
[hidden] { display: none !important; }

.utility-bar { color: white; background: var(--me-navy); }
.utility-inner { display: flex; align-items: center; justify-content: flex-end; width: min(1280px, calc(100% - 40px)); min-height: 42px; margin: auto; }
.utility-action { border: 1px solid rgba(255,255,255,.72); border-radius: 999px; padding: 8px 15px; color: white; background: rgba(255,255,255,.1); cursor: pointer; font-size: 13px; font-weight: 700; box-shadow: 0 2px 7px rgba(0,0,0,.16); }
.utility-action:hover, .utility-action[aria-pressed="true"] { border-color: white; background: white; color: var(--me-navy); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(187,201,218,.72); box-shadow: 0 3px 12px rgba(27,62,118,.05); }
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: min(1280px, calc(100% - 40px)); min-height: 78px; margin: auto; }
.brand-lockup { display: flex; align-items: center; min-width: 0; gap: 24px; color: var(--me-navy); }
.brand-logo { display: block; width: auto; height: 51px; max-width: min(290px, 44vw); object-fit: contain; }
.event-label { min-width: 0; padding-left: 24px; border-left: 1px solid var(--me-line); color: var(--me-navy); font-family: Merriweather, Georgia, serif; font-size: 21px; font-weight: 700; white-space: nowrap; }
.progress-copy { flex: 0 1 auto; min-width: 0; color: var(--me-blue); font-size: 13px; white-space: nowrap; }
.progress-dots { display: flex; gap: 7px; margin-top: 7px; }
.progress-dots i { display: block; width: 34px; height: 4px; border-radius: 4px; background: var(--me-line); }
.progress-dots i.done, .progress-dots i.current { background: var(--me-navy); }

.event-view, .summary-view, .catalog-view { width: min(1280px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0 72px; }
.event-intro, .summary-intro { width: 100%; margin-bottom: 30px; }
.event-intro h1, .summary-intro h1 { margin: 0; color: var(--me-navy); font-family: Merriweather, Georgia, serif; font-size: clamp(36px, 5vw, 60px); font-weight: 400; line-height: 1.08; letter-spacing: -.025em; }
.summary-intro p { margin: 15px 0 0; font-size: 17px; line-height: 1.6; }
.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.event-card { position: relative; display: grid; grid-template-columns: 88px minmax(0,1fr); gap: 18px; min-height: 214px; padding: 20px; border: 1px solid var(--me-line); border-radius: 12px; color: var(--me-blue); background: white; cursor: pointer; text-align: left; box-shadow: var(--me-shadow); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.event-card:hover:not(:disabled) { transform: translateY(-3px); border-color: var(--me-blue-2); box-shadow: 0 12px 28px rgba(27,62,118,.13); }
.event-card.selected { border: 2px solid var(--me-navy); background: var(--me-sky); }
.event-date { display: grid; align-content: center; justify-items: center; min-height: 88px; border-radius: 8px; color: white; background: var(--me-navy); }
.event-date strong { font-size: 34px; font-weight: 500; line-height: 1; }
.event-date span { margin-top: 4px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.event-copy h2 { margin: 0; color: var(--me-navy); font-size: 21px; font-weight: 600; }
.event-copy p { margin: 8px 0 14px; line-height: 1.45; }
.event-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.event-meta span { padding: 6px 10px; border-radius: 6px; color: var(--me-navy); background: var(--me-sky); font-size: 12px; font-weight: 600; }
.event-card.selected .event-meta span { background: white; }
.event-check { position: absolute; right: 16px; top: 16px; display: none; color: var(--me-navy); font-size: 20px; font-weight: 700; }
.event-card.selected .event-check { display: block; }
.event-actions, .summary-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 24px; }
.event-selection-note, .v2-note { font-size: 13px; }
.primary-pill, .continue-button { border: 0; border-radius: 8px; padding: 14px 22px; color: white; background: var(--me-navy); cursor: pointer; font-weight: 700; }
.primary-pill:hover:not(:disabled), .continue-button:hover:not(:disabled) { background: var(--me-navy-dark); }
.primary-pill:disabled, .continue-button:disabled { opacity: .45; }
.secondary-link { border: 0; padding: 10px 4px; color: var(--me-blue); background: transparent; cursor: pointer; font-weight: 600; }

.hero { position: relative; overflow: hidden; color: white; background: var(--me-navy); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 8px; background: url("../img/me-gradient.jpg") center / 100% 100% no-repeat; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 34px; width: min(1280px, calc(100% - 40px)); min-height: 330px; margin: auto; padding: 58px 0 48px; }
.hero h1 { margin: 0; font-family: Merriweather, Georgia, serif; font-size: clamp(40px, 6vw, 68px); font-weight: 400; line-height: 1.06; }
.hero-points { display: grid; gap: 8px; margin: 18px 0 0; padding-left: 22px; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.6; }
.timer { min-width: 210px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.38); border-radius: 10px; background: rgba(255,255,255,.08); text-align: right; }
.timer.session-timer { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 9px 13px; border-color: rgba(255,255,255,.5); background: var(--me-navy); box-shadow: 0 4px 12px rgba(10,24,44,.16); text-align: left; }
.timer.session-timer strong { flex: 0 1 auto; min-width: 0; margin-top: 0; color: white; font-size: 22px; white-space: nowrap; }
.timer span { display: block; color: rgba(255,255,255,.82); font-size: 12px; }
.timer strong { display: block; margin-top: 3px; font-size: 29px; font-weight: 500; font-variant-numeric: tabular-nums; }
.timer.timer-floating.session-timer { top: 120px; }

.catalog-intro { display: grid; gap: 20px; margin-bottom: 28px; }
.catalog-intro-copy { width: 100%; }
.catalog-intro h1 { margin: 0; color: var(--me-navy); font-family: Merriweather, Georgia, serif; font-size: clamp(36px,5vw,60px); font-weight: 400; line-height: 1.08; }
.catalog-intro p { margin: 15px 0 0; font-size: 17px; line-height: 1.6; }
.catalog-event-name { color: var(--me-navy); font-size: 14px !important; font-weight: 700; }
.catalog-back { justify-self: start; border: 1px solid var(--me-line); border-radius: 8px; padding: 12px 16px; color: var(--me-navy); background: white; cursor: pointer; font-weight: 700; }
.catalog-back:hover { border-color: var(--me-navy); background: var(--me-sky); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; padding: 14px; border: 1px solid var(--me-line); border-radius: 10px; background: white; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filter { border: 1px solid var(--me-line); border-radius: 7px; padding: 9px 12px; color: var(--me-navy); background: white; cursor: pointer; font-size: 13px; font-weight: 700; }
.catalog-filter:hover { border-color: var(--me-blue-2); }
.catalog-filter[aria-pressed="true"] { color: white; border-color: var(--me-navy); background: var(--me-navy); }
.catalog-result { margin: 0; font-size: 13px; white-space: nowrap; }
.catalog-status { margin-bottom: 16px; border-radius: 8px; padding: 11px 14px; color: var(--me-navy); background: var(--me-sky); font-size: 13px; }
.catalog-status.warning { color: var(--me-danger); background: #fff0ef; }
.catalog-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.catalog-card { display: grid; gap: 20px; min-width: 0; border: 1px solid var(--me-line); border-radius: 12px; padding: 22px; background: white; box-shadow: var(--me-shadow); }
.catalog-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.catalog-card-copy { min-width: 0; max-width: 900px; }
.catalog-card h2 { margin: 0; color: var(--me-navy); font-size: 22px; line-height: 1.35; }
.catalog-description { margin: 8px 0 0; font-size: 14px; line-height: 1.6; white-space: pre-line; }
.catalog-age { flex: 0 0 auto; padding: 6px 9px; border-radius: 5px; color: var(--me-navy); background: var(--me-sky-2); font-size: 12px; font-weight: 700; }
.catalog-age-list { display: flex; flex: 0 0 auto; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.catalog-age.secondary { color: var(--me-navy-dark); background: var(--me-coral); }
.catalog-age.mixed { color: var(--me-navy-dark); background: var(--me-mint); }
.catalog-time-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.catalog-time { display: grid; gap: 10px; min-width: 0; border: 1px solid var(--me-line); border-radius: 8px; padding: 12px; color: var(--me-navy); background: var(--me-sky); }
.catalog-time-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.catalog-time time { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.catalog-offering-status { color: #026e3a; font-size: 12px; font-weight: 700; }
.catalog-capacity { display: grid; gap: 4px; padding-top: 9px; border-top: 1px solid rgba(187,201,218,.85); font-size: 12px; }
.catalog-capacity span { display: flex; justify-content: space-between; gap: 10px; }
.catalog-capacity strong { color: var(--me-navy); }
.catalog-time.sold-out { color: #6b7278; border-color: #d4d8dc; background: #eef0f2; }
.catalog-time.sold-out .catalog-offering-status, .catalog-time.sold-out .catalog-capacity, .catalog-time.sold-out .catalog-capacity strong { color: #6b7278; }
.catalog-card-note { margin: -2px 0 0; font-size: 12px; line-height: 1.45; }
.catalog-empty { margin: 0; border: 1px solid var(--me-line); border-radius: 10px; padding: 28px; background: white; text-align: center; }

.filter-wrap { border-top: 1px solid var(--me-line); }
.filter-row { display: flex; align-items: end; gap: 10px; width: min(1280px, calc(100% - 40px)); margin: auto; padding: 10px 0 14px; }
.filter-field { display: grid; gap: 5px; }
.filter-field label { font-size: 12px; font-weight: 700; }
.filter-field select, .filter-field input { height: 42px; border: 1px solid var(--me-line); border-radius: 8px; color: var(--me-navy); background: white; padding: 0 16px; }
.filter-field select { min-width: 210px; }
.filter-field input { width: 120px; }
.back-to-events { display: block; width: min(1280px, calc(100% - 40px)); margin: 0 auto; border-bottom: 1px solid var(--me-line); padding: 10px 0 12px; text-align: left; }
.filter-load-button { height: 42px; padding: 0 17px; }
.clear-button { height: 42px; border: 1px solid var(--me-line); border-radius: 8px; padding: 0 17px; color: var(--me-navy); background: white; cursor: pointer; font-weight: 600; }
main { width: min(1280px, calc(100% - 40px)); margin: 34px auto 70px; }
.booking-guide { margin: 0 0 24px 126px; border-left: 4px solid var(--me-navy); border-radius: 0 8px 8px 0; padding: 13px 16px; background: var(--me-sky); font-size: 13px; line-height: 1.55; }
.booking-guide strong, .day-heading strong { color: var(--me-navy); }
.day-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 18px 126px; }
.day-heading strong { font-size: 25px; font-weight: 500; }
.day-heading span { font-size: 13px; }
.agenda { position: relative; }
.agenda::before { content: ""; position: absolute; top: 26px; bottom: 32px; left: 61px; width: 2px; background: var(--me-line); }
.slot-section { position: relative; display: grid; grid-template-columns: 126px minmax(0,1fr); gap: 18px; padding-bottom: 38px; }
.time-sticky { position: sticky; top: 168px; z-index: 5; display: grid; justify-items: center; gap: 5px; padding-top: 4px; }
.time-dot { width: 17px; height: 17px; border: 5px solid white; border-radius: 50%; background: var(--me-navy); box-shadow: 0 0 0 2px var(--me-navy); }
.time-sticky strong { color: var(--me-navy); font-size: 22px; font-weight: 500; }
.time-sticky span { font-size: 12px; overflow-wrap: anywhere; text-align: center; }
.slot-panel { overflow: hidden; border: 1px solid var(--me-line); border-radius: 12px; background: white; box-shadow: var(--me-shadow); }
.slot-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px; border-bottom: 1px solid var(--me-line); }
.slot-panel-head strong { color: var(--me-navy); font-size: 18px; font-weight: 600; }
.slot-count { padding: 7px 12px; border-radius: 6px; color: var(--me-navy); background: var(--me-sky); font-size: 12px; font-weight: 600; }
.program-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; padding: 13px; }
.program-item { position: relative; min-width: 0; min-height: 120px; border: 1px solid var(--me-line); border-radius: 10px; padding: 13px; color: var(--me-blue); background: white; cursor: pointer; text-align: left; }
.program-item:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--me-blue-2); }
.program-item.unavailable-by-selection { opacity: .42; cursor: not-allowed; filter: grayscale(.45); }
.program-item.selected { color: white; border-color: var(--me-navy); background: var(--me-navy); }
.program-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.age-chip { display: inline-flex; padding: 5px 8px; border-radius: 5px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.program-top .age-chip { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.age-chip.primary { color: var(--me-navy); background: var(--me-sky-2); }
.age-chip.secondary { color: var(--me-navy-dark); background: var(--me-coral); }
.age-chip.mixed { color: var(--me-navy-dark); background: var(--me-mint); }
.program-item.selected .age-chip { color: var(--me-navy); background: white; }
.free-place { font-size: 12px; font-weight: 700; }
.free-place.low { color: var(--me-danger); }
.program-item.selected .free-place, .program-item.selected .program-name { color: white; }
.program-name { display: block; min-height: 42px; color: var(--me-navy); font-size: 14px; font-weight: 700; line-height: 1.42; overflow-wrap: anywhere; }
.selected-copy { position: absolute; right: 10px; bottom: 8px; display: none; font-size: 11px; font-weight: 700; }
.program-item.selected .selected-copy { display: block; }
.program-drawer-overlay { position: fixed; inset: 0; z-index: 70; opacity: 0; visibility: hidden; background: rgba(10,24,44,.48); transition: opacity .24s ease, visibility .24s ease; }
.program-drawer-overlay.open { opacity: 1; visibility: visible; }
.program-drawer { position: fixed; top: 0; right: 0; z-index: 71; display: flex; flex-direction: column; width: min(480px,100%); height: 100dvh; border-left: 1px solid var(--me-line); background: white; box-shadow: -18px 0 42px rgba(23,33,32,.2); transform: translateX(105%); transition: transform .28s cubic-bezier(.22,.75,.2,1); }
.program-drawer.open { transform: translateX(0); }
.program-drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border-bottom: 1px solid var(--me-line); }
.program-drawer-kicker { color: var(--me-navy); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.program-drawer-close { width: 42px; height: 42px; border: 1px solid var(--me-line); border-radius: 50%; color: var(--me-navy); background: white; cursor: pointer; font-size: 28px; line-height: 1; }
.program-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 30px 28px; }
.program-drawer-body h2 { margin: 18px 0 14px; color: var(--me-navy); font-family: Merriweather,Georgia,serif; font-size: 30px; line-height: 1.2; }
.program-drawer-description { margin: 0; line-height: 1.65; white-space: pre-line; }
.program-drawer-facts { display: grid; gap: 12px; margin: 28px 0 0; }
.program-drawer-facts div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--me-line); }
.program-drawer-facts dt { font-size: 13px; font-weight: 700; }
.program-drawer-facts dd { margin: 0; color: var(--me-navy); font-weight: 700; text-align: right; }
.program-drawer-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; padding: 20px 24px; border-top: 1px solid var(--me-line); background: var(--me-page); }
.program-drawer-action-remove { background: var(--me-danger); }
.program-drawer-action-remove:hover:not(:disabled) { background: #7e2f2a; }
.program-drawer-open { overflow: hidden; }
.empty-slot { grid-column: 1/-1; margin: 0; padding: 32px; text-align: center; }
.selection-bar { position: sticky; bottom: 12px; z-index: 20; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 16px; width: min(1100px, calc(100% - 28px)); margin: 2px auto 0; padding: 14px 16px; border: 1px solid var(--me-line); border-radius: 12px; background: rgba(255,255,255,.97); box-shadow: 0 10px 28px rgba(27,62,118,.14); }
.selection-title strong { display: block; color: var(--me-navy); }
.selection-title span { display: block; margin-top: 2px; font-size: 12px; }
.tickets { display: flex; gap: 7px; overflow: hidden; }
.ticket { min-width: 0; overflow: hidden; padding: 8px 11px; border-radius: 6px; color: var(--me-navy); background: var(--me-sky); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.continue-button { padding: 12px 18px; white-space: nowrap; }
.footer { margin-top: auto; padding: 28px 20px; color: rgba(255,255,255,.82); background: var(--me-navy-dark); text-align: center; font-size: 12px; }

.summary-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; align-items: start; }
.summary-panel { border: 1px solid var(--me-line); border-radius: 12px; padding: 22px; background: white; box-shadow: var(--me-shadow); }
.summary-panel h2 { margin: 0 0 17px; color: var(--me-navy); font-size: 20px; }
.summary-list { display: grid; gap: 9px; }
.summary-program { display: flex; justify-content: space-between; gap: 16px; padding: 12px 14px; border-radius: 8px; background: var(--me-sky); }
.summary-program strong { display: block; flex: 0 0 auto; color: var(--me-navy); font-size: 14px; white-space: nowrap; }
.summary-program span { display: block; flex: 1 1 auto; min-width: 0; margin-top: 3px; font-size: 12px; overflow-wrap: anywhere; }
.summary-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.summary-field { display: grid; gap: 5px; }
.summary-field.full { grid-column: 1/-1; }
.summary-field label { font-size: 12px; font-weight: 700; }
.summary-field input, .summary-field textarea { width: 100%; border: 1px solid var(--me-line); border-radius: 8px; color: var(--me-navy); background: white; padding: 11px 12px; }
.summary-field textarea { min-height: 82px; resize: vertical; }
.summary-check { display: flex; align-items: flex-start; gap: 9px; margin-top: 15px; font-size: 12px; line-height: 1.45; }
.summary-check input { margin-top: 2px; }
.v2-consents { margin-top: 15px; }
.v2-message, .v2-error { margin: 20px 0; padding: 14px; border-radius: 8px; background: var(--me-sky); color: var(--me-navy); }
.v2-error { border-left: 4px solid var(--me-danger); background: #fff0ef; color: var(--me-danger); }
.v2-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.55); }
.v2-dialog { position: fixed; z-index: 61; left: 50%; top: 50%; width: min(92vw,480px); transform: translate(-50%,-50%); padding: 24px; border-radius: 12px; background: white; box-shadow: var(--me-shadow); }
.v2-dialog h2 { margin-top: 0; color: var(--me-navy); }
.v2-dialog div { display: flex; justify-content: flex-end; gap: 10px; }
.dialog-status { padding: 10px; border-radius: 6px; color: var(--me-danger); background: #fff0ef; }
.confirmation-progress { text-align: right; }
.confirmation-view { min-height: calc(100vh - 190px); display: grid; place-items: center; padding-top: 72px; padding-bottom: 96px; }
.confirmation-card { display: grid; grid-template-columns: 76px minmax(0, 680px); gap: 28px; width: min(100%, 850px); border: 1px solid var(--me-line); border-radius: 14px; padding: 42px; background: white; box-shadow: 0 14px 38px rgba(27,62,118,.11); }
.confirmation-mark { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; color: white; background: var(--me-mint); font-size: 38px; font-weight: 700; line-height: 1; }
.confirmation-kicker { margin: 0 0 10px; color: var(--me-mint); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.confirmation-copy h1 { margin: 0; color: var(--me-navy); font-family: Merriweather, Georgia, serif; font-size: clamp(34px, 5vw, 54px); font-weight: 400; line-height: 1.12; }
.confirmation-copy p { margin: 16px 0 0; line-height: 1.65; }
.confirmation-copy .confirmation-lead { margin-top: 18px; color: var(--me-navy); font-size: 18px; }
.confirmation-reference { display: inline-grid; gap: 5px; margin-top: 26px; border-left: 4px solid var(--me-navy); border-radius: 0 8px 8px 0; padding: 13px 18px; background: var(--me-sky); }
.confirmation-reference span { color: var(--me-blue); font-size: 12px; font-weight: 700; }
.confirmation-reference strong { color: var(--me-navy); font-size: 21px; letter-spacing: .08em; }
.confirmation-contact { font-size: 14px; }
.confirmation-contact a { color: var(--me-navy); font-weight: 700; }
.confirmation-home { display: inline-block; margin-top: 28px; text-decoration: none; }

@media (max-width: 820px) {
    .brand-row { gap: 10px; }
    .brand-lockup { flex: 1 1 auto; }
    .event-label { font-size: 18px; }
    .timer.session-timer { flex: 0 1 auto; padding: 8px 10px; }
    .timer.session-timer span { max-width: 72px; line-height: 1.1; }
    .timer.session-timer strong { font-size: 20px; }
    .filter-row { flex-wrap: wrap; }
    .slot-section { grid-template-columns: 92px minmax(0,1fr); gap: 10px; }
    .agenda::before { left: 45px; }
    .day-heading { margin-left: 102px; }
    .program-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .selection-bar { grid-template-columns: 1fr auto; }
    .tickets { grid-column: 1/-1; grid-row: 2; overflow-x: auto; }
    .summary-layout { grid-template-columns: 1fr; }
    .confirmation-card { grid-template-columns: 1fr; gap: 18px; }
    .catalog-time-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
    .progress-copy { display: none; }
    .event-label { font-size: 16px; }
    .brand-logo { max-width: 46vw; }
}

@media (max-width: 560px) {
    .utility-inner, .brand-row, .filter-row, .hero-inner, main { width: calc(100% - 20px); }
    .brand-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; }
    .progress-copy { display: none; }
    .confirmation-view { min-height: calc(100vh - 125px); padding-top: 38px; padding-bottom: 56px; }
    .confirmation-card { width: 100%; padding: 28px 22px; }
    .confirmation-mark { width: 54px; height: 54px; font-size: 32px; }
    .confirmation-copy .confirmation-lead { font-size: 16px; }
    .confirmation-reference strong { font-size: 18px; }
    .brand-lockup { width: 100%; min-width: 0; flex: none; gap: 8px; }
    .brand-logo { height: 35px; max-width: 34vw; flex: 0 1 auto; }
    .event-label { min-width: 0; padding-left: 8px; font-size: 14px; white-space: normal; line-height: 1.15; overflow-wrap: anywhere; }
    .hero-inner { min-height: 0; padding: 42px 0 36px; }
    .hero-points { font-size: 15px; }
    .timer { width: 100%; text-align: left; }
    .timer.session-timer { margin-left: 0; width: auto; max-width: 100%; padding: 7px 8px; overflow: hidden; }
    .timer.session-timer span { flex: 0 1 42px; min-width: 0; max-width: 42px; font-size: 11px; }
    .timer.session-timer strong { flex: 0 0 4.4ch; width: 4.4ch; font-size: 16px; letter-spacing: -.03em; text-align: right; }
    .catalog-view { width: calc(100% - 20px); padding: 32px 0 48px; }
    .catalog-toolbar, .catalog-card-head { align-items: stretch; flex-direction: column; }
    .catalog-result { white-space: normal; }
    .catalog-time-list { grid-template-columns: 1fr; }
    .booking-guide, .day-heading { margin-left: 0; }
    .day-heading span { display: none; }
    .slot-section { display: block; padding-bottom: 26px; }
    .agenda::before { display: none; }
    .time-column { position: sticky; top: 99px; z-index: 7; margin: 0 8px -1px; }
    .time-sticky { position: static; display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border: 1px solid var(--me-line); border-radius: 10px 10px 0 0; background: white; }
    .time-dot { display: none; }
    .program-grid { gap: 7px; padding: 9px; }
    .program-item { min-height: 104px; padding: 10px; }
    .program-top { align-items: flex-start; flex-direction: column; }
    .selection-bar { bottom: 7px; width: calc(100% - 14px); grid-template-columns: 1fr; border-radius: 18px; }
    .tickets { grid-column: auto; grid-row: auto; }
    .continue-button { width: 100%; }
    .event-view, .summary-view { width: calc(100% - 20px); padding: 32px 0 48px; }
    .event-grid { grid-template-columns: 1fr; gap: 12px; }
    .event-card { min-height: 174px; grid-template-columns: 64px minmax(0,1fr); gap: 12px; padding: 14px; border-radius: 18px; }
    .event-date { min-height: 70px; }
    .event-date strong { font-size: 27px; }
    .event-copy h2 { font-size: 17px; }
    .event-copy p { margin: 6px 0 10px; font-size: 13px; }
    .event-actions, .summary-actions { align-items: stretch; flex-direction: column; }
    .primary-pill { width: 100%; }
    .summary-fields { grid-template-columns: 1fr; }
    .summary-field.full { grid-column: auto; }
    .summary-panel { padding: 16px; border-radius: 18px; }
    .summary-actions { flex-direction: column-reverse; }
    .program-drawer-body { padding: 24px 20px; }
    .program-drawer-actions { align-items: stretch; flex-direction: column-reverse; }
    .program-drawer-actions .primary-pill, .program-drawer-actions .secondary-link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
