:root {
  --container: 1200px;
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --text: #181412;
  --muted: #6a625d;
  --line: rgba(24,20,18,0.08);
  --gold: #b9925a;
  --gold-dark: #9a7746;
  --wine: #4b1f24;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0,0,0,0.08);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* 서브페이지 기본 헤더 */
.sub-page .site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* 로고 */
.sub-page .logo {
  color: #111;
}

/* 메뉴 */
.sub-page .gnb a {
  color: #111;
}

/* 모바일 버튼 */
.sub-page .mobile-toggle {
  color: #111;
}

/* 서브페이지 기본 헤더 */
.sub-page .site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* 로고 */
.sub-page .logo {
  color: #111;
}

/* 메뉴 */
.sub-page .gnb a {
  color: #111;
}

/* 모바일 버튼 */
.sub-page .mobile-toggle {
  color: #111;
}

.sub-page .logo-white {
  opacity: 0;
}

.sub-page .logo-dark {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all .35s ease;
}

.logo img {
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: opacity 0.3s ease;
}

.logo {
  position: relative;
  width: 160px; /* 로고 크기에 맞게 조정 */
  height: 40px;
}

/* 기본 (어두운 배경) */
.logo-dark {
  opacity: 0;
}

.logo-white {
  opacity: 1;
}

/* 스크롤 후 */
.site-header.scrolled .logo-white {
  opacity: 0;
}

.site-header.scrolled .logo-dark {
  opacity: 1;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  padding: 14px 0;
}

.header-inner {
  position: relative; /* 👉 기준점 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lang-switcher {
  position: absolute;
  top: 0px;     /* 👉 위로 붙이기 */
  right: 0px;   /* 👉 mobile-toggle 왼쪽 */
  z-index: 1002;

  display: flex;
  gap: 6px;
}

.gnb {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color .3s ease;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 18px;

  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.site-header.scrolled .logo {
  color: #111;
}



.gnb a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: color .3s ease;
}

.site-header.scrolled .gnb a {
  color: #111;
}

.gnb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.gnb a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: #fff;
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: #fff;

  background-image:
    linear-gradient(rgba(20,15,12,.42), rgba(20,15,12,.42)),
    var(--hero-bg);

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 100%;
  opacity: 0;
  transform: translateX(-80px);
  animation: heroSlideRight 1s ease forwards;
  animation-delay: .2s;
}

@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(16px, 2vw, 21px);
  color: rgba(255,255,255,0.88);
  max-width: 80%;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* 우측 고정 (작은 아이콘 느낌) */
.hero-actions {
  position: absolute;
  right: 0px;
  top: 38%;                 /* 👉 중앙보다 살짝 위 */
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-side-img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* hover 효과 */
.hero-actions:hover .hero-side-img {
    transform: scale(1.08);
    opacity: 1;
}

/* 모바일 */
@media (max-width:768px){
    .hero-side-img{
        width:55px;
        height:55px;
    }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: all .25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(185,146,90,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-line {
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.btn-line:hover {
  background: rgba(255,255,255,0.12);
}

/* sections */
.section {
  padding: 120px 0;
}

.section-head {
  margin-bottom: 54px;
}

.section-head.center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}



.section-kicker.light {
  color: rgba(255,255,255,0.82);
}

.section-head h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-head p {
  width: min(100%, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

/* package */
.package-section {
  background: linear-gradient(180deg, #f8f4ef 0%, #f4eee7 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.12);
}

.package-card.featured {
  border: 1px solid rgba(185,146,90,0.35);
}

.package-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24,20,18,0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-thumb {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.package-1 {
  background-image: url('/images/main/13.jpg');
}

.package-2 {
  background-image: url('/images/main/005.jpg');
}

.package-3 {
  background-image: url('/images/main/ssdfsdc.jpg');
}
.package-4 {
  background-image: url('/images/main/08.jpg');
}

.package-body {
  padding: 30px 28px 32px;
}

.package-body h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
  text-align:center;
}

.package-sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.package-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #403835;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.card-link {
  font-weight: 700;
  color: var(--wine);
}

/* gallery */
.gallery-section {
  background: var(--bg-soft);
}

.luxury-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 80px 280px;
  gap: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: 0.4s;
  z-index: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  z-index: 2;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item:hover::before {
  background: rgba(0,0,0,0.4);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 22px;
  font-weight: 600;
}

.gallery-item.large {
  grid-row: 1 / 4;
  
  background-size: cover;
  background-position: top center; /* 👈 이게 핵심 */
}

.gallery-item.small:nth-child(1) {
  
  background-size: cover;
  background-position: center center; /* 👈 이게 핵심 */
}

.gallery-item.small:nth-child(2) {
  
  background-size: cover;
  background-position: center center; /* 👈 이게 핵심 */
}

.gallery-item.small:nth-child(3) {
  
  background-size: cover;
  background-position: center center; /* 👈 이게 핵심 */
}

.gallery-item.small:nth-child(4) {
  /*background-image: url('/images/main/17.jpg');*/
  background-size: cover;
  background-position: center center; /* 👈 이게 핵심 */
}

.gallery-grid.luxury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .gallery-grid.luxury-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery-item {
    min-height: 300px;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-grid.luxury-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-overlay {
    opacity: 1;
    transform: none;
    align-items: flex-end;
    padding: 18px;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0)
    );
  }

  .gallery-overlay h3 {
    margin: 0;
    font-size: 18px;
  }
}


/* reservation */
.reservation-section {
  background: linear-gradient(135deg, #4b1f24, #2f1316);
  color: #fff;
}

.reservation-panel {
  padding: 70px 60px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.reservation-panel h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
}

.reservation-panel p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
}

.fade-up {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.fade-up.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 공통 서브 헤더 */
.sub-header {
  position: relative;
  padding: 140px 0 50px;
  background-color: #f4eee7;
  overflow: hidden;
}

.sub-tail {
  position: relative;
  padding: 80px 0 50px;
  background-color: #f4eee7;
  overflow: hidden;
}



/* 👉 핵심 */
.sub-header-bg {
  position: absolute;
  right: 180px;   /* 일부러 밖으로 빼기 */
  top: 68%;
  transform: translateY(-50%);
  width: 260px;    /* 크기 자유 조절 */
  opacity: 1;
  pointer-events: none; /* 클릭 방지 */
  z-index: 1;

}


/* 텍스트 위로 올리기 */
.sub-header .section-container {
  position: relative;
  z-index: 2;
}

.sub-header h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #222;
  text-align: center;
}

.sub-header-desc {
  margin: 14px 0 0;
  text-align: center;
  font-size: 17px;
  color: #222;
}


/* 어두운 오버레이 */
.sub-header.about-header::before {
  content: "";
  position: absolute;
  inset: 0;  
  background: rgba(210,185,229,0.1);
}

.sub-header.package-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(164,216,214,0.2);
}

.sub-header.gallery-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(173,190,222,0.2);
}

.sub-header.reservation-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(229,213,185,0.2);
}

.sub-header-bg {
  position: absolute;
  right: 180px;
  top: 68%;
  transform: translateY(-50%) translateX(30px); /* 👉 시작 위치 (오른쪽) */

  opacity: 0.0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);

 
  z-index: 1;
  pointer-events: none;
}

/* 등장 상태 */
.sub-header-bg.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* 내용 위로 올리기 */
.sub-header .section-container {
  position: relative;
  z-index: 2;
}

.sub-header .fade-up {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 나타날 때 */
.sub-header .fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 딜레이 (순차 등장) */
.sub-header .delay-1 {
  transition-delay: 0.2s;
}
.sub-header .delay-2 {
  transition-delay: 0.4s;
}

/* select 공통 */
.input-group select {
  width: 100%;
  height: 54px;

  border: 1px solid rgba(24,20,18,0.08);
  border-radius: 16px;

  background: #fff;
  padding: 0 44px 0 16px;

  font-size: 15px;
  color: #181412;

  outline: none;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: border-color .2s ease, box-shadow .2s ease;
}
/* footer */
/* footer */
.footer {
    background:#140f0e;
    color:rgba(255,255,255,0.7);
    padding:40px 0;
    margin-top:-1px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.footer-info {
    text-align:left;
}

.footer-info p {
    margin:0;
    line-height:1.8;
}

.footer-mail {
    color:rgba(255,255,255,0.8);
    text-decoration:none;
    transition:color .2s ease;
}

.footer-mail:hover {
    color:#fff;
    text-decoration:underline;
}


/* 우측 고정 SNS 퀵메뉴 */
.sns-quick-menu {
    position:fixed;
    top:50%;
    right:20px;
    z-index:999;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    transform:translateY(-50%);
}

.sns-quick-link {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:50%;
    font-size:25px;
    text-decoration:none;
    box-shadow:0 5px 18px rgba(0,0,0,.22);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}

.sns-quick-link:hover {
    transform:translateX(-5px) scale(1.08);
    box-shadow:0 8px 24px rgba(0,0,0,.3);
    filter:brightness(1.06);
}


/* Instagram 고유 컬러 */
.sns-instagram {
    color:#fff;
    background:
        radial-gradient(
            circle at 30% 110%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%
        );
}


/* KakaoTalk 고유 컬러 */
.sns-kakao {
    color:#191919;
    background:#fee500;
}


/* WeChat 고유 컬러 */
.sns-wechat {
    color:#fff;
    background:#07c160;
}


/* LINE 고유 컬러 */
.sns-line {
    color:#fff;
    background:#06c755;
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #fff;

  background: rgba(24,20,18,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.3s ease;

  z-index: 999;
}

@media (max-width:768px) {

    .sns-quick-menu {
        right:10px;
        gap:8px;
    }

    .sns-quick-link {
        width:44px;
        height:44px;
        font-size:21px;
        box-shadow:0 4px 14px rgba(0,0,0,.22);
    }

    .sns-quick-link:hover {
        transform:scale(1.05);
    }
}

/* 보여질 때 */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
.scroll-top:hover {
  background: linear-gradient(135deg, #b9925a, #9a7746);
  transform: translateY(-2px);
}

.insta-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);

  color: #fff;

  transition: all 0.3s ease;
}

.insta-link:hover {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  transform: translateY(-2px);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.launch-section {
  background: linear-gradient(180deg, #2f1316 0%, #1f0d0f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.launch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(185,146,90,0.14), transparent 20%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.05), transparent 18%);
  pointer-events: none;
}

.launch-section .container {
  position: relative;
  z-index: 1;
}

.launch-section .section-kicker {
  color: rgba(255,255,255,0.72);
}

.launch-section .section-head h2 {
  color: #fff;
}

.launch-section .section-head p {
  color: rgba(255,255,255,0.78);
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.launch-card {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.launch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.launch-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16 ;
  background: #12090b;
}

.launch-thumb img {
 
  transition: transform 0.35s ease;
}

.launch-card:hover .launch-thumb img {
  transform: scale(1.04);
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 38px;
  height: 38px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(24,20,18,0.65);
  color: #fff;

  font-size: 14px;

  border: 1px solid rgba(255,255,255,0.2);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: all 0.25s ease;
}

.launch-info {
  padding: 16px 18px 18px;
}

.launch-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}


.launch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.launch-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  display: none; /* 처음엔 숨김 */
  object-fit: cover;
  background: #000;
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
  }
  .site-header .header-inner {
    position: relative;
  }

  .gnb {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 20px;
    background: #fff;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .site-header.open .gnb {
    display: flex;
  }

  .site-header.open .gnb a {
    color: #111;
  }

  .lang-switcher {	
	  top: 13px;     /* 👉 위로 붙이기 */
	  right: 70px;   /* 👉 mobile-toggle 왼쪽 */
	  z-index: 1002;

	  display: flex;
	  gap: 6px;
  }
  


  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    cursor: pointer;
  }
}

@media (max-width: 640px) {
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .launch-info {
    padding: 14px 16px 16px;
  }

  .launch-info strong {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .luxury-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 220px 220px;
  }

  .gallery-item.large {
    grid-row: auto;
  }
}

