/* ============================================
   The Shades Villas — Landing Page Styles
   ============================================ */

:root {
  --color-primary: #1a2332;
  --color-primary-light: #243044;
  --color-accent: #c8a456;
  --color-accent-hover: #b8943f;
  --color-white: #ffffff;
  --color-off-white: #f8f6f3;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-border: #e0dcd5;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 8px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 35, 50, 0.97);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav__brand span {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--color-white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--color-accent-hover) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  z-index: 1;
}

.hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('assets/images/hero-frames/frame-0001.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.5);
  z-index: -1;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Section Common
   ============================================ */

.section {
  position: relative;
  padding: 100px 0;
  background: var(--color-white, #fff);
  z-index: 2;
}

.section:first-of-type::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-white, #fff));
  z-index: 2;
  pointer-events: none;
}

.section--alt {
  background: var(--color-off-white);
}

.section--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: var(--color-white);
}

.section__desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   About Section
   ============================================ */

.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about__text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about__text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
              opacity 0.7s ease-out;
  opacity: 0;
  transform: translateY(32px);
}

.feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature:nth-child(1) { transition-delay: 0s; }
.feature:nth-child(2) { transition-delay: 0.1s; }
.feature:nth-child(3) { transition-delay: 0.2s; }
.feature:nth-child(4) { transition-delay: 0.3s; }
.feature:nth-child(5) { transition-delay: 0.4s; }
.feature:nth-child(6) { transition-delay: 0.5s; }

.feature.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  margin-bottom: 16px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 40px;
  height: 40px;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   Lifestyle Section
   ============================================ */

.lifestyle-scroll {
  height: 300vh;
  padding: 0;
}

.lifestyle-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
}

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

.lifestyle__image img,
.lifestyle__image canvas {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.lifestyle__text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.lifestyle__stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.lifestyle__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lifestyle__stat strong {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 700;
}

.lifestyle__stat span {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   Location Section
   ============================================ */

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

.location__info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.location__info p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

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

.landmark {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.landmark__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landmark__text {
  font-size: 0.9rem;
}

.landmark__text strong {
  display: block;
  font-size: 0.95rem;
}

.landmark__text span {
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 450px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0);
  transition: background var(--transition);
}

.gallery__item:hover::after {
  background: rgba(26, 35, 50, 0.3);
}

.gallery__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--wide img {
  height: 250px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}

.lightbox__close:hover {
  color: var(--color-accent);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 16px;
  z-index: 2001;
}

.lightbox__nav:hover {
  color: var(--color-accent);
}

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* Villa Modal */
.villa-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.villa-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.villa-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.villa-modal__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  width: 92vw;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.villa-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  color: var(--color-text-light);
  line-height: 1;
}

.villa-modal__close:hover {
  color: var(--color-accent);
}

.villa-modal__gallery {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  overflow: hidden;
}

.villa-modal__gallery-viewer {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.villa-modal__gallery-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.villa-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  z-index: 1;
}

.villa-modal__arrow:hover {
  background: rgba(0,0,0,0.65);
}

.villa-modal__arrow--prev { left: 0; border-radius: 0 6px 6px 0; }
.villa-modal__arrow--next { right: 0; border-radius: 6px 0 0 6px; }

.villa-modal__gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px;
  overflow-x: auto;
  flex-shrink: 0;
}

.villa-modal__thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.villa-modal__thumb:hover {
  opacity: 0.8;
}

.villa-modal__thumb.active {
  opacity: 1;
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.villa-modal__info {
  padding: 36px 32px;
  overflow-y: auto;
}

.villa-modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.villa-modal__price {
  color: var(--color-accent);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.villa-modal__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.villa-modal__spec {
  text-align: center;
}

.villa-modal__spec strong {
  display: block;
  font-size: 1.3rem;
  color: var(--color-accent);
  font-weight: 700;
}

.villa-modal__spec span {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.villa-modal__features {
  margin-bottom: 28px;
}

.villa-modal__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding: 5px 0;
}

.villa-modal__features li::before {
  content: '\2713';
  color: var(--color-accent);
  font-weight: 700;
}

.villa-modal__cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   Villas Section
   ============================================ */

.villas__alert {
  text-align: center;
  margin-bottom: 48px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--color-accent), #d4b366);
  color: var(--color-white);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.villas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.villa-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.villa-card__image {
  position: relative;
  overflow: hidden;
}

.villa-card__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.villa-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.villa-card__body {
  padding: 32px;
}

.villa-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.villa-card__price {
  color: var(--color-accent);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.villa-card__specs {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.villa-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.villa-card__spec-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  vertical-align: middle;
}

.villa-card__features {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-bottom: 24px;
}

.villa-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding: 4px 0;
}

.villa-card__features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================
   Contact Section
   ============================================ */

.contact__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.contact__info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

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

.contact__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 86, 0.15);
  border-radius: var(--radius);
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact__item-text h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact__item-text p,
.contact__item-text a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.contact__item-text a:hover {
  color: var(--color-accent);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: #111a26;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  margin-bottom: 32px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   Neighborhood Map
   ============================================ */

.nhood__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.nhood__filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 2px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
}

.nhood__filter:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.nhood__filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.nhood__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.nhood__dot--home { background: #c8a456; }
.nhood__dot--school { background: #3498db; }
.nhood__dot--gym { background: #e74c3c; }
.nhood__dot--shopping { background: #2ecc71; }
.nhood__dot--beach { background: #f39c12; }

.nhood__map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.nhood__map {
  width: 100%;
  height: 550px;
  background: #f0ede8;
}

.nhood__legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.nhood__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.nhood__marker {
  background: none !important;
  border: none !important;
}

.nhood__popup .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nhood__popup .leaflet-popup-content {
  margin: 0;
  line-height: 1.4;
}

.nhood__popup .leaflet-popup-tip {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .section__title { font-size: 2.25rem; }
  .hero__title { font-size: 3rem; }
  .about__intro { gap: 40px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav.menu-open {
    top: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.98);
    backdrop-filter: none;
  }
  .nav__links {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .nav__links.active { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__hamburger { display: flex; z-index: 1; }

  .hero__bg { background-position: 70% center; }
  .hero__title { font-size: 2.5rem; }
  .hero__subtitle { font-size: 1.1rem; }
  .section { padding: 70px 0; }

  .about__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__image img { height: 300px; }
  .features { grid-template-columns: 1fr 1fr; }

  .lifestyle-scroll { height: auto; padding: 70px 0; }
  .lifestyle-scroll__sticky { position: relative; height: auto; padding: 0; }
  .lifestyle__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lifestyle__image img, .lifestyle__image canvas { height: 300px; }
  .lifestyle__text .section__title { text-align: center !important; }
  .lifestyle__text .section__label { display: block; text-align: center; }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery__item img,
  .gallery__item--wide img { height: 200px; }

  .nhood__map { height: 450px; }
  .nhood__filter { padding: 6px 14px; font-size: 0.8rem; }
  .nhood__legend { gap: 12px; }

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

  .villa-modal__content {
    grid-template-columns: 1fr;
    max-height: 95vh;
    width: 96vw;
    overflow-y: auto;
  }
  .villa-modal__gallery-main { height: 260px; }
  .villa-modal__info { padding: 24px 20px; }
  .villa-modal__specs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .villa-modal__spec strong { font-size: 1.1rem; }

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

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
  .section__title { font-size: 1.8rem; }
  .section { padding: 56px 0; }
  .features { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 28px 20px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img,
  .gallery__item--wide img { height: 200px; }
  .lifestyle__stats { gap: 20px; }
  .lifestyle__stat strong { font-size: 1.1rem; }
  .location__landmarks { grid-template-columns: 1fr; }
  .nhood__map { height: 380px; }
  .nhood__filters { gap: 6px; }
  .nhood__filter { padding: 6px 12px; font-size: 0.75rem; }
  .nhood__legend { gap: 8px; }
  .nhood__legend-item { font-size: 0.7rem; }
  .btn { padding: 12px 28px; font-size: 0.85rem; }
  .villa-card__body { padding: 24px; }
  .lightbox__nav { display: none; }
}
