
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --gold: #B8975A;
    --gold-light: #D4B886;
    --gold-pale: #F5EDD8;
    --charcoal: #1A1A1A;
    --charcoal-mid: #2C2C2C;
    --charcoal-soft: #3D3D3D;
    --warm-white: #FAF8F4;
    --cream: #F0EBE0;
    --text-muted: #888880;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--charcoal); color: var(--warm-white); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 3rem; transition: background 0.5s, backdrop-filter 0.5s; }
  nav.scrolled { background: rgba(26,26,26,0.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(184,151,90,0.2); }
  .nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
  .nav-logo img { height: 52px; width: auto; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
  .nav-links a { font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,244,0.7); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,151,90,0.6); padding: 0.6rem 1.4rem; text-decoration: none; transition: all 0.3s; background: transparent; }
  .nav-cta:hover { background: var(--gold); color: var(--charcoal); }

  /* HERO */
  .hero { position: relative; height: 100vh; min-height: 700px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease-in-out; animation: none; }
  .hero-slide.active { opacity: 1; transition: none; }
  .hero-slide.transitioning { transition: opacity 1.8s ease-in-out; }
  .hero-slide.active { opacity: 1; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.15) 40%, rgba(26,26,26,0.6) 80%, rgba(26,26,26,1) 100%); }
  .hero-dots { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 2; }
  .hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(250,248,244,0.4); border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s; }
  .hero-dot.active { background: var(--gold); transform: scale(1.3); }
  
  .hero-eyebrow { font-family: var(--sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: #FFD97A; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.3s forwards; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
  .hero-title { font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 300; line-height: 1; letter-spacing: 0.04em; color: var(--warm-white); opacity: 0; animation: fadeUp 1s 0.6s forwards; }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-sub { font-family: var(--serif); font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 300; font-style: italic; color: rgba(250,248,244,0.95); margin-top: 1rem; opacity: 0; animation: fadeUp 1s 0.9s forwards; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
  .hero-divider { width: 60px; height: 1px; background: #F0D090; margin: 2rem auto; opacity: 0; animation: fadeUp 1s 1.1s forwards; }
  .hero-stats { display: flex; gap: 3rem; opacity: 0; animation: fadeUp 1s 1.3s forwards; }
  .hero-stat { text-align: center; }
  .hero-stat-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: #F0D090; display: block; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
  .hero-stat-label { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,248,244,0.85); margin-top: 0.3rem; display: block; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
  .hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: fadeUp 1s 1.8s forwards; }
  .hero-scroll span { font-size: 0.5rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(250,248,244,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, #FFD97A, transparent); animation: scrollPulse 2s infinite; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* SECTION UTILITIES */
  section { position: relative; }
  .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
  .section-eyebrow { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .section-title { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; color: var(--warm-white); }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .gold-rule { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

  /* RENO BANNER */
  .reno-banner { background: linear-gradient(135deg, var(--charcoal-mid), #1e1a12); border-top: 1px solid rgba(184,151,90,0.3); border-bottom: 1px solid rgba(184,151,90,0.3); padding: 2.5rem 3rem; text-align: center; }
  .reno-banner-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
  .reno-amount { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold-light); }
  .reno-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; display: block; }
  .reno-separator { width: 1px; height: 60px; background: rgba(184,151,90,0.3); }
  .reno-headline { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--warm-white); opacity: 0.8; }

  /* THE RESIDENCE */
  .residence { padding: 8rem 0; background: var(--charcoal); }
  .residence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .residence-body { font-size: 0.95rem; line-height: 1.9; color: rgba(250,248,244,0.65); margin-top: 1.5rem; }
  .residence-highlights { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
  .residence-highlight { display: flex; gap: 1.25rem; align-items: flex-start; }
  .highlight-icon { width: 32px; height: 32px; border: 1px solid rgba(184,151,90,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .highlight-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .highlight-text strong { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 0.25rem; }
  .highlight-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
  .residence-images { position: relative; height: 650px; }
  .res-img-main { position: absolute; top: 0; right: 0; width: 85%; height: 100%; object-fit: cover; background: url('images/img_01.jpg') center/cover; }
  .res-img-accent { position: absolute; bottom: -2rem; left: -1rem; width: 52%; height: 45%; background: url('images/img_02.jpg') center/cover; border: 6px solid var(--charcoal); }

  /* VIEWS CALLOUT */
  .views-callout { padding: 7rem 0; background: linear-gradient(to bottom, rgba(26,26,26,0.55), rgba(26,26,26,0.55)), url('images/img_03.jpg') center/cover fixed; text-align: center; }
  .views-callout .section-inner { max-width: 720px; }
  .views-callout .section-title { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-top: 0.5rem; }
  .views-body { font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.85; color: rgba(250,248,244,0.65); margin-top: 1.5rem; }
  .views-pills { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
  .pill { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; border: 1px solid rgba(184,151,90,0.5); color: var(--gold-light); padding: 0.5rem 1.2rem; }
  .pill-btn { background: transparent; cursor: pointer; transition: background 0.25s, color 0.25s; font-family: var(--sans); }
  .pill-btn:hover { background: rgba(184,151,90,0.2); color: var(--warm-white); }

  /* GALLERY STRIP */
  .gallery-strip { display: none; }
  .entry-showcase { display: block; }
  .entry-showcase-hero { position: relative; overflow: hidden; max-height: 520px; }
  .entry-showcase-hero img { width: 100%; height: auto; max-height: 520px; object-fit: cover; object-position: center 40%; display: block; transition: transform 0.6s ease; }
  .entry-showcase-hero:hover img { transform: scale(1.02); }
  .entry-showcase-byline { background: var(--charcoal); padding: 3rem 3rem 3.5rem; text-align: center; }
  .entry-showcase-byline-text { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; font-style: italic; color: var(--warm-white); margin-bottom: 0.5rem; }
  .entry-showcase-byline-sub { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
  .entry-showcase-side { display: none; }
  .entry-showcase-row { display: none; }
  .entry-showcase-squares { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 3px; }
  .entry-square { position: relative; aspect-ratio: 1 / 1; background: #111; overflow: hidden; }
  .entry-square img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.4s ease; }
  .entry-square:hover img { transform: scale(1.03); }
  .entry-showcase-wide { overflow: hidden; position: relative; }
  .entry-showcase-wide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
  .entry-showcase-wide:hover img { transform: scale(1.04); }
  .entry-showcase-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem; background: linear-gradient(transparent, rgba(26,26,26,0.75)); opacity: 0; transition: opacity 0.35s; }
  .entry-showcase-main:hover .entry-showcase-caption,
  .entry-showcase-item:hover .entry-showcase-caption,
  .entry-showcase-wide:hover .entry-showcase-caption { opacity: 1; }
  .entry-showcase-caption span { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); }

  /* AMENITIES */
  .amenities { padding: 8rem 0; background: var(--charcoal-mid); }
  .amenities-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
  .amenities-header .gold-rule { margin: 1.5rem auto; }
  .amenities-header p { font-size: 0.95rem; color: rgba(250,248,244,0.55); line-height: 1.8; }
  .amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(184,151,90,0.1); border: 1px solid rgba(184,151,90,0.15); }
  .amenity-card { background: var(--charcoal-mid); transition: background 0.3s; overflow: hidden; }
  .amenity-card:hover { background: rgba(184,151,90,0.07); }
  .amenity-photo { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.5s ease; cursor: zoom-in; }
  .lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; flex-direction: column; }
  .lightbox-overlay.active { opacity: 1; pointer-events: all; }
  .lightbox-img { max-width: 88vw; max-height: 80vh; object-fit: contain; border: 1px solid rgba(184,151,90,0.3); transition: opacity 0.25s; }
  .lightbox-img.fade { opacity: 0; }
  .lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--gold-light); cursor: pointer; line-height: 1; background: none; border: none; font-family: var(--serif); z-index: 10; }
  .lightbox-caption { margin-top: 1rem; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
  .lightbox-counter { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--text-muted); margin-top: 0.4rem; }
  .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(184,151,90,0.4); color: var(--gold-light); font-size: 1.2rem; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
  .lightbox-nav:hover { background: rgba(184,151,90,0.15); }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
  .lightbox-nav.hidden { opacity: 0; pointer-events: none; }
  .amenity-card { cursor: pointer; }
  .amenity-zoom-hint { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.5)); padding: 0.5rem; text-align: center; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,244,0.7); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
  .amenity-card:hover .amenity-zoom-hint { opacity: 1; }
  .amenity-photo-wrap { position: relative; }
  .amenity-card:hover .amenity-photo { transform: scale(1.04); }
  .amenity-photo-wrap { overflow: hidden; }
  .amenity-body { padding: 1.5rem; text-align: center; }
  .amenity-icon { width: 40px; height: 40px; border: 1px solid rgba(184,151,90,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; }
  .amenity-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
  .amenity-name { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 0.4rem; }
  .amenity-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

  /* LEAK DEFENSE */
  .leak-defense { padding: 5rem 0; background: linear-gradient(135deg, #0f1a14, #0a1410); border-top: 1px solid rgba(184,151,90,0.15); border-bottom: 1px solid rgba(184,151,90,0.15); }
  .leak-inner { max-width: 1000px; margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
  .leak-badge { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid rgba(184,151,90,0.4); padding: 0.5rem 1rem; margin-bottom: 1.5rem; }
  .leak-badge svg { width: 16px; height: 16px; fill: var(--gold); }
  .leak-badge span { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
  .leak-title { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.2rem; }
  .leak-body { font-size: 0.88rem; line-height: 1.9; color: rgba(250,248,244,0.55); }
  .leak-features { display: flex; flex-direction: column; gap: 1.2rem; }
  .leak-feature { display: flex; gap: 1rem; align-items: center; padding: 1.2rem 1.5rem; border: 1px solid rgba(184,151,90,0.1); background: rgba(255,255,255,0.02); }
  .leak-feature-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: rgba(184,151,90,0.3); min-width: 2rem; }
  .leak-feature-text strong { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 0.2rem; }
  .leak-feature-text p { font-size: 0.8rem; color: var(--text-muted); }

  /* VIEWS GALLERY */
  .views-gallery { padding: 8rem 0; background: var(--charcoal); }
  .views-gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 4px; margin-top: 4rem; }
  .vg-item { overflow: hidden; position: relative; }
  .vg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; cursor: zoom-in; }
  .vg-item:hover img { transform: scale(1.06); }
  .vg-item.large { grid-column: span 2; }
  .vg-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(transparent, rgba(26,26,26,0.8)); }
  .vg-caption span { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); }

  /* NEIGHBORHOOD */
  .neighborhood { padding: 8rem 0; background: var(--charcoal-mid); }
  .neighborhood-photo-strip { position: relative; height: 340px; overflow: hidden; margin-bottom: 4rem; }
  .neighborhood-photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
  .neighborhood-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 3rem; background: linear-gradient(transparent, rgba(26,26,26,0.8)); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
  .neighborhood-header { margin-bottom: 4rem; }
  .neighborhood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
  .neighborhood-card { border: 1px solid rgba(184,151,90,0.15); padding: 2rem; transition: border-color 0.35s, background 0.35s; position: relative; overflow: hidden; cursor: default; }
  .neighborhood-card:hover { border-color: rgba(184,151,90,0.5); background: rgba(184,151,90,0.05); }
  .neighborhood-card:hover .n-card-arrow { opacity: 1; transform: translate(0,0); }
  .neighborhood-card:hover .n-card-num { color: rgba(184,151,90,0.22); }
  .n-card-num { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: rgba(184,151,90,0.1); line-height: 1; margin-bottom: 0.4rem; transition: color 0.35s; user-select: none; }
  .n-card-head { margin-bottom: 0.9rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(184,151,90,0.2); }
  .n-card-icon { display: none; }
  .n-card-title { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); }
  .n-card-arrow { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1rem; color: var(--gold); opacity: 0; transform: translate(-4px, 4px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
  .n-card-items { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
  .n-card-items li { font-size: 0.82rem; color: rgba(250,248,244,0.58); padding-left: 0; position: relative; line-height: 1.5; }
  .n-card-items li::before { display: none; }
  .n-card-items a { color: rgba(250,248,244,0.58); text-decoration: none; transition: color 0.25s; }
  .n-card-items a:hover { color: var(--gold-light); }

  /* ENTRY EXPERIENCE */
  .entry { padding: 0; }
  .entry-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 420px; }
  .entry-item { overflow: hidden; }
  .entry-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
  .entry-item:hover img { transform: scale(1.05); }

  /* CONTACT */
  .contact { padding: 8rem 0; background: var(--charcoal); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
  .contact-detail { display: flex; flex-direction: column; gap: 0.3rem; }
  .contact-detail label { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
  .contact-detail a, .contact-detail span { font-family: var(--serif); font-size: 1.1rem; color: var(--warm-white); text-decoration: none; transition: color 0.3s; }
  .contact-detail a:hover { color: var(--gold-light); }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); }
  .form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,151,90,0.2); color: var(--warm-white); font-family: var(--sans); font-size: 0.85rem; font-weight: 300; padding: 0.8rem 1rem; outline: none; transition: border-color 0.3s; width: 100%; -webkit-appearance: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(184,151,90,0.5); }
  .form-group select option { background: var(--charcoal); }
  .form-group textarea { resize: none; height: 90px; }
  .form-submit { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; padding: 1rem 2rem; cursor: pointer; transition: all 0.3s; width: 100%; margin-top: 0.5rem; }
  .form-submit:hover { background: var(--gold); color: var(--charcoal); }
  .residents-link-wrap { border-top: 1px solid rgba(184,151,90,0.2); padding-top: 2.5rem; margin-top: 1rem; }
  .residents-link { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .residents-link:hover { color: var(--gold-light); }
  .residents-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  /* FOOTER */
  footer { background: var(--charcoal); border-top: 1px solid rgba(184,151,90,0.15); padding: 3rem; text-align: center; }
  .footer-logo img { height: 70px; width: auto; opacity: 0.85; margin-bottom: 1rem; }
  .footer-address { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; line-height: 1.8; }
  .footer-copy { margin-top: 2rem; font-size: 0.62rem; color: rgba(136,136,128,0.4); letter-spacing: 0.1em; }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }
  .reveal-delay-4 { transition-delay: 0.6s; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .residence-grid { grid-template-columns: 1fr; gap: 4rem; }
    .residence-images { height: 400px; }
    .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
    .neighborhood-grid { grid-template-columns: repeat(2, 1fr); }
    .leak-inner { grid-template-columns: 1fr; gap: 3rem; }
    .views-gallery-grid { grid-template-columns: 1fr 1fr; }
    .vg-item.large { grid-column: span 2; }
    .entry-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .section-inner { padding: 0 1.5rem; }
    .amenities-grid { grid-template-columns: 1fr; }
    .neighborhood-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
    .gallery-strip-item { height: 160px; }
    .views-gallery-grid { grid-template-columns: 1fr; }
    .vg-item.large { grid-column: span 1; }
    .entry-grid { grid-template-columns: 1fr; }
  }
