/*
 * Harper Homes — Luxury Cluster Stylesheet (v2.7.9 — COMPLETE)
 * Shared by all 10 luxury cluster page templates
 * All selectors scoped under .lux to prevent collision with other pages
 *
 * Mirrors the design tokens of page-leawood.php (proven working)
 */

/* ── DESIGN TOKENS ── */
.lux {
  --red: #C0102A; --red-deep: #8B0000; --red-bright: #E8152E;
  --black: #0D0D0D; --charcoal: #1A1A1A; --dark: #111111;
  --white: #FFFFFF; --off-white: #F8F6F4; --cream: #EDE8E0;
  --mid-gray: #888; --text: #2A2A2A; --border-red: rgba(192,16,42,0.25);
}

/* ── RESET (scoped to .lux only) ── */
.lux, .lux * { box-sizing: border-box; }
.lux { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text); font-weight: 300; overflow-x: hidden; }
.lux p, .lux h1, .lux h2, .lux h3, .lux h4, .lux ul, .lux ol, .lux blockquote { margin: 0; padding: 0; }
.lux ul, .lux ol { list-style: none; }
.lux a { color: inherit; }
.lux img { max-width: 100%; display: block; }
.lux button { font: inherit; color: inherit; }

/* ── HERO ── */
.lux .hero { background: var(--black); padding: 48px 80px 90px; padding-top: calc(80px + 48px); position: relative; overflow: hidden; }
.lux .hero-geo { position: absolute; top: 0; right: 0; width: 42%; height: 100%; background: rgba(192,16,42,0.055); clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); }
.lux .hero-geo2 { position: absolute; top: 0; right: 10%; width: 3px; height: 100%; background: var(--red); opacity: 0.4; }
.lux .hero-wm { position: absolute; right: -10px; bottom: -20px; font-family: 'Barlow Condensed', sans-serif; font-size: 220px; font-weight: 600; color: rgba(192,16,42,0.05); letter-spacing: -0.04em; text-transform: uppercase; pointer-events: none; line-height: 1; white-space: nowrap; }
.lux .hero-inner { position: relative; z-index: 2; max-width: 820px; }
.lux .hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.lux .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
.lux .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(48px, 6.5vw, 86px); font-weight: 400; color: white; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 28px; }
.lux .hero h1 em { font-style: italic; color: var(--red); }
.lux .hero-sub { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 620px; font-weight: 300; margin-bottom: 44px; }
.lux .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.lux .btn-red { background: var(--red); color: white; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; padding: 16px 38px; transition: background 0.25s; font-weight: 500; border: none; cursor: pointer; display: inline-block; }
.lux .btn-red:hover { background: var(--red-bright); }
.lux .btn-outline { border: 1px solid rgba(255,255,255,0.25); color: white; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; padding: 16px 38px; transition: all 0.25s; font-weight: 400; display: inline-block; background: transparent; }
.lux .btn-outline:hover { border-color: var(--red); color: var(--red); }
.lux .btn-white { background: white; color: var(--red); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; padding: 16px 38px; transition: all 0.25s; font-weight: 600; display: inline-block; border: none; cursor: pointer; }
.lux .btn-white:hover { background: var(--off-white); }
.lux .btn-outline-w { border: 1px solid rgba(255,255,255,0.45); color: white; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; padding: 16px 38px; transition: all 0.25s; font-weight: 400; display: inline-block; background: transparent; }
.lux .btn-outline-w:hover { background: rgba(255,255,255,0.1); }

/* ── STATS BAR ── */
.lux .stats-bar { background: var(--red); display: grid; grid-template-columns: repeat(5, 1fr); }
.lux .stat-item { padding: 44px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.lux .stat-item:last-child { border-right: none; }
.lux .stat-num { font-family: 'Playfair Display', serif; font-size: 44px; color: white; font-weight: 400; line-height: 1; margin-bottom: 7px; }
.lux .stat-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ── TYPOGRAPHY HELPERS ── */
.lux .eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.lux .eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.lux .eyebrow.light { color: rgba(255,255,255,0.5); }
.lux .eyebrow.light::before { background: rgba(255,255,255,0.4); }
.lux h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(38px, 4vw, 56px); font-weight: 400; line-height: 1.1; color: var(--black); }
.lux h2.section-title em { font-style: italic; color: var(--red); }
.lux h2.section-title.light { color: white; }
.lux h3.sub-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.5vw, 36px); font-weight: 400; color: var(--black); line-height: 1.2; }
.lux h3.sub-title em { font-style: italic; color: var(--red); }
.lux .red-bar { width: 52px; height: 3px; background: var(--red); margin: 20px 0 26px; }
.lux p.body-lg { font-size: 17px; line-height: 1.88; color: #4A4A4A; font-weight: 300; }
.lux p.body { font-size: 15px; line-height: 1.85; color: #555; font-weight: 300; }

/* ── ABOUT / INTRO SECTION ── */
.lux .about-section { padding: 100px 80px; background: var(--off-white); display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.lux .about-section.full { display: block; padding: 80px 80px; }
.lux .about-section.full .about-content { max-width: 980px; margin: 0 auto; }
.lux .about-content > * + * { margin-top: 14px; }
.lux .about-content h2 { margin-top: 0; }
.lux .about-content .red-bar { margin: 18px 0 24px; }
.lux .about-content p { margin: 0 0 18px; }
.lux .about-content p:last-of-type { margin-bottom: 0; }
.lux .about-content ul { margin: 18px 0; padding-left: 0; list-style: none; }
.lux .about-content ul li { position: relative; padding-left: 22px; margin-bottom: 12px; font-size: 16px; line-height: 1.75; color: #4A4A4A; }
.lux .about-content ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 12px; height: 2px; background: var(--red); }
.lux .lux-prose strong { color: var(--black); font-weight: 600; }
.lux .lux-prose em { font-style: italic; }

/* ── CONTENT SECTION (used by About Becky Harper) ── */
.lux .content-section { padding: 100px 80px; background: var(--off-white); }
.lux .content-section.dark { background: var(--black); color: rgba(255,255,255,0.75); }
.lux .content-section.dark h2 { color: white; }
.lux .content-section.dark p { color: rgba(255,255,255,0.65); }
.lux .content-section.dark .eyebrow { color: rgba(255,255,255,0.5); }
.lux .content-section.dark .eyebrow::before { background: rgba(255,255,255,0.4); }
.lux .content-section.dark strong { color: white; }
.lux .content-section.dark .red-bar { background: var(--red); }
.lux .content-inner { max-width: 1100px; margin: 0 auto; }
.lux .content-inner > * + p { margin-top: 18px; }
.lux .content-inner p { font-size: 17px; line-height: 1.88; color: #4A4A4A; font-weight: 300; }
.lux .content-section.dark .content-inner p { color: rgba(255,255,255,0.65); }
.lux .content-inner h2 { margin-bottom: 8px; }
.lux .content-inner .red-bar { margin: 18px 0 30px; }

/* ── GENERIC CARD GRID (used by About: neighborhoods I know best) ── */
.lux .grid-section { padding: 100px 80px; background: white; }
.lux .grid-intro { max-width: 760px; margin: 0 0 56px; }
.lux .grid-intro h2 { margin-bottom: 8px; }
.lux .grid-intro .red-bar { margin: 18px 0 24px; }
.lux .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lux .card { background: var(--off-white); padding: 36px 30px; border-top: 3px solid transparent; transition: all 0.3s; display: flex; flex-direction: column; }
.lux .card:hover { border-top-color: var(--red); background: white; box-shadow: 0 16px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.lux .card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 6px; }
.lux .card .card-price { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 14px; }
.lux .card p { font-size: 14px; line-height: 1.75; color: #4A4A4A; flex: 1; margin-bottom: 20px; font-weight: 300; }
.lux .card .card-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); text-decoration: none; font-weight: 500; margin-top: auto; }
.lux .card .card-link:hover { color: var(--red-bright); }

/* ── KEY FACTS SIDEBAR ── */
.lux .about-right { position: relative; }
.lux .key-facts { background: white; padding: 0; overflow: hidden; border-top: 4px solid var(--red); box-shadow: 0 8px 28px rgba(0,0,0,0.04); }
.lux .key-facts-header { background: var(--black); padding: 22px 28px; }
.lux .key-facts-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: white; font-weight: 500; }
.lux .key-facts-body { padding: 8px 0; }
.lux .fact-row { display: flex; align-items: flex-start; justify-content: space-between; padding: 14px 28px; border-bottom: 1px solid rgba(0,0,0,0.05); gap: 14px; }
.lux .fact-row:last-child { border-bottom: none; }
.lux .fact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-gray); font-weight: 500; flex-shrink: 0; }
.lux .fact-value { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--black); font-weight: 400; text-align: right; }
.lux .fact-value.red { color: var(--red); }

/* ── EEAT / AUTHORITY SECTION ── */
.lux .eeat-section { padding: 100px 80px; background: var(--black); position: relative; overflow: hidden; }
.lux .eeat-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; margin-top: 28px; }
.lux .eeat-photo { position: relative; border-top: 4px solid var(--red); }
.lux .eeat-photo img { width: 100%; height: auto; display: block; }
.lux .eeat-content { color: rgba(255,255,255,0.7); }
.lux .eeat-content h2 { color: white; margin-bottom: 8px; }
.lux .eeat-content em { color: var(--red); font-style: italic; }
.lux .eeat-content .eyebrow.light { margin-bottom: 12px; }
.lux .eeat-role { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 18px 0 24px; }
.lux .eeat-content p { font-size: 15px; line-height: 1.88; margin-bottom: 16px; color: rgba(255,255,255,0.65); }
.lux .eeat-content p strong { color: white; font-weight: 600; }
.lux .eeat-content a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(192,16,42,0.4); }
.lux .eeat-creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.lux .cred-item { background: rgba(255,255,255,0.04); padding: 22px 18px; border-top: 2px solid var(--red); }
.lux .cred-num { font-family: 'Playfair Display', serif; font-size: 28px; color: white; font-weight: 400; line-height: 1; margin-bottom: 6px; }
.lux .cred-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── NEIGHBORHOODS GRID ── */
.lux .neighborhoods-section { padding: 100px 80px; background: white; }
.lux .neighborhoods-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; align-items: end; }
.lux .neigh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lux .neigh-card { background: var(--off-white); padding: 36px 30px; border-top: 3px solid transparent; transition: all 0.3s; position: relative; display: flex; flex-direction: column; }
.lux .neigh-card:hover { border-top-color: var(--red); background: white; box-shadow: 0 16px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.lux .neigh-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 6px; }
.lux .neigh-price { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 16px; }
.lux .neigh-card p { font-size: 14px; line-height: 1.75; color: #4A4A4A; flex: 1; margin-bottom: 20px; font-weight: 300; }
.lux .neigh-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); text-decoration: none; font-weight: 500; transition: color 0.2s; margin-top: auto; }
.lux .neigh-link:hover { color: var(--red-bright); }

/* ── QUOTE / PULL QUOTE ── */
.lux .quote-section { background: var(--charcoal); padding: 90px 80px; text-align: center; position: relative; overflow: hidden; }
.lux .quote-section::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', serif; font-size: 380px; color: rgba(192,16,42,0.08); line-height: 1; pointer-events: none; }
.lux .quote-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.lux .quote-inner blockquote { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1.4; color: white; font-style: normal; margin-bottom: 24px; }
.lux .quote-inner blockquote em { font-style: italic; color: var(--red); }
.lux .quote-attribution { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── MARKET SECTION ── */
.lux .market-section { padding: 100px 80px; background: var(--off-white); }
.lux .market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; align-items: start; }
.lux .market-table { background: white; overflow: hidden; border-top: 4px solid var(--red); box-shadow: 0 8px 28px rgba(0,0,0,0.04); }
.lux .market-table-header { background: var(--black); padding: 18px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.lux .market-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; border-bottom: 1px solid rgba(0,0,0,0.05); gap: 16px; }
.lux .market-row:last-child { border-bottom: none; }
.lux .market-metric { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); font-weight: 500; }
.lux .market-val { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--black); font-weight: 400; text-align: right; }
.lux .market-val.up { color: #2A8C5F; }
.lux .market-val.hot { color: var(--red); }
.lux .market-insight { display: grid; gap: 16px; }
.lux .insight-card { background: white; padding: 26px 28px; border-left: 4px solid var(--red); box-shadow: 0 8px 20px rgba(0,0,0,0.03); }
.lux .insight-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); font-weight: 600; margin-bottom: 10px; }
.lux .insight-card p { font-size: 14px; color: #4A4A4A; line-height: 1.75; font-weight: 300; margin: 0; }
.lux .insight-card p a { color: var(--red); text-decoration: none; border-bottom: 1px solid var(--border-red); }

/* ── COMPARISON TABLE (Hallbrook vs Mission Hills) ── */
.lux .comparison-section { padding: 100px 80px; background: white; text-align: center; }
.lux .comparison-table { max-width: 1100px; margin: 48px auto 0; text-align: left; background: white; border-top: 4px solid var(--red); box-shadow: 0 12px 32px rgba(0,0,0,0.05); }
.lux .comparison-header { display: grid; grid-template-columns: 1.2fr 1.5fr 1.5fr; background: var(--black); }
.lux .comparison-header > div { padding: 20px 26px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: white; font-weight: 500; border-right: 1px solid rgba(255,255,255,0.08); }
.lux .comparison-header > div:last-child { border-right: none; }
.lux .comparison-row { display: grid; grid-template-columns: 1.2fr 1.5fr 1.5fr; border-bottom: 1px solid rgba(0,0,0,0.06); }
.lux .comparison-row:last-child { border-bottom: none; }
.lux .comparison-row:nth-child(even) { background: var(--off-white); }
.lux .comparison-label { padding: 22px 26px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-gray); font-weight: 500; border-right: 1px solid rgba(0,0,0,0.05); }
.lux .comparison-cell { padding: 22px 26px; font-size: 14px; line-height: 1.7; color: var(--text); border-right: 1px solid rgba(0,0,0,0.05); }
.lux .comparison-cell:last-child { border-right: none; }
.lux .comparison-cell strong { color: var(--black); font-weight: 600; }

/* ── LADDER GRID (What $2M Buys) ── */
.lux .ladder-section { padding: 100px 80px; background: var(--off-white); }
.lux .ladder-grid { display: grid; gap: 14px; margin-top: 48px; }
.lux .ladder-row { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 32px 36px; background: white; border-left: 4px solid var(--red); align-items: start; transition: all 0.3s; box-shadow: 0 6px 20px rgba(0,0,0,0.03); }
.lux .ladder-row:hover { transform: translateX(4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.lux .ladder-price { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--red); font-weight: 400; line-height: 1; margin-bottom: 6px; }
.lux .ladder-loc { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); font-weight: 600; }
.lux .ladder-desc { font-size: 15px; line-height: 1.8; color: #4A4A4A; }
.lux .ladder-desc strong { color: var(--black); font-weight: 600; }

/* ── NEARBY / RELATED LINKS ── */
.lux .nearby-section { padding: 90px 80px; background: white; text-align: center; }
.lux .nearby-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; max-width: 980px; margin-left: auto; margin-right: auto; }
.lux .nearby-link { padding: 12px 22px; background: var(--off-white); color: var(--black); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; border: 1px solid transparent; transition: all 0.25s; }
.lux .nearby-link:hover { background: var(--red); color: white; }

/* ── FAQ SECTION ── */
.lux .faq-section { padding: 100px 80px; background: var(--off-white); display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.lux .faq-left { position: sticky; top: 100px; }
.lux .faq-left .body { margin-bottom: 32px; }
.lux .faq-list { display: flex; flex-direction: column; gap: 0; }
.lux .faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.lux .faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.lux .faq-q { width: 100%; background: none; border: none; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-align: left; gap: 20px; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--black); font-weight: 400; line-height: 1.4; transition: color 0.2s; }
.lux .faq-q:hover { color: var(--red); }
.lux .faq-icon { width: 32px; height: 32px; border: 1px solid var(--border-red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); transition: all 0.3s; }
.lux .faq-item.open .faq-icon { background: var(--red); color: white; transform: rotate(45deg); }
.lux .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.lux .faq-item.open .faq-a { max-height: 800px; padding-bottom: 22px; }
.lux .faq-a p { font-size: 15px; line-height: 1.85; color: #4A4A4A; margin-bottom: 12px; font-weight: 300; }
.lux .faq-a p:last-child { margin-bottom: 0; }
.lux .faq-a strong { color: var(--black); font-weight: 600; }
.lux .faq-a a { color: var(--red); text-decoration: none; border-bottom: 1px solid var(--border-red); }

/* ── CTA SECTION ── */
.lux .cta-section { padding: 100px 80px; background: var(--black); display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; position: relative; overflow: hidden; }
.lux .cta-section::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: rgba(192,16,42,0.04); clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); }
.lux .cta-left { position: relative; z-index: 1; }
.lux .cta-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 3.6vw, 52px); color: white; font-weight: 400; line-height: 1.15; margin-bottom: 24px; }
.lux .cta-left h2 em { font-style: italic; color: var(--red); }
.lux .cta-left p { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 36px; max-width: 560px; }
.lux .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lux .cta-right { position: relative; z-index: 1; background: rgba(255,255,255,0.03); padding: 36px; border-top: 3px solid var(--red); }
.lux .cta-nap { display: flex; flex-direction: column; gap: 24px; }
.lux .nap-item { display: flex; gap: 14px; align-items: start; }
.lux .nap-item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.lux .nap-item > div { display: flex; flex-direction: column; }
.lux .nap-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.lux .nap-item a, .lux .nap-item span { color: white; text-decoration: none; font-size: 15px; line-height: 1.5; font-weight: 300; }
.lux .nap-item a:hover { color: var(--red); }

/* ── REVEAL ANIMATIONS ── */
.lux .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lux .reveal.visible { opacity: 1; transform: translateY(0); }
.lux .rd1 { transition-delay: 0.08s; }
.lux .rd2 { transition-delay: 0.16s; }
.lux .rd3 { transition-delay: 0.24s; }
.lux .rd4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .lux .hero { padding: 100px 36px 70px; }
  .lux .hero-wm { font-size: 140px; }
  .lux .about-section, .lux .eeat-section, .lux .neighborhoods-section, .lux .market-section, .lux .quote-section, .lux .comparison-section, .lux .ladder-section, .lux .faq-section, .lux .cta-section, .lux .nearby-section, .lux .content-section, .lux .grid-section { padding: 70px 36px; }
  .lux .stats-bar { grid-template-columns: repeat(5, 1fr); }
  .lux .stat-num { font-size: 32px; }
  .lux .about-section { grid-template-columns: 1fr; gap: 50px; }
  .lux .eeat-grid { grid-template-columns: 1fr; gap: 40px; }
  .lux .eeat-creds { grid-template-columns: repeat(2, 1fr); }
  .lux .neighborhoods-intro { grid-template-columns: 1fr; gap: 28px; }
  .lux .neigh-grid, .lux .card-grid { grid-template-columns: repeat(2, 1fr); }
  .lux .market-grid { grid-template-columns: 1fr; }
  .lux .comparison-header, .lux .comparison-row { grid-template-columns: 1fr 1fr 1fr; }
  .lux .ladder-row { grid-template-columns: 1fr; gap: 16px; padding: 26px 24px; }
  .lux .faq-section { grid-template-columns: 1fr; gap: 40px; }
  .lux .faq-left { position: static; }
  .lux .cta-section { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  .lux .hero { padding: 90px 24px 60px; }
  .lux .hero h1 { font-size: 44px; }
  .lux .hero-wm { display: none; }
  .lux .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .lux .stat-item { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
  .lux .stat-item:nth-child(2n) { border-right: none; }
  .lux .about-section, .lux .eeat-section, .lux .neighborhoods-section, .lux .market-section, .lux .quote-section, .lux .comparison-section, .lux .ladder-section, .lux .faq-section, .lux .cta-section, .lux .nearby-section, .lux .content-section, .lux .grid-section { padding: 60px 22px; }
  .lux .neigh-grid, .lux .card-grid { grid-template-columns: 1fr; }
  .lux .comparison-header, .lux .comparison-row { grid-template-columns: 1fr; }
  .lux .comparison-label { border-bottom: 1px solid rgba(0,0,0,0.05); }
  .lux .eeat-creds { grid-template-columns: 1fr 1fr; }
  .lux h2.section-title { font-size: 32px; }
  .lux .ladder-price { font-size: 30px; }
}
