  /* ============================================================
     일정 — 이미지 + 텍스트 교차 레이아웃
     ============================================================ */
  #schedule {
    background: var(--bg-alt);
    color: var(--fg);
    padding: clamp(6rem, 12vh, 12rem) 0;
  }
  .sched-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(4rem, 8vh, 8rem);
    padding: 0 2.5rem;
  }
  .sched-label {
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--fg-muted);
    margin-bottom: 1.5rem;
  }
  .sched-headline {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 200;
    line-height: 1.35;
  }

  /* 교차 블록 */
  .sched-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
  }
  .sched-block:nth-child(even) .sched-block-img { order: 2; }
  .sched-block:nth-child(even) .sched-block-content { order: 1; }

  .sched-block-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .sched-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
  }
  .sched-block:hover .sched-block-img img {
    transform: scale(1.03);
  }

  .sched-block-content {
    padding: clamp(2rem, 5vw, 5rem);
  }
  .sched-block-time {
    font-size: clamp(10px, 0.9vw, 12px);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .sched-block-title {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 200;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .sched-block-desc {
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 200;
    line-height: 1.8;
    color: var(--fg-dim);
  }
  .sched-block-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    margin-top: 1.2rem;
    color: var(--fg-dim);
  }

  @media (max-width: 768px) {
    .sched-block {
      grid-template-columns: 1fr;
    }
    .sched-block-img { order: 1 !important; aspect-ratio: 16/9; }
    .sched-block-content { order: 2 !important; }
  }

  /* legacy — 호환성 유지 (숨김) */
  .sched-timeline { display: none; }
  .sched-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin: 0.3rem 0;
  }
  .sched-dot.gold { background: #C9A227; }

  .sched-item-title {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
  }
  .sched-item-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
  }
  .sched-item-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    margin-top: 0.4rem;
    color: rgba(255,255,255,0.4);
  }
  .sched-item-badge.fixed {
    border-color: #C9A227;
    color: #C9A227;
  }

  /* 좌우 라벨 */
  .sched-col-label {
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
  }

  @media (max-width: 768px) {
    .sched-timeline::before { left: 24px; }
    .sched-row { grid-template-columns: auto 1fr; gap: 0; }
    .sched-left { display: none; }
    .sched-right { text-align: left; }
  }

  /* ============================================================
     STAY — 숙소 소개 (좌: 세로 영상, 우: 텍스트)
     ============================================================ */
  #stay {
    background: var(--bg);
    color: var(--fg);
    padding: 0;
  }
  .stay-hero {
    width: 100%;
    overflow: hidden;
  }
  .stay-hero-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
  }
  .stay-hero-img video,
  .stay-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .stay-content {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(4rem, 8vh, 8rem) 2.5rem;
    text-align: center;
  }
  .stay-text-block {
    margin-bottom: 3rem;
  }
  .stay-label {
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--fg-muted);
    margin-bottom: 1.5rem;
  }
  .stay-title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .stay-body {
    font-size: clamp(0.88rem, 1vw, 1.05rem);
    font-weight: 200;
    line-height: 1.9;
    color: var(--fg-dim);
    max-width: 600px;
    margin: 0 auto;
  }
  .stay-body p + p {
    margin-top: 1.5em;
  }
  .stay-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
  }
  .stay-feat {
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--fg-dim);
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .stay-feat-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.15rem;
  }

  @media (max-width: 768px) {
    .stay-hero-img { aspect-ratio: 16/9; }
    .stay-features { grid-template-columns: 1fr 1fr; }
  }

  /* ============================================================
     FAQ — 아코디언
     ============================================================ */
  #faq {
    background: var(--bg);
    color: var(--fg);
    padding: clamp(6rem, 12vh, 12rem) 2.5rem;
  }
  .faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(3rem, 5vh, 4rem);
  }
  .faq-label {
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
  }
  .faq-headline {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 400;
  }
  .faq-list {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--fg);
  }
  .faq-arrow {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 1rem;
  }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 0;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 0 1.3rem;
  }
  .faq-a-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }

