/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ===== CSS Variables / Design Tokens ===== */
:root {
  /* Typography */
  --font-heading: 'Marcellus', serif;
  --font-body: 'Jost', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Colors - Earthy Luxury Palette */
  --color-primary: #b99d75;
  --color-primary-dark: #a08660;
  --color-primary-light: #d4c4a8;
  --color-secondary: #53624e;
  --color-secondary-dark: #3d4a39;
  --color-secondary-light: #6b7d65;
  --color-accent: #c8a96e;
  --color-dark: #0e0d0a;
  --color-dark-alt: #1a1a17;
  --color-cream: #f8f5f0;
  --color-cream-alt: #f2ece3;
  --color-white: #ffffff;
  --color-text: #333632;
  --color-text-light: #6b6b6b;
  --color-text-muted: #999;
  --color-overlay: rgba(14, 13, 10, 0.55);
  --color-overlay-dark: rgba(14, 13, 10, 0.75);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  /* Layout */
  --max-width: 1300px;
  --side-padding: 5vw;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-elegant: 0.6s cubic-bezier(0.77, 0, 0.175, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-dark);
}

/* ===== Utility Classes ===== */
.container {
  width: 100%;
  max-width: calc(var(--max-width) + var(--side-padding) * 2);
  padding: 0 var(--side-padding);
  margin: 0 auto;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

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

.section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 {
  color: var(--color-white);
}

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

.subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-dark .subtitle {
  color: var(--color-primary-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.section-dark .section-header p {
  color: var(--color-text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 54px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-underline {
  padding: 8px 0;
  height: auto;
  background: none;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.btn-underline:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--color-dark);
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  animation: pulse 1.8s ease-in-out infinite;
  letter-spacing: 0.1em;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(14, 13, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo span {
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: 10px 28px !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
}

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

.nav-cta:hover {
  background: var(--color-primary-dark) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  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);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 13, 10, 0.4) 0%,
    rgba(14, 13, 10, 0.2) 40%,
    rgba(14, 13, 10, 0.5) 80%,
    rgba(14, 13, 10, 0.8) 100%
  );
  z-index: 1;
}

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

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

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

/* ===== Booking Bar ===== */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -45px;
}

.booking-form {
  display: flex;
  align-items: flex-end;
  gap: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.booking-field {
  flex: 1;
  padding: 20px 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-field:last-child {
  border-right: none;
}

.booking-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  padding: 4px 0;
  outline: none;
  cursor: pointer;
}

.booking-field select {
  -webkit-appearance: none;
  appearance: none;
}

.booking-submit {
  flex-shrink: 0;
}

.booking-submit .btn {
  height: 100%;
  min-height: 82px;
  padding: 0 40px;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-primary);
  z-index: -1;
}

.about-content {
  padding-left: var(--space-lg);
}

.about-content .subtitle {
  color: var(--color-secondary);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.about-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ===== Rooms Section ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  position: relative;
  overflow: hidden;
  group: true;
}

.room-card-image {
  position: relative;
  height: 420px;
  overflow: hidden;
}

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

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

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 13, 10, 0.8) 0%, transparent 60%);
  transition: background var(--transition-base);
}

.room-card:hover .room-card-overlay {
  background: linear-gradient(to top, rgba(14, 13, 10, 0.9) 0%, rgba(14, 13, 10, 0.2) 60%);
}

.room-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--color-white);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.room-card:hover .room-card-content {
  transform: translateY(0);
}

.room-card-subtitle {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 8px;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

.room-card-features {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.room-card:hover .room-card-features {
  opacity: 1;
}

.room-card-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-card-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.room-card-price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Amenities Section ===== */
.amenities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.amenities-image {
  position: relative;
  overflow: hidden;
}

.amenities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.amenities-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-xl);
  background: var(--color-dark);
  color: var(--color-white);
}

.amenities-content h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--space-lg);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.amenity-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.3rem;
  transition: all var(--transition-base);
}

.amenity-item:hover .amenity-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.amenity-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.amenity-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== Gallery Section ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 10, 0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(14, 13, 10, 0.3);
}

/* ===== Experiences Section ===== */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  text-align: center;
  padding: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
  background: var(--color-white);
}

.experience-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.experience-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.experience-card:hover .experience-icon {
  transform: scale(1.1);
}

.experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

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

/* ===== Testimonials Section ===== */
.testimonials-slider {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-item {
  display: none;
  animation: fadeIn 0.6s ease;
}

.testimonial-item.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.7;
  color: var(--color-dark);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-top: var(--space-lg);
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.testimonial-stars {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-lg);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--color-primary);
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  padding: 0 var(--side-padding);
}

.cta-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-2xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer-contact .icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-primary);
  background: rgba(14, 13, 10, 0.85);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===== Animations (Scroll-triggered) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Responsive ===== */
@media screen and (max-width: 1024px) {
  :root {
    --space-3xl: 100px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 375px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 60px 40px;
    transition: right var(--transition-elegant);
    z-index: 9999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
    z-index: 10000;
  }

  .booking-form {
    flex-direction: column;
  }

  .booking-field {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .booking-submit .btn {
    min-height: 60px;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-content {
    padding-left: 0;
  }

  .about-image::after {
    display: none;
  }

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

  .amenities-wrapper {
    grid-template-columns: 1fr;
  }

  .amenities-image {
    min-height: 350px;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media screen and (max-width: 767px) {
  :root {
    --space-3xl: 80px;
    --side-padding: 6vw;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .room-card-image {
    height: 320px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item {
    height: 250px;
  }

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

  .about-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .cta-section {
    height: 400px;
  }

  .btn {
    padding: 0 32px;
    height: 48px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .booking-bar {
    margin-top: -30px;
    padding: 0 var(--side-padding);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ===== Nav Menu Overlay (Mobile) ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ===== Divider ===== */
.divider {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto var(--space-md);
}

.section-header .divider {
  margin-top: var(--space-sm);
}
