/* ── 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, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: 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 ───────────────────────────────────── */
.cormorant { font-family: 'Cormorant Garamond', Georgia, serif; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
  line-height: 1.7;
}
.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;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-teal {
  background: #0d9488;
  color: #fff;
  border: 2px solid #0d9488;
}
.btn-teal:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #1e293b;
  border: 2px solid #cbd5e1;
}
.btn-outline:hover { border-color: #0d9488; color: #0d9488; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-white {
  background: #fff;
  color: #0d9488;
  border: 2px solid #fff;
}
.btn-white:hover { background: #f0fdfa; transform: translateY(-1px); }

/* ── Header / Nav ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203,213,225,0.5);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0d9488;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0d9488;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
}
.nav-links a:hover { color: #0d9488; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Nav Overlay ───────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(248,250,252,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-inner { text-align: center; display: flex; flex-direction: column; gap: 1.5rem; }
.nav-overlay-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s;
}
.nav-overlay-link:hover { color: #0d9488; }
.nav-overlay-contact { margin-top: 1rem; }
.nav-overlay-contact p { font-size: 0.95rem; color: #64748b; margin-bottom: 0.4rem; }
.nav-overlay-contact a { color: #0d9488; font-weight: 500; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 50%, #f1f5f9 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(13,148,136,0.08);
  border-radius: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.25rem;
}
.text-teal { color: #0d9488; }
.hero-sub {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}
.trust-item svg { color: #0d9488; }

/* Hero Images */
.hero-image { position: relative; height: 600px; }
.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-circle {
  position: absolute;
  top: -40px;
  left: 30%;
  width: 120px;
  height: 120px;
  background: rgba(13,148,136,0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Intro ────────────────────────────────────────── */
.intro { padding: 6rem 0; background: #fff; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-content .section-title { margin-bottom: 1.25rem; }
.intro-text {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.intro-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.intro-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,148,136,0.08);
  border-radius: 10px;
  color: #0d9488;
}
.intro-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.2rem;
}
.intro-feature p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}
.intro-image { position: relative; }
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.intro-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(13,148,136,0.06);
  border-radius: 16px;
  pointer-events: none;
}

/* ── Rooms ────────────────────────────────────────── */
.rooms { padding: 6rem 0; background: #f8fafc; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.room-card-img { position: relative; height: 240px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0d9488;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.room-card-body { padding: 1.5rem; }
.room-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.room-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.room-features li {
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}
.room-card-body .btn { width: 100%; justify-content: center; }

/* ── Experience ───────────────────────────────────── */
.experience { padding: 6rem 0; background: #fff; }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.experience-text {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.2s;
}
.amenity:hover { background: rgba(13,148,136,0.06); }
.amenity-icon {
  color: #0d9488;
  flex-shrink: 0;
}
.experience-image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Location ─────────────────────────────────────── */
.location { padding: 6rem 0; background: #f8fafc; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-text {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.location-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.location-detail { display: flex; gap: 1rem; align-items: flex-start; }
.location-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,148,136,0.08);
  border-radius: 10px;
  color: #0d9488;
}
.location-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.15rem;
}
.location-detail p { font-size: 0.9rem; color: #64748b; line-height: 1.5; }
.location-detail a { color: #0d9488; font-weight: 500; }
.location-landmarks { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.landmark-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.5rem;
}
.landmark {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  background: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}
.location-map { }
.map-placeholder {
  background: #e2e8f0;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #64748b;
  min-height: 320px;
  justify-content: center;
}
.map-placeholder svg { color: #0d9488; }
.map-placeholder p { font-size: 0.95rem; line-height: 1.6; }

/* ── Gallery ──────────────────────────────────────── */
.gallery { padding: 6rem 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item { border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 5; }

/* ── Testimonials ─────────────────────────────────── */
.testimonials { padding: 6rem 0; background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-quote {
  color: #0d9488;
  opacity: 0.3;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(13,148,136,0.1);
  color: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #1e293b;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ── CTA ──────────────────────────────────────────── */
.cta { padding: 6rem 0; background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta .section-eyebrow { color: rgba(255,255,255,0.7); }
.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 6rem 0; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,148,136,0.08);
  border-radius: 10px;
  color: #0d9488;
}
.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.15rem;
}
.contact-detail p { font-size: 0.9rem; color: #64748b; line-height: 1.5; }
.contact-detail a { color: #0d9488; font-weight: 500; }

/* Form */
.contact-form-wrap {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #334155;
  background: #fff;
  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.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(13,148,136,0.08);
  border-radius: 8px;
  color: #0d9488;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────── */
.site-footer { padding: 4rem 0 0; background: #1e293b; color: #94a3b8; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.15);
}
.footer-brand .logo-text { color: #fff; }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav strong, .footer-contact strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #0d9488; }
.footer-contact p { font-size: 0.9rem; line-height: 1.6; }
.footer-contact a { color: #0d9488; font-weight: 500; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #475569;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .experience-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image { height: 400px; order: -1; }
  .hero-img-main { width: 100%; height: 100%; }
  .hero-img-float { display: none; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 2rem; }
  .hero-grid { gap: 2rem; }
  .hero-image { height: 300px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item--wide { grid-column: span 2; }
  .intro-features { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 200px; }
}

/* ── Animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
