/* ============================================================
   Seoul Stay Glamping — styles.css
   Palette: #1A0A12 dark | #240E1A bg-alt | #58B888 accent (mint)
            #E8C870 highlight (gold) | #F8F5F0 cream
   Fonts: Big Shoulders Display (display) + Josefin Sans (body)
   22-section CSS architecture
   ============================================================ */

/* 1. IMPORTS & CUSTOM PROPERTIES */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800;900&family=Josefin+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

:root {
  --dark:      #1A0A12;
  --bg-alt:    #240E1A;
  --accent:    #58B888;
  --highlight: #E8C870;
  --cream:     #F8F5F0;

  --accent-dim:    rgba(88, 184, 136, 0.15);
  --accent-mid:    rgba(88, 184, 136, 0.35);
  --highlight-dim: rgba(232, 200, 112, 0.12);
  --cream-dim:     rgba(248, 245, 240, 0.08);
  --cream-mid:     rgba(248, 245, 240, 0.65);
  --dark-overlay:  rgba(26, 10, 18, 0.72);

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Josefin Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 24px rgba(88,184,136,0.25);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s ease;

  --nav-height: 72px;
  --page-hero-bg: url('images/banner.jpg');
}

/* 2. RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h5 { font-size: 1.1rem; }

p { font-size: 1rem; line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.text-gold    { color: var(--highlight); }
.text-mint    { color: var(--accent); }
.text-cream   { color: var(--cream); }
.text-muted   { color: var(--cream-mid); }

/* 4. LAYOUT UTILITIES */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container--wide { max-width: 1440px; }
.container--narrow { max-width: 800px; }

.section {
  padding: 100px 0;
}

.section--dark   { background: var(--dark); }
.section--alt    { background: var(--bg-alt); }
.section--accent { background: linear-gradient(135deg, var(--bg-alt) 0%, #1f1020 100%); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* 5. FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* 6. NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 10, 18, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.navbar__logo-text span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mid);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--cream);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.55rem 1.3rem;
  background: var(--accent);
  color: var(--dark) !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
  background: var(--highlight) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(26, 10, 18, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  border-top: 1px solid var(--accent-dim);
}

.navbar__mobile.open { display: flex; }

.navbar__mobile a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dim);
  transition: color var(--transition-fast);
}

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

.navbar__mobile .btn-mobile-book {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* 7. HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero__bg.zoomed { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,10,18,0.25) 0%,
    rgba(26,10,18,0.30) 40%,
    rgba(26,10,18,0.80) 75%,
    rgba(26,10,18,0.98) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__tagline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.hero__title .accent-line {
  color: var(--accent);
  display: block;
}

.hero__title .gold-line {
  color: var(--highlight);
  display: block;
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream-mid);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-style: italic;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mid);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* 8. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,245,240,0.4);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
}

.btn--gold:hover {
  background: transparent;
  color: var(--highlight);
  transform: translateY(-2px);
}

/* 9. SECTION HEADERS */
.section-header {
  margin-bottom: 4rem;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--cream-mid);
  max-width: 560px;
  line-height: 1.8;
}

.section-header--center p { margin: 0 auto; }

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  border-radius: 2px;
  margin: 1.5rem 0;
}

.divider--center { margin: 1.5rem auto; }

/* 10. CARDS */
.card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--accent-dim);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-mid);
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover .card__img { transform: scale(1.04); }

.card__body {
  padding: 1.5rem;
}

.card__body h4 { margin-bottom: 0.5rem; }
.card__body p { font-size: 0.9rem; color: var(--cream-mid); }

/* 11. ROOM SECTION */
.room-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--accent-dim);
}

.room-section:last-child { border-bottom: none; }

.room-section:nth-child(even) .room-section__layout {
  direction: rtl;
}

.room-section:nth-child(even) .room-section__layout > * {
  direction: ltr;
}

.room-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.room-section__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.room-section__gallery-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  height: 280px;
}

.room-section__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  cursor: pointer;
}

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

.room-section__gallery-thumb {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  height: 160px;
}

.room-section__gallery-thumb:first-of-type {
  border-radius: 0 0 0 var(--radius-md);
}

.room-section__gallery-thumb:last-of-type {
  border-radius: 0 0 var(--radius-md) 0;
}

.room-section__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform var(--transition);
}

.room-section__gallery-thumb img:hover { transform: scale(1.05); }

.room-section__info {
  padding-top: 1rem;
}

.room-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.room-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.room-section__title .gold { color: var(--highlight); }

.room-section__tagline {
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.room-section__desc {
  color: var(--cream-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.room-section__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.room-spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: var(--cream-dim);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--cream-mid);
}

.room-spec svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.room-section__amenities {
  margin-bottom: 2rem;
}

.room-section__amenities h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-tag {
  padding: 0.3rem 0.7rem;
  background: var(--highlight-dim);
  border: 1px solid rgba(232,200,112,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--highlight);
}

/* Room category tiles */
.room-categories {
  padding: 40px 0 0;
}

.room-cat-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.room-cat-tile {
  padding: 0.75rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mid);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.room-cat-tile:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* 12. GALLERY — MASONRY */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay svg {
  width: 36px;
  height: 36px;
  color: var(--cream);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,10,18,0.97);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox__close:hover { background: var(--accent); color: var(--dark); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  color: var(--cream);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); color: var(--dark); }

/* 13. FEATURES / HIGHLIGHTS STRIP */
.features-strip {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.feature-item p {
  font-size: 0.87rem;
  color: var(--cream-mid);
}

/* 14. ABOUT SECTION */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center 30%;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,18,0.92) 0%, rgba(26,10,18,0.55) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-grid__image-stack {
  position: relative;
  height: 520px;
}

.about-grid__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-grid__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 4px solid var(--dark);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-dim);
  text-align: center;
}

.stat-box__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-box__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mid);
}

/* 15. TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--accent-dim);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent-dim);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__quote {
  font-size: 0.93rem;
  color: var(--cream-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
}

.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--cream-mid);
}

/* 16. CONTACT & FAQ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info__icon svg { width: 20px; height: 20px; }

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--cream);
}

.contact-info__value a {
  color: var(--cream);
  transition: color var(--transition-fast);
}

.contact-info__value a:hover { color: var(--accent); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.social-link svg { width: 20px; height: 20px; }

.social-link:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* 17. FORM */
.inquiry-form {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--accent-dim);
}

.inquiry-form h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.inquiry-form > p {
  font-size: 0.88rem;
  color: var(--cream-mid);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2358B888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--dark);
  color: var(--cream);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* 18. FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--accent-dim);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition-fast);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--cream-mid);
  line-height: 1.8;
}

/* 19. PAGE HERO (inner pages) */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--dark);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.5) saturate(0.7);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,18,0.4) 0%, rgba(26,10,18,0.88) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

/* 20. FOOTER */
.footer {
  background: #0f050a;
  padding: 80px 0 0;
  border-top: 1px solid var(--accent-dim);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--cream-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
  font-style: italic;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--cream-mid);
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item span {
  font-size: 0.85rem;
  color: var(--cream-mid);
  line-height: 1.5;
}

.footer__contact-item a {
  color: var(--cream-mid);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover { color: var(--accent); }

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition-fast);
}

.footer__social a svg { width: 16px; height: 16px; }

.footer__social a:hover { background: var(--accent); color: var(--dark); }

.footer__bottom {
  border-top: 1px solid var(--accent-dim);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--cream-mid);
}

.footer__bottom a {
  color: var(--accent);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover { color: var(--highlight); }

/* 21. UTILITY CLASSES */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Accent border left */
.accent-border-left {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

/* Korean pattern decorative */
.k-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--accent) 0,
    var(--accent) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
  pointer-events: none;
}

/* 22. RESPONSIVE */
@media (max-width: 1024px) {
  .grid-2      { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3      { grid-template-columns: 1fr 1fr; }
  .grid-4      { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-grid__image-stack { height: 320px; margin-bottom: 2rem; }
  .about-grid__img-main { width: 65%; height: 320px; }
  .about-grid__img-accent { width: 50%; height: 220px; }

  .room-section__layout { grid-template-columns: 1fr; }
  .room-section:nth-child(even) .room-section__layout { direction: ltr; }

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

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

  .gallery-masonry { columns: 2; }

  h1 { font-size: clamp(3rem, 7vw, 5rem); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .room-section__specs { grid-template-columns: 1fr; }

  .room-section__gallery-main { height: 220px; }
  .room-section__gallery-thumb { height: 130px; }

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

  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }

  .gallery-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }

  .hero { padding-bottom: 6rem; }

  .gallery-masonry { columns: 1; }

  .room-section__gallery { grid-template-columns: 1fr; }
  .room-section__gallery-main { grid-column: 1; border-radius: var(--radius-md); }
  .room-section__gallery-thumb { height: 180px; border-radius: var(--radius-md); }

  .about-grid__image-stack { display: none; }

  .hero__cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .footer__bottom { flex-direction: column; text-align: center; }
}
