/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #2c2c2c;
  --charcoal-light: #3d3d3d;
  --charcoal-dark: #1a1a1a;
  --coral: #e8735a;
  --coral-light: #f09080;
  --coral-dark: #c95a45;
  --sand: #f5f0eb;
  --sand-light: #faf7f4;
  --sand-dark: #e8e0d8;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
  --shadow-md: 0 8px 30px rgba(44,44,44,0.1);
  --shadow-lg: 0 20px 60px rgba(44,44,44,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--sand-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44,44,44,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.nav-brand-text span {
  color: var(--coral);
}

.nav-brand-icon {
  font-size: 1.5rem;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--charcoal);
  background: rgba(44,44,44,0.06);
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  font-weight: 800 !important;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232,115,90,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232,115,90,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-tag {
  display: inline-block;
  background: rgba(232,115,90,0.12);
  color: var(--coral-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-headline .text-coral {
  color: var(--coral);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--charcoal);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* Hero Image Stack */
.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
  width: 85%;
  height: 480px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-secondary {
  width: 65%;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 6px solid var(--sand-light);
}

.hero-badge {
  position: absolute;
  bottom: 200px;
  right: -10px;
  z-index: 4;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,90,0.3);
}

.btn-charcoal {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-charcoal:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,44,44,0.2);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

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

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  background: rgba(232,115,90,0.12);
  color: var(--coral-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.centered {
  text-align: center;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 75%;
  height: 380px;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

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

.about-content .section-title {
  margin-top: 8px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.about-features svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* ===== AMENITIES ===== */
.amenities {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(44,44,44,0.04);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,115,90,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
}

.amenity-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.amenity-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-wide {
  grid-column: span 12;
  height: 320px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 6;
  height: 300px;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 6;
  height: 260px;
}

/* ===== LOCATION ===== */
.location {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.location-info {
  display: flex;
  flex-direction: column;
}

.location-info .section-title {
  margin-top: 8px;
}

.location-info > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.location-details {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
  flex: 1;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-detail svg {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.location-detail span,
.location-detail a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.location-detail a:hover {
  color: var(--coral);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-md);
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(232,115,90,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(232,115,90,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta .section-tag {
  background: rgba(232,115,90,0.2);
  color: var(--coral-light);
}

.cta .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta .section-title .text-coral {
  color: var(--coral-light);
}

.cta > .container > .cta-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

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

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--white);
}

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

.contact-info .section-title {
  margin-top: 8px;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,115,90,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-detail a:hover {
  color: var(--coral);
}

/* Form */
.contact-form-wrap {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,115,90,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--sand-dark);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(76,175,80,0.08);
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-weight: 700;
  margin-top: 8px;
}

.form-success svg {
  flex-shrink: 0;
  color: #4caf50;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .nav-brand {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-stack {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img-main {
    width: 100%;
    height: 360px;
  }

  .hero-img-secondary {
    width: 55%;
    height: 220px;
  }

  .hero-badge {
    bottom: 160px;
    right: 0;
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,247,244,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-image-stack {
    height: 320px;
  }

  .hero-img-main {
    height: 280px;
  }

  .hero-img-secondary {
    height: 180px;
  }

  .hero-badge {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 12;
    height: 220px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: span 12;
    height: 220px;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 12;
    height: 200px;
  }

  .about-images {
    height: 360px;
  }

  .about-img-main {
    width: 100%;
    height: 300px;
  }

  .about-img-float {
    width: 60%;
    height: 200px;
  }

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

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

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

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

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

  .section-title {
    font-size: 1.8rem;
  }
}
