/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #0f172a; }
.section-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #0d9488; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: #475569; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary { background: #0d9488; color: #fff; border: 2px solid #0d9488; }
.btn-primary:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-outline { background: transparent; color: #0d9488; border: 2px solid #0d9488; }
.btn-outline:hover { background: #0d9488; color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: #0d9488; border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========== HEADER ========== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo-icon { color: #0d9488; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #0f172a; }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-icon { color: #fff; }

nav ul { display: flex; align-items: center; gap: 2rem; }
nav a { font-size: 0.9rem; font-weight: 500; color: #475569; transition: color 0.2s; }
nav a:hover { color: #0d9488; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #1e293b; border-radius: 2px; transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  padding-top: 72px; min-height: 100vh;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 50%, #f1f5f9 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding-top: 2rem; padding-bottom: 6rem; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #0d9488; margin-bottom: 1rem; }
.hero-headline { font-size: clamp(1.75rem, 3.5vw, 2.6rem); color: #0f172a; margin-bottom: 1.25rem; line-height: 1.25; }
.hero-sub { font-size: 1.05rem; color: #475569; margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { flex: 1; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #0f172a; }
.stat-label { font-size: 0.8rem; color: #64748b; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: #e2e8f0; }

.hero-image { position: relative; }
.hero-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -2rem; left: -2rem;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ========== ABOUT ========== */
.about { padding: 6rem 0; background: #f8fafc; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: #475569; margin-bottom: 1rem; font-size: 1rem; line-height: 1.75; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; color: #334155; }
.about-icon { color: #0d9488; flex-shrink: 0; }
.about-image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ========== ROOMS ========== */
.rooms { padding: 6rem 0; background: #fff; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card { border-radius: 16px; overflow: hidden; background: #f8fafc; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: #0d9488; }
.room-img { height: 220px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 1.5rem; }
.room-name { font-size: 1.25rem; margin-bottom: 0.5rem; }
.room-desc { font-size: 0.9rem; color: #64748b; margin-bottom: 1rem; line-height: 1.65; }
.room-features { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; }
.room-features li { font-size: 0.8rem; color: #475569; font-weight: 500; display: flex; align-items: center; gap: 0.35rem; }
.room-features li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #0d9488; flex-shrink: 0; }

/* ========== AMENITIES ========== */
.amenities { padding: 6rem 0; background: #0f172a; }
.amenities .section-eyebrow { color: #2dd4bf; }
.amenities .section-title { color: #fff; }
.amenities .section-subtitle { color: #94a3b8; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.amenity-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem; transition: all 0.3s ease;
}
.amenity-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(45,212,191,0.3); transform: translateY(-4px); }
.amenity-icon { color: #2dd4bf; margin-bottom: 1rem; }
.amenity-card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: #f1f5f9; margin-bottom: 0.5rem; }
.amenity-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.65; }

/* ========== LOCATION ========== */
.location { padding: 6rem 0; background: #f8fafc; }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-text p { color: #475569; margin-bottom: 1.5rem; line-height: 1.75; }
.location-list { display: flex; flex-direction: column; gap: 1rem; }
.location-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: #334155; }
.loc-icon { color: #0d9488; flex-shrink: 0; }
.location-map { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* ========== GALLERY ========== */
.gallery { padding: 6rem 0; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ========== CTA ========== */
.cta { padding: 6rem 0; background: linear-gradient(135deg, #0d9488 0%, #0f766e 60%, #0f172a 100%); position: relative; overflow: hidden; }
.cta::before { content: ""; 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.04'%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"); }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta .section-eyebrow { color: #2dd4bf; }
.cta-title { color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact { padding: 6rem 0; background: #f8fafc; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-desc { color: #475569; margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { color: #0d9488; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #64748b; margin-bottom: 0.25rem; }
.contact-item span, .contact-item a { font-size: 1rem; color: #1e293b; }
.contact-item a:hover { color: #0d9488; }

.contact-form-wrap { background: #fff; border-radius: 16px; padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid #e2e8f0; }
.form-title { font-size: 1.35rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #334155; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e2e8f0; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #1e293b;
  transition: border-color 0.2s, box-shadow 0.2s; background: #f8fafc;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.1); background: #fff; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-note { font-size: 0.8rem; color: #94a3b8; margin-top: 0.75rem; text-align: center; }

.form-success { text-align: center; padding: 2rem; }
.form-success svg { color: #0d9488; margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: #64748b; margin-bottom: 1.5rem; }

/* ========== FOOTER ========== */
.footer { background: #0f172a; color: #94a3b8; padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-links h4, .footer-contact h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #f1f5f9; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: #2dd4bf; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.4rem; line-height: 1.6; }
.footer-contact a { color: #94a3b8; transition: color 0.2s; }
.footer-contact a:hover { color: #2dd4bf; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: #64748b; }

/* ========== MOBILE NAV OVERLAY ========== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  nav { position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; padding: 1.5rem; transform: translateY(-120%); transition: transform 0.3s ease; z-index: 99; }
  nav.open { transform: translateY(0); }
  nav ul { flex-direction: column; gap: 1rem; }
  nav a { font-size: 1rem; padding: 0.5rem 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-img-accent { left: 1rem; bottom: -1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; max-height: 400px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-bottom: 2rem; }
  .hero-inner { padding-bottom: 4rem; }
  .hero-img-accent { display: none; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
