/* from lumi-bucheon/src/styles/tokens.css */
:root {
  --coral: #ff7188;
  --coral-deep: #e85a74;
  --peach: #ffb38a;
  --peach-deep: #f08a5a;
  --aqua: #62e6d5;
  --aqua-deep: #2ec4b6;
  --sky: #70cfff;
  --sky-deep: #3aa8e8;
  --lavender: #b8a6ff;
  --lavender-deep: #8e7ae6;
  --lemon: #ffe68a;
  --ivory: #fff9f3;
  --ivory-2: #fff3ea;
  --ink: #3a2452;
  --ink-soft: #5a3d6e;
  --ink-mute: #7a6288;
  --glass: rgba(255, 249, 243, 0.62);
  --glass-strong: rgba(255, 249, 243, 0.82);
  --line: rgba(58, 36, 82, 0.08);
  --shadow-soft: 0 18px 40px rgba(255, 113, 136, 0.16);
  --shadow-pop: 0 22px 48px rgba(184, 166, 255, 0.22);
  --radius-xl: 2.4rem;
  --radius-lg: 1.6rem;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-ui: "Outfit", "Pretendard", sans-serif;
  --font-body: "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --shell: min(1120px, calc(100% - 2rem));
}


/* from lumi-bucheon/src/styles/base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 8% -10%, rgba(255, 179, 138, 0.42), transparent 55%),
    radial-gradient(900px 640px at 100% 8%, rgba(184, 166, 255, 0.32), transparent 50%),
    radial-gradient(800px 520px at 70% 100%, rgba(98, 230, 213, 0.22), transparent 46%),
    var(--ivory);
  line-height: 1.7;
  min-height: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--coral-deep);
}

.sec-head {
  max-width: 40rem;
  margin: 0 0 2.2rem;
}

.sec-head h2,
.about__copy h2,
.consult__copy h2,
.guide-prose h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.sec-lead {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.glass-panel {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.footer {
  padding: 2.4rem 0 3rem;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.92rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.footer a {
  color: var(--coral-deep);
  font-weight: 700;
}

.footer a + a {
  margin-left: 0.8rem;
}


/* from lumi-bucheon/src/styles/header.css */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.7rem 0;
}

.topbar__in {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.1rem;
  padding: 0.45rem 0.7rem 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(255, 113, 136, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand__mark {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  filter: drop-shadow(0 6px 10px rgba(255, 113, 136, 0.25));
}

.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__txt strong {
  font-size: 0.98rem;
}

.brand__txt em {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
}

.menu a:hover {
  color: var(--coral-deep);
}

.topbar__acts {
  display: flex;
  gap: 0.4rem;
}

.chip-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.chip-call--coral {
  background: linear-gradient(180deg, #ff9aa9, var(--coral));
  box-shadow: 0 4px 0 var(--coral-deep);
}

.chip-call--mint {
  background: linear-gradient(180deg, #9af3e8, var(--aqua));
  box-shadow: 0 4px 0 var(--aqua-deep);
}

.menu-btn {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 0 #ffd0d8;
  position: relative;
}

.menu-btn span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.menu-btn span:first-child {
  top: 1rem;
}

.menu-btn span:last-child {
  top: 1.4rem;
}

@media (max-width: 860px) {
  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .topbar__acts {
    display: none;
  }

  .menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    padding: 1rem;
    border-radius: 1.4rem;
    background: var(--glass-strong);
    border: 1px solid #fff;
    box-shadow: var(--shadow-pop);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu a {
    padding: 0.75rem 0.4rem;
    border-bottom: 1px solid var(--line);
  }

  .menu.is-open {
    display: flex;
  }
}


/* from lumi-bucheon/src/styles/hero.css */
.hero {
  position: relative;
  padding: 1.2rem 0 2.4rem;
}

.hero__wash {
  position: absolute;
  inset: 0 auto auto 0;
  width: 58%;
  height: 100%;
  background:
    radial-gradient(closest-side at 40% 40%, rgba(255, 113, 136, 0.18), transparent 70%),
    radial-gradient(closest-side at 70% 70%, rgba(98, 230, 213, 0.16), transparent 68%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 36rem;
  display: grid;
  place-items: end center;
  overflow: visible;
}

.hero-lumi-outline {
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 14vw, 9rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 113, 136, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-floor {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 4%;
  height: 2.6rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 113, 136, 0.32), rgba(98, 230, 213, 0.18) 46%, transparent 72%);
  filter: blur(6px);
  z-index: 1;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 28rem);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 28px rgba(255, 113, 136, 0.22));
}

.hero-visual.is-fallback .hero-photo {
  display: none;
}

.hero-visual.has-photo .hero-clay {
  display: none;
}

.hero-clay {
  position: absolute;
  inset: 8% 10% 10%;
  z-index: 1;
  border-radius: 68% 32% 58% 42% / 36% 62% 38% 64%;
  background:
    radial-gradient(circle at 30% 24%, #ffe0e6 0%, #ffb38a 38%, #b8a6ff 78%, #70cfff 100%);
}

.clay-sphere,
.clay-cube,
.clay-ring {
  position: absolute;
  border-radius: 50%;
}

.clay-sphere--lg {
  width: 10rem;
  height: 10rem;
  left: 14%;
  top: 18%;
  background: radial-gradient(circle at 32% 28%, #fff4e8, #ff7188 62%, #e85a74);
  box-shadow: 0 18px 30px rgba(232, 90, 116, 0.28);
}

.clay-sphere--md {
  width: 6.2rem;
  height: 6.2rem;
  right: 16%;
  bottom: 22%;
  background: radial-gradient(circle at 32% 28%, #e8fffb, #62e6d5 60%, #2ec4b6);
}

.clay-cube {
  width: 4.2rem;
  height: 4.2rem;
  right: 22%;
  top: 22%;
  border-radius: 1rem;
  background: linear-gradient(145deg, #e4dcff, #b8a6ff);
  transform: rotate(18deg);
  box-shadow: 10px 12px 0 rgba(142, 122, 230, 0.28);
}

.clay-ring {
  width: 7.4rem;
  height: 7.4rem;
  left: 18%;
  bottom: 16%;
  background: transparent;
  border: 0.9rem solid rgba(255, 230, 138, 0.85);
  filter: drop-shadow(0 10px 12px rgba(255, 179, 138, 0.3));
}

.float-3d {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.float-3d svg {
  width: 100%;
  height: 100%;
}

.float-3d--sphere {
  width: 5.4rem;
  left: -0.4rem;
  top: 8%;
}

.float-3d--ring {
  width: 6.2rem;
  right: 2%;
  top: 12%;
}

.float-3d--cube {
  width: 4.4rem;
  right: 4%;
  bottom: 14%;
}

.float-3d--star {
  width: 3.4rem;
  left: 4%;
  bottom: 18%;
}

.float-3d--bubble {
  width: 3.2rem;
  right: 10%;
  top: 38%;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(120deg, #ff7188 0%, #c07cff 42%, #3aa8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.12;
}

.capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.1rem;
}

.capsule {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: 0 8px 0 rgba(58, 36, 82, 0.08), 0 12px 20px rgba(255, 113, 136, 0.12);
}

.capsule--coral { background: linear-gradient(180deg, #ffd4dc, #ff7188); color: #fff; }
.capsule--aqua { background: linear-gradient(180deg, #d4fff8, #62e6d5); }
.capsule--lavender { background: linear-gradient(180deg, #efe8ff, #b8a6ff); color: #fff; }
.capsule--peach { background: linear-gradient(180deg, #ffe8d4, #ffb38a); }
.capsule--sky { background: linear-gradient(180deg, #d8f3ff, #70cfff); }

.lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0 1.25rem;
  border-radius: 1.2rem;
  font-weight: 800;
  color: #fff;
  transform: translateY(0);
}

.btn-3d__glyph {
  width: 1.7rem;
  height: 1.7rem;
}

.btn-3d--coral {
  background: linear-gradient(180deg, #ffb3c0 0%, #ff7188 48%, #e85a74 100%);
  box-shadow: 0 8px 0 #c94a62, 0 16px 28px rgba(255, 113, 136, 0.32);
}

.btn-3d--mint {
  background: linear-gradient(180deg, #b8fff4 0%, #62e6d5 48%, #2ec4b6 100%);
  box-shadow: 0 8px 0 #249e93, 0 16px 28px rgba(98, 230, 213, 0.32);
  color: var(--ink);
}

.btn-3d:hover {
  transform: translateY(-2px);
}

.btn-3d:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-copy {
    order: -1;
  }

  .hero-visual {
    min-height: 0;
    order: 2;
  }

  .hero-photo {
    width: min(72%, 18rem);
  }

  .hero-lumi-outline {
    font-size: 4.4rem;
  }

  .float-3d--sphere,
  .float-3d--cube {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }
}

@media (max-width: 430px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-3d {
    width: 100%;
  }

  .hero-photo {
    width: min(78%, 16.5rem);
  }
}


/* from lumi-bucheon/src/styles/sections.css */
.ribbon {
  padding: 0.4rem 0 2.6rem;
}

.ribbon__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.85rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, rgba(255, 113, 136, 0.14), rgba(98, 230, 213, 0.14), rgba(184, 166, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.ribbon-cell {
  display: grid;
  justify-items: start;
  gap: 0.15rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.4rem;
  background: rgba(255, 249, 243, 0.72);
  backdrop-filter: blur(12px);
}

.ribbon-cell strong {
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.ribbon-cell span {
  color: var(--ink-mute);
  font-size: 0.86rem;
}

.mini-3d {
  width: 2.6rem;
  height: 2.6rem;
}

.about,
.regions,
.bubbles,
.courses,
.scenes,
.howto,
.guide,
.faq,
.consult {
  padding: 3.2rem 0;
}

.about__stage {
  position: relative;
  min-height: 28rem;
  padding: 2.2rem 0 1rem;
}

.about__outline {
  position: absolute;
  left: -0.4rem;
  top: -0.6rem;
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 18vw, 12rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 113, 136, 0.22);
  pointer-events: none;
  user-select: none;
}

.about-orb,
.about-ring,
.about-cube {
  position: absolute;
  pointer-events: none;
}

.about-orb {
  border-radius: 50%;
  filter: drop-shadow(0 16px 18px rgba(255, 113, 136, 0.18));
}

.about-orb--coral {
  width: 7.4rem;
  height: 7.4rem;
  right: 8%;
  top: 0;
  background: radial-gradient(circle at 30% 28%, #ffe0e6, #ff7188 60%, #e85a74);
}

.about-orb--aqua {
  width: 4.6rem;
  height: 4.6rem;
  left: 18%;
  bottom: 8%;
  background: radial-gradient(circle at 30% 28%, #e8fffb, #62e6d5 62%, #2ec4b6);
}

.about-ring {
  width: 6.8rem;
  height: 6.8rem;
  right: 22%;
  bottom: 12%;
  border-radius: 50%;
  border: 0.85rem solid rgba(184, 166, 255, 0.7);
}

.about-cube {
  width: 3.2rem;
  height: 3.2rem;
  left: 6%;
  top: 38%;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #fff3c4, #ffe68a);
  transform: rotate(-16deg);
  box-shadow: 8px 10px 0 rgba(240, 138, 90, 0.2);
}

.about__copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-left: auto;
}

.about__glass {
  margin: 1.2rem 0 1.2rem;
  padding: 1.3rem 1.35rem;
  border-radius: 1.6rem;
}

.about-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-tile {
  padding: 0.95rem 0.9rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(184, 166, 255, 0.12);
}

.about-tile strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.about-tile span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.about-tile--coral { box-shadow: 0 10px 22px rgba(255, 113, 136, 0.14); }
.about-tile--aqua { box-shadow: 0 10px 22px rgba(98, 230, 213, 0.16); }
.about-tile--lavender { box-shadow: 0 10px 22px rgba(184, 166, 255, 0.16); }

.bubble-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.1rem;
}

.bubble {
  position: relative;
  display: grid;
  place-items: center;
  width: 9.4rem;
  height: 9.4rem;
  text-align: center;
  color: var(--ink);
  isolation: isolate;
}

.bubble strong {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
}

.bubble em {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

.bubble__orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bubble--coral .bubble__orb { background: radial-gradient(circle at 32% 28%, #ffe4ea, #ff7188); box-shadow: 0 16px 0 #e85a74, 0 22px 28px rgba(255, 113, 136, 0.28); }
.bubble--aqua .bubble__orb { background: radial-gradient(circle at 32% 28%, #e8fffb, #62e6d5); box-shadow: 0 16px 0 #2ec4b6, 0 22px 28px rgba(98, 230, 213, 0.28); border-radius: 46% 54% 50% 50% / 50% 42% 58% 50%; }
.bubble--lavender .bubble__orb { background: radial-gradient(circle at 32% 28%, #f3eeff, #b8a6ff); box-shadow: 0 16px 0 #8e7ae6, 0 22px 28px rgba(184, 166, 255, 0.28); border-radius: 42% 58% 46% 54%; }
.bubble--peach .bubble__orb { background: radial-gradient(circle at 32% 28%, #fff1e6, #ffb38a); box-shadow: 0 16px 0 #f08a5a, 0 22px 28px rgba(255, 179, 138, 0.28); width: 110%; left: -5%; border-radius: 999px; }
.bubble--sky .bubble__orb { background: radial-gradient(circle at 32% 28%, #e6f7ff, #70cfff); box-shadow: 0 16px 0 #3aa8e8, 0 22px 28px rgba(112, 207, 255, 0.28); }
.bubble--lemon .bubble__orb { background: radial-gradient(circle at 32% 28%, #fff8d6, #ffe68a); box-shadow: 0 16px 0 #e6c85a, 0 22px 28px rgba(255, 230, 138, 0.32); border-radius: 48% 52% 40% 60%; }

.bubble:hover {
  transform: translateY(-8px) rotate(-3deg);
}

.bubble:hover .bubble__orb {
  transform: scale(1.08);
}

.ticket-rack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.ticket {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.85rem 0.95rem 0.9rem;
  border-radius: 1.5rem;
  position: relative;
  background: #fff;
  box-shadow: 0 12px 0 rgba(58, 36, 82, 0.05), 0 16px 28px rgba(255, 113, 136, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--ivory);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.ticket::before { top: -0.55rem; }
.ticket::after { bottom: -0.55rem; }

.ticket__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.ticket__icon {
  width: 4rem;
  height: 4rem;
  flex: none;
  filter: drop-shadow(0 8px 10px rgba(255, 113, 136, 0.18));
  transition: transform 0.35s ease;
}

.ticket__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

.ticket__badge {
  display: inline-flex;
  margin: 0.28rem 0 0.15rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: #3a2452;
  color: #ffe68a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticket h3 {
  margin: 0.12rem 0 0;
  font-size: 1.2rem;
}

.ticket__fares {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 2px dashed rgba(58, 36, 82, 0.12);
}

.ticket__fares li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
}

.ticket__min {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.ticket__fare {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.ticket:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 18px 0 rgba(58, 36, 82, 0.05), 0 26px 36px rgba(255, 113, 136, 0.2);
}

.ticket:hover .ticket__icon {
  transform: translateY(-3px) scale(1.04);
}

.ticket--peach { background: linear-gradient(180deg, #fff7f0, #ffe8d4); }
.ticket--aqua { background: linear-gradient(180deg, #f3fffc, #d4fff6); }
.ticket--lavender { background: linear-gradient(180deg, #f8f4ff, #ece4ff); }

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.scene {
  padding: 1.2rem 1.2rem 1.4rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #fff;
  box-shadow: var(--shadow-soft);
}

.scene__3d {
  display: block;
  width: 7.4rem;
  margin-bottom: 0.4rem;
}

.scene__en {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
}

.scene h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.scene p {
  color: var(--ink-soft);
}

.scene--coral { background: linear-gradient(180deg, #fff7f2, #ffe4dc); }
.scene--aqua { background: linear-gradient(180deg, #f3fffc, #d9fff6); }
.scene--lavender { background: linear-gradient(180deg, #f8f4ff, #ece6ff); }

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.6rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid #fff;
}

.step:nth-child(even) {
  transform: translateY(1.6rem);
}

.step__orb {
  flex: none;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
  box-shadow: 0 10px 0 rgba(58, 36, 82, 0.08);
}

.step--coral .step__orb { background: radial-gradient(circle at 32% 28%, #ffd4dc, #ff7188); }
.step--aqua .step__orb { background: radial-gradient(circle at 32% 28%, #d4fff8, #62e6d5); color: var(--ink); }
.step--lavender .step__orb { background: radial-gradient(circle at 32% 28%, #efe8ff, #b8a6ff); }
.step--peach .step__orb { background: radial-gradient(circle at 32% 28%, #ffe8d4, #ffb38a); color: var(--ink); }

.step h3 {
  margin-bottom: 0.3rem;
}

.step p {
  color: var(--ink-soft);
}

.guide__wrap {
  padding: 1.6rem 1.5rem 1.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid #fff;
  box-shadow: var(--shadow-soft);
}

.guide-prose {
  max-width: 46rem;
}

.guide-prose p {
  color: var(--ink-soft);
  margin-bottom: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-glass {
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid #fff;
  overflow: hidden;
}

.faq-glass summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-glass summary::-webkit-details-marker {
  display: none;
}

.faq-glass p {
  padding: 0 1.05rem 1.05rem;
  color: var(--ink-soft);
}

.faq-plus {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, #ffd0d8);
  box-shadow: 0 6px 0 #ffb3c0;
}

.faq-plus i {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 50%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.faq-plus i:last-child {
  transform: rotate(90deg);
}

.faq-glass[open] .faq-plus i:last-child {
  display: none;
}

.faq-glass--coral { box-shadow: 0 10px 22px rgba(255, 113, 136, 0.1); }
.faq-glass--aqua { box-shadow: 0 10px 22px rgba(98, 230, 213, 0.1); }
.faq-glass--lavender { box-shadow: 0 10px 22px rgba(184, 166, 255, 0.1); }
.faq-glass--peach { box-shadow: 0 10px 22px rgba(255, 179, 138, 0.1); }
.faq-glass--sky { box-shadow: 0 10px 22px rgba(112, 207, 255, 0.1); }

.consult__stage {
  position: relative;
  padding: 3rem 1.4rem 3.2rem;
  border-radius: 2.4rem;
  overflow: hidden;
  background: linear-gradient(120deg, #ffb38a 0%, #ff7188 48%, #b8a6ff 100%);
  box-shadow: 0 24px 48px rgba(255, 113, 136, 0.22);
  color: #fff;
}

.consult__copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.consult__copy p {
  margin: 0.7rem 0 0;
  color: rgba(255, 249, 243, 0.92);
}

.consult-phone,
.consult-chat {
  position: absolute;
  width: 9.5rem;
  pointer-events: none;
}

.consult-phone {
  right: 8%;
  top: -0.6rem;
}

.consult-chat {
  right: 18%;
  bottom: -1.2rem;
}

.consult .btn-3d--coral {
  background: linear-gradient(180deg, #fff, #ffe0e6);
  color: var(--ink);
  box-shadow: 0 8px 0 #e85a74, 0 16px 28px rgba(58, 36, 82, 0.16);
}

@media (max-width: 900px) {
  .ribbon__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-tiles,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .ticket-rack {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step:nth-child(even) {
    transform: none;
  }

  .about-orb--coral,
  .about-ring {
    display: none;
  }

  .consult-phone,
  .consult-chat {
    width: 5.6rem;
    opacity: 0.85;
  }

  .consult-chat {
    right: 4%;
  }
}

@media (max-width: 430px) {
  .bubble {
    width: 7.6rem;
    height: 7.6rem;
  }

  .ticket {
    padding: 0.75rem 0.85rem 0.8rem;
  }

  .ticket__icon {
    width: 3.4rem;
    height: 3.4rem;
  }

  .ticket__fares {
    gap: 0.16rem;
    padding-top: 0.45rem;
    margin-top: 0.4rem;
  }

  .ticket__fare {
    font-size: 1.7rem;
  }

  .faq-glass summary {
    align-items: flex-start;
  }

  .consult__stage {
    padding: 2.2rem 1rem 2.4rem;
  }

  .consult .hero-cta {
    flex-direction: column;
  }
}


/* from lumi-bucheon/src/styles/regions.css */
.metro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 0.75rem;
  padding: 0.2rem 0 0.4rem;
}

.metro__line {
  position: absolute;
  left: 50%;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7188, #62e6d5, #b8a6ff, #ffb38a, #70cfff);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 18px rgba(255, 113, 136, 0.18);
  transform-origin: top center;
}

.route-stop {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  align-items: start;
}

.route-stop--west {
  grid-template-columns: minmax(0, 1fr) auto;
}

.route-stop--east {
  grid-template-columns: auto minmax(0, 1fr);
}

.route-stop--west .route-stop__panel { grid-column: 1; }
.route-stop--west .route-orb { grid-column: 2; }
.route-stop--east .route-orb { grid-column: 1; }
.route-stop--east .route-stop__panel { grid-column: 2; }

.route-orb {
  position: relative;
  width: 3.7rem;
  height: 3.7rem;
  justify-self: center;
  margin-top: 0.55rem;
  filter: drop-shadow(0 8px 12px rgba(255, 113, 136, 0.16));
}

.route-orb--aqua { filter: drop-shadow(0 8px 12px rgba(98, 230, 213, 0.22)); }
.route-orb--lavender { filter: drop-shadow(0 8px 12px rgba(184, 166, 255, 0.22)); }
.route-orb--peach { filter: drop-shadow(0 8px 12px rgba(255, 179, 138, 0.22)); }
.route-orb--sky { filter: drop-shadow(0 8px 12px rgba(112, 207, 255, 0.22)); }

.route-orb svg {
  width: 100%;
  height: 100%;
}

.route-orb__num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(58, 36, 82, 0.25);
}

.route-stop__panel {
  padding: 0.85rem 0.95rem 0.9rem;
  border-radius: 1.25rem;
}

.route-stop__en {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 0.18rem;
}

.route-stop h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  word-break: keep-all;
}

.route-stop p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.62;
  margin-bottom: 0.5rem;
}

.route-stop p:last-child {
  margin-bottom: 0;
}

.route-stop--coral .route-stop__panel { box-shadow: 0 12px 22px rgba(255, 113, 136, 0.12); }
.route-stop--aqua .route-stop__panel { box-shadow: 0 12px 22px rgba(98, 230, 213, 0.12); }
.route-stop--lavender .route-stop__panel { box-shadow: 0 12px 22px rgba(184, 166, 255, 0.12); }
.route-stop--peach .route-stop__panel { box-shadow: 0 12px 22px rgba(255, 179, 138, 0.12); }
.route-stop--sky .route-stop__panel { box-shadow: 0 12px 22px rgba(112, 207, 255, 0.12); }

@media (max-width: 860px) {
  .metro {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0.65rem;
  }

  .metro__line {
    left: 1.55rem;
    width: 4px;
  }

  .route-stop,
  .route-stop--west,
  .route-stop--east {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.5rem;
  }

  .route-stop--west .route-orb,
  .route-stop--east .route-orb,
  .route-stop--west .route-stop__panel,
  .route-stop--east .route-stop__panel {
    grid-column: auto;
  }

  .route-orb {
    width: 3.2rem;
    height: 3.2rem;
    margin-top: 0.35rem;
    grid-column: 1;
    grid-row: 1;
  }

  .route-stop__panel {
    grid-column: 2;
    padding: 0.7rem 0.75rem 0.75rem;
  }

  .route-stop p {
    margin-bottom: 0.4rem;
  }
}


/* from lumi-bucheon/src/styles/motion.css */
.js .reveal,
.js .stagger-item {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-in,
.js .stagger-item.is-in {
  opacity: 1;
  transform: none;
}

.js .reveal[data-animate="fade-up"].is-in {
  animation: fade-up 0.7s ease both;
}

.js .reveal[data-animate="scale-in"].is-in {
  animation: scale-in 0.65s ease both;
}

.js .reveal[data-animate="bubble-pop"].is-in {
  animation: bubble-pop 0.7s cubic-bezier(0.2, 1.2, 0.3, 1) both;
}

.js .reveal[data-animate="highlight-reveal"].is-in {
  animation: highlight-reveal 0.8s ease both;
}

.js .metro.is-in .metro__line {
  animation: line-draw 0.9s ease both;
}

.js .metro .route-orb,
.js .metro .route-stop__panel {
  opacity: 0;
}

.js .metro.is-in .route-orb {
  animation: bubble-pop 0.55s cubic-bezier(0.2, 1.2, 0.3, 1) 0.35s both;
}

.js .metro.is-in .route-stop__panel {
  animation: fade-up 0.55s ease 0.55s both;
}

.js .ticket[data-animate="scale-in"].is-in:nth-child(1) { animation-delay: 0s; }
.js .ticket[data-animate="scale-in"].is-in:nth-child(2) { animation-delay: 0.12s; }
.js .ticket[data-animate="scale-in"].is-in:nth-child(3) { animation-delay: 0.24s; }

.js .hero .hero__wash,
.js .hero .hero-lumi-outline,
.js .hero .float-3d,
.js .hero .hero-photo,
.js .hero .hero-copy .eyebrow,
.js .hero .hero-copy h1,
.js .hero .lead,
.js .hero .capsules,
.js .hero .hero-cta {
  opacity: 0;
}

.js .hero.is-ready .hero__wash {
  animation: fade-up 0.5s ease both;
}

.js .hero.is-ready .hero-lumi-outline {
  animation: fade-up 0.55s ease 0.08s both;
}

.js .hero.is-ready .float-3d {
  animation: bubble-pop 0.6s cubic-bezier(0.2, 1.2, 0.3, 1) 0.16s both;
}

.js .hero.is-ready .hero-photo {
  animation: hero-char 0.8s ease 0.28s both;
}

.js .hero.is-ready .hero-copy .eyebrow {
  animation: fade-up 0.55s ease 0.42s both;
}

.js .hero.is-ready .hero-copy h1 {
  animation: fade-up 0.6s ease 0.52s both;
}

.js .hero.is-ready .lead {
  animation: fade-up 0.5s ease 0.58s both;
}

.js .hero.is-ready .capsules {
  animation: fade-up 0.55s ease 0.64s both;
}

.js .hero.is-ready .hero-cta {
  animation: fade-up 0.55s ease 0.76s both;
}

.js .stagger-item.is-in {
  animation: fade-up 0.55s ease both;
}

.js .stagger-item:nth-child(2).is-in { animation-delay: 0.04s; }
.js .stagger-item:nth-child(3).is-in { animation-delay: 0.08s; }
.js .stagger-item:nth-child(4).is-in { animation-delay: 0.12s; }
.js .stagger-item:nth-child(5).is-in { animation-delay: 0.16s; }
.js .stagger-item:nth-child(6).is-in { animation-delay: 0.2s; }
.js .stagger-item:nth-child(7).is-in { animation-delay: 0.24s; }
.js .stagger-item:nth-child(8).is-in { animation-delay: 0.28s; }

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bubble-pop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  70% {
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes line-draw {
  from {
    transform: translateX(-50%) scaleY(0);
  }
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes hero-char {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes highlight-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 40% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .stagger-item,
  .js .reveal.is-in,
  .js .stagger-item.is-in,
  .js .metro.is-in .metro__line,
  .js .metro .route-orb,
  .js .metro .route-stop__panel,
  .js .hero .hero__wash,
  .js .hero .hero-lumi-outline,
  .js .hero .float-3d,
  .js .hero .hero-photo,
  .js .hero .hero-copy .eyebrow,
  .js .hero .hero-copy h1,
  .js .hero .lead,
  .js .hero .capsules,
  .js .hero .hero-cta {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn-3d:hover,
  .bubble:hover,
  .tilt:hover,
  .ticket:hover {
    transform: none;
  }
}

/* Bucheon premium — Coral / Rose / Peach / Cream Clay Bento */
.bc-slim-bar {
  width: 100%;
  min-height: 72px;
  background: linear-gradient(180deg, rgba(255,250,243,.94), rgba(255,246,239,.86));
  border-bottom: 1px solid rgba(245,87,104,.14);
  box-shadow: 0 8px 20px rgba(245,87,104,.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.bc-header-inner {
  max-width: 1280px;
  margin-inline: auto;
  width: calc(100% - 48px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.bc-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: 0 0 auto;
  min-width: min-content;
  flex-wrap: nowrap;
  text-decoration: none;
  color: inherit;
}
.bc-brand-name {
  font-size: 19px;
  font-weight: 800;
  font-family: Georgia, "Noto Serif KR", serif;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.bc-brand-dot { color: rgba(36,28,22,.35); font-weight: 700; }
.bc-brand-service {
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-accent);
  font-family: Pretendard, sans-serif;
  white-space: nowrap;
}
.bc-slim-nav {
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px 18px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.bc-slim-nav a { color: var(--bc-ink); padding: 6px 4px; }
.bc-slim-nav a:hover { color: var(--bc-accent); }
.bc-slim-cta { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; flex: 0 0 auto; }
@media (min-width: 1024px) {
  .bc-slim-nav { display: flex; }
}
@media (max-width: 1023px) {
  .bc-slim-cta { display: none; }
}
.bc-slim-cta .bc-link-phone,
.bc-slim-cta .bc-link-kakao,
.bc-nav-cta .bc-link-phone,
.bc-nav-cta .bc-link-kakao {
  min-height: 48px;
  padding: 0 16px;
  gap: 8px;
  border-radius: 999px;
}
.cta-ico { display: inline-flex; align-items: center; }
.bc-hero-bleed {
  max-width: 1280px;
  width: calc(100% - 48px);
  margin: 18px auto 0;
  padding: 0;
  box-sizing: border-box;
}
.bc-overlap-caption {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,244,239,.88));
  backdrop-filter: blur(16px);
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 32px;
  box-shadow:
    0 28px 70px rgba(245,87,104,.18),
    0 10px 24px rgba(36,28,22,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.bc-overlap-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,180,168,.7), rgba(245,87,104,.22), rgba(255,214,186,.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.bc-link-phone {
  background: linear-gradient(180deg, #ff7a86, #f55768 58%, #e44558);
  color: #fff; min-height: 56px; padding: 0 24px; font-weight: 800; border-radius: 999px;
  box-shadow: 0 12px 22px rgba(245,87,104,.32), inset 0 1px 0 rgba(255,255,255,.35);
}
.bc-link-kakao {
  background: linear-gradient(180deg, #ffe75a, #fee500);
  color: #191600; min-height: 56px; padding: 0 24px; font-weight: 800; border-radius: 999px;
  box-shadow: 0 10px 20px rgba(254,229,0,.38), inset 0 1px 0 rgba(255,255,255,.55);
}
.bc-link-phone:hover, .bc-link-kakao:hover { transform: translateY(-3px); }
.bc-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0; margin: 0 0 20px; font-family: Pretendard, sans-serif; }
.bc-fact {
  position: relative; padding: 10px 12px; border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fff4f1);
  border: 1px solid rgba(245,87,104,.16);
  box-shadow: 0 8px 16px rgba(245,87,104,.08), inset 0 1px 0 #fff;
  transition: transform .18s ease;
}
.bc-fact .iso { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; }
.bc-fact em { display: block; font-size: 10px; letter-spacing: .14em; color: var(--bc-accent); font-style: normal; font-weight: 800; }
.bc-fact strong { display: block; margin: 2px 36px 2px 0; font-size: 14px; }
.bc-fact span { color: var(--bc-muted); font-size: 12px; }
.bc-fact:hover { transform: translateY(-3px); }
.bc-feature-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  max-width: 1360px;
  margin: 24px auto 8px;
  padding: 0 24px;
  overflow: visible;
}
.bc-rail-card {
  position: relative;
  flex: none;
  border-radius: 24px;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, #fff, #fff4f1);
  border: 1px solid rgba(245,87,104,.16);
  box-shadow: 0 16px 32px rgba(245,87,104,.1), inset 0 1px 0 #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}
.bc-rail-card::before {
  content: "";
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #ffb4a8, #f55768);
}
.bc-rail-ico { display: block; width: 48px; height: 48px; margin-bottom: 8px; }
.bc-rail-card h3 { margin: 0 0 6px; font-size: 16px; }
.bc-rail-card p { margin: 0; color: var(--bc-muted); font-size: 14px; line-height: 1.55; }
.bc-magazine { max-width: 1280px; padding: 24px 24px 64px; }
.bc-magazine .la-guide { max-width: none; width: 100%; padding: 0; }
.bc-price-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: start; }
.bc-price {
  position: relative; padding: 22px 20px 16px; border-radius: 28px;
  background: linear-gradient(180deg, #fffdf9, #fff3ec);
  border: 1px solid rgba(245,87,104,.16);
  box-shadow: 0 16px 32px rgba(245,87,104,.12), inset 0 1px 0 #fff;
  font-family: Pretendard, sans-serif;
  overflow: hidden;
}
.bc-price::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 72px;
  background: linear-gradient(180deg, rgba(255,180,168,.22), transparent);
  pointer-events: none;
}
.bc-price.is-featured {
  transform: translateY(-10px);
  border-color: rgba(245,87,104,.42);
  box-shadow: 0 26px 48px rgba(245,87,104,.22), 0 0 0 1px rgba(245,87,104,.18), inset 0 1px 0 #fff;
}
.bc-price-badge, .bc-price-eye {
  position: relative; z-index: 1;
  display: inline-flex; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
}
.bc-price-badge { position: absolute; top: 14px; right: 14px; background: var(--bc-accent); color: #fff; }
.bc-price-eye { background: rgba(245,87,104,.1); color: var(--bc-accent); }
.bc-price-ico { position: relative; z-index: 1; display: block; width: 52px; height: 52px; margin: 10px 0 4px; }
.bc-price h3 { position: relative; z-index: 1; margin: 8px 0 4px; font-size: 24px; }
.bc-price-lead { position: relative; z-index: 1; margin: 0 0 10px; color: var(--bc-muted); font-size: 13px; }
.bc-price table { width: 100%; border-collapse: collapse; position: relative; z-index: 1; }
.bc-price td { padding: 10px 0; border-top: 1px solid rgba(245,87,104,.12); font-variant-numeric: tabular-nums; }
.bc-price td:last-child { text-align: right; font-weight: 800; color: var(--bc-accent); }
.bc-price td b { font-weight: 800; }
.bc-price td small { font-size: 11px; margin-left: 2px; font-weight: 700; opacity: .8; }
.bc-howto-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px 16px; list-style: none; padding: 18px 0 0; }
.bc-howto-list li, .bc-step {
  display: flex; flex-direction: column; gap: 8px;
  position: relative; padding: 36px 18px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fff6f2);
  box-shadow: 0 14px 28px rgba(245,87,104,.1), inset 0 1px 0 #fff;
  border: 1px solid rgba(245,87,104,.14);
}
.bc-step-badge {
  position: absolute; top: -14px; left: 18px;
  width: 42px; height: 42px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-family: Pretendard, sans-serif;
  background: linear-gradient(180deg, #ff8a96, #f55768);
  box-shadow: 0 10px 18px rgba(245,87,104,.32), inset 0 1px 0 rgba(255,255,255,.4);
}
.bc-step-ico { width: 48px; height: 48px; margin-top: 4px; }
.bc-howto-list li strong { display: block; font-size: 17px; }
.bc-howto-list li p { margin: 0; color: var(--bc-muted); font-size: 14px; line-height: 1.55; }
.bc-faq-line {
  border: 1px solid rgba(245,87,104,.14); border-radius: 22px; padding: 0; margin: 0 0 12px;
  background: linear-gradient(180deg, #fff, #fff8f4);
  box-shadow: 0 10px 22px rgba(245,87,104,.08);
}
.bc-faq-q { display: flex; gap: 12px; align-items: center; min-height: 56px; padding: 14px 18px; }
.bc-faq-qtext { flex: 1; }
.bc-faq-plus { margin-left: auto; color: var(--bc-accent); font-weight: 800; transition: transform .18s ease; }
.bc-faq-no { color: var(--bc-accent); font-family: Pretendard, sans-serif; font-size: 13px; font-weight: 800; }
.bc-faq-line[open] { box-shadow: inset 0 8px 18px rgba(245,87,104,.06), 0 10px 22px rgba(245,87,104,.08); }
.bc-faq-line[open] .bc-faq-plus { transform: rotate(45deg); }
.bc-faq-a {
  margin: 0 14px 16px; padding: 12px 14px; border-radius: 16px;
  background: rgba(255,244,239,.72); font-family: Pretendard, sans-serif;
}
.bc-side-panel, .bc-summary-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,250,243,.9), rgba(255,244,236,.78));
  backdrop-filter: blur(14px);
  border-radius: 28px; padding: 22px;
  border: 1px solid rgba(245,87,104,.16);
  box-shadow: 0 18px 36px rgba(245,87,104,.14), inset 0 1px 0 #fff;
}
.bc-summary-orb {
  position: absolute; right: -24px; top: -28px;
  width: 128px; height: 128px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,138,150,.5), transparent 70%);
  pointer-events: none;
}
.bc-summary-rows { list-style: none; padding: 0; margin: 12px 0 0; }
.bc-summary-rows li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(245,87,104,.12);
  font-weight: 700; font-family: Pretendard, sans-serif;
}
.bc-summary-rows li:first-child { border-top: 0; }
.bc-summary-rows .iso { width: 40px; height: 40px; }
.bc-cta-split {
  position: relative; overflow: hidden;
  max-width: 1360px; margin: 12px auto 32px; width: calc(100% - 48px);
  background: linear-gradient(135deg, #ff8a96, #f55768 46%, #e44558);
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(245,87,104,.28), inset 0 1px 0 rgba(255,255,255,.28);
}
.bc-cta-deco { display: flex; gap: 8px; align-items: center; }
.bc-cta-deco .iso { width: 52px; height: 52px; }
.bc-orb { width: 72px; height: 72px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.1)); opacity: .45; }
.bc-colophon {
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #fffaf3, #fff3ec);
  border: 0;
  border-top: 1px solid rgba(245,87,104,.14);
  box-shadow: none;
}
.bc-foot-inner {
  max-width: 1280px;
  margin-inline: auto;
  width: calc(100% - 48px);
  min-height: 180px;
  padding: 36px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 28px;
  align-items: start;
}
.bc-foot-name { margin: 0; font-size: 20px; font-weight: 800; font-family: Georgia, serif; white-space: nowrap; }
.bc-foot-service { margin: 4px 0 12px; font-size: 15px; font-weight: 700; color: var(--bc-accent); font-family: Pretendard, sans-serif; }
.bc-foot-meta { margin: 0 0 4px; font-size: 14px; color: var(--bc-muted); font-family: Pretendard, sans-serif; }
.bc-foot-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.bc-foot-heading { margin: 0; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--bc-accent); font-family: Pretendard, sans-serif; }
.bc-foot-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.bc-foot-nav a { text-decoration: none; color: inherit; font-size: 14px; font-weight: 700; font-family: Pretendard, sans-serif; }
.bc-foot-col h3 { margin: 0 0 8px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--bc-accent); }
.bc-foot-col p { margin: 0; }
@media (min-width: 901px) {
  .bc-hero-bleed {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(520px, 600px);
    align-items: stretch;
    gap: 0;
    justify-content: start;
  }
  .bc-bleed-frame {
    border-radius: 32px 0 0 32px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    min-height: 0;
    height: auto;
    max-height: 720px;
    box-shadow: 0 28px 70px rgba(36,28,22,.12);
  }
  .bc-bleed-img, .bc-bleed-frame .visual-fallback {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: var(--hero-pos, 50% 18%);
  }
  .bc-overlap-caption {
    margin: 0;
    max-width: none;
    border-radius: 0 32px 32px 0;
    height: 100%;
    padding: 40px 40px 36px;
  }
}
@media (max-width: 1023px) {
  .bc-header-inner { width: calc(100% - 48px); padding-inline: 0; flex-wrap: nowrap; }
  .bc-brand { flex: 1 1 auto; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0; white-space: normal; }
  .bc-brand-dot { display: none; }
  .bc-brand-name { font-size: 17px; }
  .bc-brand-service { font-size: 13px; }
}
@media (max-width: 900px) {
  .bc-howto-list, .bc-price-grid, .bc-facts, .bc-feature-rail, .bc-foot-inner { grid-template-columns: 1fr; }
  .bc-price.is-featured { transform: none; }
  .bc-cta-deco { display: none; }
  .bc-hero-bleed { padding: 0; margin: 0 auto; width: calc(100% - 48px); }
  .bc-bleed-img, .bc-bleed-frame .visual-fallback {
    height: min(62vh, 520px);
    min-height: 400px;
    object-fit: cover;
    object-position: var(--hero-pos-m, 50% 32%);
  }
  .bc-overlap-caption { margin: 0; border-radius: 0 0 28px 28px; }
}

/* MASTER LOCK — HEADER / HERO text / FOOTER layout. Do not redesign. */
.bc-kicker { margin: 0 0 12px; }
.bc-hero-bleed h1 { margin: 0 0 8px; }
.bc-hero-brand {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 16px;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--bc-accent);
  font-family: Georgia, "Noto Serif KR", serif;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}
.bc-hero-sub { margin: 0 0 14px; }
.bc-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  font-family: Pretendard, sans-serif;
}
.bc-featured span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(245,87,104,.2);
  font-size: 13px;
  font-weight: 800;
}
.bc-hero-desc { margin: 0 0 22px; max-width: 42em; }
.bc-caption-actions { margin-top: 0; }
.bc-slim-cta { gap: 10px; }
.bc-overlap-caption,
.bc-overlap-caption > * {
  text-align: left;
}
.bc-hero-sub { margin: 0 0 14px; }
.bc-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  font-family: Pretendard, sans-serif;
}
.bc-featured span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(245,87,104,.2);
  font-size: 13px;
  font-weight: 800;
}
.bc-hero-desc { margin: 0 0 22px; max-width: 42em; }
.bc-caption-actions { margin-top: 0; }
.bc-slim-cta { gap: 10px; }


html { scroll-behavior: smooth; }
.la-guide {
  --la-accent: #f55768;
  --la-ink: #2a2220;
  --la-muted: #7a6a66;
  --la-line: #f0dcd6;
  --la-card: #ffffff;
  --la-soft: #fff7f4;
  --la-chip: #ffffff;
  --la-tint-2: #fff9f7;
  --la-tint-3: #fff5f2;
  padding: 8px 0 48px;
  width: calc(100% - 48px);
  overflow-x: hidden;
  color: var(--la-ink);
}
.la-guide--bucheon {
  --la-accent: #f55768;
  --la-ink: #2a2220;
  --la-muted: #7a6a66;
  --la-line: #f0dcd6;
  --la-soft: #fff4f1;
  --la-tint-2: #fff9f7;
  --la-tint-3: #fff5f2;
}
.la-guide--yeongjong {
  --la-accent: #2a9b8f;
  --la-ink: #16324a;
  --la-muted: #5b7383;
  --la-line: #cfe4df;
  --la-soft: #eef8f6;
  --la-card: rgba(255,255,255,.82);
  --la-chip: rgba(255,255,255,.9);
  --la-tint-2: #f4fbf9;
  --la-tint-3: #eef6fb;
}
.la-guide--siheung {
  --la-accent: #1b6b8a;
  --la-ink: #10233a;
  --la-muted: #5d6f7e;
  --la-line: #d5e0e6;
  --la-soft: #eef3f6;
  --la-tint-2: #f7fafb;
  --la-tint-3: #eef4f7;
}
.la-guide--ganghwa {
  --la-accent: #f55768;
  --la-ink: #2a2220;
  --la-muted: #7a6a66;
  --la-line: rgba(245, 87, 104, .18);
  --la-soft: #fff4f2;
  --la-tint-2: #fff9f7;
  --la-tint-3: #fff5f2;
}
.la-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 16px 24px;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto 22px;
  padding: 22px 24px;
  min-height: 0;
  border: 1px solid var(--la-line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, var(--la-soft));
  box-shadow: 0 10px 24px rgba(20, 16, 24, .05);
}
.la-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--la-accent);
}
.la-summary-copy h2,
.la-summary h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -.03em;
  line-height: 1.25;
}
.la-summary-line { margin: 0 0 10px; color: var(--la-muted); font-size: 16px; }
.la-jump { margin: 0; }
.la-guide { max-width: 1360px; margin-left: auto; margin-right: auto; }
.la-stats {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.la-stats p {
  margin: 0;
  min-width: 84px;
  text-align: center;
}
.la-stats strong {
  display: block;
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.la-stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--la-muted);
}
.la-jump-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--la-muted);
}
.la-jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.la-jump-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--la-line);
  background: var(--la-chip);
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 6px 0 var(--la-soft);
}
.la-jump-chip:hover { border-color: var(--la-accent); }
.la-district {
  margin: 0 0 28px;
  scroll-margin-top: 84px;
}
.la-district-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--la-line);
}
.la-district-head h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -.03em;
}
.la-district-head p {
  margin: 0;
  color: var(--la-muted);
  font-size: 13px;
  font-weight: 700;
}
.container .la-guide,
.section .la-guide,
.bc-magazine .la-guide {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.la-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  grid-auto-rows: min-content;
}
.la-grid[data-count="1"],
.la-grid[data-count="2"],
.la-grid[data-count="4"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.la-card {
  position: relative;
  align-self: start;
  height: auto;
  padding: 22px 22px 20px;
  border: 1px solid var(--la-line);
  border-radius: 20px;
  background: var(--la-card);
  box-shadow: 0 12px 22px rgba(20, 16, 24, .05);
  overflow: hidden;
}
.la-card--2 { background: linear-gradient(180deg, var(--la-card), var(--la-tint-2)); }
.la-card--3 { background: linear-gradient(180deg, var(--la-card), var(--la-tint-3)); }
.la-card-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  opacity: .9;
}
.la-card-icon .iso { width: 46px; height: 46px; }
.la-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--la-accent);
}
.la-card-title {
  margin: 0 48px 8px 0;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.3;
}
.la-card-desc {
  margin: 0 0 12px;
  color: var(--la-muted);
  font-size: 15px;
  line-height: 1.65;
}
.la-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.la-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--la-line);
  background: var(--la-chip);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
}
.la-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 16px 24px;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto 28px;
  padding: 24px 26px;
  min-height: 0;
  border-radius: 28px;
}
.la-district-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.la-district-eye {
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 800;
}
.la-stat {
  position: relative;
  overflow: hidden;
  min-width: 108px;
  padding: 14px 14px 12px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--la-line);
  box-shadow: 0 12px 24px rgba(20,16,24,.08), inset 0 1px 0 #fff;
}
.la-stat::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--la-accent) 40%, white), transparent 72%);
  pointer-events: none;
}
.la-stat .iso { width: 40px; height: 40px; margin: 0 auto 4px; position: relative; z-index: 1; }
.la-stat strong, .la-stat span { position: relative; z-index: 1; }
.la-card {
  position: relative;
  align-self: start;
  height: auto;
  padding: 22px 22px 20px;
  border-radius: 26px;
  overflow: hidden;
}
.la-card:hover { transform: translateY(-3px); }
.la-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 4px 10px rgba(20,16,24,.05);
}
.la-guide--bucheon .la-summary,
.la-guide--bucheon .la-card {
  background: linear-gradient(180deg, #fff, #fff4f1);
  border: 1px solid rgba(245,87,104,.16);
  box-shadow: 0 18px 36px rgba(245,87,104,.12), inset 0 1px 0 #fff;
}
.la-guide--bucheon .la-district-head {
  background: linear-gradient(180deg, #fff, #ffe8e4);
  box-shadow: 0 8px 18px rgba(245,87,104,.12);
  color: #f55768;
}
.la-guide--bucheon .la-stat { background: #fff5f2; box-shadow: inset 0 1px 0 #fff; }
.la-guide--bucheon .la-chip { background: #fff7f4; border: 1px solid rgba(245,87,104,.18); }
.la-guide--yeongjong .la-summary,
.la-guide--yeongjong .la-card {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124,196,255,.4);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(47,125,225,.12), inset 0 1px 0 #fff;
}
.la-guide--yeongjong .la-district-head {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(42,155,143,.3);
  color: #2a9b8f;
}
.la-guide--yeongjong .la-stat { background: rgba(255,255,255,.7); }
.la-guide--yeongjong .la-chip { background: rgba(255,255,255,.9); border: 1px solid #cfe8ff; }
.la-guide--siheung .la-summary,
.la-guide--siheung .la-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(18,164,196,.2);
  border-top: 3px solid #12a4c4;
  box-shadow: 0 16px 32px rgba(11,58,77,.1);
}
.la-guide--siheung .la-district-head {
  background: #0b3a4d;
  color: #9be7ff;
  border-radius: 14px;
}
.la-guide--siheung .la-district-head h3 { color: #fff; }
.la-guide--siheung .la-stat { background: #f4fbfd; border-top: 2px solid #12a4c4; }
.la-guide--siheung .la-chip { background: #f4fafc; border: 1px solid #cfe4ec; }
.la-guide--ganghwa .la-summary,
.la-guide--ganghwa .la-card {
  background: linear-gradient(180deg, #fff, #fff6f2);
  border: 1px solid rgba(245,87,104,.18);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(245,87,104,.1), inset 0 1px 0 #fff;
}
.la-guide--ganghwa .la-district-head {
  background: #fff4f0;
  border: 1px solid rgba(245,87,104,.2);
  color: #f55768;
  border-radius: 18px;
}
.la-guide--ganghwa .la-stat { background: #fff8f5; }
.la-guide--ganghwa .la-chip { background: #fff8f5; border: 1px solid rgba(245,87,104,.16); }
.la-board {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), var(--la-soft));
  border: 1px solid var(--la-line);
  box-shadow: 0 22px 40px rgba(20,16,24,.08), inset 0 1px 0 #fff;
}
.la-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--la-accent) 55%, white), rgba(255,255,255,.2), color-mix(in srgb, var(--la-accent) 28%, white));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.la-zones {
  display: grid;
  gap: 12px;
}
.la-zones--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.la-zones--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.la-zones--3, .la-zones-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.la-zones--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.la-zone {
  padding: 12px 12px 10px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--la-soft) 70%, white);
  border: 1px solid var(--la-line);
  box-shadow: 0 8px 16px rgba(20,16,24,.04), inset 0 1px 0 #fff;
  min-height: 0;
}
.la-zone-eye {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--la-accent);
}
.la-zone h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.03em;
}
.la-district-block { margin: 0 0 14px; }
.la-district-block:last-child { margin-bottom: 0; }
.la-adjacent {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--la-line);
}
.la-adjacent > span {
  font-size: 12px;
  font-weight: 800;
  color: var(--la-muted);
}
.la-guide--compact .la-chip {
  padding: 7px 11px;
  font-size: 13px;
}
.la-guide--compact { padding-bottom: 28px; }
.la-guide--bucheon .la-board,
.la-guide--ganghwa .la-board {
  background: linear-gradient(180deg, #fff, #fff4f1);
  box-shadow: 0 22px 40px rgba(245,87,104,.12), inset 0 1px 0 #fff;
}
.la-guide--yeongjong .la-board {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
}
.la-guide--siheung .la-board {
  background: #fff;
  border-top: 3px solid #12a4c4;
}
.iso { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; }
.iso svg { width: 56px !important; height: 56px !important; max-width: 56px; max-height: 56px; display: block; }
.la-chip-sub {
  font-size: 13px;
  font-weight: 650;
  color: var(--la-muted);
  background: transparent;
}
.la-sub-label {
  margin: 12px 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--la-muted);
}
@media (min-width: 1100px) {
  .la-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .la-grid[data-count="1"],
  .la-grid[data-count="2"],
  .la-grid[data-count="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .la-card { min-width: 0; }
}
@media (max-width: 1023px) {
  .la-guide { padding-left: 5vw; padding-right: 5vw; }
  .la-grid,
  .la-grid[data-count="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .la-zones--5, .la-zones--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .la-guide { padding: 8px 5vw 36px; }
  .la-summary { grid-template-columns: 1fr; }
  .la-stats { justify-content: flex-start; }
  .la-grid,
  .la-grid[data-count="4"],
  .la-zones,
  .la-zones--5,
  .la-zones--4,
  .la-zones--3,
  .la-zones-3,
  .la-zones--2 { grid-template-columns: 1fr; }
  .la-card-title { margin-right: 44px; font-size: 18px; }
  .la-jump-chip, .la-chip { min-height: 36px; }
  .la-board { padding: 16px 14px; overflow-x: hidden; }
}

/* Preview-safe constraints: never let icons/SVG fill the viewport when a stylesheet is missing. */
.iso,
.iso svg,
.la-card-icon,
.la-card-icon svg,
.sh-usecase-visual svg,
.yj-sky-visual svg,
.bc-stack-visual svg,
.bc-cta-deco svg,
.yj-cta-deco svg,
.sh-cta-deco svg,
.bc-price-ico svg,
.yj-course-ico svg,
.sh-course-ico svg,
.bc-step-ico svg,
.yj-step-ico svg,
.sh-step-ico svg,
.bc-rail-ico svg,
.la-stat svg,
.gh-life-visual svg {
  max-width: 72px !important;
  max-height: 72px !important;
  width: 48px;
  height: 48px;
}
.iso { display: inline-flex !important; width: 56px; height: 56px; }
.iso svg { display: block; width: 56px !important; height: 56px !important; }
.la-card-icon { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; }
.la-card-icon .iso,
.la-card-icon svg { width: 44px !important; height: 44px !important; max-width: 44px !important; max-height: 44px !important; }
img.sh-hero-photo, img.yj-hero-visual, img.bc-bleed-img {
  max-width: 100%;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Shared HERO H1 Title Fit — all 4 MASTERs. Do not clip long keywords. */

.hero-copy,
.yj-hero-copy-col,
.sh-glass-panel,
#hero .hero-copy,
#hero .hero-content {
  min-width: 0;
  max-width: 100%;
}

.hero-title-fit,
.hero-title-fit .h1-brand {
  max-width: 100%;
  overflow: visible !important;
  white-space: normal !important;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.12;
  box-sizing: border-box;
}

.hero-title-fit .h1-brand {
  display: block;
}

.yj-hero-split h1.hero-title-fit {
  display: block;
}

/* Bucheon: give the title column more of the hero than the photo. */
@media (min-width: 981px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  }
}

/* Siheung desktop: text ~60%, image ~40%. */
@media (min-width: 901px) {
  .sh-hero-stage {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

/* Ganghwa left rail: long keywords need more than ~37vw. */
@media (min-width: 901px) {
  #hero .hero-content,
  #hero .hero-content.container,
  .hero-content {
    --hero-rail: clamp(28rem, 52vw, 46rem);
    width: min(100% - 2rem, var(--hero-rail));
    max-width: var(--hero-rail);
  }
}

/* Yeongjong copy can use the remaining row after the 40% photo. */
@media (min-width: 901px) {
  .yj-hero-copy-col {
    max-width: min(760px, 100%) !important;
  }
}

/* Length buckets — short keeps each MASTER's existing large size. */

.hero-copy h1.hero-title-fit--medium {
  font-size: clamp(2.15rem, 5.4vw, 3.85rem);
}
.hero-copy h1.hero-title-fit--long {
  font-size: clamp(1.9rem, 4.7vw, 3.15rem);
}
.hero-copy h1.hero-title-fit--xlong {
  font-size: clamp(1.65rem, 4.1vw, 2.65rem);
}

.yj-hero-split h1.hero-title-fit--medium {
  font-size: clamp(30px, 2.85vw, 48px);
}
.yj-hero-split h1.hero-title-fit--long {
  font-size: clamp(26px, 2.5vw, 40px);
}
.yj-hero-split h1.hero-title-fit--xlong {
  font-size: clamp(22px, 2.2vw, 34px);
}

.sh-hero-stage h1.hero-title-fit--medium {
  font-size: clamp(32px, 4.4vw, 46px);
}
.sh-hero-stage h1.hero-title-fit--long {
  font-size: clamp(28px, 3.8vw, 40px);
}
.sh-hero-stage h1.hero-title-fit--xlong {
  font-size: clamp(24px, 3.3vw, 34px);
}

@media (min-width: 901px) {
  .yj-hero-split h1.hero-title-fit--medium {
    font-size: clamp(36px, 2.7vw, 50px);
  }
  .yj-hero-split h1.hero-title-fit--long {
    font-size: clamp(30px, 2.35vw, 42px);
  }
  .yj-hero-split h1.hero-title-fit--xlong {
    font-size: clamp(26px, 2.1vw, 36px);
  }
  .sh-hero-stage h1.hero-title-fit--medium {
    font-size: clamp(40px, 2.9vw, 52px);
  }
  .sh-hero-stage h1.hero-title-fit--long {
    font-size: clamp(34px, 2.5vw, 44px);
  }
  .sh-hero-stage h1.hero-title-fit--xlong {
    font-size: clamp(28px, 2.2vw, 38px);
  }
}

#hero.hero h1.hero-title-fit--medium,
#hero.hero h1.hero-title-fit--medium .h1-brand {
  font-size: clamp(2rem, 3.1vw, 3rem) !important;
}
#hero.hero h1.hero-title-fit--long,
#hero.hero h1.hero-title-fit--long .h1-brand {
  font-size: clamp(1.75rem, 2.7vw, 2.55rem) !important;
}
#hero.hero h1.hero-title-fit--xlong,
#hero.hero h1.hero-title-fit--xlong .h1-brand {
  font-size: clamp(1.5rem, 2.35vw, 2.2rem) !important;
}

@media (max-width: 900px) {
  .hero-copy h1.hero-title-fit--medium {
    font-size: clamp(1.85rem, 9.5vw, 2.55rem);
  }
  .hero-copy h1.hero-title-fit--long,
  .hero-copy h1.hero-title-fit--xlong {
    font-size: clamp(1.55rem, 8.2vw, 2.2rem);
  }
  .yj-hero-split h1.hero-title-fit--medium,
  .sh-hero-stage h1.hero-title-fit--medium {
    font-size: clamp(1.7rem, 7.4vw, 2.3rem);
  }
  .yj-hero-split h1.hero-title-fit--long,
  .yj-hero-split h1.hero-title-fit--xlong,
  .sh-hero-stage h1.hero-title-fit--long,
  .sh-hero-stage h1.hero-title-fit--xlong {
    font-size: clamp(1.45rem, 6.6vw, 2rem);
  }
  #hero.hero h1.hero-title-fit--medium,
  #hero.hero h1.hero-title-fit--medium .h1-brand,
  #hero.hero h1.hero-title-fit--long,
  #hero.hero h1.hero-title-fit--long .h1-brand,
  #hero.hero h1.hero-title-fit--xlong,
  #hero.hero h1.hero-title-fit--xlong .h1-brand {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem) !important;
  }
}

