*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Nunito', sans-serif; color: #1e293b; background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; color: #0f766e; }
.nav-logo-icon { width: 36px; height: 36px; }
.nav-logo-text { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { padding: 0.5rem 0.85rem; border-radius: 9999px; font-weight: 600; font-size: 0.9rem; color: #475569; transition: background 0.2s, color 0.2s; }
.nav-links a:hover { background: #f0fdfa; color: #0d9488; }
.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: 2.5px; background: #334155; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  border-radius: 9999px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-teal { background: #0d9488; color: #fff; border-color: #0d9488; }
.btn-teal:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-outline { background: transparent; color: #0d9488; border-color: #0d9488; }
.btn-outline:hover { background: #0d9488; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #0d9488; border-color: #fff; }
.btn-white:hover { background: #f0fdfa; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: #0d9488; transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 40%, #e2e8f0 100%);
  padding: 6rem 0 4rem; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, #0d9488 1.5px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-container { position: relative; z-index: 2; display: flex; align-items: center; gap: 3rem; }
.hero-card {
  flex: 1; max-width: 580px;
  background: #fff; border-radius: 1.5rem;
  padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  animation: cardIn 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #f0fdfa; color: #0d9488; font-weight: 700; font-size: 0.8rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px; margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
}
.hero-headline { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: #0f172a; margin-bottom: 1rem; }
.hero-sub { font-size: 1.05rem; color: #475569; line-height: 1.7; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.85rem; color: #334155; font-family: 'Outfit', sans-serif; }

.hero-photo {
  flex: 0 0 auto; width: 420px; height: 500px; border-radius: 2rem; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  animation: photoIn 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes photoIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-overlay { position: absolute; inset: 0; border-radius: 2rem; background: linear-gradient(to top, rgba(13,148,136,0.15), transparent 50%); pointer-events: none; }

/* ─── FLOATING STATS ─── */
.hero-stats {
  position: absolute; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.stat-card {
  background: #fff; border-radius: 1rem; padding: 1rem 1.15rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: statFloat 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes statFloat { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.stat-card--1 { animation-delay: 0.4s; }
.stat-card--2 { animation-delay: 0.5s; }
.stat-card--3 { animation-delay: 0.6s; }
.stat-card--4 { animation-delay: 0.7s; }
.stat-icon { width: 44px; height: 44px; border-radius: 0.75rem; background: linear-gradient(135deg, #0d9488, #2dd4bf); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.stat-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; color: #0f172a; line-height: 1.2; }
.stat-label { font-size: 0.75rem; color: #64748b; font-weight: 600; }

/* ─── SECTIONS ─── */
.section { padding: 5rem 0; }
.section--light { background: #f8fafc; }
.section--teal { background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%); }
.section-header { margin-bottom: 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: #0d9488; margin-bottom: 0.75rem;
}
.section-label--light { color: #99f6e4; }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: #0f172a; line-height: 1.2; margin-bottom: 1rem; }
.section-title--light { color: #fff; }
.section-desc { font-size: 1.05rem; color: #475569; line-height: 1.75; max-width: 640px; }
.section-desc--light { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.max-w-xl { max-width: 560px; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photos { position: relative; }
.about-photo-main { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.about-photo-main img { width: 100%; height: 400px; object-fit: cover; }
.about-photo-stack { display: flex; gap: 1rem; margin-top: -2rem; padding-left: 2rem; position: relative; z-index: 2; }
.about-photo-stack img { border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); width: 50%; height: 180px; object-fit: cover; }
.about-content .section-label { margin-bottom: 0.75rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content .section-desc { max-width: none; margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.about-features li { display: flex; align-items: center; gap: 0.65rem; font-weight: 700; font-size: 0.95rem; color: #334155; }

/* ─── AMENITIES ─── */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.amenity-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }
.amenity-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  display: flex; align-items: center; justify-content: center;
  color: #0d9488; margin-bottom: 1.25rem;
}
.amenity-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; color: #0f172a; margin-bottom: 0.5rem; }
.amenity-card p { font-size: 0.92rem; color: #64748b; line-height: 1.65; }

/* ─── SITE OPTIONS ─── */
.sites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.site-card {
  background: #fff; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.site-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,0.12); }
.site-card--featured { border: 2px solid #2dd4bf; }
.site-card-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: #0d9488; color: #fff; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.75rem; padding: 0.3rem 0.75rem; border-radius: 9999px;
}
.site-card-img { height: 200px; overflow: hidden; }
.site-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.site-card:hover .site-card-img img { transform: scale(1.05); }
.site-card-body { padding: 1.5rem; }
.site-card-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; color: #0f172a; margin-bottom: 0.5rem; }
.site-card-body p { font-size: 0.9rem; color: #64748b; line-height: 1.65; margin-bottom: 1rem; }
.site-card-features { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.site-card-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: #334155; }
.btn-block { width: 100%; justify-content: center; }

/* ─── LOCATION ─── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-address {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 1rem; color: #334155; margin: 1.25rem 0; line-height: 1.7;
}
.location-links { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.location-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; color: #0d9488;
  transition: color 0.2s;
}
.location-link:hover { color: #0f766e; }
.location-map { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 0.875rem;
  background: #f0fdfa; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; margin-bottom: 0.2rem; }
.contact-detail div { font-size: 0.95rem; color: #334155; }
.contact-detail a { color: #0d9488; font-weight: 600; }
.contact-detail a:hover { color: #0f766e; }
.contact-info .section-label { margin-bottom: 0.75rem; }
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info .section-desc { max-width: none; margin-bottom: 2rem; }

.contact-form-wrap { position: relative; }
.contact-form {
  background: #fff; border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; color: #334155; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem; border-radius: 0.75rem;
  border: 1.5px solid #e2e8f0; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: #1e293b; background: #f8fafc; transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #0d9488; background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
  background: #fff; border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
.form-success-icon { margin-bottom: 1rem; }
.form-success h3 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: #0f172a; margin-bottom: 0.5rem; }
.form-success p { color: #64748b; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #042f2e 0%, #134e4a 50%, #115e59 100%);
  padding: 4rem 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.cta-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { background: #0f172a; color: #94a3b8; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 0.75rem; }
.footer-logo-icon { width: 32px; height: 32px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer-links h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #cbd5e1; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: #2dd4bf; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { padding: 7rem 0 3rem; }
  .hero-photo { width: 320px; height: 400px; }
  .hero-stats { display: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .sites-grid { grid-template-columns: repeat(2, 1fr); }
  .sites-grid .site-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-120%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-container { flex-direction: column; }
  .hero-photo { width: 100%; height: 280px; order: -1; }
  .hero-card { padding: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-stack { padding-left: 0; }
  .about-photo-main img { height: 280px; }
  .amenities-grid, .sites-grid { grid-template-columns: 1fr; }
  .sites-grid .site-card:last-child { grid-column: span 1; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero { padding: 5.5rem 0 2rem; }
  .hero-card { padding: 1.25rem; }
  .hero-headline { font-size: 1.75rem; }
  .hero-photo { height: 220px; }
  .contact-form { padding: 1.25rem; }
}
