:root {
  --bg: #fff;
  --ink: #222;
  --muted: #6a6a6a;
  --line: #ebebeb;
  --surface: #f2f2f2;
  --accent: #ff385c;
  --accent-dark: #e00b41;
  --shadow: rgba(0,0,0,.02) 0 0 0 1px, rgba(0,0,0,.04) 0 2px 6px, rgba(0,0,0,.1) 0 4px 8px;
  --r: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans KR", "DM Sans", -apple-system, "Apple SD Gothic Neo", sans-serif;
  font-weight: 500;
}
a { color: inherit; }
img { max-width: 100%; }

 .top {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.top .inner {
  max-width: 1180px; margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) minmax(180px,280px);
  align-items: center;
  gap: 10px 16px;
}
.brand {
  font-size: 22px; font-weight: 700; letter-spacing: -.04em;
  text-decoration: none; color: var(--accent); white-space: nowrap;
}
.brand span { display: none; }
.gnb {
  display: flex; gap: 2px; justify-content: center;
  flex-wrap: nowrap; overflow-x: auto; min-width: 0;
}
.gnb a {
  text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 8px 11px; border-radius: 999px; color: #222;
  white-space: nowrap;
}
.gnb a.on, .gnb a:hover { background: #f2f2f2; }
.top-search {
  display: flex; align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0; width: 100%;
}
.top-search input {
  border: 0; outline: 0; padding: 10px 14px; flex: 1;
  font: inherit; font-size: 14px; background: transparent; min-width: 0;
}
.top-search button {
  border: 0; background: var(--accent); color: #fff;
  font: inherit; font-size: 13px; font-weight: 700;
  padding: 10px 14px; cursor: pointer; flex-shrink: 0;
}
.top-search button:hover { background: var(--accent-dark); }

.page-home .top .inner {
  grid-template-columns: auto 1fr;
}
.hero-search {
  position: relative;
  min-height: 420px;
  padding: 80px 20px 72px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #fff;
}
.hero-search h1 {
  margin: 0 0 10px; font-size: clamp(28px, 5vw, 44px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.2;
  text-wrap: pretty;
}
.search-pill {
  display: flex; align-items: stretch; background: #fff; border-radius: 999px;
  overflow: hidden; box-shadow: var(--shadow), 0 8px 28px rgba(0,0,0,.18);
}
.search-pill input {
  flex: 1; border: 0; outline: 0; padding: 18px 22px;
  font: inherit; font-size: 16px; font-weight: 500; color: #222; min-width: 0;
}
.search-pill button {
  border: 0; background: var(--accent); color: #fff;
  font: inherit; font-weight: 700; font-size: 15px;
  min-width: 88px; padding: 0 22px; cursor: pointer; flex-shrink: 0;
}
.search-pill button:hover { background: var(--accent-dark); }

.cats {
  display: flex; gap: 4px; overflow-x: auto;
  max-width: 1180px; margin: 0 auto;
  padding: 8px 20px 0;
  border-bottom: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
.cats a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 14px; font-weight: 600; color: #6a6a6a;
  padding: 14px 14px 12px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.cats a:hover, .cats a:focus-visible { color: #222; border-bottom-color: #222; }

.quick { display: none; }
.hero-search img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-search .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.5));
}
.hero-search .copy {
  position: relative; z-index: 1; text-align: center;
  width: min(720px, 100%);
}
.hero-search p { margin: 0 0 22px; font-size: 16px; font-weight: 500; opacity: .92; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 32px 20px 72px; }
.kicker { font-size: 11px; letter-spacing: .14em; color: var(--accent); font-weight: 700; }
h1.page { font-size: 28px; margin: 4px 0 18px; letter-spacing: -.03em; font-weight: 700; }
.lede { color: var(--muted); margin: -8px 0 22px; font-size: 14px; font-weight: 400; }

.sec { margin-bottom: 48px; }
.sec h3 {
  font-size: 22px; margin: 0 0 16px; letter-spacing: -.03em; font-weight: 700;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.sec h3 a { font-size: 13px; color: var(--accent); font-weight: 700; text-decoration: none; }

.row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: #fff; border-radius: var(--r); overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.card img {
  width: 100%; aspect-ratio: 4 / 3; height: auto;
  object-fit: cover; object-position: center;
  display: block; background: #eee;
  transition: transform .35s ease;
}
.card .b { padding: 12px 14px 16px; }
.card .b em { font-style: normal; font-size: 11px; color: var(--accent); font-weight: 700; }
.card .b b { display: block; margin-top: 4px; font-size: 15px; line-height: 1.35; letter-spacing: -.02em; }
.card .b p { margin: 6px 0 0; font-size: 12px; color: var(--muted); font-weight: 400; line-height: 1.45; }
.card:hover { box-shadow: rgba(0,0,0,.08) 0 4px 12px; }
.card:hover img { transform: scale(1.03); }

.row.posters {
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}
.row.posters .card img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: #171717;
}

.dest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dest a {
  position: relative; overflow: hidden; border-radius: 20px;
  text-decoration: none; color: #fff; display: block;
  aspect-ratio: 4 / 3;
}
.dest a:first-child { grid-column: span 2; }
.dest img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.dest span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: 18px; font-weight: 700; letter-spacing: -.02em;
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 18px; }
.filters a {
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  background: #fff; text-decoration: none; border: 1px solid #e5e5e5;
}
.filters a.on { background: #222; color: #fff; border-color: #222; }

.pager { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.pager a, .pager span {
  padding: 8px 12px; border-radius: 8px; background: #fff; font-size: 13px;
  border: 1px solid #e5e5e5; text-decoration: none; min-width: 36px; text-align: center;
}
.pager .on, .pager .current { background: #222; color: #fff; border-color: #222; }
.empty { text-align: center; color: #999; padding: 60px 0; }

.leaflet-box { height: 320px; width: 100%; border-radius: 14px; margin: 12px 0 18px; background: #eee; }
.minis { margin: 22px 0; }
.minis h2 { font-size: 18px; margin: 0 0 12px; letter-spacing: -.02em; }
.mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.mini {
  display: flex; gap: 10px; background: #fff; border-radius: 14px; overflow: hidden;
  text-decoration: none; box-shadow: var(--shadow);
}
.mini img {
  width: 120px; aspect-ratio: 4 / 3; height: auto;
  object-fit: cover; object-position: center;
  flex-shrink: 0; background: #eee;
}

.place-hero {
  width: 100%; background: #111;
  display: flex; justify-content: center; align-items: center;
}
.place-hero img {
  width: min(100%, 960px);
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px; margin: 8px 0 20px;
}
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; height: auto;
  object-fit: cover; object-position: center; border-radius: 10px;
}

.body img {
  width: 100%; height: auto; max-height: none;
  object-fit: contain; border-radius: 12px;
  margin: 8px 0 16px; display: block; background: #f4f4f4;
}
.body .img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 8px 0 16px; }
.body .img-row img { margin: 0; width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; }

.cover-hero { position: relative; border-radius: 16px; overflow: hidden; margin: 0 0 18px; }
.cover-hero img {
  width: 100%; aspect-ratio: 4 / 3; height: auto; max-height: none;
  object-fit: cover; object-position: center; display: block;
}
.mini-t { padding: 10px 12px 10px 0; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mini-t em { font-style: normal; font-size: 11px; color: var(--accent); font-weight: 700; }
.mini-t b { font-size: 14px; line-height: 1.3; }
.mini-t i { font-style: normal; font-size: 12px; color: var(--muted); font-weight: 400; }

.place-body { max-width: 760px; margin: 0 auto; padding: 28px 20px 64px; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #fff; background: #222; padding: 4px 10px; border-radius: 999px; margin-right: 6px;
}
.place-body h1 { font-size: 30px; line-height: 1.25; margin: 12px 0 10px; letter-spacing: -.03em; }
.facts { background: #fff; border-radius: 16px; padding: 4px 20px; margin: 18px 0; box-shadow: var(--shadow); }
.facts dl { display: grid; grid-template-columns: 88px 1fr; gap: 0; margin: 0; }
.facts dt, .facts dd { padding: 12px 0; border-top: 1px solid #f0f0f0; font-size: 14px; margin: 0; font-weight: 400; }
.facts dt { color: var(--muted); font-weight: 600; }
.facts dl > :nth-child(-n+2) { border-top: none; }
.overview { font-size: 16px; line-height: 1.85; color: #222; margin: 8px 0; font-weight: 400; }
.credit { font-size: 11px; color: #999; font-weight: 400; }
.map-card { background: #fff; border-radius: 16px; padding: 16px; margin: 22px 0; box-shadow: var(--shadow); }
.map-card h2 { font-size: 16px; margin: 0 0 10px; }
.map-card .leaflet-box { margin: 0; height: 280px; }
.maplink { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--accent); font-weight: 700; text-decoration: none; }
.body { font-size:16px; line-height:1.85; color:#222; font-weight:400; }
.body h3 { font-size:19px; margin:26px 0 10px; }
.body p { margin:0 0 16px; }
.meta { color:#999; font-size:13px; margin-bottom:20px; font-weight:400; }
.article { max-width:760px; margin:0 auto; padding:24px 20px 40px; }
.back { display: inline-block; margin-top: 16px; color: #555; text-decoration: none; font-size: 14px; }

.cover-hero .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.78)); color: #fff;
}
.cover-hero .cap h1 { color: #fff; margin: 8px 0 0; font-size: 24px; line-height: 1.35; }
.cover-hero .cap .region { background: rgba(255,255,255,.2); }

footer.site {
  background: #111; color: #bbb; font-size: 13px; font-weight: 400;
  padding: 36px 20px 28px; margin-top: 20px;
}
footer.site .inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
footer.site b { display: block; color: #fff; font-size: 16px; margin-bottom: 10px; }
footer.site a { color: #bbb; text-decoration: none; display: block; padding: 3px 0; }
footer.site .copy { grid-column: 1 / -1; border-top: 1px solid #333; padding-top: 16px; margin-top: 8px; font-size: 12px; color: #888; }

@media (max-width: 900px) {
  .top .inner {
    grid-template-columns: auto 1fr;
  }
  .top-search { grid-column: 1 / -1; }
  .gnb { justify-content: flex-start; grid-column: 1 / -1; }
  .row { grid-template-columns: repeat(2, 1fr); }
  .dest { grid-template-columns: 1fr 1fr; }
  .dest a:first-child { grid-column: span 2; }
  .hero-search { min-height: 300px; padding: 48px 16px 40px; }
  footer.site .inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .row { grid-template-columns: 1fr 1fr; gap: 10px; }
}
