@charset "utf-8";
  * { box-sizing: border-box; margin: 0; padding: 0; }

/* =========================================
   1. 기본 설정 (Base & Reset)
========================================= */
body {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  background: #f8f9fa;
}

img { 
  max-width: 100%; 
  height: auto; 
}

/* =========================================
   2. 공통 레이아웃 (Layout & Section)
========================================= */
/* 섹션 기본 여백 (PC 기준) */
section {
  padding: 60px 0; 
  background: #fff;
}

section.no-bg { 
  background: none; 
  padding: 40px 0;
}

section img {
  width: 100%;
}

/* 폼 등을 감싸는 중앙 박스 */
.container { 
  max-width: 500px; 
  margin: 0 auto; /* 가운데 정렬 */
  background: #fff; 
  padding: 30px 30px; 
  border-radius: 12px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

.container h2 {
  text-align: center; 
  line-height: 1.3; 
  margin: 20px 0 10px;
  letter-spacing: -1px;
}

.center-logo {
  display: block;
  max-width: 130px;
  width: 100%;       
  margin: 0 auto;    
}

/* 상단 메인 비주얼 */
.mainimg {
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto;
}
.mainimg img {
  width: 100%; 
  display: block;
}

/* =========================================
   3. 타이포그래피 & 공통 헤더 (Typography)
========================================= */
/* 사업개요, 입지안내 등 공통 타이틀 영역 */
.overview-header {
  text-align: center;
  /* 부모 section에서 상하 여백을 주므로 상단 여백은 0으로 설정하여 이중 여백 방지 */
  padding: 0 20px 40px; 
}

.overview-header .main-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark, #222222); 
  margin: 0 0 30px 0;
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
  word-break: keep-all;
}

.overview-header .main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background-color: var(--primary-color, #333333); 
  border-radius: 2px;
}

.overview-header .sub-title-primary {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color, #333333); 
  margin: 0 0 10px 0;
  letter-spacing: -1px;
  word-break: keep-all;
  
}

.overview-header .sub-title-secondary {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-gray, #555555);
  margin: 0;
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.overview-header .highlight-text {
  font-weight: 700;
  color: var(--primary-color, #333333);
}

.overview-header .small-text {
  font-size: 0.85em; 
}

/* 배지 (불타는 이모지) */
.main-title-badge {
  display: table;
  margin: 0 auto 20px;
  padding: 4px 14px 6px;
  border-radius: 50px;
  background: #f4361e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  box-shadow: 0 4px 10px rgba(217, 37, 37, 0.22);
}

.main-title-badge span {
  margin: 0 5px;
  opacity: 0.65;
}


/* =========================================
   4. 입력 폼 & 약관 동의 (Forms)
========================================= */
.form-group { margin-bottom: 15px; }
label { display: block; margin-bottom: 6px; font-weight: bold; }

input[type="text"], input[type="tel"], input[type="date"] { 
  width: 100%; 
  padding: 12px; 
  margin-top: 5px; 
  border: 1px solid #ccc; 
  border-radius: 6px; 
  box-sizing: border-box; 
  font-size: 16px !important; /* iOS 자동확대 방지 */
}

button[type="submit"] { 
  width: 100%; 
  padding: 15px; 
  background: var(--primary-color, #333333); 
  color: white; 
  border: none; 
  border-radius: 6px; 
  font-size: 18px; 
  font-weight: bold; 
  cursor: pointer; 
  margin-top: 20px; 
}
button[type="submit"]:disabled { background: #aaa; }

.required-star { color: #e53e3e; }

/* 약관 영역 */
.privacy-section { font-size: 13px; color: #444; margin-top: 20px; }
.privacy-notice { font-size: 11px; color: #666; line-height: 1.5; margin-bottom: 12px; }
.check-item-row { display: flex; justify-content: space-between; align-items: center; }
.check-item-row label { margin-bottom: 0; font-weight: normal; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.btn-view-terms { background: none; border: none; color: #888; text-decoration: underline; font-size: 12px; cursor: pointer; padding: 0; }

/* 예약 달력 아이콘 (Flatpickr) */
.reservation-form-group { margin-bottom: 15px; }
.lead-form .reservation-display {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px 22px;
  cursor: pointer;
  padding-right: 40px !important;
}

/* =========================================
   5. 모달 팝업 (Modals)
========================================= */
.modal-overlay { 
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
  background: rgba(0,0,0,0.5); z-index: 9999; justify-content: center; align-items: center; 
}
.modal-content { 
  background: #fff; width: 90%; max-width: 450px; padding: 20px; border-radius: 8px; 
  max-height: 80vh; overflow-y: auto; 
}
.modal-content h3 { margin-top: 0; font-size: 18px; color: #111; }
.modal-body { font-size: 13px; color: #555; line-height: 1.6; margin-top: 10px; }
.btn-close-modal { 
  margin-top: 15px; width: 100%; padding: 12px; background: #111; color: #fff; 
  border: none; border-radius: 4px; cursor: pointer; font-size: 15px;
}

/* =========================================
   6. 갤러리 및 슬라이더 (Galleries)
========================================= */
/* 이벤트 배너 */
.event-banner-slider {
  position: relative; overflow: hidden; background: #2b2827; margin: 0; padding: 0;
  user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: grab;
}
.event-banner-slider.is-dragging { cursor: grabbing; }
.event-banner-list { position: relative; width: 100%; aspect-ratio: 2048 / 682; }
.event-banner-slide {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
  opacity: 0; visibility: hidden; transition: opacity 0.9s ease, visibility 0.9s ease;
}
.event-banner-slide.active { opacity: 1; visibility: visible; z-index: 2; pointer-events: auto; }
.event-banner-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }

.event-banner-dots {
  position: absolute; left: 50%; bottom: 12px; z-index: 10; display: flex; gap: 8px; transform: translateX(-50%);
}
.event-banner-dot {
  width: 9px; height: 9px; border: 1px solid rgba(255,255,255,0.9); border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer;
  transition: width 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}
.event-banner-dot.active { width: 24px; border-radius: 10px; background: #ffffff; }

/* 모델하우스 갤러리 */
.model-gallery { width: 100%; max-width: 700px; margin: 0 auto; overflow: hidden; }
.model-gallery-viewport { position: relative; width: 100%; overflow: hidden; background: #f3f1ee; cursor: grab; }
.model-gallery-track { display: flex; width: 100%; transition: transform 0.55s ease; }
.model-gallery-slide { flex: 0 0 100%; width: 100%; }
.model-gallery-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.model-gallery-arrow {
  position: absolute; top: 50%; z-index: 5; width: 48px; height: 48px; border: 0; border-radius: 50%;
  color: #fff; background: rgba(0,0,0,0.42); font-size: 25px; cursor: pointer; transform: translateY(-50%);
}
.model-gallery-prev { left: 16px; }
.model-gallery-next { right: 16px; }
.model-gallery-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding-top: 8px; }
.model-gallery-thumb { position: relative; width: 100%; padding: 0; border: 0; opacity: 0.35; cursor: pointer; transition: opacity 0.3s; }
.model-gallery-thumb.active { opacity: 1; }
.model-gallery-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.model-gallery-thumb::after {
  content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: var(--primary-color, #b87061);
  opacity: 0; transform: scaleX(0); transition: opacity 0.3s, transform 0.3s;
}
.model-gallery-thumb.active::after { opacity: 1; transform: scaleX(1); }

/* =========================================
   6-3. 평면 안내 갤러리 (Floorplan)
========================================= */
.floorplan-gallery {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* 타입 버튼 가로 스크롤 */
.floorplan-type-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 4px 15px 14px;
  overflow-x: auto;
  overflow-y: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 15px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.floorplan-type-buttons::-webkit-scrollbar {
  display: none;
}

.floorplan-type-buttons .floorplan-thumb,
.floorplan-type-btn {
  flex: 0 0 auto;
  min-width: 82px;
  padding: 11px 18px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #f3f3f3;
  color: #777;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0.72;
  scroll-snap-align: center;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.floorplan-type-btn:hover {
  opacity: 1;
}

.floorplan-type-btn.active,
.floorplan-type-btn[aria-selected="true"] {
  border-color: var(--primary-color, #333333);
  background: var(--primary-color, #333333);
  color: #fff;
  opacity: 1;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
}

.floorplan-type-btn span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
}

/* 메인 평면 이미지 */
.floorplan-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  cursor: grab;
  touch-action: pan-y;
}

.floorplan-viewport:active {
  cursor: grabbing;
}

.floorplan-track {
  display: flex;
  gap: 12px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  background: #fff;
  transition: transform 0.5s ease;
}

/* 현재 이미지 약 80% + 다음 이미지 일부 노출 */
.floorplan-slide {
  flex: 0 0 calc(80% - 12px);
  width: calc(80% - 12px);
  min-width: 0;
  background: #fff;
}

.floorplan-slide img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.floorplan-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  padding: 8px 13px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
}

.floorplan-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
}

.floorplan-prev {
  left: 14px;
}

.floorplan-next {
  right: 14px;
}

.floorplan-progress {
  width: calc(100% - 30px);
  height: 7px;
  margin: 14px auto 0;
  overflow: hidden;
  background: #dedede;
}

/* 총 10개 타입 기준 */
.floorplan-progress-bar {
  display: block;
  width: 10%;
  height: 100%;
  background: #333;
  transition: transform 0.4s ease;
}

/* =========================================
   7. 하단 고정바 & 플로팅 버튼 & 푸터
========================================= */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; width: 100%; background-color: #111; padding: 12px 20px;
  box-sizing: border-box; z-index: 9999; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); transition: transform 0.3s ease, opacity 0.3s ease;
}
.bottom-bar.hidden { opacity: 0 !important; transform: translateY(100%) !important; pointer-events: none; }
.bottom-bar-content { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.bottom-bar-text { display: flex; flex-direction: column; color: #fff; }
.bottom-bar-text strong { font-size: 16px; font-weight: bold; margin-bottom: 4px; }
.bottom-bar-text span { font-size: 13px; color: #d1d5db; }
.btn-go-top {
  background-color: #ffcc00; color: #000; border: none; padding: 10px 20px; font-size: 15px;
  font-weight: bold; border-radius: 8px; cursor: pointer; white-space: nowrap; transition: background-color 0.2s;
}
.btn-go-top:hover { background-color: #e6b800; }

.btn-call-floating {
  position: fixed; right: 0; bottom: -5px; width: 56px; height: 56px; background-color: #25d366;
  color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 10000; text-decoration: none; transition: opacity 0.3s;
}
.btn-call-floating.hidden { opacity: 0; pointer-events: none; }
.btn-call-floating svg { width: 30px; height: 30px; }
.call-tooltip {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%); background-color: #111;
  color: #fff; font-size: 12px; font-weight: bold; padding: 5px 10px; border-radius: 20px; white-space: nowrap;
  animation: bounce 1.8s infinite ease-in-out;
}
.call-tooltip::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border-width: 5px; border-style: solid; border-color: #111 transparent transparent transparent;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* 우측 하단 플로팅 액션 그룹 (문자상담 + 대표전화) */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 93px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-actions.hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
/* 그룹 안에서는 개별 버튼의 fixed 위치를 해제하고 flex로 배치 (단독 사용 시엔 기존 .btn-call-floating 위치 그대로 유지) */
/* position: relative로 두어 내부 .call-tooltip(absolute)의 기준점을 버튼 자신으로 유지합니다 */
.floating-actions .btn-call-floating,
.floating-actions .btn-sms-floating {
  position: relative;
}
.btn-sms-floating {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--wine-deep, #4a1329);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* =========================================
   9. 스크롤 등장 애니메이션 (섹션/카드 공통)
   - 요소가 뷰포트에 들어오면 .is-visible이 붙습니다 (common.js의 initScrollReveal 참고)
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.footer-section {
  background-color: #222; color: #888; font-size: 12px; line-height: 1.6;
  padding: 40px 20px 100px; border-top: 1px solid #333;
}
.footer-container { max-width: 1000px; margin: 0 auto; }
.footer-info p { margin: 4px 0; }
.footer-info span { display: inline-block; margin-right: 12px; }
.footer-disclaimer { margin-top: 15px; padding-top: 12px; border-top: 1px solid #333; color: #777; font-size: 11px; }
.footer-copy { margin-top: 15px; color: #555; font-size: 11px; }


/* =========================================
   8. 모바일 반응형 최적화 (@Media Queries)
========================================= */
@media (max-width: 768px) {
  /* 섹션 여백 축소 */
  section { padding: 40px 0; }
  section.no-bg { padding: 70px 0; }
  
  /* 컨테이너 좌우 띄우기 */
  .container { 
    margin: 0 15px; /* 모바일에서 화면 끝에 닿지 않게 여백 추가 */
    padding: 25px 20px; 
  }
  
  /* 공통 타이틀 영역 여백 및 글자 축소 */
  .overview-header { padding: 0 15px 30px; }
  .overview-header .main-title { font-size: 32px; margin-bottom: 25px; }
  .overview-header .sub-title-primary { font-size: 20px; }
  .overview-header .sub-title-secondary { font-size: 15px; }
  .main-title-badge { font-size: 13px; padding: 4px 12px; }
  
  /* 갤러리/슬라이더 모바일 대응 */
  .event-banner-dots { bottom: 7px; gap: 6px; }
  .event-banner-dot { width: 7px; height: 7px; }
  .event-banner-dot.active { width: 20px; }
  
  .model-gallery-arrow { width: 38px; height: 38px; font-size: 20px; }
  .model-gallery-prev { left: 8px; }
  .model-gallery-next { right: 8px; }
  .model-gallery-thumbnails { gap: 4px; padding-top: 4px; }
  
  
  /* 하단 바 축소 */
  .bottom-bar { padding: 12px 15px; }
  .bottom-bar-text strong { font-size: 14px; }
  .bottom-bar-text span { font-size: 11px; }
  .btn-go-top { padding: 10px 12px; font-size: 14px; }
  .call-tooltip { bottom: 48px; padding: 4px 8px; }
  
  .footer-info span { display: block; margin-right: 0; }
}


/* 평면 안내 - 모바일 */
@media (max-width: 768px) {
  .floorplan-gallery {
    padding: 25px 0;
  }

  .floorplan-type-buttons {
    gap: 7px;
    padding: 0 14px 12px;
    scroll-padding-inline: 14px;
  }

  .floorplan-type-buttons .floorplan-thumb,
  .floorplan-type-btn {
    min-width: 70px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .floorplan-track {
    gap: 8px;
    padding: 0 14px;
  }

  .floorplan-slide {
    flex-basis: calc(80% - 8px);
    width: calc(80% - 8px);
  }

  .floorplan-arrow {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .floorplan-prev {
    left: 8px;
  }

  .floorplan-next {
    right: 8px;
  }

  .floorplan-count {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-banner-slide, .event-banner-dot, .model-gallery-track, .floorplan-track { transition: none; }
}


/**자이**/



  /* ---------- 헤더 ---------- */
  .header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    max-width:600px;
  }

  .icon-btn {
    width: 44px; height: 44px;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .icon-btn svg { width: 20px; height: 20px; fill: var(--white); }

  .logo {
    color: var(--white);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo span { font-weight: 400; opacity: 0.75; font-size: 15px; }

.logo img {
  width: 34px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
  /* ---------- 히어로 ---------- */
  .hero {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
  }



  @keyframes fade1 {
    0%   { opacity: 1; }
    43%  { opacity: 1; }
    50%  { opacity: 0; }
    93%  { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes fade2 {
    0%   { opacity: 0; }
    43%  { opacity: 0; }
    50%  { opacity: 1; }
    93%  { opacity: 1; }
    100% { opacity: 0; }
  }

  /* 모션 최소화 설정을 켠 사용자는 정적 이미지로 고정 */
  @media (prefers-reduced-motion: reduce) {
    .hero-bg--1 { opacity: 1; animation: none; }
    .hero-bg--2 { opacity: 0; animation: none; }
  }

  .hero-content {
    position: relative;
    z-index: 10;
    padding: 0 24px;
    margin-top:-100px
  }

  .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: -0.02em;
    color: var(--gold);
    border: 1px solid rgba(201,161,90,0.6);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 18px;
  }

  .headline {
    font-size: clamp(26px, 6.5vw, 40px);
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  }
  .headline .accent { color: var(--gold); }
  .headline .sub { display: block; margin-top: 10px; font-size: clamp(20px, 5vw, 30px); font-weight: 700; }

  /* ---------- CTA ---------- */
  .cta-inline {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    
  }

  .cta-fixed {
    border: 0;
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    z-index: 30;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }

  .scroll-hint {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.05em;
  }


  /* ---------- 프리미엄 6 ---------- */
  .premium {
    background: #f7f4ee;
    padding: 60px 20px 80px;
  }

  .premium-head {
    text-align: center;
    margin-bottom: 36px;
  }

  .premium-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .premium-title {
    font-size: clamp(21px, 5.2vw, 27px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.45;
    color: var(--navy-deep);
  }

  .premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 620px;
    margin: 0 auto;
  }

  .premium-card {
    position: relative;
    border: 1.5px solid var(--gold);
    padding: 24px 12px 28px;
    text-align: center;
    background: #f7f4ee;
  }
  .premium-card.border-navy { border-color: var(--navy); }

  .premium-card .tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #a9906a;
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
  }
  .premium-card.border-navy .tag { color: #4d5a70; }

  .premium-card .desc {
    font-size: 13px;
    color: #6f6f6f;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .premium-card .point {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1.4;
  }

  .premium-icon {
    width: 38px;
    height: 38px;
    margin: 18px auto 0;
  }
  .premium-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .premium-card.border-navy .premium-icon svg { stroke: var(--navy); }
  .premium-card:not(.border-navy) .premium-icon svg { stroke: var(--gold); }

  @media (max-width: 360px) {
    .premium-card { padding: 20px 8px 28px; }
    .premium-card .tag { font-size: 14px; }
  }

    .premium-icon2 {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
  }
  .premium-icon2 svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
    .premium-card2.border-navy .premium-icon2 svg { stroke: var(--navy); }
  .premium-card2:not(.border-navy) .premium-icon2 svg { stroke: var(--gold); }

    @media (max-width: 360px) {
    .premium-card2 { padding: 20px 8px 28px; }
    .premium-card2 .tag { font-size: 14px; }
  }

    .premium-card2 {
    position: relative;
    border: 1.5px solid var(--gold);
    padding: 24px 12px 28px;
    text-align: center;
    background: #f7f4ee;
  }
  .premium-card2.border-navy { border-color: var(--navy); }

  .premium-card2 .tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #a9906a;
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
  }
  .premium-card2.border-navy .tag { color: #4d5a70; }

  .premium-card2 .desc {
    font-size: 12px;
    color: #6f6f6f;
    line-height: 1.5;
    margin-top: 7px;
  }

  .premium-card2 .point {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1.4;
  }

  /* =========================
   OVERVIEW
========================= */

.overview-section {
    width: 100%;
    background: #fff;
    overflow: hidden;
    font-family:
        Pretendard,
        "Noto Sans KR",
        "Apple SD Gothic Neo",
        sans-serif;
}

.overview-inner {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 20px 28px;
    box-sizing: border-box;
}


/* =========================
   TITLE
========================= */

.overview-title-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.overview-title {
    margin: 0;

    color: #07364f;

    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: -0.055em;
}

.overview-subtitle {
    margin: 4px 0 0;

    color: #303030;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;

    letter-spacing: -0.055em;

    word-break: keep-all;
}




/* =========================
   INFORMATION
========================= */

.overview-info {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    column-gap: 27px;
    margin-top: 28px;
    padding:0 15px
}

.overview-info-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================
   INFO ROW
========================= */

.info-row {
    display: flex;
    align-items: flex-start;

    min-width: 0;

    color: #292929;

    font-size: 12px;
    line-height: 1.55;

    letter-spacing: -0.04em;
}


/* 원형 아이콘 */
.info-dot {
    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    margin-top: 7px;
    margin-right: 6px;

    border: 1px solid #333;
    border-radius: 50%;

    box-sizing: border-box;
}


/* 사업명 / 연면적 등 */
.info-label {
    flex: 0 0 auto;

    font-weight: 700;

    white-space: nowrap;
}


/* 세로 구분선 */
.info-line {
    width: 1px;
    height: 12px;

    flex: 0 0 1px;

    margin: 3px 7px 0;

    background: #d1d1d1;
}


/* 내용 */
.info-value {
    min-width: 0;

    font-weight: 400;

    word-break: keep-all;
}

.info-value sup {
    font-size: 0.6em;
    vertical-align: super;
}


/* ==================================================
   500px 이하
================================================== */

@media (max-width: 500px) {

    .overview-inner {
        padding:
            30px
            18px
            35px;
    }


    /* 제목 */
    .overview-title {
        font-size: 22px;
    }

    .overview-subtitle {
        max-width: 380px;

        margin:
            5px
            auto
            0;

        font-size: 15px;
        line-height: 1.4;
    }


    /* overview */
    .overview-bg-text {
        margin-top: 35px;
        margin-left: -5px;

        font-size: 62px;
    }


    /* 1열 */
    .overview-info {
        display: flex;
        flex-direction: column;

        gap: 13px;

        margin-top: 24px;
    }

    .overview-info-column {
        gap: 13px;
    }

    .info-row {
        display: grid;

        grid-template-columns:
            5px
            auto
            1px
            minmax(0, 1fr);

        column-gap: 7px;

        font-size: 13px;
        line-height: 1.55;
    }

    .info-dot {
        width: 5px;
        height: 5px;

        margin:
            7px
            0
            0;
    }

    .info-line {
        height: 14px;

        margin:
            3px
            1px
            0;
    }

}


/* ==================================================
   380px 이하
================================================== */

@media (max-width: 380px) {

    .overview-inner {
        padding:
            27px
            15px
            32px;
    }

    .overview-title {
        font-size: 22px;
    }

    .overview-subtitle {
        font-size: 16px;
    }



    .overview-info {
        margin-top: 22px;
    }

    .info-row {
        font-size: 12px;
        column-gap: 6px;
    }

}

/* =========================
   NATURE SECTION
========================= */


.nature-grid {
    width: calc(100% - 32px);
    max-width: 600px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
    padding:20px 0
}


/* =========================
   CARD
========================= */

.nature-card {
    min-width: 0;

    text-align: center;

    background: #fff;
}


/* =========================
   IMAGE
========================= */

.nature-image {
    width: 100%;
    aspect-ratio: 1.32 / 1;

    overflow: hidden;

    border-radius: 25px;
}

.nature-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================
   CONTENT
========================= */

.nature-content {
    padding: 28px 5px 10px;
}


/* 번호 */
.nature-number {
    position: relative;

    display: inline-block;

    margin-bottom: 16px;

    color: #d4d4d4;

    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}


/* 번호 아래 라인 */
.nature-number::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 1px;
    height: 8px;

    background: #d2d2d2;

    transform: translateX(-50%);
}


/* 제목 */
.nature-title {
    margin: 0;

    color: #07344d;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;

    letter-spacing: -0.055em;

    word-break: keep-all;
}


/* 설명 */
.nature-desc {
    margin: 8px 0 0;

    color: #7d7d7d;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;

    letter-spacing: -0.045em;

    word-break: keep-all;
}

.nature-desc br {
    display: none;
}

.top-bn-event{
    position: absolute;
    bottom: 120px;
    right: 20px;
    width: 122px;
  animation: softBounce 2.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes softBounce {
  0%, 100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(-2px);
  }

  75% {
    transform: translateY(-5px);
  }
}


.commute-section{
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 20px 40px;
    background: #F5F1E8;
    text-align: center;
    font-family: "Noto Sans KR", sans-serif;
  }
  .commute-eyebrow{
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #C9A265;
  }
  .commute-title{
    margin: 0 0 28px;
    font-size: 22px;
    font-weight: 800;
    color: #1B2A4A;
  }
  .commute-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }
  .commute-card{
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #E4DCC8;
    border-left: 4px solid #1B2A4A;
    border-radius: 4px;
    padding: 16px 18px;
  }
  .commute-card--gold{ border-left-color: #C9A265; }
  .commute-card--navy{ border-left-color: #1B2A4A; }

  .commute-icon{
    flex: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F5F1E8;
    color: #1B2A4A;
  }
  .commute-icon svg{ width: 18px; height: 18px; }

  .commute-body{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .commute-name{
    font-size: 15px;
    font-weight: 700;
    color: #1B2A4A;
  }
  .commute-desc{
    margin-top: 2px;
    font-size: 12px;
    color: #8B8578;
  }

  .commute-time{
    flex: none;
    font-family: Georgia, "Noto Serif KR", serif;
    font-weight: 700;
    font-size: 24px;
    color: #C9A265;
  }
  .commute-time em{
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
  }

  .commute-note{
    margin: 18px 0 0;
    font-size: 11px;
    color: #A6A08F;
    text-align: right;
  }

  @media (max-width: 420px){
    .commute-title{ font-size: 19px; }
    .commute-card{ padding: 14px; gap: 10px; }
    .commute-time{ font-size: 20px; }
  }

  /* ==============================
   오산헤리티지자이 사업개요
   ============================== */

.ohx-overview-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 20px 70px;
  box-sizing: border-box;
  background: #fff;
}


/* 상단 제목 */

.ohx-overview-heading {
  margin-bottom: 30px;
}

.ohx-overview-heading-title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  color: #073951;
  letter-spacing: -1px;
}

.ohx-overview-heading-main {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  color: #222;
  letter-spacing: -0.7px;
}

.ohx-overview-heading-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  letter-spacing: -0.4px;
}

.ohx-overview-heading-sub strong {
  color: #073951;
  font-weight: 800;
}


/* 이미지 */

.ohx-overview-image-wrap {
  width: 100%;
  margin-bottom: 35px;
  overflow: hidden;
}

.ohx-overview-image {
  display: block;
  width: 100%;
  height: auto;
}


/* 공통정보 */

.ohx-overview-common {
  margin-bottom: 32px;
  border-top: 2px solid #073951;
}

.ohx-overview-common-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: start;
  padding: 8px 5px;
  border-bottom: 1px solid #ddd;
}

.ohx-overview-common-label {
  position: relative;
  padding-left: 13px;
  font-size: 13px;
  font-weight: 800;
  color: #222;
  letter-spacing: -0.4px;
}

.ohx-overview-common-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #073951;
}

.ohx-overview-common-value {
  padding-left: 18px;
  border-left: 1px solid #d8d8d8;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  letter-spacing: -0.4px;
}


/* 비교표 */

.ohx-overview-compare {
  width: 100%;
  border-top: 2px solid #073951;
  border-bottom: 1px solid #ccc;
}

.ohx-overview-compare-head,
.ohx-overview-compare-row {
  display: grid;
  grid-template-columns: 25% 37.5% 37.5%;
}

.ohx-overview-compare-head {
  background: #073951;
  color: #fff;
}

.ohx-overview-compare-category,
.ohx-overview-compare-block {
  padding: 8px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.ohx-overview-compare-block + .ohx-overview-compare-block {
  border-left: 1px solid rgba(255,255,255,0.25);
}

.ohx-overview-compare-row {
  border-bottom: 1px solid #ddd;
}

.ohx-overview-compare-row:last-child {
  border-bottom: 0;
}

.ohx-overview-compare-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  background: #f6f7f8;
  font-size: 13px;
  font-weight: 800;
  color: #333;
  text-align: center;
}

.ohx-overview-compare-value {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  text-align: center;
  word-break: keep-all;
}

.ohx-overview-compare-value + .ohx-overview-compare-value {
  border-left: 1px solid #e1e1e1;
}

.ohx-overview-compare-value sup {
  font-size: 10px;
}


/* 모바일 */

@media (max-width: 500px) {

  .ohx-overview-section {
    padding: 40px 16px 55px;
  }

  .ohx-overview-heading-title {
    font-size: 25px;
  }

  .ohx-overview-heading-main {
    font-size: 18px;
  }

  .ohx-overview-heading-sub {
    font-size: 13px;
  }

  .ohx-overview-common-row {
    grid-template-columns: 82px 1fr;
    padding: 7px 2px;
  }

  .ohx-overview-common-label {
    font-size: 13px;
  }

  .ohx-overview-common-value {
    padding-left: 13px;
    font-size: 13px;
  }

  .ohx-overview-compare-head,
  .ohx-overview-compare-row {
    grid-template-columns: 23% 38.5% 38.5%;
  }

  .ohx-overview-compare-category,
  .ohx-overview-compare-block {
    padding: 13px 4px;
    font-size: 14px;
  }

  .ohx-overview-compare-label {
    padding: 15px 4px;
    font-size: 12px;
  }

  .ohx-overview-compare-value {
    padding: 7px 5px;
    font-size: 12px;
    letter-spacing: -0.3px;
  }
}


/* =========================================
   FAQ / Q&A
========================================= */

.faq-section {
  padding: 80px 20px;
  background: #f8f7f5;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* 상단 제목 */
.faq-header {
  text-align: center;
  margin-bottom: 45px;
}

.faq-header .faq-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-color, #6e1e3d);
}

.faq-header h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
}

.faq-header p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #777;
}


/* FAQ 리스트 */
.faq-list {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  background: #fff;
}


/* 질문 */
.faq-question {
  position: relative;
  width: 100%;
  padding: 23px 55px 23px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;

  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
}

/* Q 표시 */
.faq-question::before {
  content: "Q.";
  display: inline-block;
  margin-right: 10px;
  color: var(--primary-color, #6e1e3d);
  font-weight: 700;
}


/* + 아이콘 */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 28px;
  font-weight: 300;
  color: var(--primary-color, #6e1e3d);

  transition: transform 0.25s ease;
}


/* 열렸을 때 */
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}


/* 답변 영역 */
.faq-answer {
  display: none;
  padding: 0 25px 25px 54px;

  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.faq-answer p {
  margin: 0;
}


/* 열림 상태 */
.faq-item.active .faq-answer {
  display: block;
}


/* 마우스 올렸을 때 */
.faq-question:hover {
  color: var(--primary-color, #6e1e3d);
}


/* 모바일 */
@media (max-width: 768px) {

  .faq-section {
    padding: 60px 18px;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-header h2 {
    font-size: 25px;
  }

  .faq-header p {
    font-size: 14px;
  }

  .faq-question {
    padding: 20px 45px 20px 15px;
    font-size: 15px;
  }

  .faq-question::after {
    right: 15px;
    font-size: 25px;
  }

  .faq-answer {
    padding: 0 18px 22px 43px;
    font-size: 14px;
    line-height: 1.75;
  }

}

nav {display:none}


/* Flatpickr PC 클릭 안정화 */
.lead-form .reservation-display {
  cursor: pointer !important;
  position: relative;
  z-index: 1;
}

.flatpickr-calendar {
  z-index: 999999 !important;
}

.flatpickr-wrapper{width:100%}