/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #1A1024;
  color: #E8D5C4;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
:root {
  --plum-deep: #1A1024;
  --plum-mid: #2B1D3D;
  --plum-light: #3D2B52;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --cream: #E8D5C4;
  --cream-dim: #B8A090;
  --white: #F5F0EB;
}

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled {
  background: rgba(26, 16, 36, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.nav-logo-accent { color: var(--gold); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  color: var(--gold) !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--plum-deep) !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 16, 36, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-link-cta {
  margin-top: 12px;
  border: 1px solid var(--gold);
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gold);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(61, 43, 82, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--plum-deep), transparent);
  pointer-events: none;
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--white);
}
.hero-title-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.25);
}
.hero-image {
  position: relative;
}
.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 16, 36, 0.4) 0%, transparent 40%);
  z-index: 1;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-image-frame:hover img { transform: scale(1.03); }
.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -30px;
  opacity: 0.4;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--plum-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232, 213, 196, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--light { color: var(--cream); border-color: rgba(232, 213, 196, 0.3); }
.btn--light:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; justify-content: center; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  z-index: 2;
}

/* ── Section Shared ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.section-title--light { color: var(--white); }
.text-gold { color: var(--gold); font-style: italic; font-weight: 400; }

/* ── About ── */
.about {
  padding: 120px 0;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-col {
  position: relative;
}
.about-image-main {
  border-radius: 4px;
  overflow: hidden;
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-stack {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--plum-deep);
}
.about-image-stack img { display: block; }
.about-text-col { padding-top: 20px; }
.about-body {
  color: var(--cream-dim);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--cream);
}
.about-feature-icon { flex-shrink: 0; }

/* ── Amenities ── */
.amenities {
  padding: 120px 0;
  background: var(--plum-mid);
  position: relative;
}
.amenities::before,
.amenities::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}
.amenities::before { top: 0; }
.amenities::after { bottom: 0; }
.amenities-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.amenities-header .section-label { justify-content: center; }
.amenities-header .section-label::before { display: none; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: rgba(26, 16, 36, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 4px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.amenity-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.amenity-card-icon {
  margin-bottom: 24px;
}
.amenity-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}
.amenity-card-desc {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

/* ── Surroundings ── */
.surroundings {
  padding: 120px 0;
  position: relative;
}
.surroundings-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.surroundings-header .section-label { justify-content: center; }
.surroundings-header .section-label::before { display: none; }
.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.surrounding-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  group: true;
}
.surrounding-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.surrounding-card:hover img { transform: scale(1.05); }
.surrounding-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 16, 36, 0.85) 0%, rgba(26, 16, 36, 0.1) 50%, transparent 100%);
  transition: background 0.4s;
}
.surrounding-card:hover::after {
  background: linear-gradient(to top, rgba(26, 16, 36, 0.9) 0%, rgba(26, 16, 36, 0.2) 60%, transparent 100%);
}
.surrounding-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
}
.surrounding-card-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--white);
}
.surrounding-card-desc {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: var(--plum-mid);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}
.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--large { grid-column: span 7; height: 400px; }
.gallery-item--tall { grid-column: span 5; height: 616px; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) { height: 292px; }

/* ── Contact ── */
.contact {
  padding: 120px 0;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-body {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--cream);
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: rgba(43, 29, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26, 16, 36, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 160, 144, 0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--plum-mid);
  color: var(--cream);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gold);
}
.form-success.show { display: flex; }

/* ── Map Section ── */
.map-section {
  padding: 80px 0;
  background: var(--plum-mid);
  position: relative;
}
.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}
.map-section-inner { text-align: center; }
.map-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.map-info .section-label { justify-content: center; }
.map-info .section-label::before { display: none; }
.map-info .section-title { margin-bottom: 8px; }

/* ── Footer ── */
.footer {
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-accent { color: var(--gold); }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--cream-dim);
  max-width: 320px;
  line-height: 1.75;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-link-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-link-col a,
.footer-link-col span {
  display: block;
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-link-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  font-size: 0.8rem;
  color: rgba(184, 160, 144, 0.5);
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-stack { right: 20px; bottom: -20px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-grid { gap: 40px; }
  .hero-title { font-size: clamp(2.25rem, 8vw, 3.25rem); }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-scroll { display: none; }
  .about { padding: 80px 0; }
  .about-image-stack { position: relative; bottom: 0; right: 0; margin-top: 16px; }
  .about-image-col { display: flex; flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
  .amenities { padding: 80px 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .surroundings { padding: 80px 0; }
  .surroundings-grid { grid-template-columns: 1fr; }
  .surrounding-card img { height: 280px; }
  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: span 2; height: 280px; }
  .gallery-item--tall { grid-column: span 1; height: 280px; }
  .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) { height: 200px; }
  .contact { padding: 80px 0; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 0 32px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .gallery-item--tall { grid-column: span 1; }
}
