:root {
  --ink: #1E2A4A;
  --accent: #E8B23D;
  --paper: #FAF7EF;
  --line: #D9D2BE;
  --muted: #57607A;
  --panel: #FFFFFF;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: "Noto Sans KR", sans-serif; font-display: swap;
  color: var(--ink); background: var(--paper);
  font-size: 16px; line-height: 1.75;
}
h1, h2, h3 { font-family: "Stylish", sans-serif; font-weight: 400; color: var(--ink); }
a { color: inherit; }
img { max-width: 100%; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--ink); padding: 10px 16px; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink); color: #fff; border-bottom: 3px solid var(--accent); }
.header-inner { max-width: 840px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-weight: 400; font-size: 1.25rem; text-decoration: none; color: var(--accent); font-family: "Stylish", sans-serif; }
.main-nav ul { list-style: none; display: none; gap: 26px; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 500; color: #fff; }
.main-nav a:hover { color: var(--accent); }
.hamburger { width: 44px; height: 44px; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--accent); }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 20px 16px; }
.mobile-nav a { display: block; padding: 12px 0; color: #fff; text-decoration: none; font-weight: 500; border-top: 1px solid rgba(232,178,61,.25); min-height: 44px; }
@media (min-width: 768px) { .main-nav ul { display: flex; } .hamburger { display: none; } .mobile-nav { display: none !important; } }

main { max-width: 800px; margin: 0 auto; padding: 0 20px 80px; }
.breadcrumb { padding: 16px 0; font-size: .85rem; color: var(--muted); }
.breadcrumb a { text-decoration: underline; }

.hero {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-top: 8px; margin-bottom: 36px; padding: 0;
}
.hero-img { width: 100%; height: 48vh; min-height: 320px; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 6vw; background: linear-gradient(100deg, rgba(30,42,74,.95) 35%, rgba(30,42,74,.35) 92%);
  color: #fff;
}
.doc-tag {
  display: inline-block; font-size: .78rem; letter-spacing: .12em; color: var(--ink); font-weight: 700;
  border-radius: 999px; padding: 5px 14px; margin: 0 0 16px; align-self: flex-start;
  background: var(--accent);
}
.hero-overlay h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); margin: 0 0 14px; color: #fff; font-weight: 400; }
.doc-lead { color: #E3E7F0; margin: 0; max-width: 640px; }

.section { padding: 36px 0; border-top: 1px solid var(--line); }
.section h2 { font-size: 1.45rem; margin: 0 0 22px; position: relative; padding-left: 16px; }
.section h2::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; background: var(--accent); border-radius: 3px; }
.section > p { color: var(--muted); }

/* ---- Route / flow-path step visual ---- */
.route-line {
  list-style: none; margin: 0; padding: 8px 0 0; position: relative;
  display: grid; grid-template-columns: 1fr; row-gap: 34px;
}
.route-line::before {
  content: ""; position: absolute; left: 17px; top: 6px; bottom: 6px; width: 4px;
  background: repeating-linear-gradient(180deg, var(--ink) 0 10px, var(--accent) 10px 16px);
  border-radius: 3px;
}
.route-stop { position: relative; padding-left: 52px; }
.route-marker {
  position: absolute; left: 0; top: 0; width: 36px; height: 36px;
  background: var(--ink); font-family: "Stylish", sans-serif; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50% 50% 50% 4px; transform: rotate(45deg);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--ink);
  border: 2px solid var(--accent);
}
.route-marker .route-num { display: block; color: var(--accent); transform: rotate(-45deg); }
.route-body { background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 4px; padding: 14px 18px; }
.route-body h3 { margin: 0 0 6px; font-size: 1.08rem; }
.route-body p { margin: 0; color: var(--muted); font-size: .92rem; }

@media (min-width: 760px) {
  .route-line { row-gap: 0; padding-top: 90px; }
  .route-line::before {
    left: 0; right: 0; top: 90px; bottom: auto; height: 4px; width: auto;
    background: repeating-linear-gradient(90deg, var(--ink) 0 10px, var(--accent) 10px 16px);
  }
  .route-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; }
  .route-stop { padding-left: 0; flex: 1; padding-top: 0; }
  .route-stop .route-marker { position: absolute; left: 50%; transform: translateX(-50%) rotate(45deg); }
  .route-stop:nth-child(odd) { margin-top: 0; }
  .route-stop:nth-child(odd) .route-body { margin-top: 108px; }
  .route-stop:nth-child(odd) .route-marker { top: 72px; }
  .route-stop:nth-child(even) .route-body { margin-bottom: 108px; order: -1; }
  .route-stop:nth-child(even) .route-marker { top: -20px; }
  .route-stop { position: relative; display: flex; flex-direction: column; }
  .route-body { text-align: center; }
  .route-body h3 { font-size: 1rem; }
}

.site-photos { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
.site-photos figure { margin: 0; }
.site-photos img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.site-photos figcaption { margin-top: 8px; font-size: .82rem; color: var(--muted); text-align: center; }
@media (min-width: 700px) { .site-photos { grid-template-columns: repeat(2, 1fr); } }

.faq-section .accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; padding: 16px 4px; font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 44px; color: var(--ink);
}
.accordion-trigger::after {
  content: "▾"; color: var(--ink); font-weight: 700; background: var(--accent); border-radius: 50%;
  width: 24px; height: 24px; flex: none; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem;
  transition: transform .2s;
}
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(180deg); }
.accordion-panel { padding: 0 4px 16px; color: var(--muted); }

.links-section p { color: var(--ink); }
.links-section a { text-decoration: underline; color: var(--ink); font-weight: 700; text-decoration-color: var(--accent); text-decoration-thickness: 2px; }

.cta-section { display: flex; gap: 12px; flex-wrap: wrap; padding: 36px 0 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 28px; border-radius: 4px; font-weight: 700; text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }

.site-footer { background: var(--ink); color: #C7CCDA; padding: 44px 20px 100px; border-top: 3px solid var(--accent); }
.site-footer nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 22px; margin: 0 0 22px; padding: 0; max-width: 800px; margin-left: auto; margin-right: auto; }
.site-footer nav a { color: #fff; text-decoration: none; font-size: .92rem; }
.site-footer nav a:hover { color: var(--accent); }
.site-footer address { font-style: normal; font-size: .88rem; line-height: 1.8; text-align: center; }
.site-footer a[href^="tel:"] { color: var(--accent); font-weight: 700; }
.site-footer p { text-align: center; }

.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; z-index: 150; box-shadow: 0 -2px 12px rgba(0,0,0,.2); }
.mobile-cta { flex: 1; min-height: 56px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 700; }
.mobile-cta.call { background: var(--accent); color: var(--ink); }
.mobile-cta.inquiry { background: var(--ink); color: #fff; }
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }

/* ---------- Related links ---------- */
.related-links {
  max-width: 1140px;
  margin: 0 auto 3.5rem;
  padding: 2rem 1.25rem 0;
  border-top: 1px solid var(--ink);
}
.related-links h2 {
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.related-links-group { margin-bottom: 1.25rem; }
.related-links-group:last-child { margin-bottom: 0; }
.related-links-group h3 {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
  opacity: 0.75;
}
.related-links-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}
.related-links-group a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}
.related-links-group a:hover { border-bottom-color: var(--ink); }

.site-footer nav{display:none}
.site-footer{padding-top:20px}
.site-footer address{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:4px 10px;line-height:1.5}
