/* ==========================================================================
   삼학도크루즈 예약 사이트 — 고객 대면 플래그십
   brand.css 토큰 위에 얹은 전면 재디자인. app.js 훅(id/class) 전부 유지.
   ========================================================================== */

.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }

/* ---- 상단바 (유리 질감) ---- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center; font-size: 20px;
  background: var(--grad-sea); border-radius: 12px; color: #fff; box-shadow: var(--shadow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.brand-text small { font-size: .72rem; color: var(--ink-3); }
.topnav { display: flex; align-items: center; gap: 6px; }
.topnav > a { padding: 8px 12px; font-size: .92rem; font-weight: 600; color: var(--ink-2); text-decoration: none; border-radius: 8px; }
.topnav > a:hover { color: var(--sea); background: var(--panel-2); }
.phone-chip { font-variant-numeric: tabular-nums; color: var(--sea-deep) !important; font-weight: 700 !important; }
.member-area { display: flex; align-items: center; gap: 8px; }
.m-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
.m-link { font-size: .84rem; color: var(--ink-3); text-decoration: none; cursor: pointer; }
.m-link:hover { color: var(--sea); }
@media (max-width: 720px) { .topnav > a:not(.phone-chip) { display: none; } }

/* ---- 히어로 ---- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-sea); color: #fff;
  padding: clamp(48px, 9vw, 104px) 0 clamp(56px, 10vw, 120px);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 82% 8%, rgba(255,255,255,.16), transparent 55%),
    radial-gradient(90% 70% at 10% 100%, rgba(62,153,66,.30), transparent 60%);
}
/* 히어로 사진: 바다 그라데이션 뒤에 깔고 어둡게 오버레이해 텍스트 가독성 유지 */
.hero.has-photo::before {
  background:
    linear-gradient(120deg, rgba(23,69,124,.86) 0%, rgba(29,90,160,.72) 45%, rgba(23,69,124,.55) 100%),
    var(--hero-img) center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px; z-index: -1;
  background: var(--ground);
  -webkit-mask: radial-gradient(28px at 50% 0, transparent 98%, #000) repeat-x 0 0 / 56px 46px;
          mask: radial-gradient(28px at 50% 0, transparent 98%, #000) repeat-x 0 0 / 56px 46px;
}
.hero-eyebrow { margin: 0 0 14px; font-size: .78rem; letter-spacing: .28em; font-weight: 700; color: rgba(255,255,255,.82); }
.hero h1 {
  margin: 0 0 16px; font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.14; text-wrap: balance; max-width: 16ch;
}
.hero-sub { margin: 0 0 28px; font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.9); max-width: 44ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; margin-top: 44px; max-width: 640px; }
.hero-stats .stat {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; padding: 16px 18px; backdrop-filter: blur(6px);
}
.hero-stats .stat b { display: block; font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.hero-stats .stat span { font-size: .82rem; color: rgba(255,255,255,.82); }

/* ---- 공용 버튼 (self-contained, brand.css보다 뒤에 로드되어 우선) ---- */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 11px 20px; font-size: .96rem; font-weight: 700;
  cursor: pointer; text-decoration: none; border: 1px solid transparent;
  transition: transform .05s, box-shadow .16s, background .16s, border-color .16s;
}
.btn-primary { background: var(--grad-sea); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn-outline:hover { background: rgba(255,255,255,.14); }
.section .btn-outline, .place-cta .btn-outline { color: var(--sea-deep); border-color: var(--line); background: var(--panel); }
.section .btn-outline:hover, .place-cta .btn-outline:hover { border-color: var(--sea); }
.btn-ghost { background: var(--panel); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sea); color: var(--sea); }
.btn-primary:active, .btn-outline:active, .btn-ghost:active { transform: translateY(1px); }
.lg { padding: 14px 28px; font-size: 1.04rem; }
.btn-primary:focus-visible, .btn-outline:focus-visible, .btn-ghost:focus-visible { outline: none; box-shadow: var(--ring); }

/* ---- 섹션 ---- */
.section { padding: clamp(44px, 7vw, 80px) 0; }
.section-head { margin-bottom: 30px; }
.section-head h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 800; letter-spacing: -.02em; }
.section-head h2::after { content: ""; display: block; width: 44px; height: 4px; margin-top: 12px; border-radius: 3px; background: var(--grad-sea); }
.section-head p { margin: 0; color: var(--ink-2); }

/* ---- 상품 카드 ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.pcard {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s, border-color .16s;
}
.pcard:hover .pcard-emoji { transform: translate(-50%,-60%) scale(1.1); }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--sea) 40%, var(--line)); }
.pcard-top {
  position: relative; height: 168px; display: flex; align-items: flex-end;
  padding: 16px; background: var(--grad-sky); color: #fff; overflow: hidden;
}
.pcard-top.has-photo { background-size: cover; background-position: center; }
.pcard-top::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 120% at 80% 0, rgba(255,255,255,.18), transparent 55%); }
.pcard-top.has-photo::after { display: none; }
.pcard-top.has-photo { transition: background-size .5s ease; background-size: 105%; }
.pcard:hover .pcard-top.has-photo { background-size: 118%; }
.pcard-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); font-size: 44px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); transition: transform .2s; }
.pcard-top h3 { position: relative; z-index: 2; margin: 0; font-size: 1.28rem; font-weight: 800; letter-spacing: -.02em; text-shadow: 0 2px 8px rgba(12,24,40,.55); }
.pcard-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.94); color: var(--sea-deep); box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.pcard-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard-body h3 { margin: 0; font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; }
.pcard-desc { margin: 0; font-size: .9rem; color: var(--ink-2); line-height: 1.5; flex: 1; }
.pcard-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.pcard-meta .chip { font-size: .72rem; }
.pcard-fare { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 8px; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.pcard-fare .won { font-size: 1.4rem; font-weight: 800; color: var(--sea-deep); font-variant-numeric: tabular-nums; }
.pcard-fare .per { font-size: .8rem; color: var(--ink-3); }
.pcard-fare .child { margin-left: auto; font-size: .82rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.pcard-body .btn-primary { width: 100%; margin-top: 14px; }

/* ---- 이용안내 ---- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); }
.info-card h3 { margin: 0 0 14px; font-size: 1.08rem; font-weight: 800; }
ul.tick { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
ul.tick li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-2); line-height: 1.5; }
ul.tick li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--leaf); font-weight: 800; }
ul.tick.warn li::before { content: "!"; color: var(--warn); }
.ship-info { display: flex; flex-direction: column; gap: 10px; }
.ship-info .row { display: flex; justify-content: space-between; font-size: .92rem; padding: 6px 0; border-bottom: 1px solid var(--line-2); }
.ship-info .row:last-child { border-bottom: none; }
.ship-info .row span { color: var(--ink-3); }
.ship-info .row b { font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---- 오시는 길 ---- */
.place-card { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.place-body { padding: 28px; }
.place-name { margin: 0 0 6px; font-size: 1.2rem; font-weight: 800; }
.place-addr { margin: 0 0 4px; color: var(--ink-2); }
.place-meta { margin: 0 0 18px; color: var(--ink-3); font-size: .9rem; }
.place-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.place-map { background: var(--grad-sky); display: grid; place-items: center; font-size: 56px; min-height: 200px; background-size: cover; background-position: center; }
.place-map.has-photo { font-size: 0; }
@media (max-width: 640px) { .place-card { grid-template-columns: 1fr; } .place-map { min-height: 130px; } }

/* ---- 푸터 ---- */
.footer { background: var(--sea-ink); color: rgba(255,255,255,.72); margin-top: 40px; padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer strong { color: #fff; font-size: 1.02rem; }
.footer p { margin: 6px 0 0; font-size: .88rem; }
.footer-note { font-size: .8rem; color: rgba(255,255,255,.5); max-width: 40ch; }

/* ---- 모달 ---- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: flex-end; justify-content: center; }
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12,24,40,.55); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal-panel {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: 92vh; overflow: hidden;
  background: var(--panel); border-radius: 22px 22px 0 0; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; animation: slideUp .26s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 640px) { .modal { align-items: center; } .modal-panel { border-radius: 20px; } .modal-panel.sm { width: min(440px, 100%); } }
@keyframes fade { from { opacity: 0; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } }
.modal-x { position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border: none; border-radius: 999px; background: var(--panel-2); color: var(--ink-2); font-size: 15px; cursor: pointer; }
.modal-x:hover { background: var(--line); }
.modal-head { padding: 24px 26px 0; }
.modal-badge { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--sea-deep); background: var(--info-bg); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.modal-head h3 { margin: 0; font-size: 1.32rem; font-weight: 800; letter-spacing: -.02em; }
.modal-route { margin: 6px 0 0; color: var(--ink-3); font-size: .9rem; }

/* 스텝 */
.steps { display: flex; gap: 6px; list-style: none; margin: 20px 0 0; padding: 0 26px; overflow-x: auto; }
.steps li { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600; color: var(--ink-3); white-space: nowrap; }
.steps li span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line); font-size: .74rem; }
.steps li.is-done span { background: var(--leaf); border-color: var(--leaf); color: #fff; }
.steps li.is-active { color: var(--sea-deep); }
.steps li.is-active span { background: var(--grad-sea); border-color: transparent; color: #fff; box-shadow: var(--ring); }

.modal-body { padding: 22px 26px; overflow-y: auto; }
.bpanel { display: none; flex-direction: column; gap: 14px; }
.bpanel.is-active { display: flex; animation: fade .2s ease; }

/* 입력 */
label.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: .84rem; font-weight: 700; color: var(--ink-2); }
label.field input, .phone-verify input, .otp-row input, .modal-body input:not([type=checkbox]) {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--panel); color: var(--ink); font-size: 1rem; transition: border-color .12s, box-shadow .12s;
}
.modal-body input:focus { outline: none; border-color: var(--sea); box-shadow: var(--ring); }
.field-hint { margin: 0; font-size: .82rem; color: var(--ink-3); }
.field-hint.center { text-align: center; }
.field-hint b { color: var(--sea-deep); }
.phone-verify { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.otp-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 8px; }
.phone-verify .btn-outline, .otp-row .btn-primary, .otp-row .btn-outline { padding: 12px 16px; white-space: nowrap; color: var(--sea-deep); border-color: var(--line); background: var(--panel); }
.otp-row .btn-primary { color: #fff; background: var(--grad-sea); border-color: transparent; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--ink-2); cursor: pointer; line-height: 1.45; }
.check input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--sea); flex-shrink: 0; }

/* 항차 선택 */
.depart-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.depart-list button {
  padding: 12px 6px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel);
  font-size: .96rem; font-weight: 700; cursor: pointer; transition: all .12s; font-variant-numeric: tabular-nums; color: var(--ink);
}
.depart-list button:hover { border-color: var(--sea); }
.depart-list button.sel { background: var(--grad-sea); border-color: transparent; color: #fff; }

/* 인원 카운터 */
.counter { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; }
.counter b { font-size: 1rem; }
.counter small { display: block; font-size: .78rem; color: var(--ink-3); margin-top: 2px; }
.stepper { display: flex; align-items: center; gap: 4px; }
.stepper button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); font-size: 20px; cursor: pointer; color: var(--sea-deep); }
.stepper button:hover { border-color: var(--sea); background: var(--info-bg); }
.stepper span { min-width: 34px; text-align: center; font-size: 1.1rem; font-weight: 800; font-variant-numeric: tabular-nums; }

.sum-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--panel-2); border-radius: 12px; }
.sum-row strong { font-size: 1.2rem; font-weight: 800; color: var(--sea-deep); font-variant-numeric: tabular-nums; }
.sum-row.big { background: var(--info-bg); padding: 18px; }
.sum-row.big strong { font-size: 1.5rem; }

/* 확인 리뷰 */
.review { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.review li { display: flex; justify-content: space-between; padding: 11px 2px; border-bottom: 1px solid var(--line-2); font-size: .94rem; }
.review li span { color: var(--ink-3); }
.review li b { font-weight: 700; }

/* 완료 */
.done-panel { text-align: center; align-items: center; }
.done-check { width: 66px; height: 66px; border-radius: 999px; background: var(--ok-bg); color: var(--leaf); display: grid; place-items: center; font-size: 34px; font-weight: 800; margin-bottom: 6px; animation: pop .4s cubic-bezier(.16,1.4,.4,1); }
@keyframes pop { from { transform: scale(0); } }
.done-panel h4 { margin: 0; font-size: 1.24rem; font-weight: 800; }
.ticket { width: 100%; background: var(--panel-2); border: 1px dashed var(--line); border-radius: 14px; padding: 18px; margin: 6px 0; }
.ticket .tno { font-family: var(--mono); font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; color: var(--sea-deep); text-align: center; margin-bottom: 12px; }
.ticket .trow { display: flex; justify-content: space-between; padding: 6px 0; font-size: .9rem; }
.ticket .trow span { color: var(--ink-3); }
.ticket .qr { display: grid; place-items: center; margin-top: 12px; }

.modal-foot { display: flex; justify-content: space-between; gap: 10px; padding: 16px 26px; border-top: 1px solid var(--line-2); }
.modal-foot .btn-primary, .modal-foot .btn-ghost { flex: 1; }

/* 예약조회 결과 */
.lookup-result { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.lk-item { border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.lk-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.lk-top b { font-weight: 800; }
.lk-sub { font-size: .86rem; color: var(--ink-3); }
.lk-empty { text-align: center; color: var(--ink-3); padding: 24px; font-size: .92rem; }

/* 로그인 탭 */
.auth-tabs { display: flex; padding: 20px 26px 0; gap: 4px; }
.auth-tab { flex: 1; padding: 12px; border: none; background: none; font-size: 1rem; font-weight: 700; color: var(--ink-3); cursor: pointer; border-bottom: 2px solid var(--line); }
.auth-tab.is-on { color: var(--sea-deep); border-bottom-color: var(--sea); }
.auth-pane { display: none; flex-direction: column; gap: 12px; }
.auth-pane.is-active { display: flex; }

/* 토스트 */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--sea-ink); color: #fff; padding: 12px 20px; border-radius: 12px;
  font-size: .92rem; font-weight: 600; box-shadow: var(--shadow-lg); opacity: 0;
  pointer-events: none; transition: opacity .2s, transform .2s; z-index: 200; max-width: 90vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { background: var(--danger); }

/* 예약 조회 결과의 본인 취소 */
.lk-act { margin-top: 10px; display: flex; justify-content: flex-end; }
.lk-cancel {
  background: #fff; border: 1px solid #e0c4c0; border-radius: 8px; color: #c23a2b;
  cursor: pointer; font-size: 13px; font-weight: 700; padding: 7px 14px;
}
.lk-cancel:hover { background: #fdf3f2; }
.lk-done { color: #2f7d34; font-size: 13px; font-weight: 700; }

/* ══════════ 2026-08-11 콘텐츠 보강 (네이버 예약 수준) ══════════ */

/* 정가 취소선 */
.won-reg { color: var(--muted, #6b7280); text-decoration: line-through; font-size: .82em; font-weight: 500; margin-right: 6px; }
s.won-reg { text-decoration: line-through; }

/* 신뢰 칩 (모달 날짜 단계) */
.trust-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tchip { font-size: 12.5px; padding: 5px 10px; border-radius: 999px; background: #eef6ee; color: #21703a; border: 1px solid #cde7d2; }

/* 월 달력 */
.calbox { margin-bottom: 10px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cal-head b { font-size: 16px; }
.cal-nav { border: 1px solid var(--line, #e5e9f0); background: #fff; border-radius: 8px; width: 34px; height: 34px; font-size: 16px; cursor: pointer; }
.cal-nav[disabled] { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-wd { text-align: center; font-size: 12px; color: var(--muted, #6b7280); padding: 4px 0; }
.cal-wd.sun { color: #c23a2b; } .cal-wd.sat { color: #2b62c2; }
.cal-day { border: 1px solid var(--line, #e5e9f0); background: #fff; border-radius: 8px; min-height: 44px; padding: 3px 0 2px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; }
.cal-day b { font-size: 14px; font-weight: 600; }
.cal-day small { font-size: 10px; line-height: 1; color: var(--muted, #6b7280); }
.cal-day.sun b { color: #c23a2b; } .cal-day.sat b { color: #2b62c2; }
.cal-day.off { background: #f4f6f8; color: #b6bec7; cursor: default; }
.cal-day.off b { color: #b6bec7; }
.cal-day.sold { background: #fbf1f0; cursor: default; }
.cal-day.sold small { color: #c23a2b; }
.cal-day.today { outline: 2px dashed var(--primary, #2B72C2); outline-offset: -2px; }
.cal-day.sel { background: var(--primary, #2B72C2); border-color: var(--primary, #2B72C2); }
.cal-day.sel b, .cal-day.sel small { color: #fff; }
.cal-legend { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--muted, #6b7280); margin: 8px 0 0; }
.lg { display: inline-block; width: 12px; height: 12px; border-radius: 3px; border: 1px solid var(--line, #e5e9f0); margin-right: 4px; vertical-align: -1px; }
.lg.on { background: #fff; } .lg.sold { background: #fbf1f0; } .lg.off { background: #f4f6f8; }

/* 수량 단계 */
.count-ctx { font-size: 14px; font-weight: 700; color: var(--ink, #1f2933); margin: 0 0 10px; }
.subsum { color: var(--muted, #6b7280); font-weight: 500; }

/* 필독 박스 (섹션·모달 공용) */
.prebook, .prebook-note { border: 1px solid #f2d8ae; background: #fffaf0; border-radius: 12px; padding: 16px 18px; }
.prebook h2 { margin: 0 0 10px; font-size: 20px; color: #9a6410; }
.prebook-note { margin-top: 12px; font-size: 13px; }
.prebook-note b { color: #9a6410; }
.prebook-note ul { margin: 6px 0 0; padding-left: 18px; }
.prebook-note li { margin: 3px 0; color: #5a4a2f; }
.cn-contact { margin: 8px 0 0; color: var(--muted, #6b7280); }

/* 탑승 방법 스텝 */
.flow { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 10px; }
.flow li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line, #e5e9f0); border-radius: 12px; padding: 12px 14px; }
.flow-no { flex: 0 0 28px; height: 28px; border-radius: 50%; background: var(--primary, #2B72C2); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.flow b { font-size: 15px; } .flow p { margin: 2px 0 0; font-size: 13.5px; color: var(--muted, #6b7280); }
@media (min-width: 760px) { .flow { grid-template-columns: repeat(2, 1fr); } }

/* 라벨-값 행 (연령기준·증빙서류) */
.kv-rows .row { display: flex; gap: 10px; padding: 6px 0; border-bottom: 1px dashed var(--line, #e5e9f0); font-size: 14px; }
.kv-rows .row:last-child { border-bottom: 0; }
.kv-rows .row span { flex: 0 0 88px; color: var(--muted, #6b7280); }
.info-card.slim { margin-top: 4px; }
.info-card.course { margin-bottom: 10px; }
.info-card.course p { line-height: 1.7; color: var(--muted, #6b7280); font-size: 14px; }

/* 선박 층별 카드 */
.deck-grid { display: grid; gap: 12px; }
@media (min-width: 760px) { .deck-grid { grid-template-columns: repeat(3, 1fr); } }
.deck-card { background: #fff; border: 1px solid var(--line, #e5e9f0); border-radius: 14px; padding: 16px; }
.deck-fl { display: inline-block; background: var(--primary, #2B72C2); color: #fff; border-radius: 8px; padding: 2px 9px; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.deck-card b { display: block; font-size: 16px; margin-bottom: 4px; }
.deck-card p { margin: 0; font-size: 13.5px; color: var(--muted, #6b7280); line-height: 1.6; }

/* 즐길거리 타일 */
.tile-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.tile { background: #fff; border: 1px solid var(--line, #e5e9f0); border-radius: 999px; padding: 8px 14px; font-size: 13.5px; }
.tile-sub { margin: 16px 0 8px; font-size: 16px; }

/* 안전 안내 아코디언 */
.safety-acc { border: 1px solid var(--line, #e5e9f0); border-radius: 14px; background: #fff; padding: 4px 18px; }
.safety-acc summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 12px 0; list-style: none; }
.safety-acc summary::-webkit-details-marker { display: none; }
.safety-acc summary h2 { margin: 0; font-size: 18px; }
.acc-hint { font-size: 13px; color: var(--muted, #6b7280); }
.safety-acc[open] .acc-hint { visibility: hidden; }
.safety-acc ul { margin: 0 0 14px; }
