:root {
  color-scheme: dark;
  --ink: #080807;
  --paper: #efede6;
  --muted: #aaa89f;
  --rule: rgba(239, 237, 230, 0.18);
  --gold: #d7b983;
  --deep-gold: #8a6940;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Noto Sans KR", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0%, transparent 31%),
    linear-gradient(300deg, #0e0e0c 0%, #070706 55%, #10100d 100%);
  font-family: var(--sans);
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 80%);
}

.grain {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.halo {
  position: fixed;
  z-index: 0;
  width: 53vw;
  height: 53vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.17;
}

.halo--gold {
  top: -30vw;
  right: -20vw;
  background: radial-gradient(circle, #c3a05d 0%, rgba(130, 92, 42, 0.44) 34%, transparent 70%);
}

.halo--plum {
  bottom: -42vw;
  left: -26vw;
  background: radial-gradient(circle, #5e3547 0%, rgba(61, 32, 40, 0.35) 38%, transparent 72%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 33px clamp(24px, 6vw, 88px) 30px;
}

.topbar,
.footer,
.section-heading,
.destination__meta,
.destination__body { display: flex; align-items: center; }

.topbar { justify-content: space-between; }

.wordmark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-decoration: none;
}

.wordmark__symbol {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(215, 185, 131, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0;
}

.topbar__label,
.footer,
.section-heading p,
.destination__index,
.destination__status,
.destination__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.topbar__label { margin: 0; color: var(--muted); }

.hero {
  max-width: 940px;
  padding: clamp(36px, 5vw, 72px) 0 clamp(32px, 4vw, 56px);
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.eyebrow span { width: 30px; height: 1px; background: currentColor; }

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

h1 em { color: var(--gold); font-weight: 500; }

.hero__copy {
  max-width: 425px;
  margin-bottom: 0;
  color: #bcbab2;
  font-size: 14px;
  line-height: 1.85;
  word-break: keep-all;
}

.destinations { margin-bottom: clamp(95px, 12vw, 160px); }

.section-heading {
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--rule);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.section-heading p { margin: 0; color: var(--muted); }
.section-heading p span { color: var(--gold); }

.destination-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.destination {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 164px;
  padding: 26px 26px 25px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  color: var(--paper);
  text-decoration: none;
  transition: color 280ms ease, padding 280ms ease, background-color 280ms ease;
}

.destination:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--rule); }
.destination:nth-child(even) { padding-left: 40px; }

.destination::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 340ms cubic-bezier(.16, 1, .3, 1);
}

.destination:hover,
.destination:focus-visible {
  padding-left: 10px;
  color: #fffdf7;
  outline: none;
  background: linear-gradient(90deg, rgba(215, 185, 131, 0.065), transparent);
}

.destination:hover::before,
.destination:focus-visible::before { width: 100%; }
.destination:hover .destination__arrow,
.destination:focus-visible .destination__arrow { transform: translate(4px, -4px); color: var(--gold); }

.destination--pending {
  cursor: default;
  color: #85837c;
}

.destination--pending:hover { padding-left: 0; background: transparent; }
.destination--pending:hover::before { width: 0; }
.destination--pending .destination__arrow { opacity: 0.35; }

.destination__index { align-self: start; padding-top: 5px; color: var(--deep-gold); }

.destination__status {
  position: absolute;
  top: 27px;
  right: 27px;
  color: var(--gold);
  font-size: 9px;
}

.destination:nth-child(even) .destination__status { right: 0; }
.destination--pending .destination__status { color: #77756e; }

.destination__body {
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  padding-top: 17px;
}

.destination__name {
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.destination__logo {
  display: block;
  width: auto;
  max-width: min(132px, 100%);
  height: 30px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 3px;
}

.destination__logo--monochrome { filter: brightness(0) invert(0.93); }

.destination__logo--emblem,
.destination__logo--carriage {
  height: 64px;
  object-fit: cover;
  object-position: center;
}

.destination__logo--emblem { width: 64px; }
.destination__logo--carriage { width: 110px; }

.destination__logo--banner {
  width: 256px;
  max-width: 100%;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.destination__description { color: var(--muted); font-size: 11px; line-height: 1.5; }

.destination__meta {
  flex-direction: column;
  gap: 21px;
  align-items: flex-end;
  color: #95938c;
  font-size: 9px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.destination__arrow {
  color: #d5d3cc;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 0.8;
  transition: color 250ms ease, transform 250ms ease;
}

.footer {
  justify-content: space-between;
  color: #75736c;
  font-size: 9px;
}

.footer p { margin: 0; }

@media (max-width: 740px) {
  .page-shell { padding-top: 24px; }
  .topbar__label { display: none; }
  .hero { padding-top: 36px; padding-bottom: 32px; }
  h1 { font-size: clamp(30px, 8.5vw, 42px); }
  .destination-grid { grid-template-columns: 1fr; }
  .destination,
  .destination:nth-child(odd),
  .destination:nth-child(even) {
    grid-template-columns: 35px minmax(0, 1fr) auto;
    min-height: 143px;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }
  .destination:nth-child(even) .destination__status { right: 0; }
  .destination__status { right: 0; top: 25px; }
  .destination__meta { font-size: 8px; }
  .destination:hover, .destination:focus-visible { padding-left: 7px; }
  .destination--pending:hover { padding-left: 0; }
  .footer { gap: 12px; flex-direction: column; align-items: flex-start; }
}

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