/* ============================================
   THE WELL — COCONUT GROVE, MIAMI
   Wellness-Integrated Luxury Residences
   ============================================ */

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

:root {
  --color-bg: #1c1f1d;
  --color-bg-deep: #121514;
  --color-sage: #5a7a6b;
  --color-sage-light: #7a9e8c;
  --color-sand: #c9bda8;
  --color-cream: #f0ece4;
  --color-white: #ffffff;
  --color-gray: #999999;
  --color-gray-dark: #666666;
  --color-text: #e4e2dc;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg-deep);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(18, 21, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 48px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-white);
}

.nav-logo span {
  color: var(--color-sage);
  font-weight: 300;
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.3s ease;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--color-sage);
}

.nav-inquire {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 10px 28px !important;
  border: 1px solid var(--color-sage) !important;
  color: var(--color-sage) !important;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.nav-inquire:hover {
  background: var(--color-sage) !important;
  color: var(--color-bg-deep) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.05) 60%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--color-sand);
  margin-top: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.7;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-sage), transparent);
}

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

/* ========== SECTION COMMONS ========== */
.section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 20px;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: 1px;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  margin-top: 12px;
}

.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 600px;
  font-weight: 300;
  margin-top: 24px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-sage);
  margin: 24px 0;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-top: 32px;
  transition: gap 0.3s ease;
  font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(90, 122, 107, 0.3); }

.cta-link:hover { gap: 20px; border-bottom-color: var(--color-sage); }

.cta-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-link:hover svg { transform: translateX(4px); }

/* ========== INTRO ========== */
.intro {
  background: var(--color-bg-deep);
  text-align: center;
  padding: 160px 48px;
}

.intro .section-eyebrow {
  margin-bottom: 32px;
}

.intro .section-title {
  max-width: 800px;
  margin: 0 auto;
}

.intro .section-text {
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
}

/* ========== STATS BAR ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-bg);
  border-top: 1px solid rgba(90, 122, 107, 0.15);
  border-bottom: 1px solid rgba(90, 122, 107, 0.15);
}

.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(90, 122, 107, 0.1);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--color-sage);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 8px;
  font-weight: 400;
}

/* ========== FIVE PILLARS ========== */
.pillars {
  background: var(--color-bg-deep);
  padding: 120px 48px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(90, 122, 107, 0.12);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.pillar-card:hover {
  border-color: rgba(90, 122, 107, 0.35);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--color-sage);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ========== RESIDENCES ========== */
.residences {
  background: var(--color-bg);
}

.res-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.res-block:nth-child(even) .res-image { order: 2; }
.res-block:nth-child(even) .res-content { order: 1; }

.res-image {
  position: relative;
  overflow: hidden;
}

.res-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.res-block:hover .res-image img {
  transform: scale(1.03);
}

.res-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

/* ========== WELLNESS VISION ========== */
.vision {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-bg-deep), rgba(18,21,20,0.7), var(--color-bg-deep));
}

.vision-content {
  position: relative;
  z-index: 2;
  padding: 120px 48px;
  max-width: 800px;
}

.vision-content .section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
}

.vision-content .section-text {
  margin: 32px auto 0;
  text-align: center;
  max-width: 600px;
}

/* ========== IMAGE GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ========== WELLNESS CLUB (Amenities Layout) ========== */
.wellness-club {
  background: var(--color-bg);
}

.amenities-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

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

.amenities-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-bg) 5%, transparent 40%);
}

.amenities-content {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.amenities-list {
  list-style: none;
  columns: 1;
}

.amenities-list li {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(90, 122, 107, 0.15);
  letter-spacing: 0.5px;
}

.amenities-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.amenities-images .ami {
  overflow: hidden;
  border-radius: 2px;
}

.amenities-images .ami img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenities-images .ami:hover img {
  transform: scale(1.05);
}

/* ========== AMENITIES SECTION (Two-Column) ========== */
.amenities-section {
  background: var(--color-bg-deep);
  padding: 120px 48px;
}

.amenities-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.amenities-col-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

/* ========== LOCATION ========== */
.neighborhood {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.neighborhood-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.neighborhood-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--color-bg-deep) 30%, transparent 70%);
}

.neighborhood-content {
  position: relative;
  z-index: 2;
  padding: 120px 48px;
  max-width: 600px;
}

/* ========== BUILDING FEATURES (Services Layout) ========== */
.services {
  background: var(--color-bg);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.services-image {
  overflow: hidden;
}

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

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

/* ========== TEAM ========== */
.team {
  background: var(--color-bg-deep);
  padding: 120px 48px;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 80px auto 0;
}

.team-card {
  text-align: center;
}

.team-card-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid rgba(90, 122, 107, 0.4);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-image .team-initials {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-sage);
}

.team-card-role {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 8px;
}

.team-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 10px;
}

.team-card-desc {
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ========== EXPLORE CTA ========== */
.explore-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.explore-cta-item {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.explore-cta-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.explore-cta-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s ease;
}

.explore-cta-item:hover::after {
  background: rgba(0,0,0,0.3);
}

.explore-cta-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 2px;
}

/* ========== CONTACT FORM ========== */
.contact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
}

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

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,21,20,0.95) 0%, rgba(18,21,20,0.85) 50%, rgba(18,21,20,0.7) 100%);
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-info .section-title {
  color: var(--color-white);
}

.contact-details {
  margin-top: 40px;
}

.contact-detail {
  padding: 16px 0;
  border-bottom: 1px solid rgba(90, 122, 107, 0.15);
}

.detail-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 0.95rem;
  color: var(--color-cream);
  font-weight: 300;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(90, 122, 107, 0.15);
  padding: 50px 40px;
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 30px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(90, 122, 107, 0.2);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-sage);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--color-cream);
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-gray);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-sage);
}

.btn-form {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--color-sage);
  color: var(--color-bg-deep);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-form:hover {
  background: var(--color-sage-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(90, 122, 107, 0.3); }

.form-disclaimer {
  font-size: 0.7rem;
  color: var(--color-gray-dark);
  margin-top: 16px;
  line-height: 1.6;
}

.form-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(90, 122, 107, 0.12);
}

.form-logo-text {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  opacity: 0.6;
}

.form-logos-divider {
  width: 1px;
  height: 16px;
  background: rgba(90, 122, 107, 0.2);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: var(--color-bg);
  padding: 120px 48px;
}

.faq-grid {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(90, 122, 107, 0.1);
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.8;
}

/* ========== BROCHURE SECTION ========== */
.brochure-section {
  background: var(--color-bg-deep);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid rgba(90, 122, 107, 0.1);
}

.brochure-cta h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 12px;
}

.brochure-cta p {
  font-size: 0.95rem;
  color: var(--color-gray);
  font-weight: 300;
  margin-bottom: 32px;
}

.btn-brochure {
  display: inline-block;
  padding: 18px 52px;
  border: 1px solid var(--color-sage);
  color: var(--color-sage);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-brochure:hover {
  background: var(--color-sage);
  color: var(--color-bg-deep); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(90, 122, 107, 0.3); }

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-deep);
  border-top: 1px solid rgba(90, 122, 107, 0.15);
  padding: 80px 48px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--color-sage);
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-nav-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 20px;
}

.footer-nav-links {
  list-style: none;
}

.footer-nav-links li {
  margin-bottom: 12px;
}

.footer-nav-links a {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-nav-links a:hover { color: var(--color-sage); }

.footer-contact-item {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 300;
  margin-bottom: 8px;
}

.footer-contact-item a {
  color: var(--color-cream);
  transition: color 0.3s ease;
}

.footer-contact-item a:hover { color: var(--color-sage); }

.footer-partners {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(90, 122, 107, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-partner-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(90, 122, 107, 0.7);
}

.footer-partner-divider {
  width: 1px;
  height: 20px;
  background: rgba(90, 122, 107, 0.2);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(90, 122, 107, 0.1);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--color-gray-dark);
  line-height: 1.8;
  font-weight: 300;
}

.footer-copyright {
  font-size: 11px;
  color: var(--color-gray-dark);
  margin-top: 24px;
  font-weight: 300;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-sage);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: none;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.4s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-white);
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-sage);
}

/* ========== RESPONSIVE ========== */

/* ========== HERO BUTTONS (Enhanced CTAs) ========== */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 18px 44px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: var(--color-sage);
  color: var(--color-bg-deep);
  border: 2px solid var(--color-sage);
  box-shadow: 0 4px 20px rgba(90, 122, 107, 0.25);
}

.hero-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(90, 122, 107, 0.4);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

/* ========== INLINE CTA BUTTONS (Mid-page) ========== */
.btn-inline-cta {
  display: inline-block;
  padding: 18px 48px;
  background: var(--color-sage);
  color: var(--color-bg-deep);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--color-sage);
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(90, 122, 107, 0.2);
}

.btn-inline-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(90, 122, 107, 0.4);
}

.btn-inline-cta-light {
  background: transparent;
  color: var(--color-white);
}

.btn-inline-cta-light:hover {
  background: var(--color-sage);
  color: var(--color-bg-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(90, 122, 107, 0.3);
}

/* ========== SECTION CTA BAR ========== */
.section-cta-bar {
  text-align: center;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid rgba(90, 122, 107, 0.1);
}

/* ========== PRICING URGENCY CTA ========== */
.pricing-urgency {
  text-align: center;
  padding: 48px 24px 0;
  margin-top: 48px;
}

.urgency-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-sage);
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(90, 122, 107, 0.2);
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  background: var(--color-sage);
  color: var(--color-bg-deep);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s ease;
}

.sticky-cta-btn:hover {
  filter: brightness(1.1);
}


@media (max-width: 1024px) {
  .res-block {
    grid-template-columns: 1fr;
  }
  .res-block:nth-child(even) .res-image { order: 0; }
  .res-block:nth-child(even) .res-content { order: 0; }
  .res-image { min-height: 50vh; }
  .res-content { padding: 60px 40px; }
  .services-inner { grid-template-columns: 1fr; }
  .services-image { min-height: 50vh; }
  .services-content { padding: 60px 40px; }
  .amenities-content { grid-template-columns: 1fr; gap: 48px; }
  .amenities-two-col { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .explore-cta { grid-template-columns: 1fr; }
  .explore-cta-item { height: 40vh; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 80px 24px; }
  .intro { padding: 100px 24px; }
  .pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .team { padding: 80px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 60px 24px 32px; }
  .neighborhood-content { padding: 80px 24px; }
  .res-content { padding: 48px 24px; }
  .services-content { padding: 48px 24px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 80px 0; }
  .contact-wrapper { padding: 0 24px; }
  .contact-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-section { padding: 80px 24px; }
  .brochure-section { padding: 60px 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .amenities-section { padding: 80px 24px; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
    .btn-inline-cta {
        padding: 14px 32px;
        font-size: 0.65rem;
    }
    .sticky-cta {
        display: block;
    }
    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 30px 16px; }
}

/* ========== SELL YOUR UNIT FLOATING TAB ========== */
.sell-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  background: var(--color-gold);
  padding: 16px 10px;
  border-radius: 6px 0 0 6px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.sell-tab:hover {
  padding-right: 16px;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.25);
}
.sell-tab-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg-deep);
}
@media (max-width: 768px) {
  .sell-tab {
    top: auto;
    bottom: 80px;
    padding: 12px 8px;
  }
}