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

:root {
  --plum:        #4A235A;
  --plum-dark:   #351A44;
  --plum-light:  #6B3A7D;
  --amber:       #F0A500;
  --amber-light: #FFD166;
  --amber-dark:  #C47F00;
  --neutral-900: #1A1A2E;
  --neutral-700: #2D2D44;
  --neutral-500: #6B7280;
  --neutral-300: #D1D5DB;
  --neutral-100: #F3F4F6;
  --neutral-50:  #F9FAFB;
  --white:       #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background: var(--white);
  line-height: 1.65;
  -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: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--neutral-500);
  max-width: 560px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--neutral-900);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--plum-dark);
  border-color: var(--plum-dark);
}
.btn-outline-dark:hover {
  background: var(--plum-dark);
  color: var(--white);
}
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-100);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--plum-dark);
}
.logo-icon { color: var(--plum); }
.logo-accent { color: var(--amber-dark); }

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--neutral-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-list a:hover { color: var(--plum); background: rgba(74,35,90,.06); }
.nav-cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--plum-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--neutral-50) 0%, #f5f0f7 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--amber);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--neutral-900);
  margin-bottom: 24px;
}
.hero-headline span { color: var(--plum); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--plum);
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.badge svg { color: var(--amber-dark); }

/* Hero Image */
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 640/520;
}
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius-md);
  z-index: -1;
}
.hero-stat {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--plum);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
}
.hero-stat-label {
  font-size: .8rem;
  font-weight: 500;
  opacity: .85;
}

/* ── About ──────────────────────────────────────────── */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { aspect-ratio: 480/380; object-fit: cover; width: 100%; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img { aspect-ratio: 320/220; object-fit: cover; width: 100%; }
.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--amber);
  color: var(--neutral-900);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow-md);
  line-height: 1.4;
}
.about-content .section-lead { margin-bottom: 16px; }
.about-content p { color: var(--neutral-500); margin-bottom: 16px; line-height: 1.8; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--neutral-700);
}
.about-features li svg { flex-shrink: 0; }

/* ── Amenities ──────────────────────────────────────── */
.amenities {
  padding: 100px 0;
  background: var(--plum);
  color: var(--white);
}
.amenities .section-eyebrow { color: var(--amber); }
.amenities .section-title { color: var(--white); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.amenity-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.amenity-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--neutral-900);
}
.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.amenity-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ── Site Banner ────────────────────────────────────── */
.site-banner { padding: 100px 0; background: var(--neutral-50); }
.site-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.site-banner-content .section-lead { margin-bottom: 32px; }
.site-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.site-stat {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.site-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.site-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 6px;
}
.site-stat-desc {
  font-size: .8rem;
  color: var(--neutral-500);
  font-weight: 500;
}
.site-banner-images { position: relative; }
.site-img-1 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 400/300;
  object-fit: cover;
  width: 100%;
}
.site-img-2 {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 65%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 400/260;
  object-fit: cover;
}

/* ── Location ───────────────────────────────────────── */
.location { padding: 100px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-address {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.8;
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.location-address svg { color: var(--amber-dark); flex-shrink: 0; margin-top: 3px; }
.location-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.location-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--plum);
  transition: var(--transition);
}
.location-contact-item:hover { color: var(--amber-dark); }
.location-contact-item svg { color: var(--amber-dark); }
.location-note {
  font-size: .9rem;
  color: var(--neutral-500);
  line-height: 1.7;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

/* ── Contact ────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--neutral-50) 0%, #f5f0f7 100%);
}
.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: 20px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  color: var(--neutral-700);
}
.contact-detail svg { color: var(--amber-dark); flex-shrink: 0; }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--neutral-700);
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--neutral-900);
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,35,90,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--neutral-500);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
}
.form-success p { color: var(--neutral-500); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 300px; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-size: .9rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Mobile Nav Overlay ─────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 90;
}
.nav-overlay.active { display: block; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .site-banner-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image { order: -1; }
  .hero-img-accent,
  .hero-stat { display: none; }
  .about-img-secondary { right: 0; }
  .site-img-2 { left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 40px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 95;
  }
  .nav-list.open { right: 0; }
  .nav-list a { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 12px; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { flex-direction: column; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrapper { padding: 24px; }
}
