:root {
  --paper: #f4f1eb;
  --card: #fffdf9;
  --ink: #18201d;
  --muted: #6f746f;
  --line: #dddcd5;
  --acid: #d9f45f;
  --orange: #ff6d4b;
  --blue: #4c5af3;
  --sky: #c9eafa;
  --shadow: 0 18px 50px rgba(30, 35, 31, .08);
  --radius: 24px;
  --font: "DM Sans", "Noto Sans KR", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[lang="ko"] { --font: "Noto Sans KR", "DM Sans", system-ui, sans-serif; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(217,244,95,.19), transparent 20rem),
    radial-gradient(circle at 93% 28%, rgba(201,234,250,.34), transparent 22rem),
    var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
html[lang="ko"] body { word-break: keep-all; overflow-wrap: break-word; }
html[lang="ko"] :is(h1, h2, h3, p, strong, small, button, a) { word-break: keep-all; overflow-wrap: break-word; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 44px);
  border-bottom: 1px solid rgba(24, 32, 29, .10);
  background: rgba(244, 241, 235, .86);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  text-decoration: none;
}
.brand-dot { color: var(--orange); }
.brand-mark {
  width: 29px;
  height: 29px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  padding: 6px;
  border-radius: 9px;
  background: var(--ink);
  transform: rotate(-4deg);
}
.brand-mark i { width: 4px; border-radius: 4px 4px 1px 1px; background: var(--acid); }
.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 16px; }
.brand-mark i:nth-child(3) { height: 12px; }

.location-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 150px;
  padding: 7px 13px 7px 10px;
  border: 1px solid rgba(24,32,29,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  cursor: pointer;
}
.location-pill:hover { border-color: rgba(24,32,29,.28); background: white; }
.location-pulse {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
}
.location-pulse::before, .location-pulse::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.location-pulse::after { inset: 5px; border: 1px solid var(--ink); background: transparent; opacity: .35; }
.location-copy { display: grid; text-align: left; line-height: 1.1; }
.location-copy small { color: var(--muted); font-size: 10px; font-weight: 600; }
.location-copy strong { margin-top: 2px; font-size: 12px; }
.location-pill > svg { width: 15px; height: 15px; margin-left: auto; }

.top-actions { justify-self: end; display: flex; align-items: center; gap: 6px; }
.language-control { display: block; }
.language-control select {
  height: 34px;
  padding: 0 27px 0 10px;
  border: 1px solid rgba(24,32,29,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.language-control select:hover, .language-control select:focus-visible { border-color: rgba(24,32,29,.35); background-color: white; outline: 0; }
.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.icon-button:hover { background: rgba(24,32,29,.07); }
.icon-button svg { width: 23px; height: 23px; }
.saved-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 99px;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.search-drawer {
  position: sticky;
  z-index: 95;
  top: 72px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(244,241,235,.95);
  backdrop-filter: blur(16px);
}
.search-box {
  max-width: 680px;
  height: 48px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}
.search-box svg { width: 20px; height: 20px; color: var(--muted); }
.search-box input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 14px; }
.search-box button { border: 0; background: none; color: var(--muted); font-size: 24px; cursor: pointer; }

.page-shell {
  width: min(1380px, calc(100% - 40px));
  margin: 28px auto 100px;
  display: grid;
  grid-template-columns: 250px minmax(0, 680px) 250px;
  justify-content: center;
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
}
.left-rail, .right-rail { position: sticky; top: 102px; display: grid; gap: 16px; }
.rail-card, .nearby-card, .weekly-card { border: 1px solid rgba(24,32,29,.11); border-radius: 20px; background: rgba(255,253,249,.68); }
.rail-intro { padding: 24px; }
.eyebrow, .section-kicker {
  color: #6b716c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.rail-intro h2 { margin: 16px 0 13px; font-size: 25px; line-height: 1.22; letter-spacing: -1.1px; }
.rail-intro p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.rail-location {
  width: 100%;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.rail-location svg { width: 17px; height: 17px; }
.trust-card { display: flex; align-items: center; gap: 11px; padding: 15px; }
.trust-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: var(--acid); }
.trust-icon svg { width: 22px; height: 22px; }
.trust-card div:last-child { display: grid; gap: 3px; }
.trust-card strong { font-size: 11px; }
.trust-card span { color: var(--muted); font-size: 9px; }

.feed-column { min-width: 0; }
.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 28px;
  background: #2b352f;
  box-shadow: var(--shadow);
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,15,12,.88) 0%, rgba(8,15,12,.65) 43%, rgba(8,15,12,.08) 78%), linear-gradient(0deg, rgba(8,15,12,.28), transparent 45%); }
.hero-content { position: relative; z-index: 2; max-width: 450px; padding: 62px 48px 48px; color: white; }
.hero-label { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.hero-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(217,244,95,.18); }
.hero h1 { max-width: 470px; margin: 34px 0 22px; font-size: clamp(48px, 6vw, 66px); line-height: .98; letter-spacing: -4px; text-wrap: balance; }
.hero h1 > span, .hero h1 > em { display: block; }
.hero h1 em { color: var(--acid); font-style: normal; }
.hero p { margin: 0; color: rgba(255,255,255,.77); font-size: 15px; line-height: 1.7; }
.hero-cta {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 19px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  cursor: pointer;
}
.hero-cta:hover { transform: translateY(-2px); }
.hero-cta svg { width: 19px; height: 19px; }
.editorial-label {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.75);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}

.scope-strip {
  position: relative;
  min-height: 128px;
  margin: 14px 0 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1px solid rgba(24,32,29,.08);
  border-radius: 21px;
  background: var(--acid);
}
.scope-copy { display: grid; gap: 4px; }
.scope-copy > span { width: max-content; padding: 4px 7px; border-radius: 6px; background: var(--ink); color: white; font-size: 9px; font-weight: 800; }
.scope-copy strong { font-size: 20px; letter-spacing: -.6px; }
.scope-copy p { max-width: 480px; margin: 0; color: rgba(24,32,29,.68); font-size: 10px; line-height: 1.5; }
.scope-orbit { position: relative; width: 78px; height: 78px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(24,32,29,.25); border-radius: 50%; }
.scope-orbit::before { content: ""; position: absolute; inset: 11px; border: 1px solid rgba(24,32,29,.2); border-radius: 50%; }
.scope-orbit span { z-index: 1; font-size: 12px; font-weight: 900; }
.scope-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.scope-orbit i:nth-of-type(1) { top: 5px; left: 19px; }
.scope-orbit i:nth-of-type(2) { right: 7px; bottom: 17px; }
.scope-orbit i:nth-of-type(3) { left: 9px; bottom: 9px; width: 4px; height: 4px; }

.filter-zone { margin: 26px 0 15px; }
.filter-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.filter-heading h2 { margin: 5px 0 0; font-size: 27px; letter-spacing: -1.2px; }
.sort-button { display: flex; align-items: center; gap: 7px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; cursor: pointer; }
.sort-button:hover { background: white; }
.sort-button svg { width: 16px; height: 16px; }
.filter-scroll { display: flex; gap: 7px; overflow-x: auto; margin: 17px -2px 0; padding: 2px 2px 6px; scrollbar-width: none; }
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-chip { white-space: nowrap; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.62); color: #565b57; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter-chip:hover { border-color: #a8aaa5; }
.filter-chip.active { border-color: var(--ink); background: var(--ink); color: white; }
.active-notice { margin: 0 0 13px; display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-radius: 12px; background: #e7e4dd; color: var(--muted); font-size: 11px; }
.active-notice button { border: 0; background: transparent; color: var(--ink); font-size: 10px; font-weight: 800; text-decoration: underline; cursor: pointer; }

.feed { display: grid; gap: 22px; }
.feed-card {
  overflow: hidden;
  border: 1px solid rgba(24,32,29,.11);
  border-radius: 25px;
  background: var(--card);
  box-shadow: 0 7px 26px rgba(30,35,31,.045);
  animation: cardIn .4s both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(10px); } }
.card-author { height: 67px; display: flex; align-items: center; gap: 10px; padding: 0 17px; }
.city-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24,32,29,.12);
  border-radius: 50%;
  background: var(--acid);
  font-size: 11px;
  font-weight: 900;
}
.city-avatar::after { content: ""; position: absolute; inset: -3px; border: 1px solid rgba(255,109,75,.65); border-radius: 50%; border-right-color: var(--blue); }
.author-copy { min-width: 0; display: grid; gap: 2px; }
.author-name { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; }
.author-name svg { width: 13px; height: 13px; fill: var(--blue); stroke: white; stroke-width: 2.5; }
.author-copy small { overflow: hidden; color: var(--muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.card-more { margin-left: auto; width: 35px; height: 35px; display: grid; place-items: center; border: 0; border-radius: 50%; background: none; cursor: pointer; }
.card-more:hover { background: #efede7; }
.card-more svg { width: 21px; height: 21px; }

.card-media { position: relative; height: clamp(390px, 70vw, 570px); overflow: hidden; background: #39423d; cursor: pointer; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feed-card:hover .card-media img { transform: scale(1.015); }
.media-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,17,14,.91) 0%, rgba(11,17,14,.33) 39%, transparent 65%); }
.media-top { position: absolute; z-index: 2; top: 16px; left: 16px; right: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.price-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 11px; border-radius: 999px; background: var(--acid); color: var(--ink); font-size: 11px; font-weight: 900; box-shadow: 0 5px 15px rgba(0,0,0,.15); }
.price-badge.discount { background: #ffd4c8; }
.price-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.distance-badge { padding: 8px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(13,18,16,.45); backdrop-filter: blur(10px); color: white; font-size: 10px; font-weight: 700; }
.media-copy { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 23px; color: white; }
.media-copy .kicker { display: block; margin-bottom: 9px; color: var(--acid); font-size: 10px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.media-copy h3 { max-width: 580px; margin: 0; font-size: clamp(30px, 5.2vw, 45px); line-height: 1.06; letter-spacing: -2px; text-wrap: balance; }
.media-copy .date-line { margin-top: 13px; display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.83); font-size: 11px; font-weight: 600; }
.media-copy .date-line svg { width: 15px; height: 15px; }
.visual-note { position: absolute; z-index: 2; top: 57px; right: 16px; color: rgba(255,255,255,.68); font-size: 7px; font-weight: 700; letter-spacing: .8px; }

.card-actions { min-height: 60px; display: flex; align-items: center; gap: 3px; padding: 7px 12px; border-bottom: 1px solid #ece9e2; }
.action-button { min-width: 42px; height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 8px; border: 0; border-radius: 11px; background: none; font-size: 11px; font-weight: 700; cursor: pointer; }
.action-button:hover { background: #efede7; }
.action-button svg { width: 23px; height: 23px; }
.action-button.saved svg { fill: var(--ink); }
.action-button.sources { margin-left: auto; padding: 0 11px; border: 1px solid #d9d7d0; }
.action-button.sources svg { width: 17px; height: 17px; color: #1d9a58; }

.card-caption { padding: 18px 19px 21px; }
.venue-line { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; font-size: 11px; }
.venue-line strong { font-weight: 900; }
.venue-line span { color: var(--muted); }
.venue-line .dot { width: 3px; height: 3px; border-radius: 50%; background: #b2b4b0; }
.card-caption > p { margin: 0; color: #343a36; font-size: 13px; line-height: 1.7; }
.tag-row { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag { color: var(--blue); font-size: 10px; font-weight: 700; }
.fine-print { margin-top: 14px !important; padding-top: 13px; border-top: 1px dashed #dedbd3; color: var(--muted) !important; font-size: 10px !important; line-height: 1.55 !important; }
.caption-footer { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.reservation { display: inline-flex; align-items: center; gap: 6px; color: #5d625e; font-size: 9px; font-weight: 700; }
.reservation::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,109,75,.12); }
.detail-link { border: 0; background: none; font-size: 10px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.empty-state { padding: 70px 30px; text-align: center; border: 1px dashed #c8c7c0; border-radius: var(--radius); background: rgba(255,255,255,.35); }
.empty-state > span { color: var(--muted); font-size: 24px; }
.empty-state h3 { margin: 17px 0 7px; font-size: 20px; }
.empty-state p { margin: 0; color: var(--muted); font-size: 12px; }
.empty-state button { margin-top: 18px; padding: 11px 16px; border: 0; border-radius: 999px; background: var(--ink); color: white; font-size: 11px; font-weight: 700; cursor: pointer; }

.method-card { position: relative; overflow: hidden; margin-top: 24px; min-height: 250px; display: flex; align-items: center; padding: 38px; border-radius: 25px; background: var(--ink); color: white; }
.method-card > div { position: relative; z-index: 2; max-width: 410px; }
.method-card .section-kicker { color: var(--acid); }
.method-card h2 { margin: 10px 0 12px; font-size: 29px; letter-spacing: -1.1px; }
.method-card p { margin: 0; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.7; }
.method-card button { margin-top: 21px; padding: 0; border: 0; background: none; color: white; font-size: 11px; font-weight: 800; cursor: pointer; }
.method-card button > span:last-child { color: var(--acid); }
.method-card button .button-copy { color: white; }
.method-number { position: absolute; right: -4px; bottom: -37px; color: rgba(217,244,95,.10); font-size: 170px; font-weight: 900; letter-spacing: -16px; }

.nearby-card { padding: 22px; }
.nearby-card h3 { margin: 9px 0 16px; font-size: 19px; letter-spacing: -.6px; }
.nearby-list { display: grid; }
.nearby-city { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 11px 0; border: 0; border-bottom: 1px solid #dfded7; background: transparent; text-align: left; cursor: pointer; }
.nearby-city:last-child { border-bottom: 0; }
.nearby-city strong { display: block; font-size: 11px; }
.nearby-city small { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; }
.nearby-city > span:first-child { min-width: 0; }
.nearby-city > span:last-child { min-width: 35px; padding: 4px 6px; border-radius: 99px; background: #e8e5dd; color: #5f645f; font-size: 8px; text-align: center; }
.nearby-city:hover strong { color: var(--blue); }
.all-cities { width: 100%; margin-top: 12px; padding: 11px; border: 0; border-radius: 11px; background: var(--ink); color: white; font-size: 10px; font-weight: 700; cursor: pointer; }
.all-cities > span:last-child { color: var(--acid); }
.all-cities .button-copy { color: white; }
.weekly-card { position: relative; overflow: hidden; padding: 22px; background: var(--sky); }
.weekly-card::after { content: ""; position: absolute; width: 80px; height: 80px; right: -35px; bottom: -30px; border: 14px solid rgba(76,90,243,.15); border-radius: 50%; }
.weekly-card .tiny-stars { color: var(--blue); font-size: 12px; }
.weekly-card strong { display: block; margin-top: 18px; font-size: 16px; line-height: 1.35; }
.weekly-card p { margin: 12px 0 0; color: #53626a; font-size: 9px; line-height: 1.5; }

.mobile-nav { display: none; }

.modal-backdrop { position: fixed; z-index: 300; inset: 0; background: rgba(9,13,11,.55); backdrop-filter: blur(5px); animation: fadeIn .2s both; }
@keyframes fadeIn { from { opacity: 0; } }
dialog { color: var(--ink); }
dialog::backdrop { background: transparent; }
.sheet {
  position: fixed;
  z-index: 310;
  inset: auto 0 0;
  width: min(620px, 100%);
  max-height: min(82vh, 760px);
  margin: 0 auto;
  overflow: auto;
  padding: 12px 25px 24px;
  border: 0;
  border-radius: 26px 26px 0 0;
  background: var(--card);
  box-shadow: 0 -20px 60px rgba(0,0,0,.22);
  animation: sheetIn .25s both;
}
@keyframes sheetIn { from { transform: translateY(30px); opacity: 0; } }
.sheet-handle { width: 42px; height: 4px; margin: 0 auto 20px; border-radius: 99px; background: #d5d3cc; }
.sheet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.sheet-head h2 { margin: 5px 0 0; font-size: 24px; letter-spacing: -1px; }
.modal-close { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 0; border-radius: 50%; background: #efede7; font-size: 25px; line-height: 1; cursor: pointer; }
.detect-location { width: 100%; margin-top: 22px; display: flex; align-items: center; gap: 12px; padding: 13px; border: 0; border-radius: 16px; background: var(--acid); text-align: left; cursor: pointer; }
.detect-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: white; }
.detect-icon svg { width: 21px; height: 21px; }
.detect-location > span:nth-child(2) { display: grid; gap: 3px; }
.detect-location strong { font-size: 13px; }
.detect-location small { color: rgba(24,32,29,.65); font-size: 9px; }
.detect-location .arrow { margin-left: auto; font-size: 20px; }
.location-status { min-height: 18px; margin: 9px 0 2px; color: var(--muted); font-size: 10px; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.city-button { padding: 12px 8px; border: 1px solid var(--line); border-radius: 12px; background: white; font-size: 11px; font-weight: 700; cursor: pointer; }
.city-button:hover, .city-button.active { border-color: var(--ink); background: var(--ink); color: white; }
.privacy-note { margin: 18px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--muted); font-size: 9px; }
.privacy-note svg { width: 14px; height: 14px; }

.detail-modal {
  position: fixed;
  z-index: 310;
  inset: 50% auto auto 50%;
  width: min(600px, calc(100% - 28px));
  max-height: min(88vh, 860px);
  margin: 0;
  overflow: auto;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 25px;
  background: var(--card);
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  animation: detailIn .24s both;
}
@keyframes detailIn { from { opacity: 0; transform: translate(-50%, -47%) scale(.98); } }
.detail-close { position: fixed; z-index: 5; top: 13px; right: 13px; background: rgba(255,255,255,.88); }
.detail-hero { position: relative; min-height: 300px; display: flex; align-items: end; overflow: hidden; color: white; }
.detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,15,12,.92), rgba(10,15,12,.05) 80%); }
.detail-hero-copy { position: relative; z-index: 2; padding: 28px; }
.detail-hero-copy .price-badge { margin-bottom: 13px; }
.detail-hero-copy h2 { max-width: 480px; margin: 0; font-size: 33px; line-height: 1.08; letter-spacing: -1.7px; }
.detail-body { padding: 26px 28px 30px; }
.detail-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.detail-fact { padding: 13px; border-radius: 13px; background: #f0eee8; }
.detail-fact small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.detail-fact strong { display: block; font-size: 11px; line-height: 1.45; }
.detail-summary { margin: 21px 0 0; font-size: 13px; line-height: 1.75; }
.condition-box { margin-top: 18px; padding: 15px; border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; background: #fff1ec; }
.condition-box strong { display: block; margin-bottom: 5px; font-size: 10px; }
.condition-box p { margin: 0; color: #6d5f59; font-size: 10px; line-height: 1.6; }
.sources-panel { margin-top: 25px; }
.source-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.source-head h3 { margin: 0; font-size: 16px; }
.source-head span { padding: 5px 8px; border-radius: 99px; background: #e2f3e7; color: #187f49; font-size: 8px; font-weight: 800; }
.source-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid #e2e0da; text-decoration: none; }
.source-index { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: var(--ink); color: white; font-size: 9px; font-weight: 800; }
.source-copy { min-width: 0; display: grid; gap: 3px; }
.source-copy strong { font-size: 10px; }
.source-copy small { overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.source-item > span:last-child { margin-left: auto; font-size: 16px; }
.source-item:hover .source-copy strong { color: var(--blue); }
.detail-cta-row { position: sticky; bottom: -1px; margin: 24px -28px -30px; display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 13px 28px 18px; border-top: 1px solid var(--line); background: rgba(255,253,249,.94); backdrop-filter: blur(10px); }
.primary-cta, .map-cta { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 13px; font-size: 11px; font-weight: 800; text-decoration: none; cursor: pointer; }
.primary-cta { background: var(--ink); color: white; }
.map-cta { width: 48px; border: 1px solid var(--line); background: white; }
.map-cta svg { width: 19px; height: 19px; }

.sort-sheet { width: min(500px, 100%); }
.sort-options { margin-top: 15px; display: grid; }
.sort-options button { display: grid; grid-template-columns: 1fr 22px; padding: 14px 4px; border: 0; border-top: 1px solid var(--line); background: none; text-align: left; cursor: pointer; }
.sort-options span { font-size: 13px; font-weight: 800; }
.sort-options small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.sort-options i { grid-row: 1 / span 2; grid-column: 2; align-self: center; width: 18px; height: 18px; border: 1px solid #aaa; border-radius: 50%; }
.sort-options button.active i { border: 5px solid var(--ink); }

.toast { position: fixed; z-index: 400; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 12px 17px; transform: translate(-50%, 20px); border-radius: 999px; background: var(--ink); color: white; box-shadow: 0 10px 30px rgba(0,0,0,.2); font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

html[lang="ko"] .hero h1 { max-width: 420px; line-height: 1.12; letter-spacing: -2.2px; }
html[lang="ko"] .hero p { max-width: 390px; line-height: 1.8; text-wrap: pretty; }
html[lang="ko"] .media-copy h3 { line-height: 1.22; letter-spacing: -1.2px; text-wrap: balance; }
html[lang="ko"] :is(.rail-intro h2, .filter-heading h2, .method-card h2, .nearby-card h3, .sheet-head h2, .detail-hero-copy h2) { letter-spacing: -.45px; line-height: 1.35; text-wrap: balance; }
html[lang="ko"] :is(.card-caption > p, .fine-print, .detail-summary, .condition-box p, .method-card p, .scope-copy p) { line-height: 1.8; text-wrap: pretty; }

@media (max-width: 1120px) {
  .page-shell { grid-template-columns: minmax(0, 680px) 240px; }
  .left-rail { display: none; }
}

@media (max-width: 860px) {
  body { padding-bottom: 70px; }
  .topbar { height: 64px; padding: 0 16px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 25px; height: 25px; padding: 5px; }
  .brand-mark i { width: 3px; }
  .location-pill { min-width: 128px; padding: 6px 9px 6px 7px; }
  .location-pulse { width: 25px; height: 25px; }
  .location-copy strong { font-size: 10px; }
  .top-actions .saved-trigger { display: none; }
  .search-drawer { top: 64px; }
  .page-shell { width: 100%; margin: 0 auto 40px; display: block; }
  .right-rail { display: none; }
  .feed-column { width: 100%; }
  .hero { min-height: 540px; border-radius: 0; }
  .hero-content { padding: 72px 25px 40px; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,15,12,.88) 0%, rgba(8,15,12,.53) 62%, rgba(8,15,12,.16)), linear-gradient(0deg, rgba(8,15,12,.4), transparent 55%); }
  .scope-strip, .filter-zone, .active-notice, .feed, .method-card { margin-left: 13px; margin-right: 13px; }
  .scope-strip { margin-top: 12px; }
  .filter-zone { margin-top: 25px; }
  .feed-card { border-radius: 20px; }
  .method-card { margin-bottom: 18px; }
  .mobile-nav {
    position: fixed;
    z-index: 200;
    left: 50%;
    bottom: 10px;
    width: min(410px, calc(100% - 28px));
    height: 61px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 5px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 22px;
    background: rgba(23,30,27,.93);
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
    backdrop-filter: blur(14px);
  }
  .mobile-nav a, .mobile-nav button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border: 0; border-radius: 17px; background: transparent; color: rgba(255,255,255,.6); font-size: 8px; text-decoration: none; cursor: pointer; }
  .mobile-nav .active { background: var(--acid); color: var(--ink); }
  .mobile-nav svg { width: 21px; height: 21px; }
  .toast { bottom: 82px; }
}

@media (max-width: 560px) {
  .top-actions .icon-button { width: 36px; height: 36px; }
  .brand { gap: 7px; }
  .location-copy small { display: none; }
  .location-pill > svg { width: 13px; }
  .hero { min-height: 545px; }
  .hero > img { object-position: 58% center; }
  .hero-content { padding-top: 70px; }
  .hero h1 { margin-top: 31px; font-size: 47px; letter-spacing: -3.3px; }
  .hero p { font-size: 13px; }
  .hero-cta { margin-top: 27px; }
  .scope-strip { min-height: 115px; padding: 20px; }
  .scope-copy strong { font-size: 17px; }
  .scope-copy p { max-width: 260px; font-size: 8px; }
  .scope-orbit { width: 64px; height: 64px; margin-right: -10px; }
  .filter-heading h2 { font-size: 23px; }
  .card-media { height: 480px; }
  .media-copy { left: 19px; right: 19px; bottom: 21px; }
  .media-copy h3 { font-size: 34px; letter-spacing: -1.8px; }
  .card-author { height: 62px; padding: 0 14px; }
  .card-caption { padding: 17px 16px 20px; }
  .card-actions { padding-left: 9px; padding-right: 9px; }
  .action-button.sources span { display: none; }
  .method-card { min-height: 270px; padding: 30px 24px; }
  .method-card h2 { font-size: 25px; }
  .method-number { font-size: 130px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .sheet { padding-left: 18px; padding-right: 18px; }
  .detail-hero { min-height: 330px; }
  .detail-hero-copy { padding: 24px 20px; }
  .detail-hero-copy h2 { font-size: 29px; }
  .detail-body { padding: 22px 20px 27px; }
  .detail-facts { grid-template-columns: 1fr; }
  .detail-cta-row { margin-left: -20px; margin-right: -20px; margin-bottom: -27px; padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 520px) {
  .brand > span:last-child { display: none; }
  .location-pill { min-width: 108px; }
  .language-control select { width: 67px; padding-left: 8px; padding-right: 20px; }
  html[lang="ko"] .hero h1 { font-size: 43px; line-height: 1.16; letter-spacing: -1.8px; }
  html[lang="ko"] .media-copy h3 { font-size: 31px; line-height: 1.25; letter-spacing: -.9px; }
}

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