/* ============================================================
   GUAM SUMMER PAYBACK 2026 — Landing Page
   ============================================================ */


:root {
  --ocean:        #0E6BA8;
  --ocean-light:  #0E8FD0;
  --ocean-deep:   #063b5e;
  --sky:          #7FD0F2;
  --aqua:         #2BB7C9;
  --accent:       #FFD45C;
  --accent-soft:  #FFE39A;
  --bg:           #F2FAFF;
  --text:         #0A3D62;
  --muted:        #42718f;
  --card:         #ffffff;
  --header-h:     86px;
  --radius:       24px;
  --shadow-card:  0 26px 54px -30px rgba(8,59,94,.40);
  --shadow-soft:  0 16px 32px -14px rgba(14,107,168,.7);
}
@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}
* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.font-sub{font-family: 'Paperozi';font-weight: 900;}
body.modal-open { overflow: hidden; }

h1, h2, h3, p { margin: 0; }
a { text-decoration: none; }

/* ---------- Keyframes ---------- */
@keyframes floatY      { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes floatYslow  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
@keyframes popIn       { 0% { opacity: 0; transform: translateY(24px) scale(.96); } 100% { opacity: 1; transform: none; } }
@keyframes snsFabBounce {
  0%, 88%, 92%, 95%, 100% { translate: 0 0; }
  90% { translate: 0 -11px; }
  93.5% { translate: 0 -5px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .25s ease;
}
.btn--primary { background: linear-gradient(135deg, var(--ocean-light), var(--ocean)); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary02 { background: linear-gradient(149deg, #42d5d5, #3f91f7); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(14,107,168,.65); }
.btn--ghost { background: rgba(255,255,255,.82); color: var(--ocean); border: 1.5px solid rgba(255,255,255,.9); }
.btn--ghost:hover { background: #fff; transform: translateY(-3px); }
.btn--sm  { padding: 11px 24px; font-size: 14px; }
.btn--md  { padding: 16px 32px; font-size: 16px; }
.btn--lg  { padding: 17px 40px; font-size: 17px; }
.btn--chip { padding: 12px 18px; border-radius: 14px; font-size: 14px; font-weight: 700; }

.lift { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.lift:hover { transform: translateY(-6px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14,107,168,.10);
  opacity: 0;
  transform: translateY(-18px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .35s ease,
    transform .35s cubic-bezier(.2,.8,.2,1),
    visibility 0s linear .35s;
}
.header.header--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img{display: block;width: 150px;}
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(140deg, #34C0E0, var(--ocean));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(14,107,168,.6);
}
.brand__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(255,255,255,.9); }
.brand__eyebrow { font-size: 11px; letter-spacing: .18em; font-weight: 800; color: var(--aqua); }
.brand__name { font-size: 15px; font-weight: 800; color: var(--text); }
.brand__text { line-height: 1.05; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { position: relative; color: var(--text); font-weight: 600; font-size: 15px; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--accent); transition: width .3s ease; }
.nav__link:hover::after { width: 100%; }

.hotel-header-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(760px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  padding: 8px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14,107,168,.13);
  border-radius: 18px;
  box-shadow: 0 18px 45px -24px rgba(6,59,94,.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition:
    opacity .4s ease,
    transform .45s cubic-bezier(.2,.8,.2,1),
    visibility 0s linear .45s;
}
.hotel-header-nav.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.hotel-header-nav__item {
  min-width: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  overflow: hidden;
  background: rgba(246,252,255,.9);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.hotel-header-nav__item img {
  display: block;
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
}
.hotel-header-nav__item:hover,
.hotel-header-nav__item:focus-visible,
.hotel-header-nav__item.is-active {
  background: #fff;
  border-color: rgba(14,143,208,.38);
  box-shadow: 0 10px 22px -15px rgba(14,107,168,.8);
  transform: translateY(-2px);
  outline: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; padding: 30px 0 150px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: -12% 0 0 0;}
.hero__bg img{width: 100%;}
.hero__sun { position: absolute; top: 8%; left: 50%; transform: translateX(-50%); width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(255,247,214,.9) 0%, rgba(255,228,138,.35) 40%, transparent 70%); filter: blur(6px); }
.cloud { position: absolute; background: rgba(255,255,255,.8); border-radius: 50px; filter: blur(2px); }
.cloud--1 { top: 18%; left: 7%;  width: 150px; height: 54px; animation: floatY 9s ease-in-out infinite; }
.cloud--2 { top: 30%; right: 11%; width: 200px; height: 64px; animation: floatYslow 11s ease-in-out infinite; }
.cloud--3 { top: 13%; right: 26%; width: 96px;  height: 40px; animation: floatY 13s ease-in-out infinite; }

.img-tag { font-family: ui-monospace, Menlo, monospace; font-size: 11px; border-radius: 6px; padding: 5px 10px; }
.hero__imgtag { position: absolute; left: 18px; bottom: 120px; z-index: 3; color: rgba(255,255,255,.85); background: rgba(10,61,98,.28); }

.hero__content { position: relative; z-index: 4; max-width: 1240px; margin: 0 auto; padding: 0 40px; width: 100%; }
.hero__intro { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.hero__logo{width: 250px;display: none;margin: auto;}
.hero__logo img{width: 100%;}
.eyebrow-pill {
  position: absolute;
  top: 10%;
  left: -105px;
  right: auto;
  z-index: 8;
  display: inline-flex;
  width: 220px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(240, 244, 255, 0.6);
  box-shadow: 0 8px 22px -10px rgba(14,107,168,.4);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ocean);
  margin: 0;
  pointer-events: none;
}
.eyebrow-pill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.eyebrow-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero__h1 { font-size: 54px; width: 80%; line-height: 1.18; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.02em; text-shadow: 0 2px 16px rgba(255,255,255,.4); margin: auto;}
.hero__h1 img{width: 100%;}
.hero__h1 span { color: var(--ocean); }
.hero__sub { margin: 0 auto 30px; font-size: 18px; line-height: 1.7; color: #0a4a73; max-width: 680px; font-weight: 500; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.icon--yellow { background: linear-gradient(140deg, var(--accent-soft), #FFC93C); color: #7a5a00; }
.icon--aqua   { background: linear-gradient(140deg, #9DE7F5, var(--aqua)); color: #fff; }
.icon--blue   { background: linear-gradient(140deg, #A8C7FF, var(--ocean)); color: #fff; }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: 110px; z-index: 4; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { position: relative; }
.section-pad { padding-left: 40px; padding-right: 40px; }
.section-head { text-align: center; }
.section-head .eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .18em; color: var(--aqua); }
.section-head h2 { margin: 12px 0; font-size: 40px; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.02em; }
.section-head h2 span { color: var(--ocean); }
.section-head p { font-size: 17px; color: #0a4a73; font-weight: 500; }

/* ============================================================
   PROMOTION BENEFITS — integrated into hero
   ============================================================ */
.promotion { margin-top: 40px; scroll-margin-top: 110px; }
.promotion__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 26px; text-align: left; }
.promotion__head .eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--ocean-deep); opacity: .65; }
.promotion__head h2 { margin: 8px 0 0; font-size: 30px; color: var(--ocean-deep); letter-spacing: -.02em; }
.promotion__head h2 span { color: var(--ocean); }
.promotion__dates { display: flex; gap: 12px; margin: 0; }
.promotion__dates div { min-width: 218px; padding: 13px 21px; border-radius: 17px; background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.94); box-shadow: 0 16px 32px -20px rgba(8,59,94,.55); }
.promotion__dates dt { font-size: 16px; font-weight: 800; color: var(--aqua); }
.promotion__dates dd { margin: 6px 0 0; font-size: 16px; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.01em; }
.promotion__dates dd span{display: block;font-size:12px;}
.promotion__date-note { display: block; margin-top: 4px; font-size: 12px; font-weight: 700; color: rgba(8,59,94,.62); letter-spacing: -.02em; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: grid-template-columns .7s cubic-bezier(.2,.8,.2,1);
}
.benefits__grid article {
  --benefit-image: none;
  position: relative;
  isolation: isolate;
  z-index: 1;
  cursor: pointer;
  height: 280px;
  min-height: 0;
  background-image:
    linear-gradient(
      135deg,
      rgba(255,255,255,.95) 0%,
      rgba(237,248,255,.80) 52%,
      rgba(255,255,255,.90) 100%
    ),
    var(--benefit-image);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgb(197 197 197 / 92%);
  overflow: hidden;
  transition:
    transform .6s cubic-bezier(.2,.8,.2,1),
    box-shadow .6s ease,
    border-color .6s ease;
}
.benefits__grid article:focus-visible { outline: 3px solid rgba(14,107,168,.72); outline-offset: 4px; }
.benefits__grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(14,107,168,.06), rgba(6,59,94,.18));
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}
.benefits__grid article > *:not(.benefit__blob) {
  position: relative;
  z-index: 1;
}
.benefits__grid article.active {
  z-index: 2;
  transform: translateY(-4px);
  background-image:
    linear-gradient(
      90deg,
      rgba(255,255,255,.90) 60%,
      rgba(237,248,255,.62) 90%,
      rgba(255,255,255,.18) 100%
    ),
    var(--benefit-image);
  border-color: #fff;
  box-shadow: 0 30px 62px -24px rgba(6,59,94,.58);
}
.benefits__grid article.active .benefit__num{color: var(--ocean-deep);}
.benefits__grid article.active::after {
  opacity: 1;
}
.benefits__grid article:first-child { --benefit-image: url(../img/hero_img01.jpg); }
.benefits__grid article:nth-child(2) { --benefit-image: url(../img/hero_img03.jpg); }
.benefits__grid article:nth-child(3) { --benefit-image: url(../img/hero_img02.jpg); }

@media (min-width: 981px) {
  .benefits__grid[data-active="1"] { grid-template-columns: 1.8fr 1fr 1fr; }
  .benefits__grid[data-active="2"] { grid-template-columns: 1fr 1.8fr 1fr; }
  .benefits__grid[data-active="3"] { grid-template-columns: 1fr 1fr 1.8fr; }
}
.benefit__blob { position: absolute; z-index: 1; top: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; }
.benefit__blob--yellow { opacity: .18; }
.benefit__blob--aqua { opacity: .16; }
.benefit__blob--blue { opacity: .14; }
.benefit__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.benefit__icon { width: 58px; height: 58px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; }
.benefit__num { font-size: 24px; font-weight: 800; color: #EAF6FF; line-height: 1; transition: all .6s;}
.benefit h3 { margin: 0 0 12px; font-size: 22px; font-weight: 800; color: var(--ocean-deep); }
.benefit p { font-size: 16px; line-height: 1.7; color: var(--muted); font-weight: 700;}
.benefit > p {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity .35s ease,
    transform .48s cubic-bezier(.2,.8,.2,1),
    visibility 0s linear .48s;
  will-change: opacity, transform;
}
.benefit.active > p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: .18s, .18s, 0s;
}
.benefit.active > p:not(.benefit__highlight) {
  transition-delay: .27s, .27s, 0s;
}
.benefit.active > .benefit__highlight {
  transition-delay: .36s, .36s, 0s;
}
.benefit .benefit__highlight { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 13px; border-radius: 12px; color: #075a91; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.95); box-shadow: 0 12px 24px -18px rgba(6,59,94,.55); font-size: 14px; font-weight: 800; line-height: 1.45; }
.benefit__highlight i { color: #f2a900; }

/* ============================================================
   NIGHT FLIGHT GUIDE
   ============================================================ */
.nightflight { padding: 80px 40px 96px; background: linear-gradient(180deg, #E9F7FF, #D6EEFF); }
.nightflight__inner { max-width: 1180px; margin: 0 auto; }
.nightflight__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.nightflight__head .eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .18em; color: var(--aqua); }
.nightflight__head h2 { margin: 12px 0 10px; font-size: 36px; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.02em; }
.nightflight__head p { font-size: 16.5px; color: #0a4a73; font-weight: 500; }
.note-pill { flex: 0 1 470px; min-width: 420px; display: grid; gap: 5px; font-size: 13px; line-height: 1.45; color: #0a4a73; background: rgba(255,255,255,.92); padding: 16px 20px; border: 1px solid rgba(255,255,255,.95); border-radius: 18px; box-shadow: 0 16px 32px -20px rgba(14,107,168,.55); }
.note-pill strong { margin-bottom: 2px; font-size: 14px; font-weight: 900; color: var(--ocean-deep); }
.note-pill span { display: block; font-weight: 600; }
.note-pill b { color: var(--aqua); font-weight: 900; }

.timeline { display: flex; align-items: stretch; margin-bottom: 30px; }
.tl-step { flex: 1; background: var(--card); border-radius: 20px; padding: 24px 22px; box-shadow: 0 20px 44px -28px rgba(8,59,94,.5); border: 1px solid #E4F4FF; }
.tl-step__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tl-step__num { width: 34px; height: 34px; border-radius: 50%; color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.tl-step__date { font-size: 13px; font-weight: 800; color: var(--aqua); }
.tl-step__title { font-size: 17px; font-weight: 800; color: var(--ocean-deep); margin-bottom: 6px; }
.tl-step__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.tl-conn { flex: none; width: 46px; display: flex; align-items: center; justify-content: center; color: #7FC4E8; font-size: 24px; font-weight: 800; }

.note-box { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; justify-content: space-between; background: rgba(255,255,255,.7); border: 1px dashed rgba(14,107,168,.3); border-radius: 18px; padding: 20px 24px; }
.note-box p { font-size: 14px; color: #0a4a73; line-height: 1.6; max-width: 680px; }
.note-box p b { font-weight: 800; color: var(--ocean); }

/* ============================================================
   HOTELS — horizontal scroll
   ============================================================ */
.hotels__intro {
  position: absolute;
  top: 25%;
  left: max(44px, calc((100% - 1180px) / 2 + 44px));
  z-index: 12;
  width: min(560px, calc(100% - 88px));
  padding: 14px 20px 16px;
  transform: none;
  text-align: left;
  background: rgba(255,255,255,.90);
  backdrop-filter: none;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 20px;
  box-shadow: 0 18px 42px -28px rgba(6,59,94,.52);
  pointer-events: none;
}
.hotels__intro .eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .18em; color: var(--aqua); }
.hotels__intro.is-ccp .eyebrow { color: var(--sunset); }
.hotels__intro h2 { margin: 7px 0 5px; font-size: 30px; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.02em; }
.hotels__intro p { font-size: 14px; color: #0a4a73; font-weight: 500; }

.hotels__scroll { position: relative; height: 100vh; overflow: hidden; }
.hotels__track {
  display: flex;
  height: 100vh;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  will-change: transform;
}

.hotel-panel { --hotel-panel-bg: none; --hotel-panel-bg-position: center; position: relative; flex: 0 0 100vw; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; contain: layout paint style; backface-visibility: hidden; background: #d9f2ff; padding-top: 9%;}
.hotel-panel::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--hotel-panel-bg); background-repeat: no-repeat; background-position: var(--hotel-panel-bg-position); background-size: cover; opacity: 0; transform: scale(1.025); transition: opacity 1.05s ease, transform 1.35s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.hotel-panel.bg-visible::before { opacity: 1; transform: scale(1); }
.hotel-panel--1 { --hotel-panel-bg: url(../img/hotels/ttt_bg.jpg); }
.hotel-panel--2 { --hotel-panel-bg: url(../img/hotels/hng_bg.jpg); }
.hotel-panel--3 { --hotel-panel-bg: url(../img/hotels/righa_bg.jpg); --hotel-panel-bg-position: top; }
.hotel-panel--4 { --hotel-panel-bg: url(../img/hotels/pic-bg2.jpg); }
.hotel-panel--5 { --hotel-panel-bg: url(../img/hotels/ht_bg.jpg); }
.hotel-panel--6 { --hotel-panel-bg: url(../img/hotels/ccp_bg.jpg); }

.hotel-panel__imgtag { position: absolute; top: 18px; left: 18px; z-index: 2; color: rgba(6,59,94,.55); background: rgba(255,255,255,.6); }
.hotel-panel__blob { position: absolute; bottom: -30px; left: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.22); filter: blur(4px); }
.hotel-panel__cloud { position: absolute; top: 8%; right: 6%; width: 180px; height: 60px; background: rgba(255,255,255,.55); border-radius: 50px; filter: blur(2px); animation: floatY 12s ease-in-out infinite; }

.hotel-inner { position: relative; z-index: 3; width: 100%; max-width: 1180px; padding: 30px 44px; display: flex; align-items: flex-end; gap: 54px; }
.hotel-text { flex: 1; min-width: 0; }
.hotel-text__num { font-size: 58px; font-weight: 800; color: rgba(255,255,255,.9); line-height: 1; text-shadow: 0 4px 16px rgba(8,59,94,.25); }
.hotel-text__eng { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--ocean-deep); background: rgba(255,255,255,.8); padding: 6px 12px; border-radius: 999px; }
.hotel-text__name { margin: 0 0 12px; font-size: 34px; line-height: 1.25; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.02em; }
.hotel-text__logo{width: 200px;}
.hotel-text__logo img{width: 100%;display: block;}
.hotel-card { position: relative; isolation: isolate; overflow: visible; background: rgba(255,255,255,.93); backdrop-filter: none; border: 1px solid rgba(255,255,255,.9); border-radius: 22px; min-height: 350px; padding: 30px 26px 26px; box-shadow: 0 30px 60px -30px rgba(8,59,94,.5); max-width: 560px; }
.hotel-card::before { content: ""; position: absolute; z-index: -1; bottom: 18px; right: 18px; width: 170px; height: 130px; background-image: var(--hotel-card-logo); background-repeat: no-repeat; background-position: right top; background-size: contain; opacity: .3; pointer-events: none; }
.hotel-card .hotel-text__name { padding-right: 100px; }
.hotel-discount-badge { position: absolute; top: -10%; right: -10%; z-index: 4; width: 150px; filter: drop-shadow(0 10px 10px rgba(126,20,20,.22)); pointer-events: none; }
.hotel-discount-badge > img { display: block; width: 100%; height: auto; }
.hotel-discount-badge__content { position: absolute; top: 50%; left: 50%;transform: translate(-50%, -50%); width: 68.5%; height: 84.3%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; }
.hotel-discount-badge__content span { font-size: 14px; font-weight: 800; line-height: 1; }
.hotel-discount-badge__content strong { margin: 2px 0 0; font-size: 34px; font-weight: 900; line-height: .9; letter-spacing: -.01em; }
.hotel-panel--6 .hotel-discount-badge__content strong{display: flex;gap: 3px;align-items: flex-end;}
.hotel-discount-badge__content em { margin-left: 1px; font-size: 18px; font-style: normal; letter-spacing: -.04em; }
.hotel-discount-badge__content b { margin-top: 3px; font-size: 14px; font-weight: 900; line-height: 1; }

.hotel-panel--1 { --hotel-card-logo: url(../img/hotel_logo/ttt_logo.png); }
.hotel-panel--2 { --hotel-card-logo: url(../img/hotel_logo/hng_logo.png); }
.hotel-panel--3 { --hotel-card-logo: url(../img/hotel_logo/righa_logo.png); }
.hotel-panel--4 { --hotel-card-logo: url(../img/hotel_logo/pic_logo.png); }
.hotel-panel--5 { --hotel-card-logo: url(../img/hotel_logo/ht_logo.png); }
.hotel-panel--6 { --hotel-card-logo: url(../img/hotel_logo/ccp_logo.png); }
.hotel-card__tagline { margin: 0 0 22px; font-size: 17px; line-height: 1.65; font-weight: 600; color: #0a4a73; }
.hotel-card__label { font-size: 12px; font-weight: 800; color: var(--aqua); letter-spacing: .04em; margin-bottom: 10px; }
.hotel-card__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;}
.hotel-card__btns--matrix { display: grid; gap: 9px; }
.hotel-product-row { display: grid; grid-template-columns: minmax(150px, 1.25fr) repeat(2, minmax(112px, 1fr)); gap: 8px; align-items: stretch; }
.hotel-product-row__label { min-height: 44px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8px 12px; border-radius: 12px; background: rgba(234,246,255,.92); border: 1px solid rgba(14,107,168,.14); color: var(--ocean-deep); font-size: 14px; font-weight: 900; line-height: 1.25; }
.hotel-product-row__label small { margin-top: 2px; color: var(--aqua); font-size: 10.5px; font-weight: 800; }
.hotel-card__btns--matrix .btn--chip { display: flex; align-items: center; justify-content: center; min-width: 0; padding: 11px 9px; font-size: 14px; white-space: nowrap; }
.hotel-card__official { background: rgba(255,255,255,.7); color: var(--ocean); border: 1.5px solid rgba(14,107,168,.3); padding: 11px 20px; border-radius: 14px; font-size: 13.5px; font-weight: 800; }
.hotel-card__rate { display: flex; align-items: center; justify-content: center; width: auto; margin: -6px 0 10px; padding: 11px 18px; border: 1.5px solid rgba(255,255,255,.9); border-radius: 14px; background: linear-gradient(135deg, #3fbd22, #2ba110); color: #fff; font-size: 13.5px; font-weight: 900; cursor: pointer; box-shadow: 0 16px 26px -19px rgba(43,161,16,.9); }
.hotel-card__rate:hover, .hotel-card__rate:focus-visible { background: linear-gradient(135deg, #49c92a, #23880d); border-color: #fff; box-shadow: 0 18px 30px -18px rgba(43,161,16,1); transform: translateY(-1px); outline: none; }
.hotel-upgrade-note { display: grid; gap: 8px; margin-top: 14px; padding: 13px 15px; border-radius: 14px; background: rgba(234,246,255,.88); border: 1px solid rgba(14,107,168,.16); color: #0a4a73; box-shadow: inset 0 1px 0 rgba(255,255,255,.72); }
.hotel-upgrade-note p { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; margin: 0; font-size: 13.5px; line-height: 1.48; font-weight: 700; word-break: keep-all; }
.hotel-upgrade-note b { color: var(--ocean-deep); font-weight: 900; }
.hotel-upgrade-note span { color: var(--aqua); font-weight: 900; }
.hotel-upgrade-note small { color: #5f8fa9; font-size: 12px; font-weight: 700; }

.hotel-photo { flex: none; width: min(420px, 45vw); max-width: 45%; }
.hotel-photo__frame { border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 80px -34px rgba(8,59,94,.6); border: 6px solid rgba(255,255,255,.85); }
.hotel-photo__ph { position: relative; aspect-ratio: 4/5; overflow: hidden; background: repeating-linear-gradient(45deg, #F4FBFF, #F4FBFF 14px, #E3F3FF 14px, #E3F3FF 28px); }
.hotel-photo__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .9s ease, transform 3.6s ease; pointer-events: none; }
.hotel-photo__slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.hotel-photo__tag { font-family: ui-monospace, Menlo, monospace; font-size: 11.5px; color: #4a86b0; background: rgba(255,255,255,.85); padding: 6px 12px; border-radius: 8px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  padding: 110px 40px 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(127,208,242,.26), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(255,212,92,.20), transparent 24%),
    linear-gradient(180deg, #f4fbff 0%, #e7f7ff 100%);
}
.faq::before,
.faq::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.faq::before { top: 100px; left: -90px; width: 230px; height: 230px; background: rgba(43,183,201,.08); }
.faq::after { right: -70px; bottom: 70px; width: 190px; height: 190px; border: 34px solid rgba(255,212,92,.12); }
.faq__inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; }
.faq__head { margin-bottom: 44px; text-align: center; }
.faq__head .eyebrow { color: var(--aqua); font-size: 13px; font-weight: 800; letter-spacing: .18em; }
.faq__head h2 { margin: 12px 0 10px; color: var(--ocean-deep); font-size: 40px; font-weight: 900; letter-spacing: -.03em; }
.faq__head p { color: var(--muted); font-size: 16px; font-weight: 600; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(14,107,168,.12);
  border-radius: 22px;
  box-shadow: 0 20px 48px -36px rgba(6,59,94,.58);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease, background .35s ease;
}
.faq__item.is-open {
  background: #fff;
  border-color: rgba(14,143,208,.30);
  box-shadow: 0 26px 54px -34px rgba(6,59,94,.62);
  transform: translateY(-2px);
}
.faq__title { margin: 0; }
.faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  padding: 23px 26px;
  color: var(--ocean-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.faq__question:focus-visible { outline: 3px solid rgba(14,143,208,.48); outline-offset: -4px; border-radius: 20px; }
.faq__num {
  min-width: 48px;
  padding: 8px 10px;
  color: var(--ocean);
  background: #eaf6ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: color .3s ease, background .3s ease;
}
.faq__item.is-open .faq__num { color: #fff; background: linear-gradient(135deg, var(--ocean-light), var(--ocean)); }
.faq__question-text { font-size: 18px; font-weight: 800; line-height: 1.45; letter-spacing: -.015em; }
.faq__toggle { position: relative; width: 34px; height: 34px; border-radius: 50%; background: #edf8ff; transition: background .3s ease, transform .35s ease; }
.faq__toggle::before,
.faq__toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; border-radius: 2px; background: var(--ocean); transform: translate(-50%, -50%); transition: transform .35s ease, background .3s ease; }
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__toggle { background: var(--ocean); transform: rotate(180deg); }
.faq__item.is-open .faq__toggle::before,
.faq__item.is-open .faq__toggle::after { background: #fff; }
.faq__item.is-open .faq__toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq__answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease; }
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; opacity: 1; }
.faq__answer-inner { min-height: 0; overflow: hidden; padding: 0 28px; color: #315f7a; font-size: 15px; line-height: 1.78; }
.faq__item.is-open .faq__answer-inner { padding-bottom: 26px; }
.faq__answer-inner p + p { margin-top: 12px; }
.faq__answer-inner strong { color: var(--ocean-deep); font-weight: 900; }
.faq__schedule { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.faq__schedule span { display: flex; align-items: center; gap: 9px; padding: 11px 15px; color: var(--ocean-deep); background: #eff9ff; border: 1px solid rgba(14,107,168,.12); border-radius: 12px; font-weight: 700; }
.faq__schedule b { color: var(--aqua); font-weight: 900; }
.faq__note { padding: 13px 16px; color: #326b8c; background: rgba(255,212,92,.15); border-radius: 12px; font-size: 13.5px; font-weight: 650; }
.faq__hotel-ages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 16px 0; padding: 0; list-style: none; }
.faq__hotel-ages li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 14px; background: #eff9ff; border-radius: 11px; }
.faq__hotel-ages span { color: #315f7a; font-weight: 700; }
.faq__hotel-ages b { flex: none; color: var(--ocean); font-weight: 900; }
.no-js .faq__answer { grid-template-rows: 1fr; opacity: 1; }
.no-js .faq__answer-inner { padding-bottom: 26px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  padding: 110px 40px;
  overflow: hidden;
  background: linear-gradient(150deg, #f7fdff 30%, #76d2e7 70%, #168fcf 100%);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      150deg,
      rgba(255,255,255,.70) 30%,
      rgba(52,188,224,.30) 70%,
      rgba(14,143,208,.50) 100%
    ),
    url(../img/cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.05s ease, transform 1.35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.cta.bg-visible::before { opacity: 1; transform: scale(1); }
.cta__sun, .cta__cloud { z-index: 1; }
.cta__sun { position: absolute; top: -40px; right: 8%; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,247,214,.8), transparent 70%); }
.cta__cloud { position: absolute; bottom: 10%; left: 6%; width: 170px; height: 56px; background: rgba(255,255,255,.6); border-radius: 50px; filter: blur(2px); animation: floatYslow 10s ease-in-out infinite; }
.cta__inner { position: relative; z-index: 2; max-width: 840px; margin: 0 auto; text-align: center; }
.cta__eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .18em; color: var(--ocean-deep); opacity: .7; }
.cta h2 { margin: 16px 0 18px; font-size: 42px; line-height: 1.3; font-weight: 800; color: var(--ocean-deep); letter-spacing: -.02em; }
.cta__sub { margin: 0 0 34px; font-size: 18px; color: #0a4a73; font-weight: 600; }
.cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn--ghost { background: rgba(255,255,255,.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ocean-deep); color: rgba(255,255,255,.65); padding: 34px 40px; text-align: center; font-size: 13px; }
.footer__brand { font-weight: 800; color: #fff; letter-spacing: .06em; margin-bottom: 8px; }

/* ============================================================
   SNS POPUP
   ============================================================ */
.popup { display: none; position: fixed; inset: 0; z-index: 120; align-items: center; justify-content: center; }
.popup.open { display: flex; }
.popup__overlay { position: absolute; inset: 0; background: rgba(6,59,94,.42); backdrop-filter: blur(4px); }
.popup__card { position: relative; animation: popIn .45s cubic-bezier(.2,.8,.2,1) both; width: 480px; max-width: calc(100% - 40px); background: #fff; border-radius: 28px; padding: 34px 32px 30px; box-shadow: 0 50px 90px -30px rgba(6,59,94,.6); border: 1px solid #E4F4FF; }
.popup__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; border-radius: 50%; background: var(--bg); color: var(--ocean); font-size: 18px; font-weight: 800; cursor: pointer; }
.popup__gift { display: flex; justify-content: center; margin-bottom: 18px; }
.popup__gift-box { width: 250px; height: 100px; border-radius: 22px; display: flex; align-items: center; justify-content: center;}
.popup__gift-box img{width: 100%;height: 100%;object-fit: contain;}
.gift-icon { position: relative; width: 30px; height: 26px; background: #fff; border-radius: 4px; }
.gift-icon::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; border: 3px solid #fff; }
.gift-icon::after { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 4px; height: 26px; background: #FFC93C; }
.popup__body { text-align: center; }
.popup__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--aqua); }
.popup__title { margin: 8px 0 14px; font-size: 23px; font-weight: 800; color: var(--ocean-deep); line-height: 1.35; }
.popup__desc { margin: 0 0 16px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.popup__desc b { font-weight: 800; color: var(--ocean); }
.popup--live .popup__title { font-size: 25px; }
.popup--ccp .popup__gift-box { width: 198px; height: 84px; padding: 0; border: none; border-radius: 16px; background: #fff; }
.popup--ccp .popup__title { margin-top: 4px; font-size: 28px; }
.popup--ccp .popup__desc { word-break: keep-all; }
.popup__desc--ccp { color: var(--ocean-deep); font-size: 16px; font-weight: 800; }
.popup__desc--ccp b { color: #2ba110; font-weight: 900; }
.popup__date { display: inline-flex; align-items: center; justify-content: center; margin: 0 0 16px; padding: 9px 15px; border-radius: 999px; background: #EAF6FF; color: var(--ocean); font-size: 14px; font-weight: 900; }
.popup__desc--live { margin-bottom: 22px; font-size: 17px; line-height: 1.72; color: var(--text); }
.popup__desc--live b { color: #ff6b35; }
.hashtags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-bottom: 18px; }
.hashtags span { font-size: 12px; font-weight: 700; color: var(--ocean); background: #EAF6FF; padding: 6px 11px; border-radius: 999px; }
.popup__note02{color: var(--ocean);margin-bottom: 10px;}
.popup__note02 span{color: #d15900;font-size: 18px;font-weight: 700;margin-bottom: 5px;display: block;}
.popup__note { font-size: 12.5px; color: #88a7bb; margin-bottom: 20px; }
.popup__cta { display: block; text-align: center; padding: 15px; border-radius: 16px; }

/* ============================================================
   NIGHT FLIGHT CONFIRM MODAL
   ============================================================ */
.nightflight-modal { display: none; position: fixed; inset: 0; z-index: 130; align-items: center; justify-content: center; padding: 24px; }
.nightflight-modal.open { display: flex; }
.nightflight-modal__overlay { position: absolute; inset: 0; background: rgba(6,59,94,.50); backdrop-filter: blur(5px); }
.nightflight-modal__card {
  position: relative;
  width: 500px;
  max-width: 100%;
  padding: 36px 34px 32px;
  border: 1px solid rgba(228,244,255,.95);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(93,215,233,.22), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  box-shadow: 0 52px 96px -32px rgba(6,59,94,.66);
  animation: popIn .45s cubic-bezier(.2,.8,.2,1) both;
}
.nightflight-modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; border-radius: 50%; background: #eef8ff; color: var(--ocean); font-size: 19px; font-weight: 900; cursor: pointer; }
.nightflight-modal__icon { width: 62px; height: 62px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 22px; background: linear-gradient(135deg, var(--aqua), var(--ocean)); color: #fff; font-size: 31px; box-shadow: 0 22px 36px -22px rgba(14,107,168,.72); }
.nightflight-modal__body { text-align: center; }
.nightflight-modal__eyebrow { font-size: 12px; font-weight: 900; letter-spacing: .16em; color: var(--aqua); }
.nightflight-modal__title { margin: 8px 0 16px; font-size: 24px; line-height: 1.35; color: var(--ocean-deep); }
.nightflight-modal__desc { margin: 0 0 24px; color: var(--muted); font-size: 15.5px; line-height: 1.78; word-break: keep-all; }
.nightflight-modal__desc b { color: var(--ocean); font-weight: 900; }
.nightflight-modal__desc span { display: none; margin-top: 14px; padding: 11px 13px; border-radius: 12px; background: rgba(255,244,224,.78); color: #b15a00; font-size: 13.5px; font-weight: 800; line-height: 1.55; }
.nightflight-modal__desc span.is-visible { display: block; }
.nightflight-modal__confirm { width: 100%; padding: 16px 20px; border-radius: 16px; font-size: 16px; }
.ccp-rate-modal__card { width: 760px; padding: 34px 34px 30px; }
.ccp-rate-modal__icon { width: 200px; height: 100px; padding: 13px 18px; border-radius: 22px; background: #fff; }
.ccp-rate-modal__icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.ccp-rate-modal__period { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; width: min(430px, 100%); margin: -4px auto 20px; padding: 13px 14px; border-radius: 16px; background: rgba(234,246,255,.88); color: #0a4a73; font-size: 14px; font-weight: 800; line-height: 1.45; word-break: keep-all; }
.ccp-rate-modal__period strong { display: inline-flex; align-items: center; justify-content: center; width: fit-content; margin: 0 auto 2px; padding: 5px 13px; border-radius: 999px; background: #2ba110; color: #fff; font-size: 12.5px; font-weight: 900; }
.ccp-rate-modal__period strong { grid-column: 1 / -1; }
.ccp-rate-modal__period span { display: flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 12px; background: rgba(255,255,255,.78); color: var(--ocean-deep); }
.ccp-rate-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 16px; }
.ccp-rate-group, .ccp-rate-table__item { padding: 18px; border: 1px solid rgba(14,107,168,.15); border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: 0 18px 36px -28px rgba(6,59,94,.58); }
.ccp-rate-group { display: grid; gap: 10px; }
.ccp-rate-group__title { margin-bottom: 4px; padding: 11px 12px; border-radius: 14px; background: #0070e3; color: #fff; font-size: 17px; font-weight: 700; }
.ccp-rate-row { display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 14px; padding: 13px 0; border-top: 1px dashed rgba(14,107,168,.16); }
.ccp-rate-group__title + .ccp-rate-row { border-top: none; padding-top: 2px; }
.ccp-rate-table__head { margin-bottom: 10px; color: var(--ocean-deep); font-size: 15px; font-weight: 900; }
.ccp-rate-table__hotel { display: flex; align-items: center; justify-content: center; min-height: 36px; padding: 8px 10px; border-radius: 12px; background: rgba(234,246,255,.85); color: #427693; font-size: 13px; font-weight: 900; line-height: 1.35; text-align: center; word-break: keep-all; }
.ccp-rate-logos { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 5px; margin-top: -3px; padding: 8px 8px 0; }
.ccp-rate-logos img {display: block;width: 50px;padding: 3px 4px;background: #fff;object-fit: contain; }
.ccp-rate-table__price { display: flex; align-items: center; justify-content: flex-end; gap: 8px; color: var(--ocean); font-weight: 900; white-space: nowrap; }
.ccp-rate-table__price del { color: #8aa9bc; font-size: 17px; text-decoration-thickness: 2px; }
.ccp-rate-table__price span { color: #2ba110; font-size: 18px; }
.ccp-rate-table__price strong { color: #2ba110; font-size: 31px; line-height: 1; letter-spacing: -.03em; }
.ccp-rate-group p, .ccp-rate-table__item p { margin: 0 auto; border-radius: 10px; color: #fff; padding: 5px 15px; width: fit-content; font-size: 13px; font-weight: 700; background: #0070e3; }
.ccp-rate-modal__notes { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); text-align: left; font-size: 13px; font-weight: 700; line-height: 1.55; word-break: keep-all; }
.ccp-rate-modal__notes li { position: relative; padding-left: 16px; }
.ccp-rate-modal__notes li::before { content: "※"; position: absolute; left: 0; color: #2ba110; font-weight: 900; }

/* reopen SNS event card */
.sns-fab { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; align-items: center; gap: 12px; width: 318px; padding: 18px; border: 1px solid rgba(255,255,255,.95); border-radius: 24px; background: rgba(255,255,255,.96); color: var(--ocean); cursor: pointer; box-shadow: 0 28px 56px -22px rgba(8,59,94,.62); text-align: center; backdrop-filter: blur(12px); animation: snsFabBounce 7s ease-in-out infinite; }
.sns-fab:hover { animation-play-state: paused; }
.sns-fab__logo { flex: none; width: 230px; height: 84px; display: flex; align-items: center; justify-content: center; padding: 9px 12px; border-radius: 17px; background: linear-gradient(145deg, #f4fbff, #dff5ff); }
.sns-fab__logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.sns-fab__text { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sns-fab__text small { color: var(--aqua); font-size: 16px; font-weight: 600; letter-spacing: .04em; }
.sns-fab__text strong { color: var(--ocean-deep); font-size: 15px; font-weight: 800; line-height: 1.4; }

/* Desktop fallback when GSAP or JavaScript is unavailable */
.no-gsap .hotels__track,
.no-js .hotels__track { flex-direction: column; height: auto; transform: none !important; }
.no-gsap .hotel-panel,
.no-js .hotel-panel { width: 100%; height: auto; min-height: 92vh; }
.no-gsap .hotels__scroll,
.no-js .hotels__scroll { height: auto; overflow: visible; }
.no-js .benefit > p { opacity: 1; visibility: visible; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { display: block; min-height: 0; padding: 0 0 96px; }
  .hero__bg { inset: 0 0 auto; height: 80vh; overflow: hidden; }
  .hero__bg img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero__content { padding: 0 28px; }
  .hero__intro { height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .promotion { margin-top: 40px; }
  .note-pill { width: 100%; min-width: 0; flex-basis: auto; }
  .eyebrow-pill { top: 0; left: 0; width: 140px; transform: none; }
  .hotels__intro {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 64px 22px 28px;
    transform: none;
    background: var(--bg);
    backdrop-filter: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
  }
  .hotels__track { flex-direction: column; height: auto; transform: none !important; }
  .hotel-panel { flex: none; width: 100%; height: auto; min-height: 92vh; padding-top: 0;}
  .hotels__scroll { height: auto; overflow: visible; }
  .hotel-inner { flex-direction: column; gap: 28px; align-items: center;}
  .nav { display: none; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__grid article.active { transform: scale(1.015); }
  .promotion__head { align-items: flex-start; flex-direction: column; }
  .promotion__dates { width: 100%; }
  .promotion__dates div { flex: 1; min-width: 0; }
  .hero__h1 { font-size: 40px; }
  .section-pad { padding-left: 22px; padding-right: 22px; }
  .hotel-photo { width: 100%; max-width: 420px; }
  .faq { padding: 88px 28px 96px; }
}
@media (max-width: 560px) {
  .hotel-inner{padding: 30px 22px;}
  .hotel-card{width: 100%;min-height: auto;}
  .hero__h1 { font-size: 32px; width: 100%; margin: 30px auto;}
  .hero__content { padding: 0 22px; }
  .eyebrow-pill { width: 100px;left: 50%;top: 10%;transform: translateX(-50%); }
  .promotion { margin-top: 48px; }
  .promotion__head h2 { font-size: 26px; }
  .promotion__dates { flex-direction: column; }
  .benefits__grid article { height: 350px; }
  .hotel-product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hotel-product-row__label { grid-column: 1 / -1; align-items: center; text-align: center; }
  .hotel-card__btns--matrix .btn--chip { white-space: normal; }
  .hotel-card .hotel-text__name { padding-right: 100px; }
  .hotel-discount-badge { top: -8%; right: -18px; width: 100px; }
  .hotel-discount-badge__content span { font-size: 12px; }
  .hotel-discount-badge__content strong { font-size: 22px; }
  .hotel-discount-badge__content em { font-size: 14px; }
  .hotel-discount-badge__content b { font-size: 12px; }
  .sns-fab { right: 12px; bottom: 12px; width: min(286px, calc(100% - 24px)); padding: 15px; display: none;}
  .sns-fab__logo { width: 205px; height: 72px; }
  .timeline { flex-direction: column; }
  .tl-conn { display: none; }
  .header { padding: 12px 18px; }
  .hotel-header-nav {
    top: calc(100% + 7px);
    width: calc(100vw - 20px);
    gap: 4px;
    padding: 6px;
    border-radius: 14px;
    display: none;
  }
  .hotel-header-nav__item { height: 44px; padding: 6px; border-radius: 9px; }
  .hotel-header-nav__item img { max-height: 27px; }
  .section-head h2, .hotels__intro h2, .nightflight__head h2 { font-size: 30px; }
  .cta h2{font-size: 24px;}
  .hotel-text__name{font-size: 28px;}
  .tl-step{margin-bottom: 10px;}
  .benefit > p{visibility: visible;opacity: 1;transform: translateY(0);}
  .benefit__num{color: var(--ocean-deep);}
  .hotel-panel--4 .hotel-card__btns .btn--chip{width: 100%;}
  .ccp-rate-modal { padding: 16px; }
  .ccp-rate-modal__card { padding: 30px 20px 26px; }
  .ccp-rate-modal__icon { width: 150px; height: 76px; padding: 10px 13px; border-radius: 18px; }
  .ccp-rate-modal__period { grid-template-columns: 1fr; width: 100%; }
  .ccp-rate-table { grid-template-columns: 1fr; }
  .ccp-rate-row { grid-template-columns: 1fr; text-align: center; }
  .ccp-rate-table__hotel { text-align: center; }
  .ccp-rate-table__price strong { font-size: 27px; }
  .faq { padding: 72px 18px 80px; }
  .faq__head { margin-bottom: 30px; }
  .faq__head h2 { font-size: 31px; }
  .faq__head p { font-size: 14px; }
  .faq__list { gap: 10px; }
  .faq__item { border-radius: 17px; }
  .faq__question { grid-template-columns: auto minmax(0, 1fr) 30px; gap: 10px; padding: 19px 16px; }
  .faq__num { min-width: 42px; padding: 7px 8px; font-size: 12px; }
  .faq__question-text { font-size: 16px; }
  .faq__toggle { width: 30px; height: 30px; }
  .faq__answer-inner { padding-right: 17px; padding-left: 17px; font-size: 14px; line-height: 1.72; }
  .faq__item.is-open .faq__answer-inner { padding-bottom: 20px; }
  .faq__schedule { display: grid; }
  .faq__schedule span { align-items: flex-start; }
  .faq__hotel-ages { grid-template-columns: 1fr; }
  .faq__hotel-ages li { align-items: flex-start; }
}

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