/* =========================================
   Countryside Serene Sunset Ranch
   Dark Earthy Luxury Theme
   ========================================= */

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2520;
  background-color: #faf3e0;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection {
  background: rgba(200, 169, 81, 0.3);
  color: #2a2520;
}

:focus-visible {
  outline: 2px solid #c8a951;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === DESIGN TOKENS === */
:root {
  --dark: #1a1a2e;
  --dark-surface: #1f1f35;
  --cream: #faf3e0;
  --cream-soft: #f5edda;
  --gold: #c8a951;
  --gold-light: #e8c96b;
  --gold-dim: rgba(200, 169, 81, 0.15);
  --text-dark: #2a2520;
  --text-light: #f0ebe0;
  --text-muted: #8a8580;
  --text-muted-light: rgba(240, 235, 224, 0.6);
  --airbnb: #FF5A5F;
  --vrbo: #0E4DA4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --content-wide: 1200px;
}

/* === UTILITY === */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: 20px;
}

.hide-mobile { display: inline; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

/* === SCROLL REVEAL ANIMATION === */
.reveal {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }
}
@keyframes revealFade {
  to { opacity: 1; }
}
/* Fallback for browsers without scroll-driven animations */
.reveal.is-visible {
  opacity: 1;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 101;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger--active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--active .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav--active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-light);
  transition: color var(--transition);
}

.mobile-nav__link:hover { color: var(--gold); }

.mobile-nav__link--cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

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

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.4) 0%,
    rgba(26, 26, 46, 0.2) 40%,
    rgba(26, 26, 46, 0.5) 70%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
}

.hero__tagline-top {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero__tagline {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__price {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.hero__price strong {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--airbnb {
  background: var(--airbnb);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 90, 95, 0.3);
}

.btn--airbnb:hover {
  box-shadow: 0 8px 32px rgba(255, 90, 95, 0.4);
  background: #ff4449;
}

.btn--vrbo {
  background: var(--vrbo);
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 77, 164, 0.3);
}

.btn--vrbo:hover {
  box-shadow: 0 8px 32px rgba(14, 77, 164, 0.4);
  background: #0c4190;
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.3);
}

.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(200, 169, 81, 0.4);
}

.btn--large {
  padding: 18px 48px;
  font-size: 17px;
}

.btn svg {
  flex-shrink: 0;
}

/* === SECTIONS === */
.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--text-light);
}

.section--cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}

.section__label--light {
  color: var(--gold);
}

.section__title {
  font-size: clamp(1.75rem, 1rem + 2.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

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

/* === ABOUT === */
.about__content {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a554e;
  margin-bottom: 16px;
}

.about__text:last-child { margin-bottom: 0; }

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

.about__highlight {
  text-align: center;
  padding: 32px 24px;
  background: rgba(200, 169, 81, 0.06);
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about__highlight-icon {
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.about__highlight h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.about__highlight p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about__highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === GALLERY === */
.gallery__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted-light);
  margin-top: -32px;
  margin-bottom: 32px;
}

/* Filter Bar */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.gallery__filter {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted-light);
  border: 1px solid rgba(200, 169, 81, 0.15);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.gallery__filter:hover {
  color: var(--text-light);
  border-color: rgba(200, 169, 81, 0.4);
  background: rgba(200, 169, 81, 0.08);
}

.gallery__filter--active {
  color: var(--dark) !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  font-weight: 600;
}

/* Category Labels */
.gallery__category-label {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  padding: 16px 0 4px;
  border-bottom: 1px solid rgba(200, 169, 81, 0.15);
  margin-bottom: 4px;
}

.gallery__category-label:first-child {
  padding-top: 0;
}

/* Gallery Grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Gallery Items */
.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery__item.hidden {
  display: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* Hover Overlay with Description */
.gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gallery__item-desc {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__filters { gap: 6px; }
  .gallery__filter { padding: 6px 14px; font-size: 12px; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery__category-label { font-size: 17px; }
  .gallery__filter { padding: 6px 12px; font-size: 11px; }
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox--active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__caption {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

.lightbox__counter {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: rgba(255,255,255,0.7);
  padding: 16px;
  transition: color var(--transition), background var(--transition);
  z-index: 201;
  border-radius: 50%;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* === AMENITIES === */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(200, 169, 81, 0.04);
  border: 1px solid rgba(200, 169, 81, 0.12);
  border-radius: 16px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 81, 0.3);
}

.amenity-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-dim);
  color: var(--gold);
  margin-bottom: 14px;
}

.amenity-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.amenity-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* === ROOMS === */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.room-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--dark-surface);
  border: 1px solid rgba(200, 169, 81, 0.1);
  border-radius: 16px;
  transition: transform var(--transition), border-color var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 81, 0.3);
}

.room-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  margin-bottom: 16px;
}

.room-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.room-card__bed {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.room-card__detail {
  font-size: 13px;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.rooms__bath-summary {
  display: flex;
  justify-content: center;
}

.rooms__bath {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--dark-surface);
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
}

.rooms__bath svg, .rooms__bath i {
  color: var(--gold);
}

@media (max-width: 900px) {
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rooms__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* === REVIEWS === */
.reviews__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.reviews__badge-score {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__badge-text {
  display: flex;
  flex-direction: column;
}

.reviews__badge-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
}

.reviews__badge-count {
  font-size: 14px;
  color: var(--text-muted);
}

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

.review-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(200, 169, 81, 0.12);
  border-radius: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star-filled {
  color: var(--gold);
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #5a554e;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.review-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__rating {
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 50px;
}

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* === LOCATION === */
.location__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.location__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 81, 0.15);
}

.location__attractions h3 {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.location__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.location__list li div {
  display: flex;
  flex-direction: column;
}

.location__list li strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
}

.location__list li span {
  font-size: 13px;
  color: var(--text-muted-light);
}

@media (max-width: 768px) {
  .location__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* === BOOK NOW === */
.book__subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 40px;
}

.book__subtitle strong {
  color: var(--gold);
  font-size: 20px;
}

.book__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.book__contact {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(200, 169, 81, 0.04);
  border: 1px solid rgba(200, 169, 81, 0.12);
  border-radius: 20px;
}

.book__contact h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form__field input,
.contact-form__field textarea {
  padding: 14px 16px;
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn--gold {
  align-self: center;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .book__contact { padding: 24px; }
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 32px 0;
  border-top: 1px solid rgba(200, 169, 81, 0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 235, 224, 0.6);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: rgba(240, 235, 224, 0.5);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.footer__attribution {
  font-size: 12px;
}

.footer__attribution a {
  color: rgba(240, 235, 224, 0.35);
  transition: color var(--transition);
}

.footer__attribution a:hover {
  color: rgba(240, 235, 224, 0.6);
}

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
