/* ============================================
   PENNYTREE APARTMENTS — Stylesheet
   Pet-Friendly · Modern · Connected
   ============================================ */

/* === CSS Variables === */
:root {
  --green:        #1a4731;
  --green-dark:   #0f2b1f;
  --green-light:  #e8f2ed;
  --charcoal:    #2B2D42;
  --charcoal-2:  #1E2030;
  --white:       #FFFFFF;
  --off-white:   #F8FBFD;
  --muted:       #6B7C8A;
  --muted-2:     #9AABB8;

  --font-display: 'Inter', sans-serif;
  --font-body:    'Lato', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-card: 0 4px 24px rgba(26,71,49,0.08), 0 1px 4px rgba(43,45,66,0.06);
  --shadow-card-hover: 0 12px 40px rgba(26,71,49,0.16), 0 2px 8px rgba(43,45,66,0.1);
  --shadow-blue: 0 8px 32px rgba(26,71,49,0.35);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle dot pattern for location section */
#location {
  background-color: var(--off-white);
  background-image:
    radial-gradient(circle, rgba(26,71,49,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(26,71,49,0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.btn-outline-blue {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline-blue:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-outline-blue:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-white:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

/* === Sticky Nav === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(26,71,49,0.12);
  box-shadow: 0 2px 20px rgba(43,45,66,0.08);
  transition: box-shadow var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-hamburger:hover {
  background: var(--green-light);
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(26,71,49,0.1);
  padding: 20px 32px 24px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.nav-mobile ul a {
  display: block;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(26,71,49,0.08);
  transition: color var(--transition);
}

.nav-mobile ul a:hover {
  color: var(--green);
}

/* === Hero Section === */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--green-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,32,48,0.5) 0%,
    rgba(30,32,48,0.65) 40%,
    rgba(30,32,48,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards ease;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.4s forwards ease;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.6s forwards ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.8s forwards ease;
}

/* Carousel controls */
.carousel-arrows {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08);
}

.carousel-arrow:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition-spring);
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* === Urban Stats Bar === */
#stats-bar {
  background: var(--green);
  padding: 0;
}

.stats-bar-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: background var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(0,0,0,0.1);
}

.stat-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-value span {
  color: rgba(255,255,255,0.75);
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* === Feature Cards === */
#feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.feature-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-img {
  transform: scale(1.06);
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,32,48,0.0) 20%,
    rgba(30,32,48,0.45) 60%,
    rgba(30,32,48,0.85) 100%
  );
  transition: opacity var(--transition);
}

.feature-card:hover .feature-card-overlay {
  opacity: 0.95;
}

.feature-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
  transform: translateY(8px);
  transition: transform var(--transition);
}

.feature-card:hover .feature-card-content {
  transform: translateY(0);
}

.feature-card-label {
  display: none;
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.feature-card:hover .feature-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* === Move-In Special Banner === */
#special-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(255,255,255,0.2);
}

#special-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

#special-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* === About Section === */
#about {
  background: var(--white);
  padding: 100px 32px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.about-left h2 em {
  font-style: normal;
  color: var(--green);
}

.about-copy {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.9rem;
}

.about-highlight-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.about-highlight-text span {
  font-size: 0.875rem;
  color: var(--muted);
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-card:first-child {
  grid-column: span 2;
}

.about-img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-card:first-child img {
  height: 290px;
}

.about-img-card:hover img {
  transform: scale(1.04);
}

/* === Amenities Section === */
#amenities {
  background: var(--green-light);
  padding: 100px 32px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.amenities-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.amenity-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-light) 0%, rgba(26,71,49,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--green);
  transition: background var(--transition), transform var(--transition-spring), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(26,71,49,0.12);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(26,71,49,0.35);
}

.amenity-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

/* === Residences Section === */
#residences {
  background: var(--white);
  padding: 100px 32px;
}

.residences-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.floor-plan-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  border: 1px solid rgba(26,71,49,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.floor-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.floor-plan-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.floor-plan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.floor-plan-card:hover .floor-plan-img-wrap img {
  transform: scale(1.05);
}

.floor-plan-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.floor-plan-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.floor-plan-type {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.floor-plan-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.floor-plan-meta span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.floor-plan-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.floor-plan-price-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.floor-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.floor-plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.floor-plan-features li i {
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.floor-plan-urgency {
  font-size: 0.78rem;
  color: var(--green-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  background: var(--green-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* === Location Section === */
#location {
  background: var(--off-white);
  padding: 100px 32px;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 480px;
  background: var(--green-light);
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: relative;
  z-index: 1;
}

.location-map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--green-light) 0%, #d4edf8 100%);
  z-index: 0;
}

.location-map-fallback i {
  font-size: 3rem;
  color: var(--green);
  opacity: 0.5;
}

.location-map-fallback p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.location-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.location-content h2 em {
  font-style: normal;
  color: var(--green);
}

.location-copy {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.location-highlight:hover {
  transform: translateX(4px);
}

.location-highlight i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-highlight-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.location-highlight-text span {
  font-size: 0.84rem;
  color: var(--muted);
}

.walk-bike-scores {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.score-badge {
  flex: 1;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.score-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.score-badge-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* === Contact Section === */
#contact {
  background: var(--white);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(26,71,49,0.1);
}

#contact::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,71,49,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.contact-h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.contact-h2 em {
  font-style: normal;
  color: var(--green);
}

.contact-sub {
  font-size: 1.05rem;
  color: rgba(43,45,66,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color var(--transition);
  margin-bottom: 12px;
  justify-content: center;
}

.contact-phone-link:hover {
  color: var(--green);
}

.contact-phone-link i {
  color: var(--green);
  font-size: 0.75em;
}

.contact-email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(43,45,66,0.65);
  text-decoration: none;
  justify-content: center;
  margin-bottom: 48px;
  transition: color var(--transition);
}

.contact-email-link:hover {
  color: var(--green);
}

.contact-divider {
  height: 1px;
  background: rgba(43,45,66,0.12);
  margin: 0 auto 40px;
  max-width: 400px;
}

.office-hours {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.office-hours-item {
  text-align: center;
}

.office-hours-day {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.office-hours-time {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* === Footer === */
#footer {
  background: var(--green-dark);
  padding: 60px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-fallback {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 260px;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95) !important;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--green);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--muted-2);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  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; }

/* === Keyframes === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-right {
    order: -1;
  }

  .residences-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .location-inner {
    grid-template-columns: 1fr;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  #feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-arrows {
    bottom: 72px;
    right: 20px;
  }

  .banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .walk-bike-scores {
    gap: 12px;
  }

  .office-hours {
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner > :first-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  #about,
  #amenities,
  #residences,
  #location,
  #contact,
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* ============================================
   STICKY MOVE-IN SPECIALS BANNER
   ============================================ */
#sticky-specials-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8888;
  width: 300px;
  background: var(--charcoal-2);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  font-family: var(--font-display);
  overflow: hidden;
}

.sticky-banner-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}

.sticky-banner-close:hover {
  background: rgba(0,0,0,0.7);
}

.sticky-banner-img-wrap {
  position: relative;
  width: 100%;
  height: 155px;
  overflow: hidden;
}

.sticky-banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.sticky-banner-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--charcoal-2) 100%);
}

.sticky-banner-body {
  padding: 10px 16px 16px;
  text-align: center;
}

.sticky-banner-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5c842;
  margin: 0 0 6px;
}

.sticky-banner-headline {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 6px;
  color: #fff;
}

.sticky-banner-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin: 0 0 14px;
  line-height: 1.4;
}

.sticky-banner-cta {
  display: block;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.sticky-banner-cta:hover {
  background: var(--green-dark);
}

/* Mobile: full-width bottom bar */
@media (max-width: 600px) {
  #sticky-specials-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 14px 14px 0 0;
  }
  .sticky-banner-img-wrap {
    height: 120px;
  }
}
