/* ============================================
   VILLA SERENITÀ - ULTRA ELEGANT DESIGN
   Minimalist, Sophisticated & Timeless
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Elegant Color Palette */
  --primary: #8B7355;
  --primary-dark: #6B5745;
  --gold: #D4AF37;
  --dark: #1A1410;
  --dark-soft: #2C2416;
  --light: #FAF8F5;
  --white: #FFFFFF;
  --gray: #5A5A5A;
  --gray-light: #E8E6E3;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 160px;
  
  /* Effects */
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   TYPOGRAPHY - Refined & Elegant
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); }

.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 32px;
  position: relative;
  padding-left: 60px;
}

.label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   NAVBAR - Minimal & Transparent
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: var(--transition);
  padding: 32px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo {
  color: var(--dark);
}

.navbar.scrolled .nav-menu a {
  color: var(--gray);
}

.navbar.scrolled .mobile-toggle span {
  background: var(--dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 56px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white) !important;
}

.navbar.scrolled .btn-nav {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark) !important;
}

.btn-nav::after {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   HERO FULLSCREEN - Cinematic & Elegant
   ============================================ */

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.4) 0%,
    rgba(26, 20, 16, 0.6) 50%,
    rgba(26, 20, 16, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--white);
  width: 100%;
  padding: 180px 20px 200px;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 90px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.label-line {
  width: 60px;
  height: 1px;
  background: rgba(212, 175, 55, 0.6);
}

.label-text {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: var(--white);
  white-space: nowrap;
}

.title-line {
  display: inline;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.5s;
}

.title-line:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.1s forwards;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.6s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-hero-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 48px 0;
  border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray);
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--gray-light), transparent);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 280px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 2.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollLine 3s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.15;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.6;
  }
}

.scroll-text {
  display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   SECTIONS - Spacious & Clean
   ============================================ */

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--gray-light), transparent);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .label {
  color: var(--gold);
}

.section-header {
  max-width: 800px;
  margin-bottom: 100px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 120px;
  align-items: center;
}

.intro-text p {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 32px;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 60px 0;
  padding: 48px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.intro-image {
  position: relative;
  height: 700px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image:hover img {
  transform: scale(1.08);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139, 115, 85, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .hero-fullscreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-content {
    padding: 100px 20px 60px;
  }
  
  .hero-stats {
    position: static;
    padding: 40px 20px;
    background: white;
    margin-top: auto;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-hero {
    min-width: 250px;
    max-width: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
    row-gap: 40px;
  }
  
  .stat-divider {
    display: none !important;
  }
  
  .stat-item {
    padding: 0 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    padding: 100px 20px 70px;
  }
}

@media (max-width: 968px) {
  :root {
    --section-padding: 100px;
  }
  
  .hero-fullscreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-content {
    padding: 120px 20px 60px;
  }
  
  .hero-stats {
    position: static;
    padding: 40px 20px;
    background: white;
    margin-top: auto;
  }
  
  .hero-label {
    margin-bottom: 24px;
    gap: 12px;
  }
  
  .label-line {
    width: 30px;
  }
  
  .label-text {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .hero-actions {
    gap: 14px;
    flex-direction: column;
  }
  
  .btn-hero {
    padding: 15px 36px;
    font-size: 0.75rem;
    min-width: 250px;
    max-width: 300px;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu a {
    color: var(--gray) !important;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 120px 20px 50px;
  }
  
  .hero-stats {
    padding: 36px 16px;
  }
  
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 3.2rem);
    white-space: normal;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 24px;
  }
  
  .btn-hero {
    font-size: 0.7rem;
    padding: 14px 32px;
    min-width: 220px;
    max-width: 280px;
  }
  
  .stats-grid {
    gap: 28px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }
  
  .hero-fullscreen {
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 120px 20px 40px;
  }
  
  .hero-stats {
    padding: 32px 16px;
  }
  
  .hero-label {
    margin-bottom: 20px;
    gap: 10px;
  }
  
  .label-text {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }
  
  .label-line {
    width: 25px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.875rem;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-hero {
    padding: 13px 28px;
    font-size: 0.65rem;
    width: 100%;
    max-width: 260px;
    letter-spacing: 2px;
  }
  
  .stats-grid {
    gap: 28px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .hero-stats {
    padding: 32px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    row-gap: 24px;
  }
  
  .stat-item {
    padding: 0 8px;
  }
  
  .stat-number {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 0.625rem;
    letter-spacing: 1.5px;
  }
  
  .intro-image {
    height: 500px;
  }
}

/* ============================================
   HIGHLIGHTS SECTION - Minimal & Elegant
   ============================================ */

.highlights {
  background: var(--light);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
}

.highlight-card {
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
}

.highlight-icon::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.05);
  color: var(--gold);
}

.highlight-card:hover .highlight-icon::after {
  width: 48px;
}

.highlight-card h3 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.highlight-card p {
  color: var(--gray);
  line-height: 1.9;
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   ROOMS SECTION
   ============================================ */

.rooms-preview {
  background: var(--light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 48px;
  margin-bottom: 80px;
}

.room-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
}

.room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.room-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  transform: translateY(-12px);
}

.room-card:hover::after {
  opacity: 0.15;
}

.room-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.room-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.room-card:hover .room-image::after {
  opacity: 1;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image img {
  transform: scale(1.12);
}

.room-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), #C9A961);
  color: var(--dark);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.room-content {
  padding: 48px;
}

.room-content h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 400;
}

.room-content p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.9;
  font-size: 1.0625rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light);
}

.room-features span {
  padding: 10px 20px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.room-features span:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
}

.btn-link {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8125rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.center {
  text-align: center;
}

/* ============================================
   CTA SECTION - Sophisticated Split Design
   ============================================ */

.cta-section {
  background: var(--light);
  position: relative;
  padding: 0;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.cta-item {
  position: relative;
  padding: 120px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-item:last-child {
  border-right: none;
}

.cta-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  filter: brightness(0.9);
}

.cta-item:hover::before {
  transform: scale(1.1);
  filter: brightness(1);
}

.cta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.88) 0%, rgba(107, 87, 69, 0.82) 100%);
  z-index: 2;
  transition: var(--transition);
}

.cta-item:hover::after {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.78) 0%, rgba(107, 87, 69, 0.72) 100%);
}

.cta-item-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.cta-item .label {
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-block;
  padding-left: 0;
}

.cta-item .label::before {
  background: var(--gold);
  width: 60px;
}

.cta-item h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 56px;
  font-weight: 300;
}

.cta-item .btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 18px 48px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-item .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.5s ease;
  z-index: -1;
}

.cta-item .btn:hover {
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(212, 175, 55, 0.5);
}

.cta-item .btn:hover::before {
  left: 0;
}

/* Background Images */
.cta-item:nth-child(1)::before {
  background-image: url('https://images.unsplash.com/photo-1523531294919-4bcd7c65e216?w=1200&q=80');
}

.cta-item:nth-child(2)::before {
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=80');
}

/* Responsive */
@media (max-width: 968px) {
  .cta-content {
    grid-template-columns: 1fr;
  }
  
  .cta-item {
    padding: 100px 60px;
    min-height: 550px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cta-item:last-child {
    border-bottom: none;
  }
  
  .cta-item h2 {
    font-size: 2.5rem;
  }
  
  .cta-item p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .cta-item {
    padding: 80px 32px;
    min-height: 500px;
  }
  
  .cta-item h2 {
    font-size: 2rem;
  }
  
  .cta-item p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  
  .cta-item .btn {
    padding: 16px 40px;
    font-size: 0.75rem;
    width: 100%;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}

.contact-info h2 {
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 56px;
  line-height: 1.9;
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-item {
  display: flex;
  gap: 24px;
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8125rem;
}

.contact-item p {
  color: var(--gray);
  margin: 0;
  line-height: 1.8;
}

/* FORM */
.contact-form {
  background: var(--light);
  padding: 64px;
  border: 1px solid var(--gray-light);
}

.form-group {
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  transition: var(--transition);
  color: var(--gray-dark);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.8;
}

.full-width {
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 100px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  font-size: 1.0625rem;
}

.footer-links h4,
.footer-social h4 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */

@media (max-width: 968px) {
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 48px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-white,
  .btn-outline-white {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .room-content {
    padding: 32px;
  }
  
  .contact-form {
    padding: 32px;
  }
  
  .footer {
    padding: 60px 0 32px;
  }
  
  .footer-content {
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}

/* ============================================
   RESTAURANTS PAGE
   ============================================ */

.page-header {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 120px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.page-header-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 1rem 0;
}

.page-header-content p {
  font-size: 1.125rem;
  opacity: 0.95;
}

.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 48px;
  margin-top: 80px;
}

.restaurant-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.restaurant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.restaurant-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.restaurant-card:hover .restaurant-image img {
  transform: scale(1.08);
}

.restaurant-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 2;
}

.restaurant-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.restaurant-content h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.restaurant-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.restaurant-location svg {
  color: var(--primary);
  flex-shrink: 0;
}

.restaurant-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.restaurant-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.restaurant-tags span {
  padding: 6px 16px;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 500;
}

.restaurant-footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.restaurant-footer .btn {
  flex: 1;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
    gap: 0;
  }
  
  .nav-menu.active {
    height: 100vh;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
    list-style: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-menu.active li:nth-child(1) { transition-delay: 0.15s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.25s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.35s; }
  
  .nav-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 300;
    padding: 18px 0;
    display: block;
    color: var(--dark);
    transition: color 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--primary);
  }
  
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    position: relative;
  }
  
  .mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
  }
  
  .mobile-toggle.active span {
    background: var(--dark);
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .navbar.scrolled .mobile-toggle span {
    background: var(--dark);
  }
  
  .btn-nav {
    background: var(--dark);
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s;
  }
  
  .nav-menu.active .btn-nav {
    opacity: 1;
    transform: translateY(0);
  }
  
  .btn-nav:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
}

@media (max-width: 768px) {
  .restaurants-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .page-header {
    height: 50vh;
    margin-bottom: 80px;
  }
  
  .page-header-content h1 {
    font-size: 2.5rem;
  }
  
  .restaurant-image {
    height: 240px;
  }
  
  .restaurant-content {
    padding: 24px;
  }
  
  .nav-menu {
    width: 280px;
    padding: 80px 32px 32px;
  }
}
