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

:root {
  --color-bg: #FAF8F5;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-accent: #8B6914;
  --color-accent-light: #C4A44A;
  --color-warm: #D4A574;
  --color-cream: #F5F0E8;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-border: #E8E2D8;
  --font-serif: 'Noto Serif KR', serif;
  --font-sans: 'Noto Sans KR', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo {
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

.nav.scrolled .nav-links a {
  color: var(--color-text-light);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav.scrolled .nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  transition: all 0.3s !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.15);
}

.nav.scrolled .nav-cta:hover {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: background 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--color-text);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.4) 100%
  );
}

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

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-title span {
  font-weight: 300;
  font-size: 0.6em;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-primary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ===== Section Common ===== */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 24px;
  color: var(--color-text);
}

.about-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.9;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--color-bg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* ===== Seasons ===== */
.seasons {
  background: var(--color-cream);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.season-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border-radius: 12px;
  transition: transform 0.3s;
}

.season-card:hover {
  transform: translateY(-4px);
}

.season-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.season-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.season-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== Rooms ===== */
.rooms {
  background: var(--color-white);
}

.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border);
}

.room-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.room-card.reverse .room-image {
  order: 2;
}

.room-card.reverse .room-info {
  order: 1;
}

.room-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-image:hover img {
  transform: scale(1.03);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: rgba(0,0,0,0.6);
  color: var(--color-white);
  font-size: 0.8rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.room-badge.popular {
  background: var(--color-accent);
}

.room-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.room-subtitle {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.room-capacity {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.room-info > p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-amenities span {
  padding: 4px 12px;
  background: var(--color-cream);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.room-price {
  display: flex;
  gap: 24px;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* ===== Gallery Banner ===== */
.gallery-banner {
  overflow: hidden;
  background: var(--color-dark);
  padding: 4px 0;
}

.gallery-scroll {
  display: flex;
  gap: 4px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}

.gallery-scroll img {
  height: 200px;
  width: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.gallery-scroll img:hover {
  opacity: 1;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Pricing ===== */
.pricing {
  background: var(--color-cream);
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.pricing-table th {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: left;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.pricing-table tr.highlight {
  background: #FFF9ED;
}

.pricing-table tr.highlight td {
  font-weight: 500;
  color: var(--color-accent);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.note-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.note-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.note-card ul {
  list-style: none;
}

.note-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.note-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--color-accent-light);
  border-radius: 50%;
}

/* ===== Facilities ===== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.facility-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.facility-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent-light);
  color: var(--color-text);
}

.facility-card li {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ===== Location ===== */
.location {
  background: var(--color-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.location-map iframe {
  display: block;
}

.map-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.map-link img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.map-fallback {
  display: none;
  width: 100%;
  height: 400px;
  background: var(--color-cream);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color-border);
}

.map-fallback-content {
  color: var(--color-text-light);
}

.map-fallback-content p {
  margin: 16px 0 8px;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

.map-sub {
  font-size: 0.85rem !important;
  color: var(--color-text-light) !important;
  font-weight: 400 !important;
  margin-top: 4px !important;
}

.map-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s;
}

.map-link:hover .map-cta {
  background: var(--color-accent-light);
}

.location-info > div {
  margin-bottom: 28px;
}

.location-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.location-info p,
.location-info li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.location-sub {
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.location-directions ul {
  list-style: none;
}

.location-directions li {
  margin-bottom: 6px;
}

/* ===== Notice ===== */
.notice {
  background: var(--color-cream);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.notice-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.notice-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.notice-card ul {
  list-style: none;
}

.notice-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.notice-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--color-accent-light);
  border-radius: 50%;
}

.notice-card.promise {
  border-left: 3px solid var(--color-warm);
}

.checkinout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

.checkinout > div {
  text-align: center;
}

.checkinout .time {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.checkinout .label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.checkinout .divider {
  width: 40px;
  height: 1px;
  background: var(--color-border);
}

.refund-table {
  display: flex;
  flex-direction: column;
}

.refund-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.refund-row.last {
  border-bottom: none;
  color: var(--color-warm);
  font-weight: 500;
}

/* ===== Pets ===== */
.pets {
  padding: 60px 0;
  background: var(--color-white);
}

.pets-banner {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.pets-text h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pets-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-dark);
  color: var(--color-white);
}

.contact .section-label {
  color: var(--color-accent-light);
}

.contact .section-title {
  color: var(--color-white);
}

.contact .section-desc {
  color: rgba(255,255,255,0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-accent-light);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.contact-sub {
  font-size: 0.8rem !important;
  margin-top: 4px;
}

.contact-bank {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.contact-bank strong {
  color: var(--color-accent-light);
}

/* ===== Footer ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-links a {
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
}

/* ===== Room Gallery Button ===== */
.room-gallery-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.6);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  font-family: var(--font-sans);
}

.room-gallery-btn:hover {
  background: rgba(0,0,0,0.8);
  border-color: rgba(255,255,255,0.6);
}

.gallery-data {
  display: none;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--color-white);
}

.lightbox-title {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.lightbox-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.8);
  border: none;
  font-size: 1.5rem;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.7);
  color: var(--color-white);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-counter {
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: -40px;
    right: 4px;
  }
}

/* ===== About Closing ===== */
.about-closing {
  font-style: italic;
  color: var(--color-accent) !important;
  font-weight: 400;
}

/* ===== WiFi Info ===== */
.wifi-info {
  margin-top: 40px;
  background: var(--color-white);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.wifi-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.wifi-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.wifi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wifi-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wifi-ssid {
  font-family: monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-cream);
  padding: 6px 16px;
  border-radius: 6px;
}

/* ===== Check-in Note ===== */
.checkin-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
  font-style: italic;
}

/* ===== Pets Note ===== */
.pets-note {
  font-size: 0.85rem !important;
  color: var(--color-warm) !important;
  margin-top: 12px;
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent-light);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 0 20px 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===== Location How ===== */
.location-how p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.location-nearby ul {
  list-style: none;
}

.location-nearby li {
  margin-bottom: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .seasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--color-text) !important;
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-desc br {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: -1;
  }

  .about-img-sub {
    bottom: -20px;
    right: -10px;
    width: 40%;
  }

  .seasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .season-card {
    padding: 24px 16px;
  }

  .room-card {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .room-card.reverse .room-image,
  .room-card.reverse .room-info {
    order: unset;
  }

  .room-price {
    flex-wrap: wrap;
    gap: 16px;
  }

  .gallery-scroll img {
    height: 140px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

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

  .notice-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .room-info h3 {
    font-size: 1.3rem;
  }

  .checkinout {
    gap: 24px;
  }

  .checkinout .time {
    font-size: 1.5rem;
  }
}
