:root {
  --point: #AC8F78;
  --point-dark: #8B7260;
  --point-light: #C9B8A8;
  --gold: #B8965A;
  --dark: #1a1a1a;
  --darker: #111;
  --gray-900: #222;
  --gray-800: #333;
  --gray-700: #555;
  --gray-600: #777;
  --gray-500: #999;
  --gray-400: #bbb;
  --gray-300: #ddd;
  --gray-200: #eee;
  --gray-100: #f5f5f5;
  --white: #fff;
  --font: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1280px;
  --header-h: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

.inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ==================== HEADER ==================== */
#header {
  position: fixed; top: 0; left: 0; width: 100vw; z-index: 1000;
  height: var(--header-h);
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}
#header.scrolled { background: rgba(0,0,0,0.95); }

.hd-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.hd-logo { display: flex; align-items: center; gap: 8px; }
.hd-logo-main {
  font-size: 20px; font-weight: 700; color: var(--white);
  letter-spacing: 2px;
}

/* GNB */
.gnb-list { display: flex; gap: 0; }
.gnb-item { position: relative; }
.gnb-link {
  display: block; padding: 0 24px; line-height: var(--header-h);
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.gnb-link:hover { color: var(--point-light); }
.gnb-link--point { color: var(--point); font-weight: 600; }
.gnb-link--point:hover { color: var(--point-light); }

.gnb-sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 160px; background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  padding: 8px 0; border-radius: 4px;
  opacity: 0; visibility: hidden; transition: all 0.25s;
}
.gnb-item:hover .gnb-sub { opacity: 1; visibility: visible; }
.gnb-sub li a {
  display: block; padding: 10px 24px; font-size: 14px; color: rgba(255,255,255,0.7);
  transition: all 0.2s; white-space: nowrap;
}
.gnb-sub li a:hover { color: var(--point-light); padding-left: 28px; }

.hd-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--point); font-weight: 500;
}
.hd-tel svg { stroke: var(--point); }

/* Hamburger */
.hd-hamburger {
  display: none; width: 28px; height: 20px;
  flex-direction: column; justify-content: space-between;
}
.hd-hamburger span {
  display: block; height: 2px; background: var(--white);
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -320px; width: 320px; height: 100vh;
  background: var(--darker); z-index: 2000; overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.active { right: 0; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-logo { font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.mobile-nav-close { font-size: 28px; color: var(--gray-500); }

.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-title {
  display: block; padding: 16px 24px; font-size: 15px; font-weight: 600;
  color: var(--white);
}
.mobile-nav-title--point { color: var(--point); }
.mobile-nav-sub { display: none; padding: 0 24px 16px; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub li a {
  display: block; padding: 8px 0 8px 12px; font-size: 14px;
  color: var(--gray-500); transition: color 0.2s;
}
.mobile-nav-sub li a:hover { color: var(--point-light); }
.mobile-nav-tel {
  padding: 24px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-tel span { display: block; font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.mobile-nav-tel a { font-size: 22px; font-weight: 700; color: var(--point); letter-spacing: 1px; }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* Quick Menu */
#quick-menu {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: none;
  background: var(--dark);
}
#quick-menu ul { display: flex; }
#quick-menu li { flex: 1; }
#quick-menu a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 0; color: var(--white); font-size: 14px; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
}
#quick-menu li:last-child a { border-right: none; background: var(--point); }
#quick-menu svg { stroke: currentColor; }

/* ==================== HERO ==================== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slider { width: 100%; height: 100%; }
.hero-slide {
  position: relative; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: absolute; bottom: 15%; left: 0; right: 0; z-index: 2;
  text-align: center; color: var(--white);
}
.hero-sub {
  font-size: 16px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 16px;
}
.hero-title {
  font-size: 52px; font-weight: 300; line-height: 1.3; letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.hero-title strong { font-weight: 700; }
.hero-desc {
  font-size: 17px; font-weight: 300; opacity: 0.8; letter-spacing: 2px;
}

.hero-pagination {
  position: absolute; bottom: 40px !important; z-index: 10;
}
.hero-pagination .swiper-pagination-bullet {
  width: 40px; height: 3px; border-radius: 0; background: rgba(255,255,255,0.4);
  opacity: 1; transition: all 0.3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--white); width: 60px;
}

/* ==================== SECTIONS COMMON ==================== */
.section { padding: 120px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--gray { background: var(--gray-100); }
.section--point { background: var(--point); color: var(--white); }

.sec-header { text-align: center; margin-bottom: 60px; }
.sec-label {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--point); margin-bottom: 12px;
}
.section--dark .sec-label { color: var(--point-light); }
.sec-title {
  font-size: 36px; font-weight: 700; line-height: 1.35;
  letter-spacing: -0.5px;
}
.sec-desc {
  font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-top: 16px;
}
.section--dark .sec-desc { color: var(--gray-400); }

/* ==================== HOME: OVERVIEW INTRO ==================== */
.overview-intro { text-align: center; }
.overview-intro .sec-title { margin-bottom: 24px; }
.overview-stats {
  display: flex; justify-content: center; gap: 60px; margin-top: 50px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 48px; font-weight: 700; color: var(--point);
  line-height: 1; margin-bottom: 8px;
}
.stat-num span { font-size: 28px; font-weight: 400; }
.stat-label { font-size: 15px; color: var(--gray-600); }

/* ==================== HOME: PREMIUM ==================== */
.premium-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.premium-card {
  background: var(--white); border-radius: 12px; padding: 40px 30px;
  text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.premium-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.premium-num {
  font-size: 32px; font-weight: 200; color: var(--point);
  margin-bottom: 16px; letter-spacing: 2px;
}
.premium-card h3 {
  font-size: 19px; font-weight: 700; margin-bottom: 14px; line-height: 1.4;
}
.premium-card p {
  font-size: 14px; color: var(--gray-600); line-height: 1.7;
}

/* ==================== HOME: LOCATION PREVIEW ==================== */
.location-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.location-map {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--gray-200);
}
.location-map img { width: 100%; height: 100%; object-fit: cover; }
.location-info h3 {
  font-size: 28px; font-weight: 700; margin-bottom: 20px; line-height: 1.4;
}
.location-list { margin-top: 20px; }
.location-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 15px; color: var(--gray-700);
}
.location-list li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--point); margin-top: 8px;
}
.location-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 30px; font-size: 15px; font-weight: 600; color: var(--point);
  transition: gap 0.2s;
}
.location-more:hover { gap: 12px; }

/* ==================== HOME: PLANS PREVIEW ==================== */
.plans-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.plans-tab {
  padding: 10px 24px; border: 1px solid var(--gray-300);
  border-radius: 30px; font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.plans-tab.active,
.plans-tab:hover { background: var(--point); color: var(--white); border-color: var(--point); }

.plans-preview-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.plans-image {
  background: var(--gray-900); border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.plans-image img { max-width: 90%; max-height: 90%; object-fit: contain; }
.plans-image .no-img {
  font-size: 15px; color: var(--gray-500); text-align: center; padding: 40px;
}

.plans-info-table { width: 100%; }
.plans-info-table tr { border-bottom: 1px solid var(--gray-200); }
.plans-info-table th {
  padding: 14px 0; font-size: 14px; font-weight: 600;
  color: var(--gray-600); text-align: left; width: 120px;
}
.plans-info-table td {
  padding: 14px 0; font-size: 15px; font-weight: 500;
}
.plans-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 30px; font-size: 15px; font-weight: 600; color: var(--point);
  transition: gap 0.2s;
}
.plans-more:hover { gap: 12px; }

/* ==================== HOME: CTA RESERVATION ==================== */
.cta-reservation { text-align: center; }
.cta-reservation .sec-title { color: var(--white); margin-bottom: 16px; }
.cta-reservation .sec-desc { color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.cta-phone {
  font-size: 42px; font-weight: 700; color: var(--white);
  letter-spacing: 2px; margin-bottom: 30px;
}
.cta-phone a { color: var(--white); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 48px; background: var(--white); color: var(--point);
  font-size: 16px; font-weight: 600; border-radius: 50px;
  transition: all 0.3s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ==================== GALLERY GRID ==================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-item {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray-200);
}
.gallery-item--lg { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-grid--2x3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--2x3 .gallery-item { aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; font-size: 13px; font-weight: 600; color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}

/* ==================== PAGE HERO (SUB) ==================== */
.page-hero {
  position: relative; height: 400px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  margin-top: var(--header-h);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.page-hero h2 { font-size: 40px; font-weight: 700; margin-bottom: 8px; }
.page-hero p { font-size: 16px; opacity: 0.8; letter-spacing: 1px; }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0; background: var(--gray-100); border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
.breadcrumb-list a { color: var(--gray-600); }
.breadcrumb-list .current { color: var(--point); font-weight: 600; }

/* ==================== OVERVIEW PAGE ==================== */
.overview-table-wrap { margin-top: 40px; }
.overview-table {
  width: 100%; border-collapse: collapse;
  border-top: 2px solid var(--dark);
}
.overview-table th,
.overview-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
  font-size: 15px; text-align: left;
}
.overview-table th {
  background: var(--gray-100); font-weight: 600; width: 160px;
  color: var(--gray-800);
}

/* ==================== LOCATION PAGE ==================== */
.location-map-full {
  width: 100%; aspect-ratio: 16/9; border-radius: 12px;
  overflow: hidden; margin-bottom: 40px; background: var(--gray-200);
}
.location-map-full img { width: 100%; height: 100%; object-fit: cover; }
.location-transport { margin-top: 60px; }
.transport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.transport-card {
  padding: 30px; background: var(--gray-100); border-radius: 12px; text-align: center;
}
.transport-card .icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--point); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.transport-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.transport-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ==================== PREMIUM PAGE ==================== */
.premium-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.premium-detail-card {
  padding: 40px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; transition: border-color 0.3s;
}
.premium-detail-card:hover { border-color: var(--point); }
.premium-detail-card .num {
  font-size: 36px; font-weight: 200; color: var(--point); margin-bottom: 12px;
}
.premium-detail-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.premium-detail-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ==================== PLANS PAGE ==================== */
.plans-type-tabs { display: flex; gap: 0; margin-bottom: 40px; border-bottom: 2px solid var(--gray-200); }
.plans-type-tab {
  padding: 14px 32px; font-size: 15px; font-weight: 600;
  color: var(--gray-500); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s;
}
.plans-type-tab.active { color: var(--point); border-bottom-color: var(--point); }
.plans-type-tab:hover { color: var(--point-dark); }

.plans-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.plans-drawing {
  background: var(--gray-900); border-radius: 12px; overflow: hidden;
  padding: 40px; text-align: center; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.plans-drawing img { max-width: 100%; }
.plans-spec h3 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.plans-spec-table { width: 100%; }
.plans-spec-table tr { border-bottom: 1px solid var(--gray-200); }
.plans-spec-table th {
  padding: 14px 0; font-size: 14px; color: var(--gray-600);
  font-weight: 500; text-align: left; width: 120px;
}
.plans-spec-table td { padding: 14px 0; font-size: 15px; font-weight: 600; }
.plans-features { margin-top: 24px; }
.plans-features li {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; font-size: 14px; color: var(--gray-700);
}
.plans-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--point); flex-shrink: 0;
}

/* ==================== COMPLEX PAGE ==================== */
.complex-wrap { text-align: center; }
.complex-image {
  width: 100%; border-radius: 12px; overflow: hidden;
  background: var(--gray-200); margin-top: 30px;
}
.complex-image img { width: 100%; }

/* ==================== COMMUNITY PAGE ==================== */
.community-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.community-card {
  border-radius: 12px; overflow: hidden; background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.community-card-img {
  aspect-ratio: 16/10; background: var(--gray-200); overflow: hidden;
}
.community-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.community-card:hover .community-card-img img { transform: scale(1.05); }
.community-card-body { padding: 24px; }
.community-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.community-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ==================== DIRECTION PAGE ==================== */
.direction-map {
  width: 100%; height: 450px; border-radius: 12px; overflow: hidden;
  margin-bottom: 40px; background: var(--gray-200);
}
.direction-info {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.direction-card {
  padding: 30px; background: var(--gray-100); border-radius: 12px;
}
.direction-card h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 2px solid var(--point);
}
.direction-card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* ==================== RESERVATION PAGE ==================== */
.reservation-wrap { max-width: 640px; margin: 0 auto; }
.reservation-form .form-group { margin-bottom: 24px; }
.reservation-form label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; color: var(--gray-800);
}
.reservation-form label .req { color: #e74c3c; margin-left: 2px; }
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--gray-300);
  border-radius: 8px; font-size: 15px; transition: border-color 0.2s;
  background: var(--white);
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none; border-color: var(--point);
}
.reservation-form textarea { resize: vertical; min-height: 120px; }

.reservation-form .time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.reservation-form .time-slot {
  padding: 10px 20px; border: 1px solid var(--gray-300);
  border-radius: 8px; font-size: 14px; font-weight: 500;
  transition: all 0.2s; cursor: pointer;
}
.reservation-form .time-slot.active {
  background: var(--point); color: var(--white); border-color: var(--point);
}
.reservation-form .time-slot:hover:not(.active) { border-color: var(--point); }

.form-agree {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 24px;
  font-size: 13px; color: var(--gray-600);
}
.form-agree input[type="checkbox"] { width: auto; margin-top: 2px; }

.form-submit {
  width: 100%; padding: 16px; background: var(--point); color: var(--white);
  font-size: 16px; font-weight: 600; border-radius: 8px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--point-dark); }

.form-msg {
  padding: 12px 16px; border-radius: 8px; margin-bottom: 20px;
  font-size: 14px;
}
.form-msg--ok { background: #d4edda; color: #155724; }
.form-msg--err { background: #f8d7da; color: #721c24; }

/* ==================== HOME: TOP7 ==================== */
.top7-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center;
}
.top7-card { width: calc(25% - 15px); }
.top7-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 36px 24px; text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.top7-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.top7-card--accent { border-color: var(--point); background: rgba(172,143,120,0.15); }
.top7-num {
  font-size: 14px; font-weight: 700; color: var(--point);
  letter-spacing: 2px; margin-bottom: 16px;
}
.top7-card h3 {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.4;
}
.top7-card p {
  font-size: 14px; color: var(--gray-400); line-height: 1.7;
}

/* ==================== LOCATION: LIFESTYLE ==================== */
.lifestyle-desc {
  max-width: 800px; margin: -20px auto 50px; text-align: center;
  font-size: 15px; color: var(--gray-600); line-height: 1.8;
}
.lifestyle-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.lifestyle-card {
  padding: 36px 30px; background: var(--white); border-radius: 12px;
  border: 1px solid var(--gray-200); transition: border-color 0.3s, box-shadow 0.3s;
}
.lifestyle-card:hover { border-color: var(--point); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.lifestyle-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--point); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lifestyle-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
}
.lifestyle-card p {
  font-size: 14px; color: var(--gray-600); line-height: 1.7;
}

/* ==================== LOCATION: NATURE ==================== */
.nature-highlight {
  text-align: center; margin-bottom: 50px;
}
.nature-stat {
  display: inline-block; padding: 30px 60px;
  background: var(--gray-100); border-radius: 16px;
}
.nature-stat-num {
  font-size: 56px; font-weight: 700; color: var(--point); line-height: 1;
}
.nature-stat-num span { font-size: 28px; font-weight: 400; }
.nature-stat-label {
  font-size: 14px; color: var(--gray-600); margin-top: 8px;
}
.nature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.nature-card {
  padding: 36px 30px; background: var(--gray-100); border-radius: 12px;
  transition: transform 0.3s;
}
.nature-card:hover { transform: translateY(-4px); }
.nature-card-num {
  font-size: 14px; font-weight: 700; color: var(--point);
  letter-spacing: 2px; margin-bottom: 14px;
}
.nature-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4;
}
.nature-card p {
  font-size: 14px; color: var(--gray-600); line-height: 1.7;
}

/* ==================== FOOTER ==================== */
#footer { background: var(--darker); color: var(--gray-400); padding: 60px 0 40px; }
.ft-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.ft-info { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ft-logo {
  font-size: 18px; font-weight: 700; color: var(--white);
  letter-spacing: 1px; margin-bottom: 16px; display: block;
}
.ft-addr { font-size: 14px; margin-bottom: 8px; }
.ft-tel { font-size: 14px; }
.ft-tel a { color: var(--point); font-weight: 600; font-size: 18px; }
.ft-right { display: flex; gap: 40px; }
.ft-right dl { font-size: 14px; }
.ft-right dt { color: var(--gray-500); margin-bottom: 4px; font-weight: 600; }
.ft-right dd { color: var(--gray-400); }
.ft-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 13px; color: var(--gray-500); }
.ft-caution { font-size: 12px; color: var(--gray-600); }

/* Scroll Top */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--point); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--point-dark); transform: translateY(-2px); }

/* ==================== ADMIN BUTTON ==================== */
.admin-edit-btn {
  position: absolute; top: 10px; right: 10px; z-index: 50;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.7); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background 0.2s;
}
.admin-edit-btn:hover { background: var(--point); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .inner, .hd-inner, .ft-inner { padding: 0 24px; }
  .section { padding: 80px 0; }
  .sec-title { font-size: 30px; }
  .hero-title { font-size: 38px; }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .top7-card { width: calc(50% - 10px); }
  .location-preview { grid-template-columns: 1fr; gap: 30px; }
  .plans-preview-wrap { grid-template-columns: 1fr; }
  .plans-content { grid-template-columns: 1fr; gap: 30px; }
  .premium-detail-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .direction-info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .gnb-list, .hd-tel { display: none; }
  .hd-hamburger { display: flex; }
  .hd-logo-main { font-size: 15px; letter-spacing: 0.5px; }
  .hd-inner { padding: 0 16px; max-width: 100%; overflow: hidden; }
  #header { overflow: visible; }

  #quick-menu { display: block; }
  body { padding-bottom: 52px; }

  .hero { min-height: 500px; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 13px; letter-spacing: 2px; }
  .hero-desc { font-size: 14px; }

  .section { padding: 60px 0; }
  .sec-header { margin-bottom: 36px; }
  .sec-title { font-size: 24px; }
  .sec-desc { font-size: 14px; }

  .overview-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 36px; }
  .stat-num span { font-size: 22px; }

  .premium-grid { grid-template-columns: 1fr; gap: 16px; }
  .premium-card { padding: 28px 20px; }
  .top7-card { width: calc(50% - 6px); padding: 24px 16px; }
  .top7-card h3 { font-size: 15px; }
  .top7-card p { font-size: 13px; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .nature-grid { grid-template-columns: 1fr; }
  .nature-stat { padding: 24px 40px; }
  .nature-stat-num { font-size: 42px; }

  .page-hero { height: 280px; }
  .page-hero h2 { font-size: 28px; }

  .overview-table th { width: 100px; font-size: 13px; }
  .overview-table td { font-size: 14px; }

  .transport-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .plans-type-tabs { overflow-x: auto; }
  .plans-type-tab { padding: 12px 20px; font-size: 14px; white-space: nowrap; }

  .ft-info { flex-direction: column; gap: 24px; }
  .ft-right { flex-direction: column; gap: 16px; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-phone { font-size: 28px; }
  .cta-btn { padding: 14px 36px; font-size: 15px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-grid--2x3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--lg { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .gallery-item { border-radius: 8px; }
  .gallery-caption { padding: 10px; font-size: 12px; }

  .scroll-top { bottom: 72px; }
}

@media (max-width: 480px) {
  .inner, .hd-inner, .ft-inner { padding: 0 16px; }
  .hero-content { padding: 0 16px; }
  .hero-title { font-size: 24px; }
  .sec-title { font-size: 22px; }
  .plans-tabs { flex-wrap: wrap; }
  .top7-card { width: calc(50% - 5px); padding: 20px 14px; }
  .top7-grid { gap: 10px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-item--lg { grid-column: span 1; grid-row: span 1; aspect-ratio: 16/10; }
  .gallery-item { aspect-ratio: 16/10; }
}
