/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #334155;
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section Shared ─── */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.text-white {
  color: #fff;
}

.section-desc {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  padding: 14px 28px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: #0d9488;
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #0d9488;
  border: 1.5px solid #0d9488;
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background: #0d9488;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-logo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0d9488;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 10px;
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #0d9488;
  background: #f0fdfa;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0d9488;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.nav-phone:hover {
  background: #f0fdfa;
}

.nav-cta {
  padding: 10px 22px;
  background: #0d9488;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #0f766e;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #1e293b;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: #f1f5f9;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: 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;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.72) 0%,
    rgba(30, 41, 59, 0.68) 50%,
    rgba(15, 118, 110, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

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

/* ─── Quick Info Bar ─── */
.quick-info {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
  position: relative;
  z-index: 10;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.qi-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}

.qi-item:last-child {
  border-right: none;
}

.qi-item:hover {
  background: #f0fdfa;
}

.qi-icon {
  width: 22px;
  height: 22px;
  color: #0d9488;
  flex-shrink: 0;
}

.qi-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}

.qi-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
}

.qi-value a {
  color: #0d9488;
  transition: color 0.2s ease;
}

.qi-value a:hover {
  color: #0f766e;
}

/* ─── Rooms ─── */
.rooms {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.room-img {
  height: 220px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s 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: #1e293b;
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  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 li svg {
  width: 16px;
  height: 16px;
  color: #0d9488;
  flex-shrink: 0;
}

.room-book {
  width: 100%;
  justify-content: center;
}

/* ─── Amenities ─── */
.amenities {
  padding: 100px 0;
  background: #fff;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  background: #fff;
}

.amenity-card:hover {
  border-color: #99f6e4;
  background: #f0fdfa;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}

.amenity-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  color: #0d9488;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon-wrap {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #fff;
}

.amenity-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.amenity-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
}

/* ─── Location ─── */
.location {
  padding: 100px 0;
  background: #f8fafc;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-content .section-desc {
  margin-bottom: 32px;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lh-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lh-item svg {
  width: 22px;
  height: 22px;
  color: #0d9488;
  flex-shrink: 0;
  margin-top: 2px;
}

.lh-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

.lh-item span {
  font-size: 0.875rem;
  color: #64748b;
}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
}

.map-frame iframe {
  width: 100%;
  height: 480px;
  display: block;
}

/* ─── CTA Section ─── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.88) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-quote {
  position: relative;
  padding: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.cta-quote-mark {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.cta-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1875rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.cta-text .section-title {
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-icon {
  width: 22px;
  height: 22px;
  color: #0d9488;
  flex-shrink: 0;
  margin-top: 3px;
}

.cd-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 3px;
}

.cd-value,
.cd-item a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s ease;
}

.cd-item a:hover {
  color: #0d9488;
}

/* ─── Form ─── */
.contact-form-wrap {
  background: #f8fafc;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #e2e8f0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}

.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);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 12px;
  color: #0d9488;
  font-weight: 500;
  font-size: 0.9375rem;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

/* ─── Footer ─── */
.footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo-num {
  background: #0d9488;
}

.footer-brand .nav-logo-text {
  color: #fff;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #5eead4;
}

.footer-col ul li {
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #334155;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: #f0fdfa;
  color: #0d9488;
}

.mobile-menu .mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 1rem;
  color: #0d9488;
  font-weight: 500;
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  text-align: center;
  padding: 16px;
  background: #0d9488;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-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: 100svh;
  }

  .hero-content {
    padding: 100px 20px 80px;
  }

  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qi-item {
    border-bottom: 1px solid #e2e8f0;
  }

  .qi-item:nth-child(2),
  .qi-item:nth-child(4) {
    border-right: none;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-quote {
    padding: 24px;
  }

  .cta-quote blockquote {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .qi-item {
    border-right: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}
