/* =========================================
   디즈니씨 완벽동선 — 모바일 퍼스트 스타일시트
   폰트: Noto Sans KR (전체 통일)
   컬러 팔레트
   배경      #0A1628
   강조 골드 #C9A84C
   크림 텍스트 #F5EDD6
   카드 배경 #132040
   서브 텍스트 #A8B8D0
   ========================================= */

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --bg: #0A1628;
  --bg-grad-1: #0A1628;
  --bg-grad-2: #08111F;
  --gold: #C9A84C;
  --gold-dim: #8E7733;
  --cream: #F5EDD6;
  --card: #132040;
  --card-2: #182A52;
  --sub: #A8B8D0;
  --border: rgba(201,168,76,0.18);
  --shadow: 0 10px 30px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);
  --radius: 16px;
  --sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(201,168,76,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-grad-1), var(--bg-grad-2));
  min-height: 100vh;
}

/* ===== 모바일 셸 ===== */
.app-shell {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
  background:
    radial-gradient(800px 400px at 50% 0, rgba(201,168,76,0.08), transparent 70%),
    linear-gradient(180deg, #0B172B 0%, #0A1628 100%);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

/* ===== 상단 헤더 ===== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; min-height: 52px;
}
.topbar-logo {
  font-family: var(--sans); font-weight: 900; font-size: 16px;
  color: var(--gold); letter-spacing: -0.3px;
}
.topbar-logo i { margin-right: 6px; }
.topbar-menu {
  background: transparent; border: 1px solid var(--border);
  color: var(--cream); width: 44px; height: 44px; border-radius: 10px;
  cursor: pointer; font-size: 18px;
}
.topbar-nav {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  background: rgba(10,22,40,0.97);
}
.topbar-nav[hidden] { display: none; }
.topbar-nav a {
  padding: 14px 20px; color: var(--cream);
  text-decoration: none; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  min-height: 48px; display: flex; align-items: center;
}
.topbar-nav a:hover { background: rgba(201,168,76,0.08); color: var(--gold); }

/* ===== 히어로 ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 40px 22px 50px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 80% 10%, rgba(201,168,76,0.18), transparent 60%),
    radial-gradient(500px 400px at 20% 80%, rgba(80,140,220,0.15), transparent 70%);
  opacity: 0.9; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 46px; line-height: 1.05;
  color: var(--cream);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-sub {
  color: var(--gold);
  font-size: 16px; font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-desc {
  color: var(--sub); font-size: 14.5px;
  line-height: 1.75; margin-bottom: 24px;
}
.hero-desc b { color: var(--cream); font-weight: 700; }

.hero-hook {
  display: flex; gap: 12px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 28px;
  font-size: 14.5px; line-height: 1.55;
}
.hero-hook i {
  color: var(--gold); font-size: 22px;
  margin-top: 2px; flex-shrink: 0;
}
.hero-hook b { color: var(--gold); font-weight: 700; }

.hero-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px;
  padding: 12px 14px; border-radius: 12px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer;
  border: none; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.btn-primary:active { transform: scale(0.97); }
.btn i { font-size: 13px; }

/* ===== 섹션 공통 ===== */
.section {
  padding: 44px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
  scroll-margin-top: 70px;
}
.section-pop {
  background: linear-gradient(180deg, rgba(201,168,76,0.04), transparent 40%), transparent;
}
.section-mini { padding: 22px 20px; }

.section-head { margin-bottom: 22px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--sans); font-weight: 900;
  font-size: 28px; line-height: 1.2;
  color: var(--cream);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.section-lead {
  color: var(--sub); font-size: 14.5px; line-height: 1.7;
}
.section-lead b { color: var(--cream); }
.icon-legend {
  margin-top: 10px;
  font-size: 12.5px; color: var(--sub);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
}

/* ===== 경고 뱃지 ===== */
.warn-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 7px 12px;
  font-size: 12px; font-weight: 600;
  color: #FFD580;
  background: rgba(201,168,76,0.08);
  border: 1px dashed rgba(201,168,76,0.35);
  border-radius: 999px;
}
.warn-badge i { font-size: 11px; }
.warn-inline { margin-top: 14px; display: flex; }

/* ===== 3분 루틴 ===== */
.routine-list {
  list-style: none; counter-reset: routine;
  display: flex; flex-direction: column; gap: 10px;
}
.routine-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  box-shadow: var(--shadow);
}
.routine-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--bg);
  font-family: var(--sans); font-weight: 900; font-size: 17px;
  border-radius: 50%;
}
.routine-list li > div { flex: 1; }
.routine-list b { display: block; color: var(--cream); font-size: 15.5px; margin-bottom: 2px; }
.routine-list p { color: var(--sub); font-size: 13.5px; line-height: 1.5; }

/* ===== 추천 동선 — 토글 버튼 방식 ===== */
.route-toggles { display: flex; flex-direction: column; gap: 10px; }

.route-toggle-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-toggle-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; background: transparent; border: none; cursor: pointer;
  min-height: 60px; gap: 10px;
  text-align: left;
  position: relative;
}
.route-toggle-btn::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.route-toggle-btn[data-type="A"]::before { background: linear-gradient(90deg, var(--gold), transparent); }
.route-toggle-btn[data-type="B"]::before { background: linear-gradient(90deg, #7AB8FF, transparent); }
.route-toggle-btn[data-type="C"]::before { background: linear-gradient(90deg, #FF9EC7, transparent); }
.route-toggle-btn[data-type="D"]::before { background: linear-gradient(90deg, #95E5A4, transparent); }
.route-toggle-btn[data-type="E"]::before { background: linear-gradient(90deg, #A8B8D0, transparent); }

.rtb-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.route-badge {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold); color: var(--bg);
  font-family: var(--sans); font-weight: 900; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.route-badge[data-type="A"] { background: var(--gold); }
.route-badge[data-type="B"] { background: #7AB8FF; color: #0A1628; }
.route-badge[data-type="C"] { background: #FF9EC7; color: #0A1628; }
.route-badge[data-type="D"] { background: #95E5A4; color: #0A1628; }
.route-badge[data-type="E"] { background: #A8B8D0; color: #0A1628; }

.rtb-title {
  font-family: var(--sans); font-weight: 700; font-size: 16px;
  color: var(--cream); line-height: 1.3;
}
.rtb-arrow {
  flex-shrink: 0; font-size: 13px;
  color: var(--sub);
  transition: transform 0.25s ease;
}
.route-toggle-btn[aria-expanded="true"] .rtb-arrow { transform: rotate(180deg); }

.route-toggle-body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--border);
}
.route-toggle-body[hidden] { display: none; }

.route-toggle-body dl { display: flex; flex-direction: column; gap: 8px; padding-top: 14px; }
.route-toggle-body dt {
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--gold); margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.route-toggle-body dt i { font-size: 11px; }
.route-toggle-body dd {
  font-size: 14px; line-height: 1.6;
  color: var(--cream); margin-left: 0;
}
.route-warn {
  color: #FFB877 !important;
  font-size: 13px !important;
  padding: 8px 10px;
  background: rgba(255,184,119,0.08);
  border-left: 3px solid #FFB877;
  border-radius: 6px;
}

/* ===== 공식 지도 ===== */
.park-map-wrap {
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}
.map-label {
  padding: 10px 14px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  background: rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 6px;
}
.park-map-img {
  width: 100%; display: block;
  object-fit: cover;
}
.map-source {
  padding: 8px 14px;
  font-size: 11.5px; color: var(--sub);
  background: rgba(0,0,0,0.2);
}

/* ===== 패스 카드 ===== */
.pass-grid { display: flex; flex-direction: column; gap: 14px; }
.pass-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow); position: relative;
}
.pass-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,150,150,0.15);
  color: #FFB0B0; border: 1px solid rgba(255,150,150,0.3);
  margin-bottom: 12px;
}
.pass-tag-free {
  background: rgba(149,229,164,0.12); color: #95E5A4;
  border-color: rgba(149,229,164,0.3);
}
.pass-card h3 {
  font-family: var(--sans); font-weight: 900;
  font-size: 22px; line-height: 1.2;
  color: var(--cream); margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.pass-card h3 span {
  display: block; font-size: 12.5px; font-weight: 500;
  color: var(--sub); margin-top: 2px; letter-spacing: 0;
}
.pass-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.pass-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; line-height: 1.55; color: var(--cream);
}
.pass-card li i { color: var(--gold); font-size: 11px; margin-top: 6px; flex-shrink: 0; }
.pass-card li b { color: var(--gold); font-weight: 700; }
.pass-key {
  margin-top: 8px; padding: 10px 12px;
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold); border-radius: 6px;
  font-size: 13.5px; color: var(--cream);
}
.pass-key b { color: var(--gold); }
.pass-highlight {
  border: 1.5px solid rgba(201,168,76,0.5);
  background: linear-gradient(180deg, rgba(201,168,76,0.06), var(--card));
  box-shadow: var(--shadow), 0 0 30px rgba(201,168,76,0.12);
}

/* ===== DPA 판단 / 전략 ===== */
.dpa-judge { margin-top: 28px; }
.subhead {
  font-family: var(--sans); font-weight: 900; font-size: 18px;
  color: var(--cream); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.subhead i { color: var(--gold); font-size: 16px; }

.judge-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.judge-col {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 12px;
}
.judge-col h4 {
  font-size: 13px; font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.judge-buy h4 { color: #95E5A4; }
.judge-skip h4 { color: #FFB0B0; }
.judge-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.judge-col li {
  font-size: 12.5px; line-height: 1.5; color: var(--cream);
  padding-left: 12px; position: relative;
}
.judge-col li::before {
  content: '·'; position: absolute; left: 4px; color: var(--gold); font-weight: 900;
}

.callout {
  margin-top: 16px; padding: 12px 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  font-size: 14px; line-height: 1.6; color: var(--cream);
}
.callout b { color: var(--gold); }
.callout-gold {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.45);
  text-align: center; font-size: 14.5px;
}
.mini-note {
  font-size: 12px; color: var(--sub);
  margin-top: 10px; line-height: 1.55;
}

.strategy-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow); margin-top: 16px;
}
.strategy-card h4 {
  font-family: var(--sans); font-weight: 700;
  font-size: 16px; color: var(--cream);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.strategy-card h4 i { color: var(--gold); font-size: 14px; }
.strategy-card p { font-size: 14px; line-height: 1.65; color: var(--cream); margin-bottom: 10px; }
.strategy-card p b { color: var(--gold); }
.strategy-dim { background: var(--card-2); }

.num-list {
  list-style: none; counter-reset: numlist;
  display: flex; flex-direction: column; gap: 8px; margin: 6px 0;
}
.num-list li {
  counter-increment: numlist; position: relative;
  padding: 10px 12px 10px 42px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  font-size: 13.8px; line-height: 1.55; color: var(--cream);
}
.num-list li::before {
  content: counter(numlist); position: absolute; left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  font-weight: 900; font-size: 12.5px;
  display: flex; align-items: center; justify-content: center;
}
.num-list li b { color: var(--gold); }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bullet-list li {
  font-size: 14px; line-height: 1.6; color: var(--cream);
  padding-left: 16px; position: relative;
}
.bullet-list li::before {
  content: '◆'; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 10px;
}
.bullet-list b { color: var(--gold); }

/* ===== 판타지 스프링스 zone 카드 ===== */
.fantasy-zones { display: flex; flex-direction: column; gap: 12px; }
.zone-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.zone-card h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 18px; color: var(--cream); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.zone-card h3 i { font-size: 16px; }
.zone-frozen h3 i { color: #88D8FF; }
.zone-rapunzel h3 i { color: #FFC97A; }
.zone-peter h3 i { color: #95E5A4; }
.zone-frozen { background: linear-gradient(135deg, rgba(136,216,255,0.08), var(--card)); }
.zone-rapunzel { background: linear-gradient(135deg, rgba(255,201,122,0.08), var(--card)); }
.zone-peter { background: linear-gradient(135deg, rgba(149,229,164,0.08), var(--card)); }
.zone-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.zone-card li {
  font-size: 13.8px; line-height: 1.6; color: var(--cream);
  padding-left: 14px; position: relative;
}
.zone-card li::before { content: '·'; position: absolute; left: 4px; color: var(--gold); font-weight: 900; }
.zone-card b { color: var(--gold); font-weight: 700; margin-right: 4px; }
.zone-warn-li {
  color: #FFB877 !important;
  font-size: 13px !important;
  display: flex; align-items: flex-start; gap: 6px;
  padding-left: 0 !important;
}
.zone-warn-li::before { display: none !important; }
.zone-warn-li i { color: #FFB877; font-size: 11px; margin-top: 4px; flex-shrink: 0; }

/* ===== 타임라인 ===== */
.timeline {
  list-style: none; position: relative;
  padding-left: 0; display: flex; flex-direction: column; gap: 16px;
}
.tl-item { display: flex; gap: 14px; position: relative; }
.tl-time {
  flex-shrink: 0; width: 72px;
  font-family: var(--sans); font-weight: 900;
  font-size: 14px; color: var(--gold);
  text-align: right; line-height: 1.25; padding-top: 14px; position: relative;
}
.tl-time span {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: 11px; color: var(--sub); letter-spacing: 1px; margin-top: 4px;
}
.tl-time::after {
  content: ''; position: absolute; right: -14px; top: 18px;
  width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--gold); z-index: 2;
}
.tl-item::before {
  content: ''; position: absolute; left: 80px; top: 18px; bottom: -18px;
  width: 2px; background: rgba(201,168,76,0.25);
}
.tl-item:last-child::before { display: none; }
.tl-card {
  flex: 1; margin-left: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow);
}
.tl-card h4 {
  font-family: var(--sans); font-weight: 700;
  font-size: 15px; color: var(--cream); margin-bottom: 10px;
}
.tl-icons { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tl-icons li { font-size: 13.5px; line-height: 1.5; color: var(--cream); padding: 4px 0; }

/* ===== 대기시간 ===== */
.wait-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.wait-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border); font-size: 13.8px;
}
.wait-len { flex-shrink: 0; width: 76px; font-family: var(--sans); font-weight: 900; font-size: 14px; color: var(--gold); }
.wait-msg { color: var(--cream); flex: 1; }
.wait-good { border-left: 4px solid #95E5A4; } .wait-good .wait-len { color: #95E5A4; }
.wait-ok   { border-left: 4px solid #C9D24C; } .wait-ok .wait-len   { color: #D8E27A; }
.wait-warn { border-left: 4px solid #E5B25C; } .wait-warn .wait-len { color: #E5B25C; }
.wait-bad  { border-left: 4px solid #E5825C; } .wait-bad .wait-len  { color: #E5825C; }
.wait-worst{ border-left: 4px solid #E5505C; } .wait-worst .wait-len{ color: #FF8088; }

.attraction-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.atk-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.atk-card h4 { font-size: 14.5px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.atk-card p { font-size: 13px; line-height: 1.5; color: var(--cream); }
.atk-card b { color: var(--gold); }

/* ===== 태그 ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  display: inline-block; padding: 8px 14px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--cream);
}

/* ===== 모바일 오더 food grid ===== */
.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.food-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; text-align: center;
}
.food-card i { color: var(--gold); font-size: 22px; }
.food-card span { font-size: 12.5px; line-height: 1.4; color: var(--cream); }
.food-grid > .food-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ===== mini 카드 ===== */
.mini-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), var(--card));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow);
}
.mini-emoji { font-size: 32px; flex-shrink: 0; line-height: 1; }
.mini-card h3 { font-family: var(--sans); font-weight: 700; font-size: 17px; color: var(--cream); margin-bottom: 6px; }
.mini-card p { font-size: 13.8px; line-height: 1.6; color: var(--sub); }

/* ===== 포토존 그리드 ===== */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 12px; position: relative; overflow: hidden;
}
.photo-card::before { content: '📸'; position: absolute; top: 8px; right: 10px; font-size: 14px; opacity: 0.4; }
.photo-card h4 { font-size: 13.5px; font-weight: 700; color: var(--gold); margin-bottom: 4px; padding-right: 18px; }
.photo-card p { font-size: 12px; color: var(--sub); line-height: 1.45; }

/* ===== 아코디언 ===== */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.acc-item summary {
  display: flex; align-items: center; gap: 10px;
  list-style: none; cursor: pointer;
  padding: 16px 18px;
  font-family: var(--sans); font-weight: 700; font-size: 14.5px;
  color: var(--cream); min-height: 56px;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary > i:first-child { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.acc-arrow { margin-left: auto; transition: transform 0.25s; font-size: 12px !important; color: var(--sub) !important; }
.acc-item[open] .acc-arrow { transform: rotate(180deg); }
.acc-item[open] summary { border-bottom: 1px solid var(--border); }
.acc-body { padding: 16px 18px 18px; background: rgba(255,255,255,0.02); }
.acc-lead { font-size: 13.5px; color: var(--sub); margin-bottom: 12px; line-height: 1.55; }

/* ===== 체크리스트 ===== */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.checklist li label {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  font-size: 14px; line-height: 1.4; color: var(--cream);
  min-height: 48px; transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none; -webkit-user-select: none;
}
.checklist input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid var(--gold); border-radius: 6px;
  cursor: pointer; position: relative; background: transparent; transition: background 0.15s;
}
.checklist input[type="checkbox"]:checked { background: var(--gold); }
.checklist input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 6px; height: 11px; border: solid var(--bg); border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checklist input[type="checkbox"]:checked + span { text-decoration: line-through; color: var(--sub); }
.checklist li label:has(input:checked) { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.35); }

/* ===== 티켓 카드 ===== */
.ticket-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.ticket-card h4 { font-family: var(--sans); font-weight: 700; font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.ticket-card p { font-size: 13.5px; line-height: 1.55; color: var(--cream); margin-bottom: 4px; }
.ticket-card p b { color: var(--gold); margin-right: 4px; }

/* ===== 경로 플로우 ===== */
.route-flow { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 6px 0 14px; }
.route-flow span { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 10px 14px; border-radius: 10px; font-size: 13.5px; color: var(--cream); width: 100%; text-align: center; }
.route-flow i { color: var(--gold); font-size: 14px; }
.route-final { background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05)) !important; border-color: rgba(201,168,76,0.4) !important; color: var(--gold) !important; font-weight: 700; }
.tip-box { background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04)); border: 1px solid rgba(201,168,76,0.35); border-radius: 12px; padding: 14px; margin-top: 8px; }
.tip-box p { font-size: 13.5px; line-height: 1.6; color: var(--cream); margin-bottom: 6px; }
.tip-box p:last-child { margin-bottom: 0; }
.tip-box b { color: var(--gold); }
.tip-box .hook { font-family: var(--sans); font-weight: 900; font-size: 15px; color: var(--gold); margin-top: 8px; text-align: center; }

/* ===== 날씨 카드 ===== */
.weather-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.weather-card h4 { font-size: 14.5px; font-weight: 700; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.weather-card ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.weather-card li { font-size: 13.5px; line-height: 1.5; color: var(--cream); padding-left: 12px; position: relative; }
.weather-card li::before { content: '·'; position: absolute; left: 4px; color: var(--gold); }

/* =========================================
   2026 확인 섹션
   ========================================= */
.section-notice {
  background: linear-gradient(180deg, rgba(255,140,0,0.05), transparent 40%);
}
.notice-tag {
  background: rgba(255,165,50,0.12) !important;
  border-color: rgba(255,165,50,0.35) !important;
  color: #FFB877 !important;
}

.notice-block { margin-bottom: 28px; }
.notice-subtitle {
  font-family: var(--sans); font-weight: 900; font-size: 17px;
  color: var(--cream); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.notice-subtitle i { color: #FFB877; font-size: 15px; }

/* 이벤트 카드 */
.event-list { display: flex; flex-direction: column; gap: 8px; }
.event-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
  border-left: 3px solid rgba(201,168,76,0.4);
}
.event-card.event-sparkle {
  border-left-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.08), var(--card));
}
.event-period {
  display: block; font-size: 11.5px; font-weight: 700; color: var(--gold);
  margin-bottom: 4px; letter-spacing: 0.3px;
}
.event-name { font-size: 14px; font-weight: 600; color: var(--cream); line-height: 1.4; }

/* 휴업 카드 */
.closure-list { display: flex; flex-direction: column; gap: 8px; }
.closure-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
}
.closure-long { border-left: 3px solid #FF8088; }
.closure-warn { border-left: 3px solid #FFB877; }
.closure-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.closure-name { font-size: 14px; font-weight: 700; color: var(--cream); flex: 1; line-height: 1.3; }
.closure-badge {
  font-size: 10.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
  background: rgba(201,168,76,0.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}
.closure-badge-long {
  background: rgba(255,128,136,0.12); color: #FF8088;
  border-color: rgba(255,128,136,0.3);
}
.closure-badge-warn {
  background: rgba(255,184,119,0.12); color: #FFB877;
  border-color: rgba(255,184,119,0.3);
}
.closure-period {
  font-size: 12.5px; color: var(--sub);
  display: flex; align-items: center; gap: 6px;
}
.closure-period i { color: #FF8088; font-size: 11px; }
.closure-tip {
  margin-top: 6px; font-size: 12.5px; line-height: 1.5;
  color: #FFB877;
  padding: 6px 10px;
  background: rgba(255,184,119,0.06);
  border-left: 2px solid #FFB877;
  border-radius: 4px;
}

/* 최종 안내 */
.notice-final {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  background: rgba(201,168,76,0.06);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  margin-top: 8px;
}
.notice-final i { color: var(--gold); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.notice-final p { font-size: 13.5px; line-height: 1.7; color: var(--cream); }
.notice-final b { color: var(--gold); }

/* ===== 푸터 ===== */
.site-footer {
  margin-top: 40px; padding: 28px 22px 40px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2); position: relative;
}
.footer-disclaimer {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px; background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; margin-bottom: 18px;
}
.footer-disclaimer i { color: var(--gold); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-disclaimer p { font-size: 12.5px; line-height: 1.65; color: var(--sub); }
.footer-disclaimer b { color: var(--cream); }
.footer-copy { text-align: center; font-size: 11.5px; color: var(--sub); line-height: 1.6; opacity: 0.8; }

.to-top {
  position: fixed; bottom: 20px; right: calc(50% - 215px + 16px);
  width: 48px; height: 48px;
  background: var(--gold); color: var(--bg);
  border: none; border-radius: 50%; font-size: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.4);
  cursor: pointer; z-index: 90;
  opacity: 0; pointer-events: none;
  transform: translateY(20px); transition: opacity 0.25s, transform 0.25s;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 430px) { .to-top { right: 16px; } }
@media (max-width: 360px) {
  .hero-title { font-size: 40px; }
  .section-title { font-size: 24px; }
  .hero-cta { grid-template-columns: 1fr; }
}
@media (min-width: 768px) {
  body { padding: 24px 0; }
  .app-shell {
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 1px solid var(--border);
  }
}
