*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #fff;
  --gray: #888;
  --light: #f8f8f8;
  --h: 52px;
  --font-gs: "Gill Sans", "GillSans", "Gill Sans MT", Calibri, sans-serif;
}

html { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; }
* { font-synthesis: none; }
body { background: var(--white); color: var(--black); overflow-x: hidden; }

/* ── SHARED HEADER ── */
.site-header, .trip-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; z-index: 200;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.site-title {
  font-family: var(--font-gs);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; color: var(--black); text-transform: uppercase;
}

.view-toggle { display: flex; align-items: center; gap: 6px; }
.view-toggle button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-gs);
  font-size: 13px; color: var(--gray); padding: 4px 2px;
  transition: color 0.2s; letter-spacing: 0.04em;
}
.view-toggle button.active { color: var(--black); font-weight: 700; }
.view-toggle .sep { color: #ccc; font-size: 11px; }

main { padding-top: var(--h); min-height: 100vh; }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--black);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 52px 60px 48px;
  gap: 40px;
}
.footer-nl,
.footer-contact {
  display: flex; flex-direction: column; justify-content: space-between;
}

.footer-heading {
  font-family: var(--font-gs);
  font-size: 16px; font-weight: 400; letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 6px;
}

/* Newsletter */
.footer-nl-desc {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.footer-nl-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 28px;
  background: var(--white); color: var(--black);
  border-radius: 100px;
  padding: 11px 36px;
  font-size: 13px; font-weight: 400;
  text-decoration: none;
  transition: opacity 0.18s;
}
.footer-nl-btn:hover { opacity: 0.85; }

/* Contact */
.footer-contact { text-align: right; }
.footer-links {
  display: flex; flex-direction: column; align-items: flex-end;
  line-height: 1.15;
}
.footer-link {
  font-family: var(--font-gs);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.18s;
}
.footer-link:hover { opacity: 0.5; }

/* Bottom bar */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 60px;
}
.site-footer-slogan,
.site-footer-copy {
  font-family: var(--font-gs);
  font-size: 11px; font-weight: 300; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
}

/* ── INTRO OVERLAY ── */
#intro-overlay {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8vw;
  transition: opacity 0.5s ease;
}
#intro-overlay.fade-out { opacity: 0; pointer-events: none; }

.intro-text {
  font-family: var(--font-gs);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700; line-height: 1.2;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.intro-right { text-align: right; }
#intro-overlay.show .intro-text { opacity: 1; transform: translateY(0); }
#intro-overlay.show .intro-right { transition-delay: 0.08s; }

/* ── LIST VIEW ── */
.list-view { display: none; flex-direction: column; align-items: center; padding: 64px 28px 120px; }
.list-view.active { display: flex; }

.year-label {
  position: absolute; left: 0;
  top: 50%; transform: translateY(-50%);
  font-family: var(--font-gs); font-size: 12px; font-weight: 400;
  color: #aaa; letter-spacing: 0.04em; pointer-events: none;
}

.city-item {
  width: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 2px 0; cursor: pointer;
  text-decoration: none; color: var(--black);
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.city-item-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.city-name {
  font-family: var(--font-gs);
  font-size: clamp(2rem, 6.5vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  transition: font-size 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.city-country, .city-date {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.city-country { right: calc(100% + 20px); }
.city-date    { left:  calc(100% + 20px); }

.city-item.is-hover .city-name {
  font-size: clamp(2.8rem, 9vw, 10rem);
}
.city-item.is-hover .city-country,
.city-item.is-hover .city-date {
  opacity: 1;
}

/* ── PREVIEW POPUP ── */
.preview-popup {
  position: fixed; bottom: 28px; right: 28px;
  width: 160px; height: 200px; overflow: hidden;
  pointer-events: none; opacity: 0;
  transform: scale(0.94) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 300; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.preview-popup.visible { opacity: 1; transform: scale(1) translateY(0); }
.preview-popup img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── GRID VIEW ── */
.grid-view { display: none; }
.grid-view.active { display: block; }
.city-item.coming-soon { cursor: none; pointer-events: auto; color: #bbb; }

.fan-wrap {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: visible;
  cursor: grab;
  user-select: none;
}
.fan-wrap:active { cursor: grabbing; }

.fan-card {
  position: absolute;
  width: 300px;
  height: 420px;
  border-radius: 3px;
  overflow: hidden;
  background: #d4d4d4;
  pointer-events: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  transform-origin: center center;
}
.fan-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none; user-select: none;
}
.fan-card--soon { background: #e0e0e0; box-shadow: 0 3px 14px rgba(0,0,0,0.08); }

/* ── TRIP HEADER ── */
.back-btn {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-gs);
  font-size: 12px; font-weight: 400; color: var(--gray);
  text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s;
}
.back-btn:hover { color: var(--black); }
.back-arrow { font-size: 14px; }

.trip-header-title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ── TRIP HERO ── */
.trip-hero {
  flex-shrink: 0;
  padding: 22px 44px 18px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trip-hero-city {
  font-family: var(--font-gs);
  font-size: clamp(1.4rem, 2.8vw, 2.8rem); font-weight: 600;
  letter-spacing: -0.01em; line-height: 1; color: var(--black);
}
.trip-hero-meta {
  font-size: 11px; color: var(--gray);
  margin-top: 6px; letter-spacing: 0.08em;
}

/* ── PHOTO STRIP ── */
.strip-wrapper { position: relative; margin-bottom: 24px; }
.strip-sticky {
  position: sticky; top: var(--h);
  height: calc(100vh - var(--h));
  display: flex; flex-direction: column;
  background: var(--white); overflow: hidden;
  padding-bottom: 80px;
}
.strip-track {
  flex: 1; position: relative; overflow: hidden;
}
.strip-photo {
  position: absolute; top: 0; left: 0; height: 100%;
}
.strip-photo img { height: 100%; width: auto; display: block; }

/* ── SECTION ── */
.section { padding: 80px 44px; max-width: 1040px; margin: 0 auto; }
.section--full { padding: 80px 44px; background: var(--light); }
.section--full-inner { max-width: 1040px; margin: 0 auto; }

.section-label {
  font-family: var(--font-gs);
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 40px; padding-bottom: 14px;
  border-bottom: 1px solid #e8e8e8;
}

/* ── PLACES ── */
.day-group { margin-bottom: 48px; }
.day-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.day-label { font-family: var(--font-gs); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.day-date { font-size: 11px; color: var(--gray); }

.place-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  cursor: pointer; gap: 16px;
}
.place-item:hover .place-name { opacity: 0.6; }

.place-info { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.place-name { font-size: 20px; font-weight: 600; line-height: 1.25; transition: opacity 0.2s; }
.place-address {
  font-size: 11px; color: var(--gray); letter-spacing: 0.02em;
  text-decoration: none; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.18s;
}
.place-address:hover { color: var(--black); text-decoration: underline; }

.place-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid #ddd; border-radius: 20px; padding: 3px 9px;
  color: var(--gray); white-space: nowrap; flex-shrink: 0;
}

.place-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase;
  padding: 3px 8px; border: 1px solid currentColor; border-radius: 20px;
  white-space: nowrap; align-self: flex-start; margin-top: 2px;
}
.tag-food     { color: #d64a00; }
.tag-culture  { color: #2563b0; }
.tag-nature   { color: #2d7a4a; }
.tag-shopping { color: #7c3aed; }
.tag-cafe     { color: #92400e; }
.tag-art      { color: #be185d; }


/* ── INSTAGRAM GRID (placeholder) ── */
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.insta-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease, opacity 0.3s; display: block; }
.insta-item:hover img { transform: scale(1.06); opacity: 0.88; }

/* ── INSTAGRAM SHOWCASE ── */
.insta-showcase {
  background: var(--white);
  padding: 80px 44px 100px;
}
.insta-showcase-inner { max-width: 1040px; margin: 0 auto; }

/* Header row */
.insta-showcase-header {
  display: flex; align-items: center;
  justify-content: center; margin-bottom: 36px;
}
.insta-showcase-title {
  font-family: var(--font-gs);
  font-size: 20px; font-weight: 700;
  color: var(--black); letter-spacing: -0.01em;
}

.insta-showcase-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Instagram grid ── */
.ig-grid { width: 100%; }

.ig-grid--1 .ig-tile { max-width: 65%; }

.ig-grid--2 {
  display: grid;
  grid-template-columns: 56fr 41fr;
  gap: 8px;
  align-items: start;
}

.ig-grid--3 {
  display: grid;
  grid-template-columns: 56fr 41fr;
  gap: 8px;
}
.ig-grid--3 .ig-tile:first-child {
  grid-row: span 2;
  aspect-ratio: unset !important;
  align-self: stretch;
}
.ig-grid--3 .ig-tile:first-child img { height: 100%; }

.ig-grid--medium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: start;
}
.ig-grid--medium .ig-tile { aspect-ratio: 3 / 4 !important; }

.ig-grid--large {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: start;
}
.ig-grid--large .ig-tile { aspect-ratio: 3 / 4 !important; }

.ig-tile {
  overflow: hidden;
  cursor: pointer;
  background: #ebebeb;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.ig-tile:hover img,
.ig-tile.is-active img { transform: scale(1.03); opacity: 0.88; }

/* Caption panel */
.insta-caption-panel {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  padding-top: 4px;
  display: flex; flex-direction: column; gap: 20px;
}
.insta-caption-text {
  font-size: 13px; line-height: 1.85; color: #444;
  transition: opacity 0.2s ease;
  white-space: pre-line;
  word-break: keep-all;
}
.insta-caption-link {
  font-size: 11px; color: var(--gray); text-decoration: none;
  letter-spacing: 0.06em; transition: color 0.2s;
  align-self: flex-start;
}
.insta-caption-link:hover { color: var(--black); }

/* ── STRIP DOTS (mobile) ── */
.strip-dots { display: none; }
@media (max-width: 768px) {
  .strip-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 5px; padding: 10px 0 4px;
  }
  .strip-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(0,0,0,0.15); flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .strip-dot.active { background: var(--black); transform: scale(1.3); }
}

/* ── ROUTE MAP ── */
.route-map-wrap {
  position: relative;
  margin-bottom: 48px;
}
.route-map-svg {
  width: 100%; height: auto; display: block;
  overflow: visible;
}
.route-line {
  fill: none; stroke: #ddd; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.route-dot-circle {
  fill: var(--white); stroke: currentColor; stroke-width: 1.5;
  transition: fill 0.15s;
}
.route-dot-num {
  font-size: 9px; font-weight: 700; font-family: inherit;
  fill: currentColor; pointer-events: none;
  transition: fill 0.15s;
}
.route-dot { cursor: pointer; }
.route-dot:hover .route-dot-circle,
.route-dot:focus .route-dot-circle { fill: currentColor; }
.route-dot:hover .route-dot-num,
.route-dot:focus .route-dot-num    { fill: var(--white); }

/* Day filter */
.route-day { transition: opacity 0.2s; }
.route-day.faded { opacity: 0.12; pointer-events: none; }

.route-filter {
  display: flex; gap: 6px; margin-bottom: 12px;
}
.route-filter-btn {
  background: none; border: 1px solid #ddd; cursor: pointer;
  font-family: inherit; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; color: var(--gray);
  transition: all 0.18s;
}
.route-filter-btn.active,
.route-filter-btn:hover { background: var(--black); border-color: var(--black); color: #fff; }

.itin-day-filter {
  display: flex; gap: 6px; margin-bottom: 12px;
}
.itin-day-btn {
  background: none; border: 1px solid #ddd; cursor: pointer;
  font-family: inherit; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; color: var(--gray);
  transition: all 0.18s;
}
.itin-day-btn.active,
.itin-day-btn:hover { background: var(--black); border-color: var(--black); color: #fff; }

.route-tooltip {
  position: absolute; pointer-events: none;
  background: var(--black); color: var(--white);
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
  padding: 4px 10px; border-radius: 3px;
  white-space: nowrap; opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.15s;
}
.route-tooltip.visible { opacity: 1; }

/* ── CATEGORY / ITINERARY SECTION ── */
.ci-section { padding: 72px 44px 80px; }

.ci-toggle {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-bottom: 64px;
}
.ci-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-gs); font-size: 13px; font-weight: 400;
  color: var(--gray); padding: 0; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.ci-btn.ci-active { font-weight: 700; color: var(--black); }
.ci-sep { color: #bbb; font-size: 13px; }

.ci-view { }
.ci-hidden { display: none; }

/* Category scatter */
.cat-scatter {
  position: relative;
  height: clamp(320px, 42vw, 480px);
  max-width: 800px;
  margin: 0 auto;
}
.cat-scatter-item {
  position: absolute;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-gs);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1;
  color: var(--black); text-transform: uppercase;
  padding: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cat-scatter-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cat-scatter-item.is-settled {
  transition: opacity 0.18s ease;
  transform: translateY(0);
}
.cat-scatter-item.is-settled:hover { opacity: 0.3; }

/* ── CATEGORY BOTTOM DRAWER ── */
/* ── CATEGORY OVERLAY ── */
.cat-overlay {
  position: fixed; inset: 0; z-index: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.cat-overlay.open { pointer-events: all; opacity: 1; }

.cat-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(248,248,248,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cat-overlay-hd {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 36px; z-index: 2;
}
.cat-overlay-title {
  font-family: var(--font-gs);
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray);
}
.cat-overlay-close {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: var(--gray); padding: 4px 8px;
  font-family: inherit; transition: color 0.2s;
}
.cat-overlay-close:hover { color: var(--black); }

.cat-overlay-stage {
  position: absolute; inset: 0;
}

/* ── CATEGORY CAROUSEL (multi-card, center-focus) ── */
.cat-carousel {
  position: absolute; inset: 0;
  overflow: hidden;
}

.cat-carousel-track {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex; align-items: center;
  gap: 14px;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-carousel-item {
  width: 340px;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  background: #e0e0e0;
  transform: scale(0.8);
  opacity: 0.45;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.42s ease;
}
.cat-carousel-item.active {
  transform: scale(1);
  opacity: 1;
}

.cat-carousel-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.cat-carousel-diptych {
  display: grid; grid-template-rows: 1fr 1fr;
  width: 100%; height: 100%;
}
.cat-carousel-diptych img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.cat-carousel-info {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.86) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 16px;
}
.cat-carousel-name {
  font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2;
}
.cat-carousel-addr {
  font-size: 11px; color: rgba(255,255,255,0.5);
  margin-top: 5px; letter-spacing: 0.02em;
}
.cat-carousel-desc {
  font-size: 13px; color: rgba(255,255,255,0.75);
  margin-top: 10px; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.cat-carousel-maps {
  display: inline-block; margin-top: 12px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s;
}
.cat-carousel-maps:hover { color: #fff; }

.cat-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: rgba(0,0,0,0.25);
  padding: 16px; transition: color 0.2s; font-family: inherit;
  user-select: none;
}
.cat-carousel-nav:hover { color: var(--black); }
.cat-carousel-nav:disabled { opacity: 0.1; cursor: default; }
.cat-carousel-nav.prev { left: 10px; }
.cat-carousel-nav.next { right: 10px; }

.cat-carousel-dots {
  position: absolute; bottom: 26px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.cat-carousel-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0,0,0,0.15); transition: background 0.2s, transform 0.2s;
}
.cat-carousel-dot.active { background: var(--black); transform: scale(1.25); }

/* ── SIDE PANEL ── */
.side-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--white); z-index: 500;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto; padding: 60px 36px 48px;
  box-shadow: -4px 0 40px rgba(0,0,0,0.08);
}
.side-panel.open { transform: translateX(0); }

.sp-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-family: inherit;
  color: var(--gray); padding: 0;
  transition: color 0.2s;
}
.sp-close:hover { color: var(--black); }

.sp-name { font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; }
.sp-sub {
  font-size: 10px; color: var(--gray); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.sp-photo { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; margin: 20px 0 24px; }
.sp-address-link {
  display: inline-block; font-size: 11px; color: var(--gray);
  text-decoration: none; letter-spacing: 0.03em;
  margin-bottom: 4px; transition: color 0.18s;
}
.sp-address-link:hover { color: var(--black); text-decoration: underline; }
.sp-desc { font-size: 13px; line-height: 1.8; color: #555; }
.sp-maps {
  display: inline-block; margin-top: 20px;
  font-size: 12px; color: var(--gray); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.sp-maps:hover { color: var(--black); }

.side-panel-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 499; opacity: 0; pointer-events: none;
  transition: opacity 0.38s;
}
.side-panel-overlay.open { opacity: 1; pointer-events: all; }

/* ── FOOTER ── */

/* ── PAGE TRANSITION OVERLAY ── */
#page-overlay {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9998; pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* ── CUSTOM CURSOR ── */
@media (hover: hover) {
  * { cursor: none !important; }
}
@media (hover: none) {
  #custom-cursor { display: none !important; }
}

.custom-cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 1px white;
  pointer-events: none;
  z-index: 99999;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.18s ease, height 0.18s ease,
              border-radius 0.18s ease, clip-path 0.18s ease;
}

.custom-cursor.is-left {
  width: 14px; height: 14px;
  border-radius: 0;
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}
.custom-cursor.is-right {
  width: 14px; height: 14px;
  border-radius: 0;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.custom-cursor.is-large {
  width: 28px; height: 28px;
}

.cursor-label {
  position: absolute;
  left: 12px;
  top: -14px;
  font-family: var(--font-gs);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--black);
  text-shadow:
    -1px -1px 0 rgba(255,255,255,0.9),
     1px -1px 0 rgba(255,255,255,0.9),
    -1px  1px 0 rgba(255,255,255,0.9),
     1px  1px 0 rgba(255,255,255,0.9),
     0    0   6px rgba(255,255,255,0.6);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.custom-cursor.has-label .cursor-label { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .city-name { font-size: clamp(2rem, 12vw, 4rem); }
  .city-item.is-hover .city-name { font-size: clamp(2.6rem, 15vw, 5rem); }
  .city-country { right: calc(100% + 10px); }
  .city-date    { left:  calc(100% + 10px); }

  /* strip: horizontal scroll on mobile */
  .strip-wrapper { height: auto !important; }
  .strip-sticky {
    position: relative !important; top: auto !important;
    height: auto !important; overflow: visible !important;
    padding-bottom: 0 !important;
  }
  .strip-track {
    flex: none;
    overflow-x: scroll; overflow-y: hidden;
    display: flex; flex-direction: row;
    height: clamp(200px, 68vw, 360px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .strip-track::-webkit-scrollbar { display: none; }
  .strip-photo {
    position: relative !important; flex-shrink: 0;
    height: 100%;
    top: auto !important; left: auto !important;
    scroll-snap-align: start;
  }

  /* 지도: 모바일에서 좌우 스크롤 가능하게 */
  .route-map-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .route-map-svg { min-width: 560px; }

  .trip-hero { padding: 18px 20px 14px; }

  .place-item { padding: 14px 0; }
  .place-name { font-size: 16px; }
  .side-panel { padding: 56px 20px 40px; }
  .sp-name { font-size: 18px; }

  .section { padding: 56px 20px; }
  .section--full { padding: 56px 20px; }
  .trip-hero-overlay { padding: 28px 24px; }

  .fan-wrap { height: 55vh; }
  .fan-card { width: 180px; height: 240px; }
  .preview-popup { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { gap: 2px; }

  .ci-section { padding: 52px 20px 64px; }
  .ci-toggle { margin-bottom: 44px; }
  .cat-scatter { height: clamp(280px, 90vw, 360px); }
  .cat-scatter-item { font-size: clamp(2.4rem, 12vw, 4rem); }
  .cat-drawer-panel { height: 88vh; border-radius: 14px 14px 0 0; }

  .insta-showcase { padding: 56px 20px 72px; }
  .insta-showcase-header { margin-bottom: 24px; }
  .insta-showcase-body { grid-template-columns: 1fr; gap: 32px; }
  .insta-caption-panel { position: static; }
  .ig-grid--3 { grid-template-columns: 1fr 1fr; }
  .ig-grid--large { grid-template-columns: 1fr 1fr; }

  .footer-main { flex-direction: column; padding: 44px 28px 36px; gap: 44px; }
  .footer-contact { text-align: left; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { padding: 16px 28px; }
  .footer-link { font-size: clamp(1.3rem, 7vw, 1.8rem); }
}
