/* ===== 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: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
}
.btn-primary:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,148,136,0.3); }
.btn-secondary {
  background: #f1f5f9;
  color: #1e293b;
  border-color: #e2e8f0;
}
.btn-secondary:hover { background: #e2e8f0; }
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #ffffff; }
.btn-outline-dark {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.btn-outline-dark:hover { background: #f8fafc; border-color: #94a3b8; }
.btn-sm { padding: 8px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0f172a;
}
.logo-icon { color: #0d9488; }
.logo-light .logo-icon { color: #5eead4; }
.logo-light .logo-text { color: #f1f5f9; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: #0d9488; background: #f0fdfa; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(13,68,62,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ROOMS ===== */
.rooms { background: #f8fafc; }
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.room-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.room-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.room-img { height: 240px; 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: 28px; }
.room-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.room-desc { font-size: 0.9375rem; color: #475569; line-height: 1.7; margin-bottom: 20px; }
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
}
.room-features svg { color: #0d9488; flex-shrink: 0; }

/* ===== AMENITIES ===== */
.amenities { background: #ffffff; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.amenity-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.amenity-card:hover { border-color: #99f6e4; box-shadow: 0 4px 20px rgba(13,148,136,0.08); }
.amenity-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 12px;
  color: #0d9488;
  margin-bottom: 20px;
}
.amenity-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.amenity-desc { font-size: 0.9375rem; color: #475569; line-height: 1.7; }

/* ===== LOCATION ===== */
.location { background: #f8fafc; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-content .section-title { text-align: left; }
.location-content .section-subtitle { text-align: left; margin-bottom: 32px; }
.contact-info { margin-bottom: 32px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9375rem;
  color: #334155;
}
.contact-row svg { color: #0d9488; flex-shrink: 0; }
.contact-row a { color: #0d9488; font-weight: 500; transition: color 0.2s; }
.contact-row a:hover { color: #0f766e; }
.location-highlights {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.highlight-item { text-align: center; }
.highlight-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}
.highlight-label {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}
.location-map {
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ===== ABOUT ===== */
.about { background: #ffffff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { text-align: left; }
.about-content .section-subtitle { text-align: left; margin-bottom: 20px; }
.about-content p { font-size: 0.9375rem; color: #475569; line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8125rem; color: #64748b; font-weight: 500; }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,68,62,0.88) 0%, rgba(15,23,42,0.85) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-text { font-size: 1.0625rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact { background: #f8fafc; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-side .section-title { text-align: left; }
.contact-info-side .section-subtitle { text-align: left; margin-bottom: 32px; }
.contact-details { margin-bottom: 24px; }
.detail-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}
.detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 10px;
  color: #0d9488;
  flex-shrink: 0;
}
.detail-row strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin-bottom: 4px;
}
.detail-row span, .detail-row a {
  font-size: 0.9375rem;
  color: #475569;
}
.detail-row a { color: #0d9488; font-weight: 500; transition: color 0.2s; }
.detail-row a:hover { color: #0f766e; }
.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #92400e;
}
.contact-note svg { flex-shrink: 0; margin-top: 2px; color: #d97706; }

/* ===== FORM ===== */
.contact-form {
  background: #ffffff;
  padding: 36px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1e293b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
  background: #ffffff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  text-align: center;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 16px;
}
.form-success {
  text-align: center;
  padding: 48px 36px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ccfbf1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  border: 2px solid #99f6e4;
  border-radius: 50%;
  color: #0d9488;
}
.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.form-success p { font-size: 0.9375rem; color: #475569; line-height: 1.7; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; margin-top: 16px; color: #94a3b8; max-width: 320px; }
.footer-links h4,
.footer-contact h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f1f5f9;
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9375rem;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-links a:hover { color: #5eead4; }
.footer-contact address { font-size: 0.9375rem; line-height: 1.8; color: #94a3b8; }
.footer-contact a { color: #5eead4; transition: color 0.2s; }
.footer-contact a:hover { color: #ffffff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: #64748b;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; padding: 16px 24px; gap: 4px; }
  .main-nav a { padding: 12px 16px; }
  .main-nav .btn { text-align: center; justify-content: center; margin-top: 8px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .location-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-content .section-title,
  .location-content .section-subtitle,
  .about-content .section-title,
  .about-content .section-subtitle,
  .contact-info-side .section-title,
  .contact-info-side .section-subtitle { text-align: center; }
  .about-image { order: -1; }
  .location-map { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .room-features { grid-template-columns: 1fr; }
  .location-highlights { justify-content: center; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 24px; }
}
