/* ============================================================
   힐링 펜션 - 메인 스타일시트
   pension/css/pension.css
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
  --forest:     #2d5a3d;
  --forest-lt:  #4a8c61;
  --earth:      #8b6340;
  --earth-lt:   #c49a6c;
  --cream:      #faf6f0;
  --warm-white: #fffdf9;
  --sand:       #e8dcc8;
  --stone:      #6b7280;
  --charcoal:   #2c2c2c;
  --red:        #c0392b;
  --accent:     #e07b39;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --radius:     12px;
  --radius-sm:  6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
}

/* ── 공통 컨테이너 ── */
.pn-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pn-section   { padding: 80px 0; }

/* ── 헤더 ── */
.pn-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,249,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pn-header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.pn-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px; font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.pn-logo span { color: var(--accent); }
.pn-nav { display: flex; gap: 8px; align-items: center; }
.pn-nav a {
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.pn-nav a:hover, .pn-nav a.active {
  background: var(--forest);
  color: #fff;
}
.pn-nav .btn-reserve {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}
.pn-nav .btn-reserve:hover { background: var(--forest); }
.pn-hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.pn-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all .3s;
}

/* ── 히어로 배너 ── */
.pn-hero {
  position: relative; height: 600px;
  background: linear-gradient(135deg, #1a3d2b 0%, #2d5a3d 50%, #4a7c59 100%);
  display: flex; align-items: center; overflow: hidden;
}
.pn-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img_files/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.pn-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(224,123,57,.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(74,140,97,.2) 0%, transparent 50%);
}
.pn-hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  color: #fff;
}
.pn-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.pn-hero h1 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.pn-hero p {
  font-size: 17px; opacity: 0.85;
  margin-bottom: 36px;
}
.pn-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(224,123,57,.4);
}
.btn-primary:hover {
  background: #c86b2a; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,57,.5);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,.7); color: #fff;
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all .25s;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
}

/* ── 빠른 예약 검색 바 ── */
.pn-quick-search {
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  padding: 0;
}
.pn-quick-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  gap: 0;
  border-radius: 0;
}
.pn-search-item {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid var(--sand);
}
.pn-search-item:last-child { border-right: none; }
.pn-search-item label {
  display: block; font-size: 11px;
  font-weight: 700; color: var(--stone);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 4px;
}
.pn-search-item input, .pn-search-item select {
  width: 100%; border: none; background: transparent;
  font-family: inherit; font-size: 15px; font-weight: 500;
  color: var(--charcoal); outline: none; cursor: pointer;
}
.pn-search-btn {
  padding: 0 32px;
  background: var(--forest);
  color: #fff;
  border: none; border-radius: 0;
  font-size: 14px; font-weight: 700;
  cursor: pointer; height: 100%;
  min-height: 80px;
  white-space: nowrap;
  transition: background .2s;
  letter-spacing: 0.5px;
}
.pn-search-btn:hover { background: var(--forest-lt); }

/* ── 섹션 헤더 ── */
.pn-section-header { text-align: center; margin-bottom: 52px; }
.pn-section-eyebrow {
  display: inline-block;
  color: var(--earth); font-size: 13px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pn-section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700; color: var(--charcoal);
  line-height: 1.3; margin-bottom: 12px;
}
.pn-section-desc { color: var(--stone); font-size: 16px; }

/* ── 객실 카드 ── */
.pn-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.pn-room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.pn-room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.pn-room-thumb {
  position: relative; height: 220px; overflow: hidden;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}
.pn-room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pn-room-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, var(--sand) 0%, #d4c5a9 100%);
}
.pn-room-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--forest); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.3px;
}
.pn-room-body { padding: 22px; }
.pn-room-type { font-size: 12px; color: var(--earth); font-weight: 700; margin-bottom: 6px; }
.pn-room-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 10px;
}
.pn-room-info {
  display: flex; gap: 16px; margin-bottom: 12px;
  flex-wrap: wrap;
}
.pn-room-info-item { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--stone); }
.pn-room-desc { font-size: 13px; color: var(--stone); line-height: 1.6; margin-bottom: 16px; }
.pn-room-amenity { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pn-room-amenity span {
  font-size: 11px; padding: 3px 8px;
  background: var(--cream); color: var(--stone);
  border-radius: 4px;
}
.pn-room-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--sand);
}
.pn-room-price { font-size: 13px; color: var(--stone); }
.pn-room-price strong {
  display: block; font-size: 20px;
  font-weight: 700; color: var(--forest);
}
.pn-room-price span { font-size: 12px; }
.btn-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  background: var(--forest); color: #fff;
  border: none; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.btn-book:hover { background: var(--accent); }

/* ── 달력 ── */
.pn-calendar-wrap {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.pn-calendar-nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--forest); color: #fff;
}
.pn-calendar-nav h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px; font-weight: 700;
}
.pn-cal-nav-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .2s;
  text-decoration: none;
}
.pn-cal-nav-btn:hover { background: rgba(255,255,255,.3); }
.pn-cal-nav-btn.disabled { opacity: .3; pointer-events: none; }

.pn-calendar-table {
  width: 100%; border-collapse: collapse;
}
.pn-calendar-table thead th {
  padding: 12px;
  font-size: 13px; font-weight: 700;
  text-align: center; color: var(--stone);
  background: var(--cream);
}
.pn-calendar-table thead th:first-child { color: var(--red); }
.pn-calendar-table thead th:last-child { color: #1565c0; }
.pn-calendar-table tbody td {
  padding: 0; border: 1px solid var(--sand);
  text-align: center; vertical-align: top;
  height: 70px; width: calc(100%/7);
}
.pn-day-cell {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; cursor: pointer;
  transition: background .15s;
  padding: 4px;
  position: relative;
}
.pn-day-num {
  font-size: 16px; font-weight: 600;
  line-height: 1;
}
.pn-day-cell:hover:not(.disabled):not(.reserved):not(.past) {
  background: var(--cream);
}
.pn-day-cell.today .pn-day-num {
  background: var(--forest); color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pn-day-cell.reserved {
  background: #fef2f2;
  cursor: not-allowed;
}
.pn-day-cell.reserved .pn-day-num { color: #ccc; }
.pn-day-status {
  font-size: 10px; margin-top: 3px;
  line-height: 1;
}
.pn-day-cell.reserved .pn-day-status { color: var(--red); }
.pn-day-cell.available .pn-day-status { color: var(--forest-lt); }
.pn-day-cell.past { cursor: default; }
.pn-day-cell.past .pn-day-num { color: #ddd; }
.pn-day-cell.other-month .pn-day-num { color: #e0e0e0; }
.pn-day-cell.sun .pn-day-num { color: var(--red); }
.pn-day-cell.sat .pn-day-num { color: #1565c0; }
.pn-day-cell.selected {
  background: var(--forest) !important;
}
.pn-day-cell.selected .pn-day-num { color: #fff !important; }
.pn-day-cell.in-range {
  background: rgba(45,90,61,.12);
}
.pn-day-cell.checkout-hover { background: rgba(45,90,61,.08); }

/* 달력 범례 */
.pn-cal-legend {
  display: flex; gap: 20px; padding: 16px 24px;
  border-top: 1px solid var(--sand);
  font-size: 12px; color: var(--stone);
}
.pn-legend-item { display: flex; align-items: center; gap: 8px; }
.pn-legend-dot {
  width: 14px; height: 14px; border-radius: 3px;
}
.legend-available { background: var(--cream); border: 2px solid var(--forest-lt); }
.legend-reserved { background: #fef2f2; border: 2px solid #fecaca; }
.legend-today { background: var(--forest); border-radius: 50%; }
.legend-weekend { background: #dbeafe; }

/* ── 예약 패널 (달력 우측) ── */
.pn-reserve-panel {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky; top: 88px;
}
.pn-panel-header {
  padding: 20px 24px;
  background: var(--forest); color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}
.pn-panel-header h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px; font-weight: 700;
}
.pn-panel-body { padding: 24px; }
.pn-panel-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 14px;
}
.pn-panel-row:last-child { border-bottom: none; }
.pn-panel-label { color: var(--stone); }
.pn-panel-value { font-weight: 600; color: var(--charcoal); }
.pn-panel-total { border-top: 2px solid var(--forest) !important; }
.pn-panel-total .pn-panel-value {
  color: var(--forest); font-size: 20px; font-weight: 700;
}
.pn-panel-price-per { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* 인원 선택 */
.pn-guest-selector {
  display: flex; align-items: center;
  gap: 0; background: var(--cream);
  border-radius: 8px; overflow: hidden;
}
.pn-guest-btn {
  width: 36px; height: 36px;
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  color: var(--forest); font-weight: 700;
  transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.pn-guest-btn:hover { background: var(--sand); }
.pn-guest-num {
  width: 36px; text-align: center;
  font-size: 15px; font-weight: 700;
  color: var(--charcoal);
}

/* ── 예약 폼 ── */
.pn-form-section { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.pn-form-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px; font-weight: 700; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 2px solid var(--sand);
  color: var(--forest);
}
.pn-form-group { margin-bottom: 20px; }
.pn-form-group label {
  display: block; font-size: 13px;
  font-weight: 700; color: var(--charcoal);
  margin-bottom: 6px;
}
.pn-form-group label .required { color: var(--red); margin-left: 2px; }
.pn-form-group input,
.pn-form-group textarea,
.pn-form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color .2s;
  outline: none;
}
.pn-form-group input:focus,
.pn-form-group textarea:focus {
  border-color: var(--forest);
  background: #fff;
}
.pn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pn-form-hint { font-size: 12px; color: var(--stone); margin-top: 4px; }

/* 예약 요약 박스 */
.pn-reserve-summary {
  background: var(--cream); border-radius: var(--radius);
  padding: 24px; margin-bottom: 24px;
}
.pn-summary-title {
  font-size: 13px; font-weight: 700;
  color: var(--stone); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.pn-summary-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pn-summary-item label { font-size: 11px; color: var(--stone); display: block; margin-bottom: 2px; }
.pn-summary-item span { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.pn-summary-total {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--sand);
  display: flex; justify-content: space-between;
  align-items: center;
}
.pn-summary-total-label { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.pn-summary-total-price {
  font-size: 24px; font-weight: 700; color: var(--forest);
}

/* 추가 옵션 */
.pn-options-list { display: flex; flex-direction: column; gap: 12px; }
.pn-option-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .2s;
}
.pn-option-item:has(input:checked) { border-color: var(--forest); background: rgba(45,90,61,.03); }
.pn-option-item input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--forest); }
.pn-option-info { flex: 1; }
.pn-option-name { font-size: 14px; font-weight: 600; }
.pn-option-desc { font-size: 12px; color: var(--stone); }
.pn-option-price { font-weight: 700; color: var(--forest); white-space: nowrap; }
.pn-option-qty { display: none; }
.pn-option-item:has(input:checked) .pn-option-qty { display: flex; align-items: center; gap: 8px; }

/* 동의 체크박스 */
.pn-agree-box {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 24px;
  font-size: 13px; line-height: 1.6;
  color: var(--stone); white-space: pre-line;
}
.pn-agree-check { display: flex; align-items: center; gap: 8px; margin-top: 12px; cursor: pointer; }
.pn-agree-check input { width: 16px; height: 16px; accent-color: var(--forest); }
.pn-agree-check span { font-size: 14px; font-weight: 600; color: var(--charcoal); }

/* 제출 버튼 */
.btn-submit {
  width: 100%; padding: 16px;
  background: var(--forest); color: #fff;
  border: none; border-radius: 50px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .25s;
  letter-spacing: 0.5px;
}
.btn-submit:hover { background: var(--accent); }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; }

/* 완료 페이지 */
.pn-complete-wrap {
  max-width: 680px; margin: 60px auto; padding: 0 24px;
}
.pn-complete-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin: 0 auto 24px;
}
.pn-complete-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 28px; font-weight: 700;
  color: var(--charcoal); text-align: center;
  margin-bottom: 8px;
}
.pn-complete-sub { text-align: center; color: var(--stone); margin-bottom: 36px; }
.pn-confirm-box {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; margin-bottom: 24px;
}
.pn-confirm-key {
  text-align: center; font-size: 28px; font-weight: 700;
  color: var(--forest); letter-spacing: 6px;
  font-family: monospace;
  padding: 16px; background: #fff;
  border-radius: var(--radius-sm);
  border: 2px dashed var(--forest);
  margin: 16px 0;
}
.pn-info-table { width: 100%; border-collapse: collapse; }
.pn-info-table th {
  width: 130px; padding: 10px 0;
  font-size: 13px; color: var(--stone);
  font-weight: 600; text-align: left;
  vertical-align: top;
}
.pn-info-table td {
  padding: 10px 0;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--sand);
}
.pn-info-table tr:last-child td { border-bottom: none; }

/* 배지 */
.badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.badge-waiting   { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #d1fae5; color: #065f46; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-completed { background: #e0e7ff; color: #3730a3; }
.badge-none      { background: #f3f4f6; color: #6b7280; }
.badge-paid      { background: #d1fae5; color: #065f46; }
.badge-refunded  { background: #fce7f3; color: #9d174d; }

/* 정책 박스 */
.pn-policy-box {
  background: #fff8f0; border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 13px; white-space: pre-line;
  line-height: 1.7;
}

/* 공지 바 */
.pn-notice-bar {
  background: var(--forest); color: #fff;
  padding: 10px 0; font-size: 13px;
  overflow: hidden;
}

/* 특별 정보 카드 */
.pn-info-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px; margin-top: 16px;
}
.pn-info-card {
  text-align: center; padding: 28px 20px;
  background: var(--cream); border-radius: var(--radius);
}
.pn-info-card-icon { font-size: 36px; margin-bottom: 12px; }
.pn-info-card-label { font-size: 12px; color: var(--stone); margin-bottom: 4px; }
.pn-info-card-value { font-size: 16px; font-weight: 700; color: var(--charcoal); }

/* 푸터 */
.pn-footer {
  background: var(--charcoal); color: rgba(255,255,255,.7);
  padding: 52px 0 28px;
}
.pn-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.pn-footer-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.pn-footer-desc { font-size: 13px; line-height: 1.7; }
.pn-footer-heading { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.5px; }
.pn-footer-links { list-style: none; }
.pn-footer-links li { margin-bottom: 8px; }
.pn-footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color .2s; }
.pn-footer-links a:hover { color: #fff; }
.pn-footer-contact p { font-size: 13px; margin-bottom: 6px; }
.pn-footer-contact strong { color: #fff; }
.pn-footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 8px;
}

/* 로딩 스피너 */
.pn-loading { display: none; }
.pn-loading.active {
  display: flex; align-items: center; justify-content: center;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255,255,255,.8); backdrop-filter: blur(4px);
}
.pn-spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--sand);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 토스트 알림 */
.pn-toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--charcoal); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  font-size: 14px; z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: all .3s;
  max-width: 320px;
}
.pn-toast.show { transform: translateY(0); opacity: 1; }
.pn-toast.success { background: var(--forest); }
.pn-toast.error { background: var(--red); }

/* 반응형 */
@media (max-width: 1024px) {
  .pn-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pn-nav { display: none; }
  .pn-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    padding: 16px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    z-index: 999;
  }
  .pn-hamburger { display: flex; }
  .pn-hero { height: auto; min-height: 460px; }
  .pn-quick-inner { flex-direction: column; }
  .pn-search-item { border-right: none; border-bottom: 1px solid var(--sand); width: 100%; }
  .pn-search-btn { width: 100%; min-height: 52px; }
  .pn-form-row { grid-template-columns: 1fr; }
  .pn-summary-grid { grid-template-columns: 1fr; }
  .pn-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pn-footer-bottom { flex-direction: column; text-align: center; }
  .pn-room-grid { grid-template-columns: 1fr; }
  .pn-calendar-table tbody td { height: 52px; }
  .pn-day-num { font-size: 13px; }
}
@media (max-width: 480px) {
  .pn-section { padding: 52px 0; }
  .pn-hero h1 { font-size: 26px; }
  .btn-primary, .btn-outline-white { padding: 12px 20px; font-size: 14px; }
  .pn-confirm-key { font-size: 20px; letter-spacing: 3px; }
}

/* ── 관리자 페이지 ── */
.pn-adm-wrap { max-width: 1200px; margin: 0 auto; padding: 24px; }
.pn-adm-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.pn-adm-search {
  background: #f8f9fa; border-radius: 8px;
  padding: 20px; margin-bottom: 24px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end;
}
.pn-adm-search input, .pn-adm-search select {
  padding: 8px 12px; border: 1px solid #dee2e6;
  border-radius: 6px; font-size: 14px;
}
.pn-adm-table { width: 100%; border-collapse: collapse; background: #fff; }
.pn-adm-table th {
  padding: 12px; text-align: left;
  font-size: 13px; font-weight: 700;
  background: #f8f9fa; color: #495057;
  border-bottom: 2px solid #dee2e6;
  white-space: nowrap;
}
.pn-adm-table td {
  padding: 12px; font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.pn-adm-table tr:hover td { background: #f9f9f9; }
.pn-adm-btn {
  padding: 4px 10px; font-size: 12px;
  border-radius: 4px; cursor: pointer; border: none;
  font-weight: 600; text-decoration: none; display: inline-block;
}
.pn-adm-btn-primary { background: var(--forest); color: #fff; }
.pn-adm-btn-danger  { background: var(--red); color: #fff; }
