/* ═══════════════════════════════════════════════════════════════════════════
   SEOULSTAY AESTHETIC - Warm Editorial Travel Design
   Typography: Syne (display) + DM Sans (body)
   Palette: Terracotta, sage, warm sand, forest green
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --color-primary: #c76f4e;
  --color-primary-dark: #a85a3c;
  --color-primary-light: #e8c4b8;
  --color-sage: #8b9a7e;
  --color-sage-light: #d4dccf;
  --color-forest: #3d4f3a;
  --color-sand: #f5f0e8;
  --color-cream: #faf8f5;
  --color-warm: #e8d5c4;
  --color-text: #2d3128;
  --color-text-light: #6b7268;
  --color-white: #ffffff;
  --color-gold: #c9a962;

  /* Typography */
  --font-display: 'Syne', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Effects */
  --shadow-soft: 0 4px 20px rgba(45, 49, 40, 0.08);
  --shadow-card: 0 8px 30px rgba(45, 49, 40, 0.1);
  --shadow-hover: 0 16px 40px rgba(45, 49, 40, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE RESET & TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 49, 40, 0.08);
}

.nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-search,
.btn-reserve {
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-search:hover,
.btn-reserve:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.btn-book {
  padding: 0.5rem 1rem;
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-book:hover {
  background: var(--color-text);
}

.btn-contact {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-contact:hover {
  border-color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 49, 40, 0.4) 0%,
    rgba(45, 49, 40, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* Search Box */
.search-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: var(--space-lg) auto 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.search-form {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-xs);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
}

.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  border: none;
  background: transparent;
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
}

.search-form .btn-search {
  flex-shrink: 0;
  padding: 1rem 2rem;
  border-radius: calc(var(--radius-lg) - 4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURED / ROOM CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.featured,
.results-section {
  padding: var(--space-xl) var(--space-md);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
  max-width: 1300px;
  margin: 0 auto;
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.room-image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.room-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.25rem 0.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.room-badge.super {
  background: var(--color-forest);
}

.room-badge.new {
  background: var(--color-sage);
}

.room-content {
  padding: 1.25rem;
}

.room-location {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.room-amenities {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

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

.room-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.room-rating {
  font-weight: 600;
  color: var(--color-gold);
}

.room-reviews {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-sand);
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.room-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   AREAS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.areas {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-sand);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  max-width: 1300px;
  margin: 0 auto;
}

.area-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.area-card:hover img {
  transform: scale(1.1);
}

.area-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  background: linear-gradient(
    to top,
    rgba(45, 49, 40, 0.8) 0%,
    transparent 60%
  );
  color: var(--color-white);
}

.area-overlay h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.area-overlay span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.features {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: var(--space-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  padding: 1rem;
  background: var(--color-sage-light);
  border-radius: 50%;
  color: var(--color-forest);
}

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

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.page-header {
  padding: calc(100px + var(--space-lg)) var(--space-md) var(--space-md);
  text-align: center;
  background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-sand) 100%);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-xs);
}

.page-header p {
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILTER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.filter-section {
  padding: var(--space-md);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-sand);
}

.filter-container {
  max-width: 1300px;
  margin: 0 auto;
}

.filter-group {
  margin-bottom: var(--space-sm);
}

.filter-group > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.filter-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.filter-row .filter-group {
  flex: 1;
  min-width: 150px;
}

.filter-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-sand);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 0.5rem 1rem;
  background: var(--color-sand);
  color: var(--color-text);
  font-size: 0.9rem;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.filter-checks {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.check-label input {
  accent-color: var(--color-primary);
}

/* Results Header */
.results-header {
  max-width: 1300px;
  margin: 0 auto var(--space-md);
}

.results-count {
  color: var(--color-text-light);
}

.results-count strong {
  color: var(--color-text);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.page-btn {
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-btn:hover:not(:disabled) {
  border-color: var(--color-text);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-num:hover,
.page-num.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.page-dots {
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.detail-gallery {
  padding-top: 70px;
}

.gallery-main {
  aspect-ratio: 2/1;
  max-height: 500px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-grid img {
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-grid img:hover {
  opacity: 0.8;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-lg);
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.detail-main {
  min-width: 0;
}

.detail-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-sand);
}

.detail-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.badge-location {
  padding: 0.25rem 0.75rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.badge-super {
  padding: 0.25rem 0.75rem;
  background: var(--color-sage-light);
  color: var(--color-forest);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.detail-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.detail-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.detail-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.meta-rating {
  color: var(--color-gold);
  font-weight: 600;
}

.meta-reviews,
.meta-location {
  color: var(--color-text-light);
}

/* Host Section */
.host-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-sand);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.host-section img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.host-info h3 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.host-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Detail Sections */
.detail-section {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-sand);
}

.detail-section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.detail-section p {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

/* Amenities / Rules List */
.amenities-list,
.rules-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.amenity-item,
.rule-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--color-sand);
  border-radius: var(--radius-sm);
}

.amenity-item dt,
.rule-item dt {
  font-weight: 500;
  color: var(--color-text-light);
}

.amenity-item dd,
.rule-item dd {
  font-weight: 500;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
}

.pricing-table th {
  background: var(--color-sand);
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-table td {
  border-bottom: 1px solid var(--color-sand);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.price-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

/* Reviews */
.reviews-summary {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.rating-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.rating-details {
  flex: 1;
}

.rating-details > span {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.rating-bar span:first-child {
  width: 70px;
  color: var(--color-text-light);
}

.rating-bar progress {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  appearance: none;
}

.rating-bar progress::-webkit-progress-bar {
  background: var(--color-sand);
  border-radius: 3px;
}

.rating-bar progress::-webkit-progress-value {
  background: var(--color-gold);
  border-radius: 3px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.review-item {
  padding: var(--space-sm);
  background: var(--color-sand);
  border-radius: var(--radius-md);
  border: none;
  margin: 0;
}

.review-item p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.review-item footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-item footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-item cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Location */
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.location-map img {
  width: 100%;
}

.location-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}

.booking-price {
  margin-bottom: var(--space-xs);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.price-unit {
  font-size: 1rem;
  color: var(--color-text-light);
}

.booking-rating {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.booking-rating span:first-child {
  color: var(--color-gold);
  font-weight: 600;
}

.booking-rating span:last-child {
  color: var(--color-text-light);
}

.booking-form {
  margin-bottom: var(--space-md);
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.date-field {
  padding: 0.75rem;
}

.date-field:first-child {
  border-right: 1px solid var(--color-sand);
}

.date-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.date-field input {
  width: 100%;
  font-size: 0.9rem;
  border: none;
  background: transparent;
}

.booking-guests {
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: var(--space-sm);
}

.booking-guests label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.booking-guests select {
  width: 100%;
  font-size: 0.9rem;
  border: none;
  background: transparent;
}

.booking-form .btn-reserve {
  width: 100%;
}

.booking-summary {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-sand);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  color: var(--color-text-light);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-sand);
}

.host-contact {
  margin-top: var(--space-sm);
  text-align: center;
}

.host-contact p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--color-forest);
  color: var(--color-cream);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.footer h5 {
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.footer p,
.footer li {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1000px) {
  .detail-content {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

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

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

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

  .amenities-list,
  .rules-list {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
