/* ============================================================
   Legacy Estates at Lancaster - Dedicated Landing Page
   Brand: ID Vertical / ID US Partners
   Colors from Lancaster Deck: Navy #2a426b, Beige #d0cabb
   Mantra: "Your Place in this World."
   ============================================================ */

:root {
    --navy: #2a426b;
    --navy-dark: #213e58;
    --navy-deeper: #1a2942;
    --navy-deepest: #0f1a2e;
    --green-brand: #535e46;
    --green-mid: #537639;
    --green-light: #a9c891;
    --green-soft: #e8f0e0;
    --beige: #d0cabb;
    --beige-light: #e3e0d7;
    --beige-warm: #dcdfd5;
    --beige-pale: #f0ede6;
    --blue-soft: #95add5;

    --black: #0a0a0a;
    --dark-1: #111827;
    --gray-dark: #2d3748;
    --gray: #4a5568;
    --gray-medium: #718096;
    --gray-light: #a0aec0;
    --off-white: #f7f5f2;
    --white: #ffffff;
    --cream: #faf8f5;

    --font-heading: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    --font-body: Arial, 'Helvetica Neue', Helvetica, sans-serif;

    --section-padding: 130px;
    --container-width: 1240px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === 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(--gray-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-padding) 0; position: relative; }
.text-center { text-align: center; }

/* === PRELOADER === */
#preloader {
    position: fixed; inset: 0;
    background: var(--navy-deepest);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
    font-family: var(--font-heading); font-size: 42px; font-weight: 400;
    color: var(--beige); letter-spacing: 2px;
    animation: breathe 2s ease-in-out infinite;
}
.loader-sub {
    font-family: var(--font-body); font-size: 14px; font-weight: 300;
    color: rgba(208,202,187,0.5); letter-spacing: 4px; text-transform: uppercase; margin-top: 8px;
}
@keyframes breathe {
    0%, 100% { opacity: 0.4; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* === NAVIGATION === */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 24px 0; transition: all 0.4s var(--ease);
}
#navbar.scrolled {
    background: rgba(15, 26, 46, 0.97); backdrop-filter: blur(20px);
    padding: 14px 0; box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: var(--container-width); margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; gap: 0; }
.logo-legacy {
    font-family: var(--font-heading); font-size: 22px; font-weight: 500;
    color: var(--beige); letter-spacing: 1px; line-height: 1.1;
}
.logo-location {
    font-family: var(--font-body); font-size: 11px; font-weight: 300;
    color: rgba(255,255,255,0.5); letter-spacing: 3px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75);
    letter-spacing: 1px; text-transform: uppercase; position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--beige); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--beige) !important; color: var(--navy-deepest) !important;
    padding: 10px 24px !important; font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover { background: var(--beige-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(15,26,46,0.98); z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transition: right 0.5s var(--ease-out);
}
.mobile-menu.active { right: 0; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mobile-menu a { font-family: var(--font-heading); font-size: 28px; color: var(--white); }
.mobile-menu a:hover { color: var(--beige); }

/* === BUTTONS === */
.btn {
    display: inline-block; padding: 16px 40px;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s var(--ease); border: none;
}
.btn-primary { background: var(--beige); color: var(--navy-deepest); }
.btn-primary:hover { background: var(--beige-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(208,202,187,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--beige); color: var(--beige); transform: translateY(-2px); }
.btn-lg { padding: 20px 56px; font-size: 14px; letter-spacing: 3px; }
.btn-full { width: 100%; text-align: center; }

/* === TYPOGRAPHY === */
.section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
}
.section-label.light { color: var(--beige); }
.section-title {
    font-family: var(--font-heading); font-size: clamp(32px, 4vw, 50px);
    font-weight: 400; line-height: 1.2; color: var(--navy-deepest); margin-bottom: 24px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--navy); }
.section-title.light em { color: var(--beige); }
.section-subtitle {
    font-size: 17px; font-weight: 300; color: var(--gray); max-width: 680px; margin: 0 auto; line-height: 1.8;
}
.lead-text { font-size: 19px; font-weight: 300; color: var(--gray-dark); line-height: 1.8; margin-bottom: 24px; }
.body-text { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.85; margin-bottom: 20px; }
.body-text.light { color: rgba(255,255,255,0.7); }
.center-text { max-width: 760px; margin-left: auto; margin-right: auto; }
.title-accent { width: 60px; height: 2px; background: var(--beige); margin: 24px 0 32px; }
.title-accent.light { background: rgba(255,255,255,0.3); margin: 24px auto 32px; }
.section-header { margin-bottom: 64px; }

/* === HERO === */
.hero {
    position: relative; height: 100vh; min-height: 800px;
    display: flex; align-items: center; justify-content: center;
    background: url('images/page01_img01_2933x1648.jpeg') center center / cover no-repeat;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(170deg, rgba(15,26,46,0.85) 0%, rgba(33,62,88,0.75) 50%, rgba(42,66,107,0.7) 100%);
    z-index: 1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 90%, rgba(83,94,70,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 10%, rgba(208,202,187,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(42,66,107,0.2) 0%, transparent 70%);
}
.hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 880px; padding: 0 40px;
}
.hero-eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(208,202,187,0.7); margin-bottom: 28px;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(40px, 6vw, 76px);
    font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 24px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero-divider {
    width: 60px; height: 2px; background: var(--beige); margin: 0 auto 28px; opacity: 0.6;
    opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.8s forwards;
}
.hero-description {
    font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8;
    margin-bottom: 40px; max-width: 680px; margin-left: auto; margin-right: auto;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.hero-cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}
.hero-mantra {
    font-family: var(--font-heading); font-size: 18px; font-style: italic;
    color: var(--beige); margin-top: 48px; letter-spacing: 1px; opacity: 0.7;
    opacity: 0; animation: fadeIn 1.2s var(--ease) 1.6s forwards;
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    opacity: 0; animation: fadeIn 1s var(--ease) 2s forwards;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--beige), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* === VISION === */
.vision-section { background: var(--cream); }
.vision-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.image-frame { position: relative; }
.img-placeholder {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    height: 520px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
}
.vision-stat-float {
    position: absolute; bottom: -24px; left: -24px; background: var(--navy-deepest);
    padding: 28px 32px; z-index: 2;
}
.float-number {
    display: block; font-family: var(--font-heading); font-size: 48px;
    font-weight: 500; color: var(--beige); line-height: 1;
}
.float-label {
    font-size: 12px; font-weight: 400; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px;
}

/* === MANTRA === */
.mantra-section {
    background: var(--navy-deepest); padding: 140px 0; position: relative;
}
.mantra-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 75%, rgba(83,94,70,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(208,202,187,0.04) 0%, transparent 50%);
}
.mantra-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.mantra-headline {
    font-family: var(--font-heading); font-size: clamp(36px, 5vw, 60px);
    font-weight: 400; font-style: italic; color: var(--beige);
    margin-bottom: 16px; letter-spacing: 1px;
}
.mantra-divider { width: 60px; height: 2px; background: rgba(208,202,187,0.3); margin: 0 auto 36px; }
.mantra-body {
    font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65);
    line-height: 1.85; margin-bottom: 20px;
}
.mantra-body.emphasis { color: var(--beige); font-weight: 400; font-style: italic; margin-top: 32px; font-size: 19px; }

.mantra-pillars {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px;
}
.pillar { text-align: center; padding: 32px 16px; border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s var(--ease); }
.pillar:hover { border-color: rgba(208,202,187,0.25); background: rgba(255,255,255,0.02); transform: translateY(-4px); }
.pillar-icon { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--beige); }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.pillar p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* === NEIGHBORHOOD === */
.neighborhood-section { background: var(--white); }
.neighborhood-render { margin-bottom: 48px; }
.neighborhood-render-img {
    width: 100%; height: 460px; object-fit: cover; display: block;
    box-shadow: 0 16px 60px rgba(42,66,107,0.12);
}
.neighborhood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.n-card { background: var(--cream); transition: all 0.4s var(--ease); }
.n-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(42,66,107,0.1); }
.n-card-wide { grid-column: span 3; }
.n-card-inner { padding: 40px 36px; }
.n-card-wide .n-card-inner { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.n-icon { width: 44px; height: 44px; color: var(--navy); flex-shrink: 0; }
.n-icon svg { width: 100%; height: 100%; }
.n-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; color: var(--navy-deepest); margin-bottom: 12px; }
.n-card p { font-size: 15px; font-weight: 300; color: var(--gray); line-height: 1.8; }

/* === MASTERPLAN === */
.masterplan-feature {
    padding: 100px 0 80px;
    background: var(--off-white);
}
.masterplan-header {
    margin-bottom: 48px;
}
.masterplan-img-wrapper {
    position: relative;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 8px 40px rgba(42,66,107,0.08);
}
.masterplan-img {
    width: 100%;
    height: auto;
    display: block;
}
.masterplan-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-deepest);
}
.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .masterplan-legend { flex-direction: column; align-items: center; gap: 12px; }
}

/* === SCALE === */
.scale-section {
    background: var(--navy-deeper); padding: 140px 0;
    background-image: url('images/page12_img05_1080x608.jpeg');
    background-size: cover; background-position: center;
}
.scale-bg {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15,26,46,0.95) 0%, rgba(15,26,46,0.85) 50%, rgba(15,26,46,0.7) 100%);
}
.scale-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    position: relative; z-index: 2;
}
.scale-text .section-title.light { margin-bottom: 28px; }
.benefit-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-number {
    font-family: var(--font-heading); font-size: 20px; font-weight: 500;
    color: var(--beige); opacity: 0.6; min-width: 32px;
}
.benefit-content h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.benefit-content p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); }

/* === BETTER WAY === */
.better-section { background: var(--cream); }
.better-comparison {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
    margin: 0 auto 48px; max-width: 900px;
}
.compare-col { padding: 40px 36px; }
.compare-old { background: #f0ede8; }
.compare-new { background: var(--navy-deepest); }
.compare-col h4 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.compare-old h4 { color: var(--gray-medium); }
.compare-new h4 { color: var(--beige); }
.compare-subtitle { font-size: 13px; font-weight: 400; letter-spacing: 1px; margin-bottom: 24px; }
.compare-old .compare-subtitle { color: var(--gray-light); }
.compare-new .compare-subtitle { color: rgba(255,255,255,0.4); }
.compare-col ul { display: flex; flex-direction: column; gap: 12px; }
.compare-col li { font-size: 14px; font-weight: 400; padding-left: 20px; position: relative; }
.compare-old li { color: var(--gray-medium); }
.compare-old li::before { content: '—'; position: absolute; left: 0; color: var(--gray-light); }
.compare-new li { color: rgba(255,255,255,0.8); }
.compare-new li::before { content: '+'; position: absolute; left: 0; color: var(--green-light); font-weight: 700; }
.compare-divider {
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); width: 48px;
}
.compare-divider span {
    font-family: var(--font-heading); font-size: 16px; font-style: italic;
    color: var(--beige); opacity: 0.6;
}
.better-bottom { max-width: 700px; margin: 0 auto; }

/* === LIFESTYLE === */
.lifestyle-section { background: var(--white); }
.lifestyle-header { max-width: 680px; margin-bottom: 64px; }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.amenity-card { background: var(--cream); transition: all 0.4s var(--ease); }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(42,66,107,0.1); }
.amenity-featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; }
.amenity-img-placeholder {
    background: linear-gradient(135deg, var(--green-brand), var(--navy-dark));
    min-height: 320px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
}
.amenity-card-content { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.amenity-card-content h3 { font-family: var(--font-heading); font-size: 28px; font-weight: 500; color: var(--navy-deepest); margin-bottom: 16px; }
.amenity-card-content p { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.8; }
.amenity-icon { width: 40px; height: 40px; color: var(--navy); margin: 28px 0 0 28px; }
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-card:not(.amenity-featured) { padding: 0 0 28px; }
.amenity-card:not(.amenity-featured) h3 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 500;
    color: var(--navy-deepest); margin: 16px 28px 8px; }
.amenity-card:not(.amenity-featured) p { font-size: 14px; font-weight: 300; color: var(--gray); line-height: 1.7; margin: 0 28px; }
.amenity-callout { padding: 32px; background: var(--navy-deepest); }
.callout-text {
    font-size: 14px; font-weight: 400; color: rgba(208,202,187,0.7);
    letter-spacing: 1.5px;
}

/* === LANCASTER === */
.lancaster-section { background: var(--cream); }
.lancaster-layout {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start;
}
.lancaster-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.l-stat {
    background: var(--white); padding: 28px 24px;
    border-left: 3px solid var(--navy); transition: all 0.3s var(--ease);
}
.l-stat:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(42,66,107,0.08); }
.l-stat-value {
    font-family: var(--font-heading); font-size: 28px; font-weight: 500;
    color: var(--navy); line-height: 1; margin-bottom: 4px;
}
.l-stat-label { font-size: 13px; font-weight: 400; color: var(--gray-medium); }

/* === DOWNTOWN === */
.downtown-section { background: var(--navy-deeper); padding: 140px 0; position: relative; overflow: hidden; }
.downtown-bg {
    position: absolute; inset: 0;
    background: url('images/page10_img02_2434x1137.jpeg') center center / cover no-repeat;
    opacity: 0.12;
}
.downtown-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.downtown-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.tag {
    padding: 10px 20px; border: 1px solid rgba(208,202,187,0.2);
    font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6);
    letter-spacing: 1px; transition: all 0.3s var(--ease);
}
.tag:hover { border-color: var(--beige); color: var(--beige); transform: translateY(-2px); }

/* === FAMILY === */
.family-section { background: var(--white); }
.family-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.family-img { height: 560px; }
.family-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.f-feature {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: var(--off-white); transition: all 0.3s var(--ease);
}
.f-feature:hover { background: var(--beige-pale); }
.f-feature svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; }
.f-feature span { font-size: 14px; font-weight: 500; color: var(--navy-deepest); }

/* === HOMES GALLERY === */
.homes-gallery-section { background: var(--white); }

.homes-hero-img {
    position: relative; margin-bottom: 40px; overflow: hidden;
}
.homes-feature-img {
    width: 100%; height: 520px; object-fit: cover; display: block;
}
.homes-hero-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 40px;
    background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, transparent 100%);
}
.homes-hero-caption span {
    font-size: 22px; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px;
}
.homes-hero-caption p {
    font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.7); margin: 0;
}

.homes-interior-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.interior-card {
    position: relative; overflow: hidden; grid-column: span 1;
}
.interior-card-wide {
    grid-column: span 2;
}
.interior-card img {
    width: 100%; height: 320px; object-fit: cover; display: block;
    transition: transform 0.6s var(--ease);
}
.interior-card:hover img {
    transform: scale(1.04);
}
.interior-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(10,15,30,0.8) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.4s var(--ease);
}
.interior-card:hover .interior-label {
    opacity: 1;
}
.interior-label strong {
    font-size: 16px; font-weight: 700; color: var(--white); display: block; margin-bottom: 2px;
}
.interior-label span {
    font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.7);
}

.homes-amenity-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px;
}
.homes-amenity-img {
    position: relative; overflow: hidden;
}
.homes-amenity-img img {
    width: 100%; height: 300px; object-fit: cover; display: block;
    transition: transform 0.6s var(--ease);
}
.homes-amenity-img:hover img {
    transform: scale(1.04);
}
.homes-amenity-img:hover .interior-label {
    opacity: 1;
}

.homes-specs-strip {
    display: flex; justify-content: center; gap: 48px;
    padding: 40px; background: var(--navy-deepest); text-align: center;
}
.spec-item {}
.spec-value {
    font-size: 28px; font-weight: 700; color: var(--beige); margin-bottom: 4px;
}
.spec-label {
    font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5);
    letter-spacing: 1px; text-transform: uppercase;
}

@media (max-width: 768px) {
    .homes-feature-img { height: 300px; }
    .homes-interior-grid { grid-template-columns: 1fr; }
    .interior-card, .interior-card-wide { grid-column: span 1; }
    .interior-card img { height: 240px; }
    .interior-label { opacity: 1; }
    .homes-amenity-row { grid-template-columns: 1fr; }
    .homes-amenity-img img { height: 220px; }
    .homes-specs-strip { flex-wrap: wrap; gap: 24px; }
}

/* === SERVICE === */
.service-section { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 64px; }
.s-card {
    background: var(--white); padding: 40px 32px;
    border-top: 3px solid transparent; transition: all 0.4s var(--ease);
}
.s-card:hover { border-top-color: var(--navy); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(42,66,107,0.1); }
.s-number {
    font-family: var(--font-heading); font-size: 16px; font-weight: 500;
    color: var(--beige); margin-bottom: 16px;
}
.s-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 500; color: var(--navy-deepest); margin-bottom: 12px; }
.s-card p { font-size: 14px; font-weight: 300; color: var(--gray); line-height: 1.75; }
.partners-strip { padding: 40px; background: var(--navy-deepest); }
.partners-label {
    font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(208,202,187,0.5); margin-bottom: 20px;
}
.partner-logo-placeholder {
    font-family: var(--font-body); font-size: 20px; font-weight: 300;
    color: var(--beige); letter-spacing: 3px;
}

/* === TRICOR HOMES SECTION === */
.tricor-section {
    background: var(--white);
    padding: var(--section-padding) 0;
    position: relative;
}
.tricor-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.tricor-content .section-label {
    color: var(--green-brand);
}
.tricor-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--green-brand);
    margin-bottom: 24px;
    font-weight: 400;
}
.tricor-content .section-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 16px;
}
.tricor-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid var(--beige-light);
    border-bottom: 1px solid var(--beige-light);
}
.tricor-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tricor-stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}
.tricor-stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-medium);
}
.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.tricor-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tricor-highlight-card {
    background: var(--beige-pale);
    padding: 32px;
    border-radius: 4px;
    transition: transform 0.3s var(--ease);
}
.tricor-highlight-card:hover {
    transform: translateY(-4px);
}
.tricor-icon {
    color: var(--navy);
    margin-bottom: 16px;
}
.tricor-highlight-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-deepest);
    margin-bottom: 10px;
}
.tricor-highlight-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

/* Tricor responsive */
@media (max-width: 1024px) {
    .tricor-layout { gap: 50px; }
}
@media (max-width: 768px) {
    .tricor-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tricor-stats { gap: 24px; }
    .tricor-stat-number { font-size: 26px; }
}
@media (max-width: 480px) {
    .tricor-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* === CLOSING === */
.closing-section { background: var(--navy-deepest); padding: 160px 0; position: relative; overflow: hidden; }
.closing-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('images/page15_img03_855x570.jpeg') center center / cover no-repeat;
    opacity: 0.08;
}
.closing-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(83,118,57,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(208,202,187,0.03) 0%, transparent 50%);
}
.closing-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.closing-mark {
    font-family: var(--font-heading); font-size: 120px; color: var(--navy);
    line-height: 0.5; margin-bottom: 24px; opacity: 0.4;
}
.closing-headline {
    font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px);
    font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 24px;
}
.closing-headline em { color: var(--beige); }
.closing-divider { width: 60px; height: 2px; background: rgba(208,202,187,0.3); margin: 0 auto 36px; }
.closing-body {
    font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.6);
    line-height: 1.85; margin-bottom: 20px;
}
.closing-mantra {
    font-family: var(--font-heading); font-size: 28px; font-style: italic;
    color: var(--beige); margin: 48px 0 36px; letter-spacing: 1px;
}

/* === CONTACT === */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; margin-top: 3px; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy-deepest); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.developer-credit { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.06); }
.credit-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-medium); margin-bottom: 8px; }
.credit-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.credit-logo-img { height: 40px; width: auto; }
.credit-logo .logo-text { font-size: 11px; font-weight: 400; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; }
.credit-sub { font-size: 12px; color: var(--gray-medium); margin-top: 4px; }

/* Contact Form */
.contact-form-wrapper { background: var(--off-white); padding: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-title { font-family: var(--font-heading); font-size: 24px; font-weight: 500; color: var(--navy-deepest); margin-bottom: 0; }
.form-subtitle { font-size: 14px; font-weight: 300; color: var(--gray); margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; font-family: var(--font-body);
    font-size: 14px; font-weight: 300; color: var(--navy-deepest);
    background: var(--white); border: 1px solid rgba(0,0,0,0.1);
    outline: none; transition: border-color 0.3s var(--ease); -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-medium); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group select { color: var(--gray-medium); cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-disclaimer { font-size: 12px; color: var(--gray-light); text-align: center; margin-top: 4px; }

/* === FOOTER === */
.footer { background: var(--navy-deepest); padding: 60px 0 0; }
.footer-content {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 48px; align-items: center; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { text-align: left; }
.f-logo-name { font-family: var(--font-heading); font-size: 22px; font-weight: 500; color: var(--beige); display: block; }
.f-logo-loc { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.35); letter-spacing: 3px; text-transform: uppercase; }
.footer-mantra { font-family: var(--font-heading); font-size: 14px; font-style: italic; color: rgba(208,202,187,0.5); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-links a:hover { color: var(--beige); }
.footer-developer { text-align: right; }
.footer-developer p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.footer-dev-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-dev-logo-img { height: 36px; width: auto; }
.footer-dev-logo .logo-text { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.footer-bottom {
    padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.2);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* === WHATSAPP === */
.whatsapp-float {
    position: fixed; bottom: 32px; right: 32px; width: 56px; height: 56px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 900; transition: all 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
[data-animate] { opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root { --section-padding: 90px; }
    .container { padding: 0 32px; }
    .vision-layout, .scale-layout, .lancaster-layout, .family-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .mantra-pillars { grid-template-columns: repeat(2, 1fr); }
    .neighborhood-grid { grid-template-columns: 1fr; }
    .n-card-wide { grid-column: span 1; }
    .n-card-wide .n-card-inner { grid-template-columns: 1fr; }
    .amenity-grid { grid-template-columns: 1fr 1fr; }
    .amenity-featured { grid-column: span 2; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .better-comparison { grid-template-columns: 1fr; }
    .compare-divider { width: 100%; height: 48px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .footer-brand, .footer-developer { text-align: center; }
}
@media (max-width: 768px) {
    :root { --section-padding: 72px; }
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mantra-pillars { grid-template-columns: 1fr; }
    .amenity-grid { grid-template-columns: 1fr; }
    .amenity-featured { grid-column: span 1; grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .lancaster-stats { grid-template-columns: 1fr; }
    .family-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: 32px 24px; }
    .img-placeholder { height: 350px; }
    .family-img { height: 400px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 34px; }
    .hero-description { font-size: 15px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { padding: 14px 32px; }
    .btn-lg { padding: 16px 40px; }
    .mantra-headline { font-size: 32px; }
    .closing-headline { font-size: 26px; }
}
