@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* ═══════════════════════════════════════════
   GNB 공통 스타일 — gnb.css
   index.html의 GNB CSS와 완전히 동일
   모든 페이지에서 <link rel="stylesheet" href="/gnb.css"> 로 불러옴
   ═══════════════════════════════════════════ */

/* ── 기본 상태 (히어로 위: 반투명 어두운 배경) ── */
.gnb-wrap {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  z-index: 9000;
  font-family: 'Noto Sans KR', sans-serif;
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

/* ── scrolled 상태 (크림색) ── */
.gnb-wrap.scrolled {
  background: rgba(250,248,244,0.97);
  border-bottom: 1px solid #e8e0d0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

/* ── GNB TOP ── */
.gnb-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  position: relative;
}
.gnb-top-left {
  display: flex; align-items: center; gap: 0;
  font-size: 13px; letter-spacing: 0.5px; font-weight: 500;
}
.gnb-top-left a {
  color: rgba(28,21,18,0.65); text-decoration: none;
  padding: 0 10px;
  transition: color 0.2s;
}
.gnb-top-left a:hover { color: #1c1512; }
.gnb-top-left .sep { color: rgba(28,21,18,0.25); }

/* ── 로고 ── */
.gnb-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  text-decoration: none;
}
.gnb-logo img { height: 44px; width: auto; display: block; object-fit: contain; }

/* 로고 전환 */
.gnb-logo-black { display: none; }
.gnb-logo-white { display: block; }
.gnb-wrap.scrolled .gnb-logo-black { display: block; }
.gnb-wrap.scrolled .gnb-logo-white { display: none; }

/* ── 투명 상태: 흰 텍스트 + 흰 로고 ── */
.gnb-wrap:not(.scrolled) .gnb-top-left,
.gnb-wrap:not(.scrolled) .gnb-top-left a { color: rgba(255,255,255,0.75); }
.gnb-wrap:not(.scrolled) .gnb-top-left .sep { color: rgba(255,255,255,0.3); }
.gnb-wrap:not(.scrolled) .gnb-top-left a:hover { color: #fff; }
.gnb-wrap:not(.scrolled) .gnb-nav a { color: rgba(255,255,255,0.85); }
.gnb-wrap:not(.scrolled) .gnb-nav a[data-ko]:hover { color: transparent; }
.gnb-wrap:not(.scrolled) .gnb-nav a[data-ko]:hover::after { color: #fff; }
.gnb-wrap:not(.scrolled) .gnb-nav a:hover { color: #fff; }
.gnb-wrap:not(.scrolled) .gnb-nav a.gnb-active { color: #fff; font-weight: 700; }
.gnb-wrap:not(.scrolled) .gnb-bottom { border-top: 1px solid rgba(255,255,255,0.2); }
.gnb-wrap:not(.scrolled) .gnb-sep-line { background: rgba(255,255,255,0.2); }
.gnb-wrap:not(.scrolled) .gnb-btn-room {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.gnb-wrap:not(.scrolled) .gnb-btn-room:hover { background: rgba(255,255,255,0.25); }
.gnb-wrap:not(.scrolled) .gnb-btn-member {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.gnb-wrap:not(.scrolled) .gnb-btn-member:hover { background: rgba(255,255,255,0.2); }
.gnb-wrap:not(.scrolled) .gnb-hamburger span { background: #fff; }
.gnb-wrap:not(.scrolled) .gnb-logo-black { display: none; }
.gnb-wrap:not(.scrolled) .gnb-logo-white { display: block; }

/* ── 우측 버튼 영역 ── */
.gnb-top-right {
  display: flex; align-items: center; gap: 12px;
}

/* ── 객실 예약 버튼 ── */
.gnb-room-wrap { position: relative; }
.gnb-btn-room {
  padding: 9px 18px; border: 1px solid rgba(28,21,18,0.4);
  background: transparent; color: #1c1512;
  font-size: 11px; letter-spacing: 1px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Noto Sans KR', sans-serif;
  white-space: nowrap;
}
.gnb-btn-room:hover { background: #1c1512; color: #fff; border-color: #1c1512; }
.gnb-btn-room .arr { font-size: 9px; margin-left: 4px; transition: transform 0.2s; }
.gnb-btn-room.open .arr { transform: rotate(180deg); }

.gnb-room-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #faf8f4; min-width: 160px;
  border: 1px solid #e8e0d0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 9999;
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.23,1,0.32,1), opacity 0.2s;
  opacity: 0; pointer-events: none;
}
.gnb-room-dropdown.open {
  max-height: 200px; opacity: 1; pointer-events: auto;
}
.gnb-room-dropdown a {
  display: block; padding: 10px 16px;
  color: #1c1512; font-size: 11px; letter-spacing: 0.5px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
  border-bottom: 1px solid #e8e0d0;
}
.gnb-room-dropdown a:last-child { border-bottom: none; }
.gnb-room-dropdown a:hover { background: #e8e0d0; }

/* ── 세미나실 예약 버튼 ── */
.gnb-btn-seminar {
  padding: 9px 18px; border: 1px solid rgba(28,21,18,0.4);
  background: transparent; color: #1c1512;
  font-size: 11px; letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: 'Noto Sans KR', sans-serif;
}
.gnb-btn-seminar:hover { background: #1c1512; color: #fff; border-color: #1c1512; }
.gnb-wrap:not(.scrolled) .gnb-btn-seminar {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.gnb-wrap:not(.scrolled) .gnb-btn-seminar:hover { background: rgba(255,255,255,0.2); }

/* ── 멤버십 버튼 ── */
.gnb-btn-member {
  padding: 9px 18px; border: 1px solid rgba(28,21,18,0.25);
  background: transparent; color: #1c1512;
  font-size: 11px; letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.gnb-btn-member:hover { background: rgba(28,21,18,0.06); }

/* ── 햄버거 ── */
.gnb-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.gnb-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #1c1512; transition: all 0.3s;
}
.gnb-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gnb-hamburger.open span:nth-child(2) { opacity: 0; }
.gnb-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── GNB spacer ── */
.gnb-spacer { height: 0; }

/* ── GNB BOTTOM NAV ── */
.gnb-bottom {
  border-top: 1px solid rgba(28,21,18,0.1);
  padding: 0 40px;
  transition: border-color 0.35s;
}
.gnb-nav {
  display: flex; align-items: center; justify-content: center;
  list-style: none; gap: 0; height: 44px;
}
.gnb-nav li { display: flex; align-items: center; }
.gnb-nav a {
  display: block; padding: 0 18px;
  font-size: 12px; color: #1c1512;
  font-family: 'Noto Sans KR', sans-serif;
  text-decoration: none; letter-spacing: 1.5px;
  line-height: 44px; white-space: nowrap;
  transition: color 0.2s; font-weight: 300;
  text-transform: uppercase;
  position: relative;
}
/* 호버 시 한글 텍스트 전환 */
.gnb-nav a[data-ko]::after {
  content: attr(data-ko);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.gnb-nav a[data-ko]:hover { color: transparent; }
.gnb-nav a[data-ko]:hover::after { opacity: 1; color: #7a6248; }
.gnb-nav a:hover { color: #7a6248; }
.gnb-nav a.gnb-active { color: #1c1512; font-weight: 500; }

.gnb-sep-line {
  display: block; width: 1px; height: 12px;
  background: rgba(28,21,18,0.2); margin: 0 4px;
}

/* ── Offers 드롭다운 ── */
.gnb-offers-wrap { position: relative; display: flex; align-items: center; }
.gnb-offers-btn {
  display: block; padding: 0 18px; font-size: 12px; color: #1a7a9a;
  font-family: 'Noto Sans KR', sans-serif;
  text-decoration: none; letter-spacing: 1.5px; line-height: 44px; white-space: nowrap;
  transition: color 0.2s; font-weight: 500; cursor: pointer;
  text-transform: uppercase;
  position: relative;
}
.gnb-offers-btn[data-ko]::after {
  content: attr(data-ko);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.gnb-offers-btn[data-ko]:hover { color: transparent !important; }
.gnb-offers-btn[data-ko]:hover::after { opacity: 1; color: #0e5f7a; }
.gnb-offers-btn:hover { color: #0e5f7a; }
.gnb-offers-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  /* 스크롤 상태: GNB와 동일한 크림색 반투명 블러 */
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 140px; z-index: 9999;
  overflow: hidden; max-height: 0;
  transition: max-height 0.25s cubic-bezier(0.23,1,0.32,1), opacity 0.2s;
  opacity: 0; pointer-events: none;
  border-top: 2px solid rgba(28,21,18,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.gnb-offers-wrap:hover .gnb-offers-dropdown {
  max-height: 200px; opacity: 1; pointer-events: auto;
}
.gnb-offers-dropdown a {
  display: block; padding: 8px 20px;
  color: #1c1512; font-size: 11px; letter-spacing: 1.2px;
  text-decoration: none; white-space: nowrap; text-align: center;
  text-transform: uppercase; font-weight: 300;
  transition: color 0.15s, background 0.15s;
  border-bottom: 1px solid rgba(28,21,18,0.06);
}
.gnb-offers-dropdown a:last-child { border-bottom: none; }
.gnb-offers-dropdown a:hover { color: #7a6248; background: rgba(28,21,18,0.04); }

/* 드롭다운 하위 링크 data-ko 호버 전환 */
.gnb-offers-dropdown a[data-ko] {
  position: relative;
}
.gnb-offers-dropdown a[data-ko]::after {
  content: attr(data-ko);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  color: #7a6248;
}
.gnb-offers-dropdown a[data-ko]:hover { color: transparent; }
.gnb-offers-dropdown a[data-ko]:hover::after { opacity: 1; }

/* ── 투명 상태(GNB 히어로 위): 드롭다운도 GNB와 동일한 반투명 어두운 배경 ── */
.gnb-wrap:not(.scrolled) .gnb-offers-btn { color: #7dd8f0; }
.gnb-wrap:not(.scrolled) .gnb-offers-btn[data-ko]:hover { color: transparent !important; }
.gnb-wrap:not(.scrolled) .gnb-offers-btn[data-ko]:hover::after { color: #fff; }
.gnb-wrap:not(.scrolled) .gnb-offers-btn:hover { color: #fff; }
.gnb-wrap:not(.scrolled) .gnb-offers-dropdown {
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.gnb-wrap:not(.scrolled) .gnb-offers-dropdown a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gnb-wrap:not(.scrolled) .gnb-offers-dropdown a:last-child { border-bottom: none; }
.gnb-wrap:not(.scrolled) .gnb-offers-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ── MOBILE DRAWER ── */
.gnb-mobile-drawer { display: none; position: fixed; inset: 0; z-index: 9999; }
.gnb-mobile-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0; transition: opacity 0.3s;
}
.gnb-mobile-drawer.open .gnb-mobile-overlay { opacity: 1; }
.gnb-mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: #1c1512; color: #fff;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.gnb-mobile-drawer.open .gnb-mobile-panel { transform: translateX(0); }
.gnb-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gnb-mobile-close {
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}
.gnb-mobile-close svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.7); stroke-width: 1.5; }
.gnb-mobile-nav { list-style: none; padding: 20px 0; flex: 1; }
.gnb-mobile-nav a {
  display: block; padding: 14px 24px;
  color: rgba(255,255,255,0.85); font-size: 14px; letter-spacing: 1px;
  text-decoration: none; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.gnb-mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.gnb-mobile-btn-room {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 12px; letter-spacing: 1px; text-align: center;
  cursor: pointer; margin-bottom: 0;
  font-family: 'Noto Sans KR', sans-serif;
  transition: background 0.2s;
}
.gnb-mobile-btn-room:hover { background: rgba(255,255,255,0.18); }
.gnb-room-btn-arrow {
  width: 10px; height: 10px;
  stroke: #fff; stroke-width: 1.8; fill: none;
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1);
  flex-shrink: 0;
}
.gnb-mobile-room-sub {
  display: flex; flex-direction: column;
  background: #6a5238;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.23,1,0.32,1);
  margin-bottom: 0;
}
.gnb-mobile-room-sub.open {
  max-height: 240px;
  margin-bottom: 0;
}
.gnb-mobile-room-sub a {
  display: block; padding: 11px 20px;
  color: #fff; font-size: 12px; text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s; text-align: center; letter-spacing: 0.5px;
}
.gnb-mobile-room-sub a:hover { background: #5a4228; }

/* ── 모바일 서브 메뉴 아이템 (레거시, 아코디언으로 대체됨) ── */
.gnb-mobile-sub-item a {
  padding: 10px 24px 10px 36px !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
  color: rgba(255,255,255,0.55) !important;
  text-transform: none !important;
}

/* ── 모바일 아코디언 네비 ── */
.gnb-mobile-accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gnb-mobile-accordion-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 24px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.85); font-size: 14px; letter-spacing: 1px;
  font-family: 'Noto Sans KR', sans-serif;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.gnb-mobile-accordion-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.gnb-mobile-accordion-item.open .gnb-mobile-accordion-btn { color: #fff; }
.gnb-acc-arrow {
  width: 10px; height: 10px;
  stroke: rgba(255,255,255,0.6); stroke-width: 1.8; fill: none;
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1);
  flex-shrink: 0;
}
.gnb-mobile-accordion-item.open .gnb-acc-arrow {
  transform: rotate(180deg);
  stroke: #fff;
}
.gnb-mobile-accordion-sub {
  list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.23,1,0.32,1);
  background: rgba(255,255,255,0.04);
}
.gnb-mobile-accordion-sub.open {
  /* max-height는 JS에서 scrollHeight로 동적 설정 */
}
.gnb-mobile-accordion-sub li a {
  display: block; padding: 11px 24px 11px 36px;
  color: rgba(255,255,255,0.65); font-size: 12px; letter-spacing: 0.5px;
  text-decoration: none; text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s, background 0.15s;
}
.gnb-mobile-accordion-sub li:last-child a { border-bottom: none; }
.gnb-mobile-accordion-sub li a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ── 모바일 드로어 상단 링크 (기업제휴 등) ── */
.gnb-mobile-top-links {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.gnb-mobile-top-links a {
  font-size: 11px; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.15s;
  padding: 0 6px;
}
.gnb-mobile-top-links a:hover { color: rgba(255,255,255,0.8); }
.gnb-mobile-top-sep {
  font-size: 10px; color: rgba(255,255,255,0.2);
}

/* ── btns 영역: 예약 버튼 + 서브 + 멤버십 ── */
.gnb-mobile-btns {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
}
.gnb-mobile-btn-member {
  display: block; width: 100%; padding: 13px 16px;
  border: none; border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 1px;
  text-align: center; text-decoration: none;
  transition: background 0.2s; background: transparent;
}
.gnb-mobile-btn-member:hover { background: rgba(255,255,255,0.06); color: #fff; }
.gnb-mobile-btn-seminar {
  display: block; width: 100%; padding: 13px 16px;
  border: none; border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 1px;
  text-align: center; text-decoration: none;
  transition: background 0.2s; background: transparent;
}
.gnb-mobile-btn-seminar:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* ── 반응형 ── */
  @media (max-width: 900px) {
  .gnb-top { padding: 0 16px; height: 60px; }
  .gnb-top-left { display: none !important; }
  .gnb-bottom { display: none !important; }
  .gnb-spacer { height: 0 !important; }
  .gnb-btn-seminar { display: none !important; }

  /* 모바일: 로고 좌측 정렬 */
  .gnb-logo {
    position: static;
    transform: none;
  }
  /* gnb-top: 로고 좌측, 햄버거 우측 */
  .gnb-top {
    justify-content: space-between;
  }
  .gnb-top-right {
    margin-left: auto;
  }

  /* 햄버거: 원형 버튼 */
  .gnb-hamburger {
    display: flex !important;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    position: relative; z-index: 9100;
    pointer-events: auto !important;
    cursor: pointer;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55) !important;
    background: rgba(255,255,255,0.08) !important;
    transition: border-color 0.3s, background 0.3s;
    padding: 0;
    gap: 0;
    /* 회전 없음 */
    transform: none !important;
  }
  /* scrolled 상태: 어두운 테두리 */
  .gnb-wrap.scrolled .gnb-hamburger {
    border-color: rgba(28,21,18,0.45) !important;
    background: rgba(28,21,18,0.05) !important;
  }
  /* open 시 회전 없음 */
  .gnb-hamburger.open { transform: none !important; }

  /* 선 3개: 원(40px) 정중앙 기준으로 균등 배치
     중앙 y = 20px, 간격 5px → 10px / 20px / 30px */
  .gnb-hamburger span {
    position: absolute;
    width: 16px; height: 1.5px;
    left: 50%; margin-left: -8px;   /* width/2 */
    border-radius: 1px;
    transition: top 0.25s cubic-bezier(0.23,1,0.32,1),
                opacity 0.2s,
                transform 0.25s cubic-bezier(0.23,1,0.32,1);
  }
  .gnb-hamburger span:nth-child(1) { top: 12px; transform: none; }
  .gnb-hamburger span:nth-child(2) { top: 19px; transform: none; }
  .gnb-hamburger span:nth-child(3) { top: 26px; transform: none; }

  /* open: 1·3번 선이 중앙(19px)으로 모여 X 형태 */
  .gnb-hamburger.open span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
  }
  .gnb-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .gnb-hamburger.open span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
  }

  .gnb-top-right .gnb-room-wrap,
  .gnb-top-right .gnb-btn-member { display: none !important; }
  .gnb-mobile-drawer {
    display: block !important;
    pointer-events: none;
  }
  .gnb-mobile-drawer.open {
    pointer-events: auto !important;
  }
  .gnb-logo img { height: 36px; width: auto; }
}
@media (max-width: 480px) {
  .gnb-top { padding: 0 12px; height: 56px; }
  .gnb-logo img { height: 32px; width: auto; }
  .gnb-mobile-panel { width: min(300px, 90vw); }
  .gnb-mobile-nav a { padding: 16px 20px; font-size: 13px; }
  .gnb-hamburger {
    width: 36px; height: 36px;
  }
  /* 36px 원: 중앙 y=18px, 간격 5px → 10/18/26 → 실제 11/17/23 */
  .gnb-hamburger span { width: 14px; margin-left: -7px; }
  .gnb-hamburger span:nth-child(1) { top: 11px; }
  .gnb-hamburger span:nth-child(2) { top: 17px; }
  .gnb-hamburger span:nth-child(3) { top: 23px; }
  .gnb-hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
  .gnb-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .gnb-hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }
}

/* ══════════════════════════════════════
   FAB — 플로팅 예약 버튼 (부채꼴 방사형)
   ══════════════════════════════════════ */

/* 전체 컨테이너: 우측 하단 고정 */
/* ── 썸머랜드 예약하기 FAB (네이버 스타일) ── */
.gnb-summer-fab {
  position: fixed;
  right: 32px;
  /* 예약하기 FAB(96px) 바로 위 + 간격 12px */
  bottom: calc(32px + 96px + 12px);
  z-index: 8900;
  width: 96px;
  height: 96px;
  /* 예약하기 FAB 열릴 때 사라지는 트랜지션 */
  transition:
    opacity 0.3s cubic-bezier(0.23,1,0.32,1),
    transform 0.3s cubic-bezier(0.23,1,0.32,1);
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* 예약하기 FAB open 상태에서 썸머랜드 FAB 사라짐 */
body.gnb-fab-open .gnb-summer-fab {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}
.gnb-summer-fab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #03c75a; /* 네이버 그린 */
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(3,199,90,0.35);
  opacity: 0.95;
  transition: background 0.22s, transform 0.22s cubic-bezier(0.23,1,0.32,1), box-shadow 0.22s, opacity 0.22s;
}
.gnb-summer-fab-btn:hover {
  background: #02b350;
  box-shadow: 0 6px 28px rgba(3,199,90,0.5);
  transform: scale(1.08);
  opacity: 1;
}
.gnb-summer-fab-btn:active { transform: scale(0.95); }
.gnb-summer-fab-naver {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.gnb-summer-fab-text {
  font-size: 11px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
/* 모바일 */
@media (max-width: 900px) {
  .gnb-summer-fab {
    right: 16px;
    bottom: calc(20px + 68px + 10px);
    width: 68px;
    height: 68px;
  }
  .gnb-summer-fab-btn {
    width: 68px;
    height: 68px;
  }
  .gnb-summer-fab-naver { width: 20px; height: 20px; }
  .gnb-summer-fab-text { font-size: 9px; }
}

/* ── FAB 플로팅 예약 버튼 ── */
.gnb-fab-wrap {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 8900;
  /* 서브버튼이 절대위치로 펼쳐지므로 컨테이너는 메인버튼 크기만 */
  width: 96px;
  height: 96px;
}

/* 메인 원형 버튼 */
.gnb-fab-btn {
  position: absolute;
  bottom: 0; right: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #221e13;
  border: 1.5px solid #3a3222;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(34,30,19,0.45);
  opacity: 0.9;
  transition: background 0.22s, transform 0.22s cubic-bezier(0.23,1,0.32,1), box-shadow 0.22s, opacity 0.22s;
  z-index: 2;
}
.gnb-fab-btn:hover {
  background: #3a3222;
  box-shadow: 0 6px 28px rgba(34,30,19,0.55);
  transform: scale(1.08);
  opacity: 1;
}
.gnb-fab-btn:active { transform: scale(0.95); opacity: 1; }

/* 키카드 아이콘 */
.gnb-fab-keycard {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.gnb-fab-wrap.open .gnb-fab-keycard {
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
  pointer-events: none;
  position: absolute;
}

/* 예약하기 텍스트 */
.gnb-fab-text {
  font-size: 13px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: #faf8f4;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1;
  transition: opacity 0.25s, transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.gnb-fab-wrap.open .gnb-fab-text {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
  position: absolute;
}

/* X 아이콘 (열린 상태) */
.gnb-fab-btn::before,
.gnb-fab-btn::after {
  content: '';
  position: absolute;
  width: 22px; height: 2px;
  background: #faf8f4;
  border-radius: 2px;
  opacity: 0;
  transform: rotate(0deg) scale(0.5);
  transition: opacity 0.25s 0.05s, transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.gnb-fab-btn::before { transform: rotate(45deg) scale(0.5); }
.gnb-fab-btn::after  { transform: rotate(-45deg) scale(0.5); }
.gnb-fab-wrap.open .gnb-fab-btn::before {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.gnb-fab-wrap.open .gnb-fab-btn::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

/* 서브 원형 버튼 (부채꼴) */
.gnb-fab-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #221e13;
  border: 1.5px solid #3a3222;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(28,21,18,0.22);
  opacity: 0;
  pointer-events: none;
  --fab-sub-base-opacity: 0.9;
  transform: translate(0, 0) scale(0.6);
  transition: opacity 0.28s cubic-bezier(0.23,1,0.32,1),
              transform 0.28s cubic-bezier(0.23,1,0.32,1),
              background 0.18s;
  z-index: 1;
}
.gnb-fab-sub:hover { background: #3a3222; opacity: 1 !important; }
.gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub0:hover { transform: translate(0px, -110px) scale(1.1) !important; }
.gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub1:hover { transform: translate(-78px, -78px) scale(1.1) !important; }
.gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub2:hover { transform: translate(-110px, 0px) scale(1.1) !important; }

/* 서브 버튼 텍스트 */
.gnb-fab-sub-txt {
  font-size: 12px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: #faf8f4;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  padding: 0;
  margin: 0;
}

/* 열림 상태: 부채꼴 배치
   메인버튼 중심 기준 (bottom:36, right:36)
   각도: 90°(위), 135°(좌상), 180°(좌)
   반지름: 90px
*/
/* 버튼0: 위쪽 (90°) → translateX(0) translateY(-90px) */
.gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub0 {
  opacity: 0.9;
  pointer-events: auto;
  transform: translate(0px, -110px) scale(1);
  transition-delay: 0.04s;
}
/* 버튼1: 좌상 (135°) */
.gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub1 {
  opacity: 0.9;
  pointer-events: auto;
  transform: translate(-78px, -78px) scale(1);
  transition-delay: 0.02s;
}
/* 버튼2: 왼쪽 (180°) */
.gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub2 {
  opacity: 0.9;
  pointer-events: auto;
  transform: translate(-110px, 0px) scale(1);
  transition-delay: 0s;
}

/* 모바일 */
@media (max-width: 900px) {
  .gnb-fab-wrap { right: 16px; bottom: 20px; width: 68px; height: 68px; }
  .gnb-fab-btn  { width: 68px; height: 68px; }
  .gnb-fab-keycard { width: 24px; height: 24px; }
  .gnb-fab-text { font-size: 10px; }
  .gnb-fab-sub  { width: 48px; height: 48px; }
  .gnb-fab-sub-txt { font-size: 9px; }
  .gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub0 { transform: translate(0px, -84px) scale(1); }
  .gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub1 { transform: translate(-60px, -60px) scale(1); }
  .gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub2 { transform: translate(-84px, 0px) scale(1); }
  .gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub0:hover { transform: translate(0px, -84px) scale(1.1) !important; }
  .gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub1:hover { transform: translate(-60px, -60px) scale(1.1) !important; }
  .gnb-fab-wrap.open .gnb-fab-sub#gnbFabSub2:hover { transform: translate(-84px, 0px) scale(1.1) !important; }
}
