* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  color: #111;
  background: #fff;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(5px);
}

.header-inner {
  height: 78px;
  display: grid;
  grid-template-columns: 260px minmax(760px, 960px) 260px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.logo span,
.footer-logo span {
  background: #54766f;
  color: #fff;
  font-size: 13px;
  padding: 2px 5px;
}

.logo strong {
  font-size: 18px;
  color: #2a1917;
}

.gnb {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.gnb a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
}

.gnb a:hover {
  color: #183b3b;
}

.call-btn {
  background: #173a3c;
  color: #fff;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .5px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.mega-menu {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: rgba(250, 250, 250, .96);
  border-top: 1px solid #eee;
  display: none;
  padding-bottom: 24px;
}

.site-header:hover .mega-menu {
  display: block;
}

.mega-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
  border-left: 1px solid #e9e9e9;
}

.mega-grid div {
  border-right: 1px solid #e9e9e9;
  text-align: center;
  min-height: 250px;
}

.mega-grid a {
  display: block;
  padding: 22px 8px;
  font-size: 16px;
}

.mega-grid a:hover {
  background: #173a3c;
  color: #fff;
}

.mega-grid a.active {
  background: transparent;
  color: inherit;
}

.hero-main {
  height: calc(100vh - 96px);
  min-height: 650px;
  background: url('../img/hero-main.jpg') center center / cover no-repeat;
  background-color: #dff3ff;
  position: relative;
  padding-top: 78px;
  overflow: hidden;
}

.hero-card {
  position: absolute;
  right: 9%;
  top: 260px;
  width: 450px;
  background: rgba(255, 255, 255, .9);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.brand-mini span {
  background: #54766f;
  color: #fff;
  font-size: 14px;
  padding: 2px 5px;
}

.brand-mini strong {
  font-size: 20px;
  margin-left: 5px;
}

.hero-card .desc {
  margin: 28px 0 20px;
  font-size: 20px;
  font-weight: 700;
}

.hero-card h1 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.35;
}

.hero-card h1 strong {
  font-size: 42px;
  color: #173a3c;
}

.hero-card .station {
  background: #173a3c;
  color: #fff;
  border-radius: 6px;
  padding: 20px;
  font-size: 30px;
  font-weight: 800;
}

.main-strip {
  height: 96px;
  background: #191919;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.content-section {
  padding: 95px 20px 120px;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: #173a3c;
  color: #fff;
  padding: 16px 70px;
  font-weight: 700;
}

.content-section h2 {
  margin: 80px 0 30px;
  font-size: 34px;
}

.line {
  width: 1px;
  height: 36px;
  background: #777;
  margin: 0 auto 32px;
}

.lead {
  font-size: 24px;
  line-height: 1.6;
}

.lead strong {
  font-size: 30px;
}

.image-box {
  max-width: 960px;
  margin: 45px auto 0;
}

.image-box img {
  width: 100%;
  display: block;
}

.sub-hero {
  height: 400px;
  margin-top: 78px;
  background: linear-gradient(120deg, #eee9dd, #f7f2e7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero:before {
  content: '';
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 220px;
  height: 260px;
  background: radial-gradient(circle at 35% 20%, #d8d0b8 0 2px, transparent 3px), linear-gradient(#fff, #eee);
  opacity: .55;
  border-radius: 55% 45% 0 0;
}

.breadcrumb {
  color: #777;
  margin-bottom: 26px;
}

.sub-hero h1 {
  font-size: 48px;
  margin: 0 0 25px;
}

.sub-hero p {
  font-size: 19px;
  color: #666;
}

.sub-hero .breadcrumb,
.sub-hero h1,
.sub-hero p {
  opacity: 0;
  letter-spacing: 0.18em;
  transform: translateY(18px);
  animation: subTitleMotion 0.9s ease forwards;
}

.sub-hero .breadcrumb {
  animation-delay: 0.1s;
}

.sub-hero h1 {
  animation-delay: 0.25s;
}

.sub-hero p {
  animation-delay: 0.4s;
}

@keyframes subTitleMotion {
  to {
    opacity: 1;
    letter-spacing: normal;
    transform: translateY(0);
  }
}

.tab-menu {
  display: flex;
  justify-content: center;
  margin: 48px auto 70px;
}

.tab-menu a {
  border: 1px solid #aaa;
  padding: 18px 78px;
}

.tab-menu a.active {
  background: #173a3c;
  color: #fff;
  border-color: #173a3c;
}

.page-content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px 120px;
  text-align: center;
}

.page-image-stack {
  max-width: 1060px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.page-image-stack img {
  width: 100%;
  height: auto;
  display: block;
}

.image-guide {
  margin: 35px auto 0;
  color: #888;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  background: #191919;
  color: #fff;
  padding: 55px 20px 70px;
}

.footer-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-logo {
  display: none;
}

.footer-info dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 20px;
  font-size: 16px;
}

.footer-info dt {
  font-weight: 800;
}

.footer-info dd {
  margin: 0;
  font-weight: 700;
}

.notice,
.copy {
  color: #bbb;
  font-size: 13px;
}

.footer-call {
  font-size: 28px;
  margin-top: 40px;
}

.footer-call strong {
  font-size: 34px;
}

.lead-form-section {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 520px;
  background: #f1f1f1;
}

.lead-form-visual {
  min-height: 520px;
  background: url('../img/sec2.png') center center / cover no-repeat;
}

.lead-form-panel {
  padding: 58px 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-form-head {
  position: relative;
  text-align: center;
  margin-bottom: 42px;
}

.lead-form-head h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 900;
  color: #444;
}

.lead-form-head p {
  margin: 0;
  color: #999;
  font-size: 16px;
}

.lead-form-head span {
  position: absolute;
  right: 0;
  top: 68px;
  color: #b40000;
  font-size: 15px;
  font-weight: 700;
}

.lead-form {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
}

.lead-field {
  height: 54px;
  border: 1px solid #999;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  background: transparent;
}

.lead-field label {
  padding-left: 18px;
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.lead-field label b {
  color: #b40000;
  margin-right: 2px;
}

.lead-field input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: #222;
}

.lead-field input::placeholder {
  color: #aaa;
}

.lead-field input[type="date"] {
  color: #555;
  font-family: inherit;
}

.lead-field--textarea {
  height: 86px;
  align-items: start;
}

.lead-field--textarea label {
  padding-top: 17px;
}

.lead-field textarea {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  padding: 17px 0;
  font-family: inherit;
  font-size: 16px;
  color: #222;
}

.lead-field textarea::placeholder {
  color: #aaa;
}

.lead-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 26px;
  font-size: 15px;
}

.lead-agree strong {
  font-weight: 900;
}

.lead-agree label {
  cursor: pointer;
}

.lead-submit {
  width: 100%;
  height: 76px;
  border: 0;
  border-radius: 3px;
  background: #00665f;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.lead-submit:hover {
  background: #004f4a;
}

.lead-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.lead-result {
  min-height: 22px;
  margin: 14px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.lead-result.ok {
  color: #00665f;
}

.lead-result.error {
  color: #b40000;
}

.reservation-page-content {
  max-width: 1200px;
}

.lead-form-panel--page {
  background: #fff;
  padding: 0 20px 90px;
}

.lead-form-panel--page .lead-form-head span {
  right: 0;
}

.video-wrap {
  max-width: 1060px;
  margin: 45px auto 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mega-title {
  display: none;
}

.mobile-call-btn,
.mobile-bottom-bar,
.mobile-lead-dim,
.mobile-lead-drawer {
  display: none;
}

@media (min-width: 901px) {
  .mega-col {
    border-right: 1px solid #e9e9e9;
    text-align: center;
    min-height: 250px;
  }

  .mega-grid .mega-col:first-child {
    border-left: 0;
  }
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 220px minmax(620px, 760px) 220px;
    padding: 0 24px;
  }

  .gnb {
    font-size: 14px;
  }

  .hero-card {
    right: 4%;
    width: 390px;
  }

  .call-btn {
    font-size: 19px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 0 !important;
  }

  .site-header {
    background: #173a3c;
    backdrop-filter: none;
  }

  .header-inner {
    height: 74px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 48px 1fr 128px;
    gap: 10px;
    align-items: center;
  }

  .logo {
    justify-content: center;
    color: #fff;
    white-space: nowrap;
  }

  .logo strong {
    color: #fff;
    font-size: 18px;
  }

  .logo span {
    font-size: 12px;
    background: #78958e;
  }

  .gnb,
  .call-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .mobile-call-btn {
    display: flex;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #d94712;
    font-size: 21px;
    font-weight: 900;
    box-shadow: inset 0 -3px 7px rgba(0, 0, 0, .14), 0 2px 8px rgba(0, 0, 0, .22);
    white-space: nowrap;
  }

  .site-header:hover .mega-menu {
    display: none;
  }

  .site-header.mobile-open .mega-menu {
    display: block;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    overflow-y: auto;
    background: #333633;
    border-top: 0;
    padding: 22px 24px 120px;
    animation: mobileMenuSlideIn .32s ease forwards;
  }

  @keyframes mobileMenuSlideIn {
    from {
      transform: translateX(-100%);
      opacity: .4;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .mega-grid {
    display: block;
    max-width: none;
    border-left: 0;
  }

  .mega-grid .mega-col {
    min-height: auto;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    text-align: left;
  }

  .mega-title {
    display: flex;
    width: 100%;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px 0 48px;
    border: 0;
    background: transparent;
    color: #d9d1ca;
    font-family: inherit;
    font-size: 23px;
    font-weight: 400;
    cursor: pointer;
  }

  .mega-title::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 3px solid #d9d1ca;
    border-bottom: 3px solid #d9d1ca;
    transform: rotate(45deg);
    margin-top: -7px;
    flex-shrink: 0;
  }

  .mega-col.open .mega-title::after {
    transform: rotate(225deg);
    margin-top: 7px;
  }

  .mega-grid a {
    display: none;
    padding: 17px 34px 17px 48px;
    background: #2d2e2d;
    color: #d9d1ca;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
  }

  .mega-col.open a {
    display: block;
  }

  .mega-grid a:hover {
    background: #2d2e2d;
    color: #fff;
  }

  .hero-main {
    height: auto;
    min-height: 680px;
    padding-top: 66px;
    background-size: cover;
  }

  .hero-card {
    position: static;
    width: calc(100% - 34px);
    margin: 120px auto 0;
    padding: 32px 20px;
  }

  .hero-card h1 {
    font-size: 24px;
  }

  .hero-card h1 strong {
    font-size: 34px;
  }

  .hero-card .station {
    font-size: 24px;
  }

  .sub-hero {
    margin-top: 74px;
    height: 330px;
  }

  .sub-hero h1 {
    font-size: 38px;
  }

  .page-image-stack {
    gap: 24px;
  }

  .footer-inner {
    display: block;
  }

  .footer-info dl {
    grid-template-columns: 90px 1fr;
  }

  .footer-call {
    margin-top: 40px;
  }

  .tab-menu {
    flex-wrap: wrap;
  }

  .tab-menu a {
    padding: 14px 35px;
  }

  .lead-form-section {
    display: block;
  }

  .lead-form-visual {
    min-height: 320px;
  }

  .lead-form-panel {
    padding: 42px 18px 50px;
  }

  .lead-form-head h2 {
    font-size: 28px;
  }

  .lead-form-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .lead-form-head span {
    position: static;
    display: block;
    margin-top: 14px;
    text-align: right;
  }

  .lead-field {
    grid-template-columns: 95px 1fr;
  }

  .lead-field label {
    padding-left: 12px;
    font-size: 14px;
  }

  .lead-field input {
    font-size: 15px;
  }

  .lead-field--textarea {
    height: 92px;
  }

  .lead-field textarea {
    font-size: 15px;
  }

  .lead-form-panel--page {
    padding: 0 0 60px;
  }

  .lead-agree {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .lead-submit {
    height: 64px;
    font-size: 20px;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 72px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, .22);
  }

  .mobile-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-family: inherit;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
  }

  .mobile-bottom-call {
    background: #173a3c;
  }

  .mobile-bottom-reserve {
    background: #00665f;
  }

  .mobile-lead-dim {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .48);
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
  }

  body.mobile-lead-open .mobile-lead-dim {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-lead-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 101;
    width: 86%;
    max-width: 390px;
    display: block;
    background: #fff;
    padding: 34px 20px 40px;
    transform: translateX(-105%);
    transition: transform .32s ease;
    box-shadow: 12px 0 28px rgba(0, 0, 0, .22);
  }

  body.mobile-lead-open .mobile-lead-drawer {
    transform: translateX(0);
  }

  .mobile-lead-close {
    position: absolute;
    right: 16px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-lead-drawer h2 {
    margin: 34px 0 10px;
    font-size: 30px;
    font-weight: 900;
    color: #333;
  }

  .mobile-lead-drawer p {
    margin: 0 0 28px;
    color: #777;
    line-height: 1.5;
    font-size: 15px;
  }

  .mobile-lead-field {
    border: 1px solid #aaa;
    height: 54px;
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    margin-bottom: 12px;
  }

  .mobile-lead-field label {
    padding-left: 12px;
    font-weight: 800;
  }

  .mobile-lead-field label b {
    color: #b40000;
    margin-right: 2px;
  }

  .mobile-lead-field input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 15px;
  }

  .mobile-lead-submit {
    width: 100%;
    height: 62px;
    margin-top: 14px;
    border: 0;
    border-radius: 4px;
    background: #00665f;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
  }
}

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: 44px 1fr 112px;
    padding: 0 14px;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .logo strong {
    font-size: 16px;
  }

  .logo span {
    font-size: 11px;
  }

  .mobile-call-btn {
    height: 42px;
    font-size: 18px;
  }

  .mega-title {
    height: 62px;
    padding-left: 42px;
    padding-right: 24px;
    font-size: 21px;
  }

  .mega-title::after {
    width: 11px;
    height: 11px;
  }

  .mega-grid a {
    padding: 16px 24px 16px 42px;
    font-size: 20px;
  }
}
/* ===========================
   타입안내 버튼
=========================== */

.type-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin:45px 0;
}

.type-tabs button{
    background:#fff;
    border:1px solid #d8d8d8;
    padding:15px 34px;
    font-size:18px;
    font-family:inherit;
    cursor:pointer;
    transition:.25s;
}

.type-tabs button:hover{
    background:#f5f5f5;
}

.type-tabs button.active{
    background:#173a3c;
    color:#fff;
    border-color:#173a3c;
}

.type-image-box{
    margin-top:40px;
}

.type-image-box img{
    width:100%;
    display:block;
}

/* 모바일 */

@media(max-width:900px){

.type-tabs{
    gap:8px;
}

.type-tabs button{
    flex:1 1 calc(33.333% - 8px);
    padding:13px 8px;
    font-size:15px;
}

}

@media(max-width:600px){

.type-tabs button{
    flex:1 1 calc(50% - 8px);
    font-size:14px;
}

}
/* =========================================================
   FINAL FIX - 안정화 버전
========================================================= */

/* 메인 상단 헤더 */
.home-page .site-header {
  background: transparent;
  backdrop-filter: none;
  transition: background .25s ease, backdrop-filter .25s ease;
}

.home-page .site-header .logo strong,
.home-page .site-header .gnb a {
  color: #fff;
  text-shadow: 0 1px 5px rgba(0,0,0,.35);
}

.home-page .site-header:hover,
.home-page .site-header.mobile-open {
  background: rgba(250,250,250,.96);
  backdrop-filter: blur(6px);
}

.home-page .site-header:hover .logo strong,
.home-page .site-header:hover .gnb a {
  color: #111;
  text-shadow: none;
}

.header-inner {
  padding-top: 7px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  height: 48px;
  padding: 0 24px;
  line-height: 1;
  white-space: nowrap;
}

/* 메인 배경 줌아웃 */
.hero-main {
  position: relative !important;
  height: 100vh !important;
  min-height: 720px !important;
  padding-top: 78px !important;
  overflow: hidden !important;
  background: none !important;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/01.png") center center / cover no-repeat;

  transform: scale(1);

  animation: heroZoomInOnly 12s ease-out infinite;

  will-change: transform;

  z-index: 0;
}

@keyframes heroZoomInOnly {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.13);
  }
}

.hero-main::after{
    content:"";
    position:absolute;
    inset:0;
    background:#000;
    opacity:.08;

    pointer-events:none;

    z-index:1;

    animation:heroOverlayDark 12s ease-out infinite;
}
@keyframes heroOverlayDark{

    0%{
        opacity:.01;
    }

    100%{
        opacity:.35;
    }

}

/* 메인 문구 카드 오른쪽 고정 */
.hero-card {
  position: absolute !important;
  right: 9% !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 450px !important;
  z-index: 2 !important;
}

/* 팝업 */
.intro-video-popup,
.main-promo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.intro-video-popup.is-open {
  display: block;
}

.main-promo-popup.is-open {
  display: block;
  animation: promoDownOpen 850ms ease-out forwards;
}

.main-promo-popup.is-open.is-closing {
  animation: promoUpClose 900ms ease-in forwards;
}

@keyframes promoDownOpen {
  from {
    transform: translateY(-120vh);
  }
  to {
    transform: translateY(0);
  }
}

.intro-video-backdrop,
.main-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
}

.intro-video-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, 82vw);
  transform: translate(-50%, -50%);
}

.intro-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.intro-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.intro-video-links {
  width: min(900px, 80%);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.intro-video-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5967ba;
  border-right: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.intro-video-links a:last-child {
  border-right: 0;
  background: #0b2074;
}

/* 메인 팝업 위로 사라짐 */
.main-promo-popup {
  transform: translateY(0);
}

.main-promo-popup.is-closing {
  display: block !important;
  pointer-events: none;
  animation: promoUpClose 900ms ease-in forwards;
}

@keyframes promoUpClose {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-120vh);
  }
}

.main-promo-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1740px, 96vw);
  transform: translate(-50%, -50%);
}

.main-promo-close {
  width: max-content;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  user-select: none;
}

.main-promo-close span {
  margin-left: 4px;
}

.main-promo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.main-promo-card {
  width: min(340px, 18vw);
  min-width: 240px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

.main-promo-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* 태블릿 */
@media (max-width: 1200px) {
  .hero-card {
    right: 4% !important;
    width: 390px !important;
  }
}

/* 모바일 */
@media (max-width: 900px) {
  .home-page .site-header {
    background: #173a3c;
  }

  .home-page .site-header .logo strong {
    color: #fff;
    text-shadow: none;
  }

  .hero-main {
    min-height: 680px !important;
    padding-top: 66px !important;
  }

  .hero-main::before{
    animation:heroZoomInOnly 12s ease-out infinite;
  }

  .hero-card {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 52% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 34px) !important;
    padding: 32px 20px !important;
  }

  .intro-video-box {
    width: calc(100vw - 28px);
  }

  .intro-video-links {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
  }

  .intro-video-links a {
    min-height: 48px;
    font-size: 14px;
  }

  .main-promo-shell {
    width: calc(100vw - 28px);
  }

  .main-promo-wrap {
    max-height: 76vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-promo-card {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   MAIN ONLY - hero text + scroll premium motion section
   기존 공통 페이지 구조에는 영향 없이 index.html 전용으로 사용
========================================================= */

.home-page .hero-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.32);
  padding-top: 40px;
}

.hero-center-copy .hero-kicker,
.hero-center-copy h1,
.hero-center-copy .hero-desc {
  opacity: 0;
  transform: translateY(28px);
  animation-duration: 12s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.hero-center-copy .hero-kicker {
  animation-name: heroTextLoop1;
}

.hero-center-copy h1 {
  animation-name: heroTextLoop2;
}

.hero-center-copy .hero-desc {
  animation-name: heroTextLoop3;
}

@keyframes heroTextLoop1 {
  0% { opacity:0; transform:translateY(28px); }
  6% { opacity:1; transform:translateY(0); }
  76% { opacity:1; transform:translateY(0); }
  84% { opacity:0; transform:translateY(-15px); }
  100% { opacity:0; transform:translateY(-15px); }
}

@keyframes heroTextLoop2 {
  0%, 4% { opacity:0; transform:translateY(28px); }
  10% { opacity:1; transform:translateY(0); }
  78% { opacity:1; transform:translateY(0); }
  86% { opacity:0; transform:translateY(-15px); }
  100% { opacity:0; transform:translateY(-15px); }
}

@keyframes heroTextLoop3 {
  0%, 8% { opacity:0; transform:translateY(28px); }
  14% { opacity:1; transform:translateY(0); }
  80% { opacity:1; transform:translateY(0); }
  88% { opacity:0; transform:translateY(-15px); }
  100% { opacity:0; transform:translateY(-15px); }
}

.hero-center-copy .hero-kicker {
  margin: 0 0 8px;
  font-family: 'Noto Serif KR', 'Nanum Myeongjo', serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: .02em;

}

.hero-center-copy h1 {
  margin: 0 0 26px;
  font-family: 'Noto Serif KR', 'Nanum Myeongjo', serif;
  font-size: clamp(54px, 6.8vw, 94px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .015em;
  
}

.hero-center-copy .hero-desc {
  margin: 0;
  font-family: 'Noto Serif KR', 'Nanum Myeongjo', serif;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.75;
  font-weight: 600;
  
}

@keyframes heroTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-motion-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 120px 20px 150px;
  background: #173a3c;
  color: #fff;
  overflow: hidden;
}

.scroll-motion-section::before {
  content: 'PREMIUM COLLECTION';
  position: absolute;
  left: 50%;
  top: 520px;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(80px, 12vw, 210px);
  letter-spacing: -.04em;
  color: rgba(255,255,255,.055);
  white-space: nowrap;
  pointer-events: none;
}

.scroll-motion-intro {
  max-width: 850px;
  margin: 0 auto 130px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.motion-eyebrow {
  margin: 0 0 18px;
  color: #c69a3b;
  font-size: 14px;
  letter-spacing: .28em;
  font-weight: 700;
}

.scroll-motion-intro h2,
.motion-location h2 {
  margin: 0 0 28px;
  font-family: 'Noto Serif KR', 'Nanum Myeongjo', serif;
  font-size: clamp(32px, 3.2vw, 56px);
  font-weight: 400;
  line-height: 1.25;
}

.scroll-motion-intro p:not(.motion-eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.9;
}

.motion-list {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.motion-item {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  align-items: center;
  gap: 70px;
  margin: 0 auto 120px;
}

.motion-item--reverse {
  grid-template-columns: 1fr minmax(320px, 560px);
}

.motion-item--reverse .motion-image {
  grid-column: 2;
}

.motion-item--reverse .motion-text {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.motion-image {
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 18px 22px 0 rgba(0,0,0,.18);
}

.motion-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(0);
  transform-origin: center center;
  transition: transform .92s cubic-bezier(.17,.84,.28,1.05);
  will-change: transform;
}

.motion-text span,
.motion-text h3,
.motion-text p,
.motion-location .motion-eyebrow,
.motion-location h2,
.motion-location-points > div {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.motion-text span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: .08em;
}

.motion-text h3 {
  margin: 0 0 28px;
  color: #d5a03b;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4.5vw, 74px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.motion-text p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.8;
}

.motion-reveal.in-view .motion-image img {
  transform: scale(1);
}

.motion-reveal.in-view .motion-text span,
.motion-reveal.in-view .motion-location .motion-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

.motion-reveal.in-view .motion-text h3,
.motion-reveal.in-view.motion-location h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .35s;
}

.motion-reveal.in-view .motion-text p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .55s;
}

.motion-location {
  max-width: 1120px;
  margin: 70px auto 0;
  position: relative;
  z-index: 1;
}

.motion-location .motion-eyebrow,
.motion-location h2 {
  text-align: left;
}

.motion-location h2 {
  font-size: clamp(28px, 2.8vw, 46px);
}

.motion-map-wrap {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.motion-map-wrap img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.25s cubic-bezier(.2,.82,.2,1);
}

.motion-reveal.in-view .motion-map-wrap img {
  clip-path: inset(0 0 0 0);
}

.motion-location-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.motion-location-points > div {
  padding-left: 24px;
  border-left: 1px solid rgba(213,160,59,.65);
}

.motion-location-points strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.motion-location-points p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
}

.motion-reveal.in-view .motion-location-points > div:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.55s; }
.motion-reveal.in-view .motion-location-points > div:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.72s; }
.motion-reveal.in-view .motion-location-points > div:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.89s; }
.motion-reveal.in-view .motion-location-points > div:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:1.06s; }

@media (max-width: 900px) {
  .hero-center-copy {
    padding: 0 10px;
  }

  .scroll-motion-section {
    padding: 80px 18px 100px;
  }

  .scroll-motion-intro {
    margin-bottom: 80px;
  }

  .motion-item,
  .motion-item--reverse {
    min-height: auto;
    display: block;
    margin-bottom: 90px;
  }

  .motion-item--reverse .motion-image,
  .motion-item--reverse .motion-text {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .motion-image img {
    height: 300px;
  }

  .motion-text {
    margin-top: 34px;
  }

  .motion-location-points {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME MAIN MOTION - 요청 수정 v3
   1) 첫 섹션 문구 작게 + 상단 배치
   2) 두 번째 섹션이 첫 섹션을 덮으며 올라오는 구조
   3) PREMIUM VALUE 텍스트 순차 모션 반복
========================================================= */

.home-page .hero-main {
  position: sticky !important;
  top: 0 !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

.home-page .hero-center-copy{
    position:absolute;
    left:8%;
    top:50%;
    transform:translateY(-50%);

    width:min(700px,90%);
    text-align:left;

    z-index:5;
}

.home-page .hero-center-copy .hero-kicker {
  font-size: clamp(24px, 2.9vw, 44px) !important;
  margin-bottom: 4px !important;
  line-height: 1.15 !important;
}

.home-page .hero-center-copy h1 {
  font-size: clamp(42px, 5vw, 74px) !important;
  margin-bottom: 18px !important;
  line-height: 1.08 !important;
}

.home-page .hero-center-copy .hero-desc {
  font-size: clamp(15px, 1.25vw, 20px) !important;
  line-height: 1.7 !important;
}

.home-page .scroll-motion-section {
  position: relative !important;
  z-index: 5 !important;
  margin-top: 0 !important;
  background: #173a3c !important;
}

.scroll-motion-intro .motion-eyebrow,
.scroll-motion-intro h2,
.scroll-motion-intro p:not(.motion-eyebrow) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.scroll-motion-intro.in-view .motion-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .12s;
}

.scroll-motion-intro.in-view h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .32s;
}

.scroll-motion-intro.in-view p:not(.motion-eyebrow) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .52s;
}

@media (max-width: 900px) {
  .home-page .hero-main {
    height: calc(100dvh - 64px) !important;
    min-height: 620px !important;
    padding-top: 64px !important;
  }

  .home-page .hero-main::before {
    background-position: center top !important;
    background-size: cover !important;
  }

  .home-page .hero-center-copy {
    left: 50% !important;
    top: 48% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 48px) !important;
    margin-top: 0 !important;
    text-align: center !important;
  }

  .home-page .hero-center-copy .hero-kicker {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  .home-page .hero-center-copy h1 {
    font-size: 38px !important;
    line-height: 1.12 !important;
    margin-bottom: 14px !important;
  }

  .home-page .hero-center-copy .hero-desc {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

  @media (max-width:900px){

  .sub-hero{
      margin-top:64px !important;
  }

  .page-content{
      padding-top:0 !important;
  }

}

/* =========================================================
   HOME OVERLAY STACK FIX
   - 첫 섹션은 두 번째 섹션까지만 sticky
   - 두 번째 섹션이 첫 섹션을 덮고 올라옴
   - 이후 관심고객등록 섹션이 정상적으로 이어짐
========================================================= */
.home-page .home-overlay-stack {
  position: relative;
  background: #173a3c;
  overflow: visible;
}

.home-page .home-overlay-stack .hero-main {
  position: sticky !important;
  top: 0 !important;
  z-index: 1 !important;
}

.home-page .home-overlay-stack .scroll-motion-section {
  position: relative !important;
  z-index: 5 !important;
  margin-top: 0 !important;
}

.home-page .lead-form-section {
  position: relative;
  z-index: 20;
  background: #f1f1f1;
}

.home-page .site-footer {
  position: relative;
  z-index: 20;
}


/* 모바일 하단 상담/핵심문구 디자인 보강 */
@media (max-width: 900px) {
  body {
    padding-bottom: 0 !important;
  }

  .mobile-bottom-bar {
    left: 0;
    right: 0;
    bottom: 0;
    height: 132px;
    display: block;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .mobile-bottom-actions {
    position: absolute;
    left: 8px;
    bottom: 62px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: auto;
  }

  .mobile-bottom-btn {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    flex-direction: column;
    gap: 2px;
    border: 3px solid rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.05;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,.35);
    box-shadow: 0 5px 12px rgba(0,0,0,.32), inset 0 4px 11px rgba(255,255,255,.35), inset 0 -8px 14px rgba(0,0,0,.22);
  }

  .mobile-bottom-icon {
    display: block;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
  }

  .mobile-bottom-call {
    background: radial-gradient(circle at 35% 25%, #ff4d4d 0, #b50000 48%, #4b0000 100%);
}

.mobile-bottom-reserve {
    background: radial-gradient(circle at 35% 25%, #1f8cff 0, #003fbd 48%, #001b63 100%);
}

  .mobile-bottom-promo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    pointer-events: auto;
    background: #102f30;
    border-top: 3px solid #d8bf75;
    border-bottom: 3px solid #d8bf75;
    box-shadow: 0 -4px 14px rgba(0,0,0,.26);
  }

  .mobile-bottom-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 5px 4px;
    border-left: 2px solid #d8bf75;
    border-right: 2px solid #d8bf75;
    background: linear-gradient(180deg, #082526 0%, #15393a 52%, #071f20 100%);
    color: #f8f3d4;
    text-align: center;
    letter-spacing: -1px;
  }

  .mobile-bottom-copy strong {
    display: block;
    color: #fff;
    font-size: clamp(16px, 4.4vw, 23px);
    line-height: 1.05;
    font-weight: 900;
  }

  .mobile-bottom-copy span {
    display: block;
    margin-top: 2px;
    color: #f4d66d;
    font-size: clamp(16px, 4.4vw, 23px);
    line-height: 1.05;
    font-weight: 900;
  }

  .page-content,
  .image-box,
  .type-image-box,
  .motion-map-wrap {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }

  .page-image-stack {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    gap: 14px;
  }

  .page-image-stack img,
  .image-box img,
  .type-image-box img,
  .motion-image img,
  .motion-map-wrap img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .mobile-bottom-actions {
    left: 4px;
    bottom: 60px;
    gap: 6px;
  }

  .mobile-bottom-btn {
    width: 74px;
    height: 74px;
    font-size: 15px;
  }

  .mobile-bottom-icon {
    font-size: 32px;
  }
}

/* =========================================================
   MOBILE HEADER / MENU FIX - PC 영향 없음
   요청사항: 모바일 상단 3분할(카테고리/현장명/전화번호), 모바일 메뉴 전체화면
========================================================= */
@media (max-width: 900px) {
  .site-header,
  .home-page .site-header,
  .home-page .site-header:hover,
  .home-page .site-header.mobile-open {
    background: #173a3c !important;
    backdrop-filter: none !important;
  }

  .header-inner {
    height: 64px !important;
    padding: 0 10px !important;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 96px !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    width: 48px !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 1 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .logo {
    min-width: 0 !important;
    justify-content: center !important;
    gap: 5px !important;
    overflow: hidden !important;
    color: #fff !important;
  }

  .logo span {
    flex: 0 0 auto !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    padding: 2px 4px !important;
    background: #78958e !important;
    color: #fff !important;
  }

  .logo strong,
  .home-page .site-header .logo strong,
  .home-page .site-header:hover .logo strong {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    color: #fff !important;
    text-shadow: none !important;
    font-size: clamp(13px, 4.1vw, 17px) !important;
    line-height: 1.1 !important;
  }

  .gnb,
  .call-btn,
  .home-page .site-header .gnb,
  .home-page .site-header .call-btn {
    display: none !important;
  }

  .mobile-call-btn {
  display: flex !important;
  width: 96px !important;
  height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 96px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff6bf 0%, #f7d56b 35%, #b98618 70%, #fff1a6 100%) !important;
  color: #3b2500 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: -1px !important;
  white-space: nowrap !important;
  border: 1px solid rgba(255, 239, 164, .95) !important;
  box-shadow:
    0 0 8px rgba(255, 218, 90, .75),
    0 0 18px rgba(255, 201, 45, .45),
    inset 0 2px 5px rgba(255,255,255,.65),
    inset 0 -4px 8px rgba(90,55,0,.25) !important;
  animation: goldBlink 1.35s ease-in-out infinite !important;
}

  .site-header:hover .mega-menu,
  .home-page .site-header:hover .mega-menu {
    display: none !important;
  }

  .site-header.mobile-open .mega-menu,
.home-page .site-header.mobile-open .mega-menu {
    display: block !important;
    position: fixed !important;
    z-index: 999 !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100dvh - 64px) !important;
    max-height: calc(100dvh - 64px) !important;
    overflow-y: auto !important;
    background: #2f332f !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    padding: 0 0 120px !important;
    animation: mobileMenuSlideIn .25s ease forwards !important;
}

  .site-header.mobile-open .mega-grid {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .site-header.mobile-open .mega-col {
    min-height: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.16) !important;
    text-align: left !important;
  }

  .site-header.mobile-open .mega-title {
    display: flex !important;
    width: 100% !important;
    height: 68px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 24px !important;
    background: #242824 !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 21px !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
}

  .site-header.mobile-open .mega-title::after {
    display: none !important;
  }

  .site-header.mobile-open .mega-grid a {
  display: none !important;
  width: 100% !important;
  padding: 15px 28px 15px 42px !important;
  background: #333733 !important;
  color: #e6dfd6 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}

.site-header.mobile-open .mega-col.open a {
  display: block !important;
}
}

@media (max-width: 380px) {
  .header-inner {
    grid-template-columns: 44px minmax(0, 1fr) 88px !important;
    gap: 6px !important;
    padding: 0 8px !important;
  }

  .mobile-menu-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 31px !important;
  }

  .mobile-call-btn {
    width: 88px !important;
    flex-basis: 88px !important;
    height: 40px !important;
    font-size: 16px !important;
  }

  .logo span {
    font-size: 9px !important;
    padding: 2px 3px !important;
  }

  .logo strong {
    font-size: 13px !important;
  }
}

/* =========================================================
   MAIN POPUP MOBILE SLIDE - 파일명/PC 레이아웃 영향 없음
   모바일 팝업 하단 숫자 버튼 + 좌우 넘김
========================================================= */
.main-promo-arrow,
.main-promo-dots {
  display: none;
}

@media (max-width: 900px) {
  .main-promo-shell {
    overflow: hidden !important;
  }

  .main-promo-wrap {
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
    transition: transform .32s ease !important;
    touch-action: pan-y !important;
    will-change: transform !important;
  }

  .main-promo-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.38) !important;
  }

  .main-promo-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 12px auto 0 !important;
  }

  .main-promo-dots button {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,.65) !important;
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    padding: 0 !important;
  }

  .main-promo-dots button.active {
    background: #fff !important;
    color: #173a3c !important;
  }

  .main-promo-arrow {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    z-index: 2 !important;
    width: 34px !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateY(-50%) !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: rgba(0,0,0,.32) !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 300 !important;
  }

  .main-promo-prev {
    left: 6px !important;
  }

  .main-promo-next {
    right: 6px !important;
  }
}

@keyframes goldBlink {
  0% {
    filter: brightness(1);
    box-shadow:
      0 0 6px rgba(255, 218, 90, .45),
      0 0 14px rgba(255, 201, 45, .35),
      inset 0 2px 5px rgba(255,255,255,.55),
      inset 0 -4px 8px rgba(90,55,0,.25);
  }

  50% {
    filter: brightness(1.35);
    box-shadow:
      0 0 12px rgba(255, 238, 150, .95),
      0 0 28px rgba(255, 205, 45, .85),
      inset 0 3px 7px rgba(255,255,255,.9),
      inset 0 -4px 8px rgba(90,55,0,.18);
  }

  100% {
    filter: brightness(1);
    box-shadow:
      0 0 6px rgba(255, 218, 90, .45),
      0 0 14px rgba(255, 201, 45, .35),
      inset 0 2px 5px rgba(255,255,255,.55),
      inset 0 -4px 8px rgba(90,55,0,.25);
  }
}

@keyframes bottomBtnShine {
  0% {
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }

  50% {
    filter: brightness(1.45) saturate(1.45);
    transform: scale(1.04);
  }

  100% {
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }
}

@keyframes yellowTextShine {

  0%{
    color:#f4d66d;
    text-shadow:none;
  }

  45%{
    color:#f4d66d;
    text-shadow:none;
  }

  55%{
    color:#ff2b2b;
    text-shadow:none;
  }

  100%{
    color:#f4d66d;
    text-shadow:none;
  }

}

@media (max-width:900px){

.mobile-bottom-call{
    animation:bottomBtnShine 1.2s ease-in-out infinite;
}

.mobile-bottom-reserve{
    animation:bottomBtnShine 1.2s ease-in-out infinite;
    animation-delay:.35s;
}

}

@media (max-width:900px){

.mobile-bottom-copy span{
    animation:yellowTextShine 1.2s ease-in-out infinite;
}

.mobile-bottom-copy:nth-child(2) span{
    animation-delay:.35s;
}

}

@media (max-width:900px){

.site-footer{
    padding:24px 18px 86px !important;
}

.footer-info dl{
    grid-template-columns:72px 1fr !important;
    gap:6px 10px !important;
    font-size:13px !important;
}

.footer-info dt,
.footer-info dd{
    font-size:13px !important;
    line-height:1.35 !important;
}

.notice,
.copy{
    font-size:11px !important;
    line-height:1.45 !important;
}

.footer-call{
    margin-top:22px !important;
    font-size:22px !important;
}

.footer-call strong{
    font-size:30px !important;
}

}
