:root {
  --cream: #f9f2f2;
  --warm-white: #FDFAF5;
  --terracotta: #C4622D;
  --terracotta-light: #E07848;
  --forest: #661919;
  --forest-light: #AC0303;
  --gold: #D4A843;
  --charcoal: #2A2520;
  --muted: #5b5b5b;
  --border: #E0D8CC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

/* NAV 
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253,250,245,0.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 68px;
}

nav.header-menu (position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding:0 2rem; height: 64px; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); font-family: 'DM Sans',sans-serif;} */

.nav-logo { font-family: fantasy; font-size: 2.5rem; color: #404040; letter-spacing: -0.02em; }
.nav-logo span { color: var(--terracotta); font-family: 'Playfair Display'; font-size: 1.5rem;}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); text-decoration: none; transition: color 0.2s; letter-spacing: 0.03em; }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { background: var(--terracotta); color: white !important; padding: 0.5rem 1.25rem; border-radius: 50px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--terracotta-light) !important; }

/* HERO */
#hero {
  min-height: 100vh; background: var(--forest);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 5% 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,98,45,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,168,67,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(61,99,87,0.3) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--cream) 1px, transparent 1px), linear-gradient(90deg, var(--cream) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; animation: fadeUp 0.9s ease both; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 500;
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-tag::before { content: '★'; font-size: 0.7rem; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem; }
h1 em { color: var(--terracotta-light); font-style: italic; }
.hero-desc { color: rgba(245,240,232,0.7); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--terracotta); color: white; padding: 0.875rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--terracotta-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--cream); padding: 0.875rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.2s; border: 1px solid rgba(245,240,232,0.3); cursor: pointer; }
.btn-outline:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); }
.hero-stats { position: relative; z-index: 2; margin-top: 4rem; display: flex; gap: 3rem; }
.stat { text-align: left; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); font-weight: 700; }
.stat-label { font-size: 0.8rem; color: rgba(245,240,232,0.5); letter-spacing: 0.05em; }

/* SHARED SECTION */
section { padding: 90px 5%; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--charcoal); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 520px; font-weight: 300; }

/* AMENITIES */
#features { background: var(--cream); }
.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(42,37,32,0.08); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.features-visual { border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, var(--forest), var(--forest-light)); display: flex; align-items: center; justify-content: center; min-height: 420px; }
.features-visual-inner { text-align: center; color: white; padding: 0rem; }
.features-visual-inner .big-emoji { font-size: 1rem; margin-bottom: 0rem; }
.features-visual-inner p { font-family: 'Playfair Display', serif; font-size: 1.2rem; opacity: 0.8;padding-bottom: 1rem; }

/* ROOMS */
#rooms { background: white; }
.rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.room-card { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(42,37,32,0.1); }
.room-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.room-img.single { background: linear-gradient(135deg, #E8D5C4, #D4B896); }
.room-img.double { background: linear-gradient(135deg, #C4D5E8, #96B4D4); }
.room-img.deluxe { background: linear-gradient(135deg, #D4C4E8, #B496D4); }
.room-badge { position: absolute; top: 12px; right: 12px; background: white; font-size: 0.72rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 50px; color: var(--terracotta); }
.room-info { padding: 1.5rem; }
.room-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.room-info p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.room-price { display: flex; justify-content: space-between; align-items: center; }
.price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--terracotta); }
.price span { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--muted); }
.room-amenities { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; margin-bottom: 1rem; }
.tag { font-size: 0.72rem; background: var(--cream); padding: 0.2rem 0.6rem; border-radius: 50px; color: var(--charcoal); }

/* GALLERY */
#gallery { background: var(--cream); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 1.5rem; }
.gallery-item { border-radius: 12px; overflow: hidden; background: var(--border); position: relative; cursor: pointer; aspect-ratio: auto; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 220px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item .placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #ffdfbf; font-size: 0.8rem; text-align: center; padding: 1rem; width: 100%; height: 100%; background: linear-gradient(135deg, #bb5757, #5c0404); }
.gallery-item .placeholder span { font-size: 2rem; margin-bottom: 0.5rem; }
.remove-btn { position: absolute; top: 8px; right: 8px; background: rgba(196,98,45,0.9); color: white; border: none; border-radius: 50%; width: 26px; height: 26px; font-size: 0.75rem; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 2; }
.upload-zone { border: 2px dashed var(--border); border-radius: 16px; padding: 3rem; text-align: center; cursor: pointer; transition: all 0.2s; background: white; }
.upload-zone:hover, .upload-zone.dragover { border-color: var(--terracotta); background: rgba(196,98,45,0.03); }
.upload-zone .upload-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.upload-zone h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.upload-zone p { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.25rem; }
#fileInput { display: none; }
.upload-info { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; }

/* TESTIMONIALS */
#testimonials { background: white; }
.testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: var(--cream); border-radius: 20px; padding: 2rem; border: 1px solid var(--border); transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(42,37,32,0.07); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.9rem; line-height: 1.75; color: var(--charcoal); margin-bottom: 1.5rem; font-style: italic; border: none; padding: 0; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: white; flex-shrink: 0; }
.reviewer-name { font-size: 0.88rem; font-weight: 500; }
.reviewer-sub { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }

/* FAQ */
#faq { background: var(--cream); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: 0 6px 20px rgba(42,37,32,0.07); }
.faq-item summary { padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--charcoal); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--terracotta); font-weight: 300; flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* CONTACT */
#contact { background: var(--forest); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info .section-title { color: var(--cream); }
.contact-info .section-tag { color: var(--gold); }
.contact-info .section-sub { color: rgba(245,240,232,0.6); margin-top: 0.5rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(245,240,232,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-text strong { font-size: 0.75rem; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 0.25rem; }
.contact-text span, .contact-text a { font-size: 0.9rem; color: rgba(245,240,232,0.8); }
.contact-text a { text-decoration: none; }
.contact-text a:hover { color: var(--cream); }
.contact-form-box { background: white; border-radius: 24px; padding: 2.5rem; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1.75rem; color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--charcoal); display: block; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.9rem; font-family: inherit; background: var(--warm-white); color: var(--charcoal); transition: border-color 0.2s; outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--terracotta); color: white; border: none; border-radius: 50px; padding: 0.9rem; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.form-submit:hover { background: var(--terracotta-light); }

/* FOOTER */
footer { background: var(--charcoal); padding: 2.5rem 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: fantasy; font-size: 1.8rem; color: var(--cream); }
.footer-logo span { color: var(--terracotta); font-family: 'Playfair Display', serif; font-size: 1.2rem;}
footer p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(245,240,232,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: fixed; top: 24px; right: 24px; background: white; border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 1.1rem; cursor: pointer; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .features-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-visual { display: none; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .testimonials-grid, .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 560px) {
  .rooms-grid { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
}