/* =========================================================
   전역 변수
   - 사이트 전체 색상 / 그림자 / 라운드 값
   - 가장 먼저 여기서 톤 조정
   ========================================================= */
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --text: #111827;
  --text-soft: #667085;
  --line: #e6ebf2;
  --blue: #2563eb;
  --blue-deep: #143878;
  --navy: #091a3b;
  --navy-soft: #183a76;
  --yellow: #f5cd11;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 36px rgba(15, 23, 42, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}


/* =========================================================
   기본 리셋
   - 전체 공통 기본값
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
   공통 레이아웃 박스
   - wrap: 전체 섹션 기본 폭
   - narrow-block: 좁은 중앙 정렬 텍스트 블록
   - hidden-frame: 폼 제출용 숨김 iframe
   ========================================================= */
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow-block {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.hidden-frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  left: -9999px;
}


/* =========================================================
   상단바
   - 로고 / 메뉴 / 모바일 햄버거
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #66a3ff);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #374151;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
}

.nav-highlight {
  color: var(--blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 42px;
  height: 42px;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: #0f172a;
  margin: 7px 0;
}


/* =========================================================
   메인 히어로 섹션
   - 상단 첫 화면 비주얼
   ========================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 43, 0.12), rgba(9, 19, 43, 0.48)),
    url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.18), rgba(5, 15, 35, 0.62));
}

.hero-wrap {
  position: relative;
  z-index: 1;
  padding: 96px 0 124px;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}


/* =========================================================
   히어로 애니메이션
   ========================================================= */
.hero-animate {
  animation: heroUp 0.9s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-animate-delay {
  animation: heroUp 0.9s cubic-bezier(.16, 1, .3, 1) 0.18s both;
}

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


/* =========================================================
   히어로 상단 태그
   ========================================================= */
.hero-tag-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-tag {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}


/* =========================================================
   히어로 제목 / 부제목
   ========================================================= */
.hero-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.hero-subtitle {
  margin: 22px auto 0;
  max-width: 700px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
}


/* =========================================================
   히어로 떠다니는 카드
   ========================================================= */
.hero-intro-motion {
  position: relative;
  width: min(760px, 100%);
  height: 188px;
  margin: 42px auto 0;
}

.hero-float-card {
  position: absolute;
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 60px rgba(4, 12, 28, 0.26);
  backdrop-filter: blur(18px);
  text-align: left;
  animation: floatHero 5.6s ease-in-out infinite;
}

.hero-float-card span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 8px;
}

.hero-float-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-float-card-a {
  left: 0;
  top: 18px;
  animation-delay: 0s;
}

.hero-float-card-b {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  animation-delay: 0.7s;
}

.hero-float-card-c {
  right: 0;
  bottom: 18px;
  animation-delay: 1.4s;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-float-card-b {
  animation-name: floatHeroCenter;
}

@keyframes floatHeroCenter {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}


/* =========================================================
   히어로 스크롤 안내
   ========================================================= */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-scroll-cue em {
  width: 2px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.12));
  animation: scrollCue 1.8s ease-in-out infinite;
}

.hero-scroll-cue small {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

@keyframes scrollCue {
  0% {
    opacity: 0.45;
    transform: translateY(-6px);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
  100% {
    opacity: 0.45;
    transform: translateY(-6px);
  }
}


/* =========================================================
   공통 섹션 여백
   ========================================================= */
.identity-section,
.review-section,
.contact-section {
  padding: 108px 0;
}

.schedule-section,
.price-guarantee-section {
  padding: 94px 0;
}

.identity-section {
  background: var(--surface);
}

.review-section {
  background: #f8fafc;
}

.contact-section {
  background: var(--surface);
}


/* =========================================================
   공통 섹션 라벨 / 큰 제목 / 설명
   ========================================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.identity-title {
  margin: 20px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.identity-title span {
  position: relative;
  display: inline-block;
}

.identity-title span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 14px;
  background: rgba(37, 99, 235, 0.18);
  z-index: -1;
  border-radius: 999px;
}

.title-divider {
  width: 1px;
  height: 56px;
  background: #d5dbe5;
  margin: 30px auto;
}

.identity-desc {
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.9;
}

.identity-desc strong {
  color: var(--text);
}

.section-topline,
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compact-head {
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-mini-copy,
.section-description {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--blue-deep);
}

.section-more-link span {
  transition: transform 0.2s ease;
}

.section-more-link:hover span {
  transform: translateX(3px);
}


/* =========================================================
   일정 필터칩
   ========================================================= */
.schedule-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}

.filter-chip {
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1f2937;
  font-weight: 700;
}

.filter-chip.is-active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}


/* =========================================================
   일정 카드 그리드
   ========================================================= */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  display: flex;
  flex-direction: column;
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}


/* =========================================================
   일정 카드 상단 비주얼
   ========================================================= */
.schedule-visual {
  position: relative;
  min-height: 240px;
  background: linear-gradient(180deg, #d9e6f8 0%, #12284b 100%);
}

.schedule-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.08), rgba(10, 20, 40, 0.82));
}

.schedule-visual-inner {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px 24px 24px;
  color: #fff;
}

.schedule-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.schedule-badge {
  display: inline-flex;
  height: 32px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

/* =========================================================
   상단 "몇월 출발" 배지 강조
   - 예: 8월 출발 / 11월 출발 / 2월 출발
   ========================================================= */
.schedule-badge-month {
  background: rgba(255, 214, 10, 0.22);
  border: 1px solid rgba(255, 214, 10, 0.38);
  color: #ffe57a;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.12);
}

.schedule-card .schedule-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  color: #fff;
}

/* =========================================================
   타이틀 안의 "몇월" 강조
   - 예: "디즈니 4박 5일 8월"에서 8월만 강조
   ========================================================= */
.schedule-month-accent {
  color: #ffd54a;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   일정 카드 하단 내용
   ========================================================= */
.schedule-content {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* =========================================================
   일정 카드 하단 메타 그리드
   - 선박 / 모항지 / 출발 / 도착
   ========================================================= */
.schedule-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* =========================================================
   일정 카드 하단 메타 공통 박스
   ========================================================= */
.schedule-meta-item {
  min-height: 86px;
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.schedule-meta-item span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.schedule-meta-item strong {
  font-size: 16px;
  line-height: 1.45;
  color: #111827;
}

/* =========================================================
   "출발" 박스만 강조
   - 현재 순서:
     1) 선박
     2) 모항지
     3) 출발
     4) 도착
   ========================================================= */
.schedule-meta .schedule-meta-item:nth-child(3) {
  background: #edf4ff;
  border-color: #bcd3ff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.schedule-meta .schedule-meta-item:nth-child(3) span {
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.schedule-meta .schedule-meta-item:nth-child(3) strong {
  color: #143878;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.schedule-actions {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* =========================================================
   공통 버튼
   - 일정 버튼 / 문의 버튼 공용
   ========================================================= */
.btn,
.contact-submit {
  height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #2d7eff);
  color: #fff;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.22);
}

.schedule-empty {
  width: 100%;
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed #c9d3e0;
  text-align: center;
  color: #64748b;
  background: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   가격 보장 섹션
   ========================================================= */
.price-guarantee-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 56px 58px;
  border-radius: 0;
  background: linear-gradient(90deg, #07122a 0%, #0d2248 45%, #142f5f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.price-guarantee-label {
  display: inline-block;
  color: #67a7ff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}

.price-guarantee-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-guarantee-copy p {
  margin: 28px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.72;
}

.price-guarantee-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.price-guarantee-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 900;
  color: #67a7ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.price-guarantee-side strong {
  font-size: 26px;
  font-weight: 900;
}

.price-guarantee-side span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   후기 슬라이더
   ========================================================= */
.review-slider {
  position: relative;
  margin-top: 24px;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 22px;
  transition: transform 0.32s ease;
  will-change: transform;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.review-dot.is-active {
  background: var(--blue);
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 22, 47, 0.88);
  color: #fff;
  font-size: 28px;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.review-nav.prev {
  left: -10px;
}

.review-nav.next {
  right: -10px;
}

.review-nav.is-hidden,
.review-dots.is-hidden {
  display: none;
}


/* =========================================================
   후기 카드
   ========================================================= */
.review-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  flex: 0 0 calc((100% - 22px) / 2);
}

.review-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #e5eefb, #c9d7ea);
  overflow: hidden;
}

.review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-body {
  padding: 22px;
}

.review-region {
  display: inline-flex;
  padding: 0 12px;
  height: 30px;
  border-radius: 999px;
  align-items: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.review-body h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.28;
}

.review-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}


/* =========================================================
   문의폼 전체 카드
   ========================================================= */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   문의폼 그리드
   ========================================================= */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 10px;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid span {
  font-size: 14px;
  font-weight: 800;
  color: #374151;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  padding: 16px 18px;
  outline: none;
  font: inherit;
  color: #111827;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #94a3b8;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #9dbfff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-grid textarea {
  min-height: 138px;
  resize: vertical;
}

.form-grid label.full.consent-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  text-align: center;
}

.form-grid label.full.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: #2563eb;
}

.form-grid label.full.consent-check span {
  margin: 0;
  line-height: 1.5;
}

.contact-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  margin: 0 auto;
  padding: 0 28px;
}

.form-result {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
}

.form-result.is-pending {
  color: #0f4fa8;
}

.form-result.is-success {
  color: #166534;
}

.form-result.is-error {
  color: #b42318;
}


/* =========================================================
   푸터
   ========================================================= */
.footer {
  padding: 42px 0 110px;
  background: #111827;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner strong {
  display: block;
  font-size: 18px;
  color: #fff;
}

.footer-inner p {
  margin: 12px 0 0;
  line-height: 1.7;
}


/* =========================================================
   하단 고정 문의 바
   - 현재 HTML에서는 .sib-badge 하나만 있어도 자동 깜빡임
   ========================================================= */
.sticky-inquiry-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  background: rgba(9, 20, 44, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -8px 34px rgba(2, 6, 23, 0.28);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  animation: slideUpBar 0.7s cubic-bezier(.16, 1, .3, 1) 0.15s forwards, bannerPulse 3.2s ease-in-out infinite;
}

@keyframes slideUpBar {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes bannerPulse {
  0%,
  100% {
    box-shadow: 0 -8px 34px rgba(2, 6, 23, 0.24);
  }
  50% {
    box-shadow: 0 -12px 42px rgba(37, 99, 235, 0.18);
  }
}

.sib-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.sib-text-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   왼쪽 마감임박 배지
   - 현재 index에 .sib-badge만 있어도 기본 깜빡임
   ========================================================= */
.sib-badge {
  background: #ef4444;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.38);
  animation: badgeBlinkStrong 0.95s ease-in-out infinite;
}

@keyframes badgeBlinkStrong {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.12);
    box-shadow: 0 0 26px rgba(239, 68, 68, 0.82);
  }
}

.sib-title {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.sib-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.sib-btn-group {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.sib-btn-group-full {
  min-width: 260px;
}

.sib-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 132px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-inquiry {
  background: linear-gradient(135deg, var(--blue), #2d7eff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-kakao {
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 12px 24px rgba(245, 205, 17, 0.22);
}

.sib-btn-wide {
  min-width: 220px;
}

.sib-btn:hover {
  transform: translateY(-1px);
}


/* =========================================================
   일정 상세 모달
   ========================================================= */
.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
}

.schedule-modal[aria-hidden='false'] {
  display: block;
}

.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 39, 0.56);
  backdrop-filter: blur(6px);
}

.schedule-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 24px));
  max-height: min(88svh, 920px);
  margin: 4svh auto;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.24);
}

.schedule-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 20, 40, 0.74);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.schedule-modal-body {
  max-height: inherit;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #f8fbff, #ffffff 220px);
}


/* =========================================================
   모달 공통 카드
   ========================================================= */
.modal-hero-card,
.modal-route-card,
.modal-table-card,
.modal-image-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.modal-hero-card {
  padding: 22px 24px;
}

.modal-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.modal-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.modal-hero-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.modal-action {
  margin-top: 18px;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.modal-meta-box {
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.modal-meta-box span {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.modal-meta-box strong {
  font-size: 17px;
  line-height: 1.4;
}

.modal-card-head {
  padding: 20px 22px 0;
}

.modal-card-head h4 {
  margin: 0;
  font-size: 18px;
}

.modal-card-head p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}


/* =========================================================
   모달 경로 카드
   ========================================================= */
.modal-route-card {
  padding: 0 22px 22px;
}

.route-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding-top: 16px;
}

.route-stop {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.route-stop:last-child {
  grid-template-columns: 1fr;
}

.route-pill {
  min-height: 80px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
}

.route-pill small {
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.route-pill strong {
  font-size: 16px;
  line-height: 1.3;
}

.route-line {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa8bc;
  font-size: 18px;
  font-weight: 900;
}


/* =========================================================
   모달 일정표 테이블
   ========================================================= */
.modal-table-card {
  overflow: hidden;
}

.table-scroll {
  overflow-x: visible;
}

.itinerary-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.itinerary-table thead th {
  background: #f8fafc;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
}

.itinerary-table tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 14px;
}

.itinerary-table thead th:nth-child(1),
.itinerary-table tbody td:nth-child(1) {
  width: 90px;
}

.itinerary-table thead th:nth-child(2),
.itinerary-table tbody td:nth-child(2) {
  width: 120px;
}

.itinerary-table thead th:nth-child(4),
.itinerary-table tbody td:nth-child(4),
.itinerary-table thead th:nth-child(5),
.itinerary-table tbody td:nth-child(5) {
  width: 110px;
}

.itinerary-table tbody tr:last-child td {
  border-bottom: 0;
}

.itinerary-table tbody tr.is-highlight {
  background: #fff9e8;
}

.day-cell {
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.date-cell {
  font-weight: 700;
  white-space: nowrap;
}

.port-name-kr {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.port-name-en {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 12px;
}

.overnight-badge {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffe8a8;
  color: #8a5a00;
  font-size: 11px;
  font-weight: 800;
  vertical-align: middle;
}

.time-cell {
  white-space: nowrap;
  font-weight: 700;
  color: #111827;
}

.time-cell.muted {
  color: #98a2b3;
  font-weight: 600;
}

.time-cell.arrival {
  color: #2563eb;
}

.modal-table-note {
  margin: 0;
  padding: 0 22px 16px;
  text-align: right;
  font-size: 12px;
  color: #98a2b3;
}


/* =========================================================
   모달 이미지 카드
   ========================================================= */
.modal-image-card {
  padding: 16px;
}

.schedule-image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ebf2fb, #d9e5f5);
  border: 1px solid var(--line);
}

.schedule-image-frame img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  background: #f8fafc;
}


/* =========================================================
   태블릿 대응
   ========================================================= */
@media (max-width: 1080px) {
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-guarantee-card,
  .modal-summary-grid {
    grid-template-columns: 1fr;
  }

  .price-guarantee-side {
    padding-top: 16px;
  }
}


/* =========================================================
   모바일 통합 대응
   - 768px 이하
   - 수정은 이 구간만 보면 됨
   ========================================================= */
@media (max-width: 768px) {
  /* ---------------------------------------------------------
     공통 레이아웃
     --------------------------------------------------------- */
  .wrap {
    width: min(100% - 20px, 1180px);
  }

  .topbar-inner {
    min-height: 64px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  /* ---------------------------------------------------------
     히어로
     --------------------------------------------------------- */
  .hero-section {
    min-height: auto;
  }

  .hero-wrap {
    padding: 76px 0 84px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.14;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-tag-group {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-tag {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-intro-motion {
    width: 100%;
    height: auto;
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-float-card {
    position: relative;
    width: 100%;
    min-width: 0;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-float-card-a,
  .hero-float-card-b,
  .hero-float-card-c {
    animation: none !important;
  }

  .hero-scroll-cue {
    display: none;
  }

  /* ---------------------------------------------------------
     섹션 공통 여백
     --------------------------------------------------------- */
  .identity-section,
  .review-section,
  .contact-section {
    padding: 72px 0;
  }

  .schedule-section,
  .price-guarantee-section {
    padding: 68px 0;
  }

  .identity-title {
    font-size: 34px;
  }

  .identity-desc,
  .section-description,
  .section-mini-copy {
    font-size: 15px;
    line-height: 1.72;
  }

  .section-topline,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-head.center {
    align-items: center;
    text-align: center;
  }

  /* ---------------------------------------------------------
     일정 필터칩
     --------------------------------------------------------- */
  .schedule-filter-row {
    gap: 8px;
    margin: 22px 0 20px;
  }

  .filter-chip {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  /* ---------------------------------------------------------
     일정 카드
     --------------------------------------------------------- */
  .schedule-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    border-radius: 22px;
  }

  .schedule-visual {
    min-height: 190px;
  }

  .schedule-visual-inner {
    padding: 20px 18px 18px;
  }

  .schedule-badges {
    gap: 6px;
    margin-bottom: 10px;
  }

  .schedule-badge {
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }

  .schedule-card .schedule-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .schedule-content {
    padding: 18px 18px 22px;
  }

  .schedule-meta {
    gap: 10px;
  }

  .schedule-meta-item {
    min-height: 74px;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .schedule-meta-item span {
    font-size: 12px;
  }

  .schedule-meta-item strong {
    font-size: 15px;
    line-height: 1.35;
  }

  .schedule-meta .schedule-meta-item:nth-child(3) strong {
    font-size: 17px;
  }

  .schedule-actions {
    padding-top: 14px;
  }

  .schedule-actions .btn {
    width: 100%;
    height: 52px;
  }

  /* ---------------------------------------------------------
     가격 보장 섹션
     --------------------------------------------------------- */
  .price-guarantee-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .price-guarantee-copy h2 {
    font-size: 34px;
  }

  .price-guarantee-copy p {
    margin-top: 18px;
    font-size: 15px;
  }

  .price-guarantee-side {
    padding-top: 6px;
  }

  .price-guarantee-icon {
    width: 74px;
    height: 74px;
    font-size: 36px;
  }

  .price-guarantee-side strong {
    font-size: 22px;
  }

  .price-guarantee-side span {
    font-size: 16px;
  }

  /* ---------------------------------------------------------
     후기 슬라이더
     --------------------------------------------------------- */
  .review-slider {
    margin-top: 20px;
  }

  .review-track {
    gap: 14px;
  }

  .review-card {
    flex: 0 0 100%;
    border-radius: 22px;
  }

  .review-body {
    padding: 18px;
  }

  .review-body h3 {
    font-size: 20px;
    line-height: 1.34;
  }

  .review-nav {
    display: none;
  }

  .review-dots {
    margin-top: 12px;
  }

  /* ---------------------------------------------------------
     문의폼
     --------------------------------------------------------- */
  .contact-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .form-grid label {
    gap: 8px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    padding: 14px 15px;
  }

  .form-grid textarea {
    min-height: 120px;
  }

  .form-grid label.full.consent-check {
    gap: 8px;
  }

  .contact-actions {
    margin-top: 18px;
    gap: 12px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
    height: 52px;
  }

  /* ---------------------------------------------------------
     하단 고정 문의바
     --------------------------------------------------------- */
  .sticky-inquiry-bar {
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }

  .sib-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .sib-text-group {
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .sib-title {
    font-size: 14px;
  }

  .sib-sub {
    font-size: 12px;
  }

  .sib-btn-group,
  .sib-btn-group-full {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .sib-btn,
  .sib-btn-wide {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
  }

  /* ---------------------------------------------------------
     일정 상세 모달
     --------------------------------------------------------- */
  .schedule-modal-panel {
    width: calc(100% - 10px);
    margin: 1.5svh auto;
    max-height: 97svh;
    border-radius: 20px;
  }

  .schedule-modal-body {
    padding: 14px;
  }

  .modal-hero-card,
  .modal-route-card,
  .modal-image-card {
    padding: 16px;
  }

  .modal-summary-grid,
  .modal-meta-grid {
    grid-template-columns: 1fr;
  }

  .modal-hero-title {
    font-size: 28px;
  }

  .route-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .route-stop {
    grid-template-columns: 1fr;
  }

  .route-line {
    display: none;
  }

  .table-scroll {
    overflow-x: auto;
  }

  .itinerary-table {
    min-width: 620px;
    table-layout: auto;
  }

  /* ---------------------------------------------------------
     푸터
     --------------------------------------------------------- */
  .footer {
    padding: 36px 0 120px;
  }
}


/* =========================================================
   작은 모바일 대응
   - 560px 이하
   ========================================================= */
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 16px, 1180px);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 8px 12px;
  }

  .schedule-visual {
    min-height: 172px;
  }

  .schedule-card .schedule-title {
    font-size: 22px;
  }

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

  .schedule-meta-item {
    min-height: 68px;
    padding: 10px 8px;
  }

  .schedule-meta-item strong {
    font-size: 14px;
  }

  .schedule-meta .schedule-meta-item:nth-child(3) strong {
    font-size: 16px;
  }

  .price-guarantee-copy h2 {
    font-size: 30px;
  }

  .price-guarantee-copy p {
    font-size: 14px;
  }

  .route-track {
    grid-template-columns: 1fr;
  }

  .sib-sub {
    display: none;
  }

  .footer {
    padding-bottom: 128px;
  }
}


/* =========================================================
   숨김 처리용
   ========================================================= */
.hero-quick-box {
  display: none !important;
}
