/* === IN RESONANCE — Styles === */
:root {
  --terracotta: #C4725F;
  --terracotta-light: #D4917F;
  --sage: #8BA888;
  --sage-dark: #6B8B68;
  --sand: #F2E8D5;
  --sand-light: #FAF5EC;
  --copper: #B87333;
  --copper-glow: #D4944A;
  --charcoal: #2C2C2C;
  --warm-black: #1A1A18;
  --cream: #FFF9F0;
  --text: #3A3632;
  --text-light: #7A7570;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--copper));
  color: white;
  box-shadow: 0 4px 15px rgba(196, 114, 95, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 114, 95, 0.5);
}

/* === NAV === */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--sand-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--copper-glow); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--sand);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1A1A18 0%, #2C2218 30%, #3A2A1E 60%, #1A1A18 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 114, 95, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(139, 168, 136, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184, 115, 51, 0.1) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-pre {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-glow);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--sand);
  letter-spacing: 8px;
  margin-bottom: 12px;
  text-shadow: 0 2px 40px rgba(196, 114, 95, 0.3);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--terracotta-light);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-stats {
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-cta { font-size: 1.1rem; }

.hero-countdown {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--sand);
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper-glow);
}

.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--sand);
  font-size: 1.5rem;
  opacity: 0.5;
}

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

/* === SECTIONS === */
.section {
  padding: 80px 0;
}

.section-light { background: var(--cream); }
.section-dark { background: var(--sand); }

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--charcoal);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* === VISION === */
.vision-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.vision-text p {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--text);
}

.vision-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--terracotta) !important;
  margin-top: 24px !important;
}

/* === CAROUSEL === */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16/10;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Real photos - no filter needed */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover { background: rgba(0,0,0,0.6); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--cream);
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-3px); }

.feature-icon { font-size: 1.8rem; }

/* === DAY FLOW === */
.day-flow {
  margin-bottom: 32px;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.day-label {
  background: linear-gradient(135deg, var(--terracotta), var(--copper));
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
}

.day-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 700px;
}

/* === HIGHLIGHTS GRID === */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.highlight-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.highlight-img {
  height: 180px;
  overflow: hidden;
}

.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.highlight-body {
  padding: 16px 20px 20px;
}

.highlight-tag {
  display: inline-block;
  background: var(--sand);
  color: var(--terracotta);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.highlight-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.highlight-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === EXTRAS ROW === */
.extras-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}

.extra-item {
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  white-space: nowrap;
}

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

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .highlight-img { height: 200px; }
}

/* === AMENITIES === */
.amenities-section {
  margin-top: 48px;
  text-align: center;
}

.amenities-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.amenity {
  background: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.amenity:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* === ROOM LIGHTBOX === */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
}

.lightbox-title {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.lightbox-gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s;
}

.lightbox-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .lightbox-gallery {
    grid-template-columns: 1fr;
  }
}

/* === ROOMS === */
.cost-explainer {
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cost-explainer strong {
  color: var(--terracotta);
}

.rooms-intro {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 240px;
}

.villa-badge { background: linear-gradient(135deg, rgba(196,114,95,0.15), rgba(196,114,95,0.05)); border: 1px solid rgba(196,114,95,0.3); }
.outdoor-badge { background: linear-gradient(135deg, rgba(139,168,136,0.15), rgba(139,168,136,0.05)); border: 1px solid rgba(139,168,136,0.3); }
.day-badge { background: linear-gradient(135deg, rgba(184,115,51,0.15), rgba(184,115,51,0.05)); border: 1px solid rgba(184,115,51,0.3); }
.crew-badge { background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(168,85,247,0.05)); border: 1px solid rgba(168,85,247,0.3); }

.badge-icon { font-size: 1.5rem; margin-bottom: 4px; }
.badge-label { font-weight: 600; font-size: 1rem; }
.badge-sub { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.room-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.room-card.selected {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 114, 95, 0.2);
}

.room-card.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}

.room-card.sold-out:hover { transform: none; }

.room-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.room-icon { font-size: 1.5rem; }

.room-status {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-available { background: rgba(139,168,136,0.2); color: var(--sage-dark); }
.status-limited { background: rgba(184,115,51,0.2); color: var(--copper); }
.status-soldout { background: rgba(196,114,95,0.2); color: var(--terracotta); }

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.room-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
  max-height: 140px;
}

.room-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.room-thumb-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.room-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.room-availability {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-avail-bar {
  flex: 1;
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.room-avail-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}

.fill-available { background: var(--sage); }
.fill-limited { background: var(--copper); }
.fill-soldout { background: var(--terracotta); }

.room-avail-text {
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 500;
}

.room-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tag-villa { background: rgba(196,114,95,0.15); color: var(--terracotta); }
.tag-outdoor { background: rgba(139,168,136,0.15); color: var(--sage-dark); }
.tag-day { background: rgba(184,115,51,0.15); color: var(--copper); }

/* === BOOKING FORM === */
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--sand-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 114, 95, 0.1);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--sand-light);
  transition: background 0.2s;
}

.checkbox-label:hover { background: var(--sand); }

.checkbox-label input[type="checkbox"] {
  width: auto;
  accent-color: var(--terracotta);
}

.btn-submit {
  width: 100%;
  font-size: 1.1rem;
  padding: 16px;
  margin-top: 8px;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: white;
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.4s ease;
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.modal p {
  color: var(--text-light);
  margin-bottom: 8px;
}

.modal-detail {
  font-size: 0.85rem;
  margin-bottom: 24px !important;
}

.modal-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

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

.faq-item {
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--charcoal);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--sand-light); }

.faq-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s;
  color: var(--terracotta);
}

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

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

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

.faq-answer p {
  padding: 16px 24px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--warm-black);
  color: var(--sand);
  text-align: center;
  padding: 48px 20px;
}

.footer-heart {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--copper-glow);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 2px;
}

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

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 24, 0.95);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .section { padding: 60px 0; }

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

  .booking-form { padding: 24px 20px; }

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

  .price-badges {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .timeline { padding-left: 50px; }
  .timeline::before { left: 18px; }
  .timeline-marker {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .hero-title { letter-spacing: 4px; }

  .countdown-num { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-pre { font-size: 0.78rem; letter-spacing: 2px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { padding: 14px 10px; font-size: 0.82rem; }
  .feature-icon { font-size: 1.4rem; }
}
