/*
Theme Name: 더팰리스트데시앙
Theme URI: https://the.desian.life/
Author: Custom Theme
Description: 더팰리스트데시앙 프리미엄 아파트 분양 홈페이지 테마
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-palest-desian
*/

/* ===========================
   CSS Variables — 밝은 테마
=========================== */
:root {
  /* 포인트 컬러 */
  --accent:       #c8a96e;
  --accent-dark:  #a8884e;
  --accent-light: #dfc28e;
  --accent-bg:    #fdf8f0;
  --accent-bg2:   #f7f0e3;

  /* 배경 — 순백 + 따뜻한 크림 */
  --bg:           #ffffff;
  --bg-soft:      #fafaf8;
  --bg-warm:      #f5f2ec;
  --bg-card:      #ffffff;

  /* 텍스트 */
  --text:         #222222;
  --text-sub:     #444444;
  --text-muted:   #888888;
  --text-light:   #bbbbbb;

  /* 테두리 */
  --border:       #ece8e1;
  --border-mid:   #d8d2c8;

  /* 폰트: Noto Sans KR 단일 통일 */
  --font: 'Noto Sans KR', sans-serif;

  /* 그림자 */
  --sh-xs: 0 1px 4px rgba(0,0,0,0.05);
  --sh-sm: 0 2px 10px rgba(0,0,0,0.07);
  --sh-md: 0 4px 24px rgba(0,0,0,0.08);
  --sh-lg: 0 8px 40px rgba(0,0,0,0.10);

  --ease: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 전체 폰트 Noto Sans KR */
*, *::before, *::after { font-family: var(--font); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.35; color: var(--text); }

/* ===========================
   HEADER
=========================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 66px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--ease);
}

#site-header.scrolled {
  height: 56px;
  box-shadow: var(--sh-sm);
}

/* 로고 */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 32px; width: auto; }
.site-logo .logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* 메인 내비 */
.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--ease);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--accent-dark); background: var(--accent-bg); }

/* 헤더 우측: 분양문의 | 전화번호 */
.header-right { display: flex; align-items: center; flex-shrink: 0; }

.header-phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ph-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.ph-sep {
  font-size: 12px;
  color: var(--border-mid);
  line-height: 1;
}

a.ph-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  transition: var(--ease);
}

a.ph-number:hover { color: var(--accent); }

/* 모바일 햄버거 */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: var(--ease);
}

/* 모바일 풀스크린 메뉴 */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 20px; font-weight: 600; color: var(--text); transition: var(--ease); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 24px; color: var(--text-muted);
  cursor: pointer; background: none; border: none;
}
.mobile-phone-row {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}
.mobile-phone-row a { color: inherit; }

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-warm);
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.20;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245,242,236,0.55) 0%,
    rgba(245,242,236,0.10) 45%,
    rgba(245,242,236,0.72) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 22px;
  animation: fadeInUp 0.65s ease both;
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  animation: fadeInUp 0.65s 0.13s ease both;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 300;
  color: var(--accent-dark);
  letter-spacing: 0.14em;
  margin-bottom: 32px;
  animation: fadeInUp 0.65s 0.25s ease both;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  animation: fadeInUp 0.65s 0.35s ease both;
}

.hero-cta-group {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.65s 0.45s ease both;
}

.btn-primary {
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--ease);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,136,78,0.3);
}

.btn-secondary {
  padding: 14px 36px;
  background: transparent;
  color: var(--accent-dark);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em;
  border: 2px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--ease);
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--accent-bg);
  transform: translateY(-2px);
}

/* 히어로 퀵 버튼 */
.hero-quick {
  position: relative; z-index: 2;
  display: flex; gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.65s 0.58s ease both;
}

.hero-quick-item {
  padding: 18px 26px;
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--ease);
  min-width: 148px;
  box-shadow: var(--sh-sm);
  text-decoration: none; color: inherit; display: block;
}
.hero-quick-item:hover {
  background: #fff;
  border-color: var(--accent);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.hero-quick-item .icon    { font-size: 22px; margin-bottom: 5px; }
.hero-quick-item .label   { font-size: 13px; font-weight: 700; color: var(--accent-dark); margin-bottom: 3px; }
.hero-quick-item .desc    { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
}
.hero-scroll span {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--text-light); margin-bottom: 8px;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

/* ===========================
   Section Commons
=========================== */
section { padding: 92px 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 10px; display: block;
}

.section-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700; line-height: 1.4;
  margin-bottom: 14px; color: var(--text);
}

.section-line {
  width: 32px; height: 3px;
  background: var(--accent); border-radius: 2px;
  margin: 0 0 24px;
}
.section-line.centered { margin: 0 auto 24px; }

.section-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.9; max-width: 560px; font-weight: 400;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===========================
   Info Strip
=========================== */
#info-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}

.info-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
}

.info-strip-text h2 { font-size: clamp(20px,2.8vw,28px); font-weight: 700; margin-bottom: 5px; }
.info-strip-text p  { color: var(--accent); font-size: 14px; font-weight: 500; }

.info-strip-cards { display: flex; }

.info-card {
  padding: 18px 28px;
  border: 1px solid var(--border);
  background: #fff;
  text-align: center;
  min-width: 115px;
}
.info-card + .info-card { border-left: none; }
.info-card:first-child { border-radius: 8px 0 0 8px; }
.info-card:last-child  { border-radius: 0 8px 8px 0; }

.info-card .val {
  font-size: 16px; font-weight: 700;
  color: var(--accent-dark); display: block;
}
.info-card .unit {
  font-size: 11px; color: var(--text-muted);
  margin-top: 3px; font-weight: 400;
}

/* ===========================
   Overview Cards
=========================== */
#overview { background: var(--bg); }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 48px;
}

.overview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 26px;
  transition: var(--ease);
  cursor: pointer;
  box-shadow: var(--sh-xs);
  text-decoration: none; color: inherit; display: block;
}
.overview-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--accent-light);
  transform: translateY(-4px);
}

.overview-card .card-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--accent);
  margin-bottom: 14px;
}
.overview-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.overview-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-weight: 400; }

.card-more {
  font-size: 12px; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
  transition: var(--ease);
}
.overview-card:hover .card-more { gap: 8px; }

/* ===========================
   Location
=========================== */
#location { background: var(--bg-soft); }

.location-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 68px; align-items: center;
}

.location-image {
  overflow: hidden; border-radius: 14px;
  box-shadow: var(--sh-lg);
}
.location-image img {
  width: 100%; height: 490px; object-fit: cover;
  transition: transform 0.5s ease;
}
.location-image:hover img { transform: scale(1.03); }

.location-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}

.spec-item {
  padding: 16px 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; transition: var(--ease);
}
.spec-item:hover { border-color: var(--accent-light); box-shadow: var(--sh-xs); }
.spec-item .s-val { font-size: 14px; font-weight: 700; color: var(--accent-dark); display: block; margin-bottom: 3px; }
.spec-item .s-label { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ===========================
   Premium
=========================== */
#premium { background: var(--bg); }

.premium-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 68px; align-items: center;
}
.premium-text { order: 1; }
.premium-image { order: 2; border-radius: 14px; overflow: hidden; box-shadow: var(--sh-lg); }
.premium-image img { width: 100%; height: 530px; object-fit: cover; }

.premium-features { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }

.premium-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  transition: var(--ease);
}
.premium-feature:hover {
  border-color: var(--accent-light);
  box-shadow: var(--sh-xs);
  background: var(--accent-bg);
}

.feature-icon { font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.feature-text h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.feature-text p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 400; }

/* ===========================
   Gallery
=========================== */
#gallery { background: var(--bg-soft); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-top: 44px;
}

.gallery-item {
  overflow: hidden; cursor: pointer; position: relative;
  border-radius: 10px; box-shadow: var(--sh-xs);
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 195px; transition: transform 0.45s ease;
}
.gallery-item:first-child img { min-height: 410px; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease); border-radius: 10px;
}
.gallery-item:hover .gallery-overlay { background: rgba(168,136,78,0.14); }

.gallery-overlay-icon { font-size: 26px; opacity: 0; transition: var(--ease); }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

/* ===========================
   News
=========================== */
#news { background: var(--bg); }

.news-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 40px;
}

.news-more {
  font-size: 13px; font-weight: 600; color: var(--accent-dark);
  border-bottom: 1.5px solid var(--accent); padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 4px;
  transition: var(--ease);
}
.news-more:hover { gap: 8px; color: var(--accent); }

.news-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}

.news-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; transition: var(--ease);
  cursor: pointer; box-shadow: var(--sh-xs); overflow: hidden;
}
.news-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--accent-light);
  transform: translateY(-4px);
}

.news-card-body { padding: 22px 22px 18px; }

.news-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--accent-dark);
  background: var(--accent-bg); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
  display: inline-block; margin-bottom: 10px;
}

.news-card h3 {
  font-size: 14px; font-weight: 700; line-height: 1.6;
  margin-bottom: 8px; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-card p {
  font-size: 13px; color: var(--text-muted); line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 14px; font-weight: 400;
}
.news-date { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* ===========================
   Reservation
=========================== */
#reservation {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.reservation-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 68px; align-items: start;
}

.phone-number {
  font-size: clamp(24px,3.5vw,38px); font-weight: 700;
  color: var(--accent-dark); display: block;
  margin-top: 26px; margin-bottom: 5px; letter-spacing: 0.04em;
}
.phone-label { font-size: 13px; color: var(--text-muted); font-weight: 400; }

.reservation-hours {
  margin-top: 22px; padding: 16px 20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; display: flex; gap: 26px; flex-wrap: wrap;
}
.hours-item .h-label {
  font-size: 11px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.1em; margin-bottom: 3px;
}
.hours-item .h-val { font-size: 14px; font-weight: 500; color: var(--text); }

.reservation-form {
  background: #fff; padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--sh-md);
}
.reservation-form h3 { font-size: 19px; font-weight: 700; margin-bottom: 26px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-sub); margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px; font-weight: 400;
  outline: none; transition: var(--ease);
  border-radius: 8px;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-privacy {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px; line-height: 1.6; font-weight: 400;
}
.form-privacy a { color: var(--accent); font-weight: 500; }

.form-submit {
  width: 100%; padding: 15px;
  background: var(--accent); color: #fff;
  border: none; font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; border-radius: 8px;
  cursor: pointer; transition: var(--ease);
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,136,78,0.28);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===========================
   Footer
=========================== */
#site-footer {
  background: #28231c;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-size: 17px; font-weight: 700;
  color: #fff; display: block; margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.9; font-weight: 300; }

.footer-info h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--accent-light);
  margin-bottom: 12px;
}
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.9; font-weight: 300; }
.footer-info a { color: var(--accent-light); transition: var(--ease); }
.footer-info a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); font-weight: 300; }

.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.16);
  line-height: 1.8; text-align: center;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05); font-weight: 300;
}

/* ===========================
   Floating CTA
=========================== */
.floating-cta {
  position: fixed; bottom: 26px; right: 26px;
  z-index: 900; display: flex; flex-direction: column; gap: 10px;
}

.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; cursor: pointer;
  transition: var(--ease); border: none; box-shadow: var(--sh-lg);
  text-decoration: none;
}
.float-btn-call { background: var(--accent); color: #fff; }
.float-btn-call:hover { background: var(--accent-dark); transform: scale(1.1); }
.float-btn-reserve {
  background: #fff; color: var(--accent-dark);
  border: 1.5px solid var(--accent);
}
.float-btn-reserve:hover { background: var(--accent-bg); transform: scale(1.1); }

/* ===========================
   Lightbox
=========================== */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 9999;
  align-items: center; justify-content: center; cursor: pointer;
}

/* ===========================
   Animations
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.28; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Pagination */
.nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.nav-links a, .nav-links span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-sub);
  transition: var(--ease); background: #fff;
}
.nav-links a:hover, .nav-links span.current {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1100px) {
  .overview-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .location-inner, .premium-inner, .reservation-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .premium-image { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .news-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  #site-header { padding: 0 18px; }
  .main-nav, .header-right { display: none; }
  .nav-toggle { display: flex; }
  .overview-grid { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .info-strip-inner { flex-direction: column; }
  .info-strip-cards { flex-wrap: wrap; }
  .reservation-form { padding: 26px 18px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .hero-quick { flex-direction: column; align-items: center; }
  .hero-quick-item { width: 100%; max-width: 280px; }
  .location-specs { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 18px; right: 14px; }
}
