/*
Theme Name: Luxury Noida - Astra Child
Template: astra
Version: 2.1
Description: Luxury Real Estate Child Theme for luxurypropertiesinnoida.com
Author: Luxury Properties in Noida
*/

/* =============================================
   ASTRA LAYOUT OVERRIDES â must come first
   ============================================= */
.site-content > .ast-container {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.home .site-content,
.single-property .site-content,
.post-type-archive-property .site-content {
    padding: 0 !important;
    margin: 0 !important;
}
.home #secondary,
.single-property #secondary,
.post-type-archive-property #secondary {
    display: none !important;
}

/* =============================================
   GLOBAL VARIABLES & RESET
   ============================================= */
:root {
    --cream:      #F8F5EF;
    --cream-dark: #EDE9E0;
    --green:      #1B3A2D;
    --green-mid:  #2C5240;
    --green-light:#3D6B55;
    --gold:       #B5963A;
    --gold-light: #CDB060;
    --dark:       #1A1A1A;
    --charcoal:   #2D2D2D;
    --text:       #333333;
    --text-muted: #888888;
    --border:     #E5DFD4;
    --white:      #FFFFFF;
    --font-serif: 'Georgia', 'Palatino Linotype', serif;
    --font-sans:  'Helvetica Neue', Arial, sans-serif;
    --radius:     12px;
    --radius-pill:50px;
    --transition: all 0.3s ease;
    --shadow:     0 2px 16px rgba(0,0,0,0.08);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

/* =============================================
   ASTRA HEADER OVERRIDE â light editorial style
   ============================================= */
#masthead,
.ast-hfb-header,
.site-header,
.main-header-bar {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06) !important;
}

.main-header-bar { padding: 0 !important; }

/* Logo */
.site-title a,
.site-title a:hover {
    color: var(--green) !important;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

/* Nav links */
.main-navigation .menu-item a,
.ast-desktop-header .menu-link,
#site-navigation .menu-item > a {
    color: var(--charcoal) !important;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    font-weight: 500;
    padding: 0 16px !important;
}

.main-navigation .menu-item a:hover,
.ast-desktop-header .menu-link:hover,
#site-navigation .menu-item:hover > a {
    color: var(--green) !important;
}

/* Phone CTA in nav */
.ast-custom-button,
.menu-item.phone-cta > a {
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: var(--radius-pill) !important;
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

/* =============================================
   FLOATING CONTACT BUTTONS (WhatsApp + Call)
   ============================================= */
.lp-float-btns {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    white-space: nowrap;
}

.lp-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
    color: var(--white) !important;
}

.lp-float-wa  { background: #25D366; }
.lp-float-call { background: var(--green); }

.lp-float-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--white);
}

/* =============================================
   UTILITY
   ============================================= */
.lp-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.lp-section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: normal;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 0.97rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 56px;
    line-height: 1.75;
}

.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-green {
    display: inline-block;
    background: var(--green);
    color: var(--white) !important;
    padding: 13px 32px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    border: 2px solid var(--green);
    transition: var(--transition);
    cursor: pointer;
}
.btn-green:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: var(--white) !important;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--dark) !important;
    padding: 11px 28px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    border: 2px solid var(--dark);
    transition: var(--transition);
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white) !important;
}

/* Keep old class names working too */
.btn-gold {
    display: inline-block;
    background: var(--green);
    color: var(--white) !important;
    padding: 13px 32px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    border: 2px solid var(--green);
    transition: var(--transition);
    cursor: pointer;
}
.btn-gold:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white) !important; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--green) !important;
    padding: 11px 28px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    border: 2px solid var(--green);
    transition: var(--transition);
}
.btn-outline:hover { background: var(--green); color: var(--white) !important; }

/* =============================================
   HERO â full-screen with aerial feel
   ============================================= */
.lp-hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    background: var(--green);
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.55;
    transition: opacity 0.5s;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27,58,45,0.82) 0%,
        rgba(27,58,45,0.45) 60%,
        rgba(27,58,45,0.2) 100%
    );
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 130px 48px 0;
    width: 100%;
}

.lp-hero-location {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
}

.lp-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: normal;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
    max-width: 760px;
}

.lp-hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.lp-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.lp-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.lp-hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 40px;
}

.lp-hero-stat {
    padding-right: 48px;
    margin-right: 48px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.lp-hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.lp-hero-stat .num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.lp-hero-stat .label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =============================================
   FEATURED PROPERTIES SECTION
   ============================================= */
.lp-properties-section {
    padding: 100px 0;
    background: var(--cream);
}

.lp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 24px;
}

/* ---- NEW image-dominant card grid ---- */
.lp-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.lp-property-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.lp-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--cream-dark);
    flex-shrink: 0;
}

.lp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lp-property-card:hover .lp-card-image img {
    transform: scale(1.06);
}

/* pill-shaped badge like reference */
.lp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

.lp-card-body {
    padding: 22px 22px 16px;
    flex: 1;
}

.lp-card-developer {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.lp-card-location {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lp-card-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 10px;
}

.lp-card-title a { color: var(--dark); }
.lp-card-title a:hover { color: var(--green); }

.lp-card-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 14px;
}

.lp-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.lp-card-meta span {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.lp-card-footer {
    padding: 0 22px 20px;
}

.lp-card-footer a {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 1.5px solid var(--green);
    padding-bottom: 1px;
}
.lp-card-footer a:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   WHY CHOOSE US â now light cream, not black
   ============================================= */
.lp-why-section {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 56px;
}

.lp-feature {
    text-align: left;
}

.lp-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    border: 1.5px solid var(--border);
}

.lp-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.lp-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* =============================================
   CTA STRIP â dark green
   ============================================= */
.lp-cta-strip {
    padding: 88px 0;
    background: var(--green);
    text-align: center;
}

.lp-cta-strip h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    font-weight: normal;
    margin-bottom: 14px;
}

.lp-cta-strip p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    margin-bottom: 36px;
}

.btn-dark {
    display: inline-block;
    background: var(--white);
    color: var(--green) !important;
    padding: 14px 40px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    border: 2px solid var(--white);
    transition: var(--transition);
}
.btn-dark:hover {
    background: transparent;
    color: var(--white) !important;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.lp-breadcrumb {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.lp-breadcrumb .inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 48px;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-breadcrumb a { color: var(--text-muted); }
.lp-breadcrumb a:hover { color: var(--green); }
.lp-breadcrumb .current { color: var(--dark); font-weight: 500; }
.lp-breadcrumb .sep { color: var(--border); }

/* =============================================
   ARCHIVE PAGE HERO
   ============================================= */
.lp-archive-hero {
    background: var(--green);
    padding: 80px 0 72px;
    text-align: center;
}

.lp-archive-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--white);
    font-weight: normal;
    margin-bottom: 14px;
}

.lp-archive-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto;
}

.lp-archive-section {
    padding: 72px 0 100px;
    background: var(--cream);
}

/* =============================================
   SINGLE PROPERTY HERO
   ============================================= */
.lp-prop-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    background: var(--green);
    overflow: hidden;
}

.lp-prop-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.lp-prop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(27,58,45,0.95) 0%,
        rgba(27,58,45,0.3) 60%,
        transparent 100%
    );
}

.lp-prop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 48px;
    width: 100%;
}

.lp-prop-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.lp-prop-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--white);
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 720px;
}

.lp-prop-location { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.lp-prop-price-hero { font-size: 1.2rem; color: var(--gold-light); font-weight: 700; }

/* =============================================
   INFO CARDS (single property)
   ============================================= */
.lp-info-cards { background: var(--dark); padding: 0; }

.lp-info-cards-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-wrap: wrap;
    border-top: 3px solid var(--gold);
}

.lp-info-card {
    flex: 1;
    min-width: 140px;
    padding: 26px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-info-card:last-child { border-right: none; }
.lp-info-card .label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.lp-info-card .value { font-family: var(--font-serif); font-size: 0.95rem; color: var(--white); line-height: 1.4; }

/* =============================================
   PROPERTY BODY
   ============================================= */
.lp-prop-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
}

.lp-prop-description { font-size: 1rem; line-height: 1.9; color: #444; }
.lp-prop-description h2, .lp-prop-description h3 { font-family: var(--font-serif); color: var(--dark); margin: 32px 0 12px; }
.lp-prop-description p { margin-bottom: 18px; }
.lp-prop-description ul { margin: 12px 0 18px 24px; color: #444; }
.lp-prop-description ul li { margin-bottom: 6px; }

/* =============================================
   ENQUIRY FORM SIDEBAR
   ============================================= */
.lp-enquiry-form {
    background: var(--cream);
    padding: 36px 32px;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid var(--border);
}

.lp-enquiry-form h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.lp-enquiry-form .sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.lp-enquiry-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    margin-top: 16px;
}

.lp-enquiry-form input,
.lp-enquiry-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--dark);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.lp-enquiry-form input:focus,
.lp-enquiry-form textarea:focus {
    border-color: var(--green);
}

.lp-enquiry-form textarea { resize: vertical; min-height: 90px; }

.lp-enquiry-form button {
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    background: var(--green);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.lp-enquiry-form button:hover { background: var(--green-mid); }

/* =============================================
   FOOTER
   ============================================= */
.lp-footer {
    background: #0f4d3a;
    color: rgba(255,255,255,0.72);
    padding: 66px 0 0;
    font-family: 'Inter', sans-serif;
}

.lp-footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px 54px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 44px;
}

.lp-footer-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 14px;
    line-height: 1.3;
}

.lp-footer-logo span {
    display: block;
    color: var(--gold);
}

.lp-footer-tagline {
    font-size: 0.825rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
    max-width: 280px;
}

.lp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-contact li {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.lp-footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}

.lp-footer-contact a:hover { color: var(--gold); }

.lp-footer-head {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin: 0 0 18px;
}

.lp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-col ul li {
    margin-bottom: 10px;
}

.lp-footer-col ul li a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s;
}

.lp-footer-col ul li a:hover { color: #fff; }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0;
}

.lp-footer-bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
}

    color: rgba(255,255,255,0.3);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .lp-property-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } .lp-footer-brand { grid-column: 1 / -1; }
    .lp-prop-body { grid-template-columns: 1fr; }
    .lp-enquiry-form { position: static; }
    .lp-info-cards-inner { padding: 0 24px; }
}

@media (max-width: 768px) {
    .lp-container { padding: 0 24px; }
    .lp-hero-content { padding: 0 24px; }
    .lp-hero-stats { flex-direction: column; gap: 24px; }
    .lp-hero-stat { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 4px; }
    .lp-hero-stat:last-child { border-bottom: none; }
    .lp-property-grid { grid-template-columns: 1fr; }
    .lp-features-grid { grid-template-columns: 1fr 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .lp-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .lp-float-btn span { display: none; }
    .lp-float-btn { padding: 14px; border-radius: 50%; }
    .lp-section-header { flex-direction: column; align-items: flex-start; }
    .lp-prop-hero-content { padding: 40px 24px; }
    .lp-prop-body { padding: 40px 24px; }
    .lp-breadcrumb .inner { padding: 12px 24px; }
}

@media (max-width: 600px) {
    .lp-footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   NEWS SLIDER â HOMEPAGE
   ============================================= */
.lp-news-section {
    background: #f9f6f1;
    padding: 80px 0;
}
.lp-news-slider-wrap {
    position: relative;
}
.lp-news-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    cursor: grab;
}
.lp-news-slider::-webkit-scrollbar { display: none; }
.lp-news-slider.is-dragging { cursor: grabbing; }

.lp-news-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.lp-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.lp-news-img {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1B3A2D, #2C5240);
}
.lp-news-img a { display: block; height: 100%; }
.lp-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.lp-news-card:hover .lp-news-img img { transform: scale(1.04); }
.lp-news-no-img { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #1B3A2D, #2C5240); }

.lp-news-body { padding: 24px 20px 20px; }
.lp-news-date { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #C9A96E; margin-bottom: 8px; }
.lp-news-title { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.4; margin: 0 0 10px; }
.lp-news-title a { color: #1B3A2D; text-decoration: none; }
.lp-news-title a:hover { color: #C9A96E; }
.lp-news-excerpt { font-size: 0.84rem; color: #666; line-height: 1.6; margin-bottom: 16px; }
.lp-news-read-more {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    color: #C9A96E; text-decoration: none; text-transform: uppercase;
}
.lp-news-read-more:hover { color: #1B3A2D; }

.lp-news-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}
.lp-news-prev, .lp-news-next {
    width: 44px; height: 44px;
    border: 2px solid #C9A96E;
    background: transparent;
    color: #C9A96E;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.lp-news-prev:hover, .lp-news-next:hover {
    background: #C9A96E;
    color: #fff;
}

/* =============================================
   NEWS ARCHIVE PAGE
   ============================================= */
.lp-archive-hero--news {
    background: linear-gradient(135deg, #1B3A2D 0%, #2C5240 100%);
    padding: 80px 0 64px;
    text-align: center;
}
.lp-archive-hero--news .lp-section-label { color: #C9A96E; }
.lp-archive-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin: 12px 0 16px;
}
.lp-archive-sub { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.lp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
@media (max-width: 900px) { .lp-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-news-grid { grid-template-columns: 1fr; } }

.lp-news-archive-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.lp-news-archive-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.lp-news-archive-img { height: 220px; overflow: hidden; background: linear-gradient(135deg, #1B3A2D, #2C5240); }
.lp-news-archive-img a { display: block; height: 100%; }
.lp-news-archive-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.lp-news-archive-card:hover .lp-news-archive-img img { transform: scale(1.04); }
.lp-news-archive-body { padding: 24px; }
.lp-news-archive-title { font-family: var(--font-serif); font-size: 1.1rem; margin: 8px 0 10px; line-height: 1.4; }
.lp-news-archive-title a { color: #1B3A2D; text-decoration: none; }
.lp-news-archive-title a:hover { color: #C9A96E; }
.lp-news-archive-excerpt { font-size: 0.84rem; color: #666; line-height: 1.6; margin-bottom: 16px; }

.lp-pagination { margin-top: 40px; text-align: center; }
.lp-pagination .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.lp-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid #ddd; border-radius: 4px;
    color: #333; text-decoration: none; font-size: 0.9rem;
    transition: all 0.2s;
}
.lp-pagination .page-numbers.current,
.lp-pagination .page-numbers:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }
.lp-pagination .page-numbers.dots { border: none; width: auto; }

.lp-no-posts { text-align: center; padding: 60px 0; }

/* =============================================
   SINGLE NEWS POST
   ============================================= */
.lp-single-news-header {
    background: linear-gradient(135deg, #1B3A2D 0%, #2C5240 100%);
    padding: 64px 0 56px;
}
.lp-single-news-header-inner { max-width: 760px; }
.lp-back-link {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase;
    display: inline-block; margin-bottom: 20px;
}
.lp-back-link:hover { color: #C9A96E; }
.lp-single-news-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
}
.lp-single-news-lead { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; margin: 0; }
.lp-single-news-header .lp-news-date { margin-bottom: 12px; }

.lp-single-news-thumb { padding: 48px 0 0; background: #f9f6f1; }
.lp-single-news-img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 4px; display: block; }

.lp-single-news-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    padding: 56px 0 80px;
    align-items: start;
}
@media (max-width: 860px) {
    .lp-single-news-body { grid-template-columns: 1fr; gap: 40px; }
}

.lp-single-news-content { font-size: 1rem; line-height: 1.8; color: #333; }
.lp-single-news-content h2,
.lp-single-news-content h3 { font-family: var(--font-serif); color: #1B3A2D; margin: 32px 0 12px; }
.lp-single-news-content p { margin-bottom: 20px; }
.lp-single-news-content a { color: #C9A96E; }
.lp-single-news-content img { max-width: 100%; border-radius: 4px; margin: 24px 0; }

.lp-news-sidebar-box {
    background: #f9f6f1;
    border-radius: 4px;
    padding: 28px 24px;
    border-top: 3px solid #C9A96E;
    margin-bottom: 24px;
}
.lp-news-sidebar-box h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: #1B3A2D;
    margin: 0 0 12px;
}
.lp-news-sidebar-box p { font-size: 0.88rem; color: #555; line-height: 1.6; margin-bottom: 0; }
.lp-news-sidebar-box .btn-gold { font-size: 0.82rem; padding: 11px 20px; }
.lp-news-sidebar-box .btn-outline { font-size: 0.82rem; padding: 11px 20px; border-color: #1B3A2D; color: #1B3A2D; }
.lp-news-sidebar-box .btn-outline:hover { background: #1B3A2D; color: #fff; }

.lp-news-sidebar-item { padding: 12px 0; border-bottom: 1px solid #e8e0d6; }
.lp-news-sidebar-item:last-child { border-bottom: none; }
.lp-news-sidebar-item .lp-news-date { margin-bottom: 4px; }
.lp-news-sidebar-link { font-size: 0.88rem; color: #1B3A2D; text-decoration: none; line-height: 1.4; display: block; }
.lp-news-sidebar-link:hover { color: #C9A96E; }

/* Add to body-type context for single news */
.post-type-archive-news .site-content,
.single-news .site-content {
    padding: 0 !important;
    margin: 0 !important;
}
.post-type-archive-news #secondary,
.single-news #secondary {
    display: none !important;
}

/* =============================================
   Blog Archive - Card excerpt + placeholder
   ============================================= */
.lp-news-card-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-news-card-link {
    display: inline-block;
    color: #0f4d3a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.lp-news-card-link:hover { text-decoration: underline; }
.lp-news-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0f4d3a 0%, #1a6b52 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-news-card-img-placeholder svg {
    width: 60px;
    height: 40px;
    opacity: 0.5;
}
.lp-news-card img.lp-news-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.lp-news-pagination {
    text-align: center;
    padding: 40px 0;
}
.lp-news-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #0f4d3a;
    text-decoration: none;
    font-weight: 500;
}
.lp-news-pagination .page-numbers.current,
.lp-news-pagination .page-numbers:hover {
    background: #0f4d3a;
    color: #fff;
    border-color: #0f4d3a;
}
.lp-news-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ===== FAQ Section ===== */
.lp-faq-section { padding: 90px 0; background: var(--cream); }
.lp-faq-section .lp-container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.lp-faq-eyebrow { display:block; text-align:center; letter-spacing:.18em; font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; margin-bottom:14px; }
.lp-faq-heading { text-align:center; font-family:var(--font-serif); font-size:40px; line-height:1.15; color:var(--green); margin:0 0 14px; }
.lp-faq-sub { text-align:center; color:var(--text-muted); max-width:620px; margin:0 auto 44px; font-size:16px; line-height:1.6; }
.lp-faq-item { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); margin-bottom:14px; overflow:hidden; transition:var(--transition); }
.lp-faq-item[open] { box-shadow:var(--shadow); border-color:var(--gold-light); }
.lp-faq-q { list-style:none; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 26px; font-family:var(--font-serif); font-weight:600; font-size:18px; color:var(--green); }
.lp-faq-q::-webkit-details-marker { display:none; }
.lp-faq-plus { position:relative; flex:0 0 22px; width:22px; height:22px; }
.lp-faq-plus::before, .lp-faq-plus::after { content:""; position:absolute; background:var(--gold); border-radius:2px; transition:var(--transition); }
.lp-faq-plus::before { top:10px; left:3px; width:16px; height:2px; }
.lp-faq-plus::after { top:3px; left:10px; width:2px; height:16px; }
.lp-faq-item[open] .lp-faq-plus::after { transform:rotate(90deg); opacity:0; }
.lp-faq-a { padding:0 26px 24px; color:var(--text); line-height:1.75; font-size:15.5px; }
@media (max-width:600px){ .lp-faq-heading{font-size:28px;} .lp-faq-q{font-size:16px;padding:18px;} .lp-faq-a{padding:0 18px 20px;} }


/* ===== Browse by Sector / Builder ===== */
.lp-browse-section { padding: 84px 0; background: var(--white); }
.lp-browse-section.lp-browse-alt { background: var(--cream); }
.lp-browse-section .lp-container { max-width: 1140px; margin:0 auto; padding:0 24px; }
.lp-browse-eyebrow { display:block; text-align:center; letter-spacing:.18em; font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; margin-bottom:12px; }
.lp-browse-heading { text-align:center; font-family:var(--font-serif); font-size:36px; color:var(--green); margin:0 0 12px; }
.lp-browse-sub { text-align:center; color:var(--text-muted); max-width:620px; margin:0 auto 42px; font-size:15.5px; line-height:1.6; }
.lp-browse-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:18px; }
.lp-browse-card { display:flex; flex-direction:column; gap:7px; padding:26px 24px; background:var(--white); border:1px solid var(--border); border-radius:var(--radius); text-decoration:none; transition:var(--transition); }
.lp-browse-section.lp-browse-alt .lp-browse-card { background:var(--white); }
.lp-browse-card:hover { border-color:var(--gold); box-shadow:var(--shadow); transform:translateY(-3px); }
.lp-browse-card-name { font-family:var(--font-serif); font-size:19px; color:var(--green); font-weight:600; line-height:1.25; }
.lp-browse-card-count { font-size:12.5px; color:var(--gold); letter-spacing:.05em; text-transform:uppercase; font-weight:600; }
@media (max-width:600px){ .lp-browse-heading{font-size:26px;} .lp-browse-grid{grid-template-columns:repeat(2,1fr);gap:12px;} .lp-browse-card{padding:18px 16px;} .lp-browse-card-name{font-size:16px;} }


/* ============================================================
   PREMIUM POLISH (visual refinement layer)
   ============================================================ */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
::selection { background: var(--gold); color: #fff; }
.section-title, h1, h2 { letter-spacing: -0.015em; }
.gold-line { background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important; height: 2px !important; }
@media (min-width:1024px){
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 8px; border: 3px solid var(--cream); }
  ::-webkit-scrollbar-thumb:hover { background: var(--green); }
}

/* Hero */
.lp-hero-overlay { background: linear-gradient(180deg, rgba(11,26,18,0.30) 0%, rgba(11,26,18,0.48) 50%, rgba(11,26,18,0.80) 100%) !important; }
.lp-hero-bg { animation: lpKenBurns 22s ease-out forwards; }
@keyframes lpKenBurns { from { transform: scale(1.0); } to { transform: scale(1.08); } }
.lp-hero-title { letter-spacing: -0.5px; text-shadow: 0 2px 40px rgba(0,0,0,0.30); }
.lp-hero-title em { font-style: italic; color: var(--gold-light); }
.lp-hero-location { letter-spacing: 0.28em; }
.lp-hero-content > * { opacity: 0; animation: lpFadeUp 0.9s cubic-bezier(0.2,0.7,0.2,1) forwards; }
.lp-hero-content > *:nth-child(1){ animation-delay: 0.15s; }
.lp-hero-content > *:nth-child(2){ animation-delay: 0.30s; }
.lp-hero-content > *:nth-child(3){ animation-delay: 0.45s; }
.lp-hero-content > *:nth-child(4){ animation-delay: 0.60s; }
.lp-hero-content > *:nth-child(5){ animation-delay: 0.75s; }
@keyframes lpFadeUp { from { opacity:0; transform: translateY(26px); } to { opacity:1; transform: none; } }
.lp-hero-stat .num { font-family: var(--font-serif); }

/* Buttons */
.btn-gold, .btn-dark, .lp-hero-ctas a, .lp-card-footer a, .btn { transition: all 0.35s cubic-bezier(0.2,0.7,0.2,1); }
.btn-gold:hover, .btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(27,58,45,0.22); }
.btn-dark:hover { background: var(--gold) !important; color: #fff !important; }
.lp-hero-ctas a:last-child:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Property cards */
.lp-property-card { transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease; border: 1px solid rgba(27,58,45,0.05); }
.lp-property-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(27,58,45,0.18); }
.lp-card-image { position: relative; }
.lp-card-image img { transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1); width: 100%; height: 100%; object-fit: cover; }
.lp-property-card:hover .lp-card-image img { transform: scale(1.07); }
.lp-card-image::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 62%, rgba(0,0,0,0.20) 100%); opacity:0; transition: opacity 0.4s ease; pointer-events:none; }
.lp-property-card:hover .lp-card-image::after { opacity:1; }
.lp-card-title a { transition: color 0.3s ease; }
.lp-card-title a:hover { color: var(--gold); }
.lp-card-footer a:hover { color: var(--gold); }

/* Scroll reveal (activated by JS adding body.lp-anim) */
body.lp-anim .lp-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.7,0.2,1); }
body.lp-anim .lp-reveal.lp-in { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .lp-hero-bg { animation: none !important; }
  .lp-hero-content > * { animation: none !important; opacity: 1 !important; }
  body.lp-anim .lp-reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  html { scroll-behavior: auto; }
}


/* ===== Blog article content ===== */
.lp-blog-content{max-width:820px;margin:40px auto 10px;padding:0 22px;font-size:1.05rem;line-height:1.8;color:var(--text);}
.lp-blog-content>p:first-of-type{font-size:1.12rem;color:#444;}
.lp-blog-content h2{font-family:var(--font-serif);color:var(--green);font-size:1.7rem;line-height:1.25;margin:40px 0 14px;}
.lp-blog-content h3{font-family:var(--font-serif);color:var(--green);font-size:1.18rem;margin:26px 0 8px;}
.lp-blog-content p{margin:0 0 18px;}
.lp-blog-content strong{color:var(--green);}
.lp-blog-content ul{margin:0 0 24px;padding:0;list-style:none;}
.lp-blog-content ul li{position:relative;padding:11px 0 11px 26px;border-bottom:1px solid var(--border);}
.lp-blog-content ul li:last-child{border-bottom:none;}
.lp-blog-content ul li::before{content:'';position:absolute;left:2px;top:19px;width:8px;height:8px;background:var(--gold);border-radius:50%;}
.lp-blog-content .lp-note{font-size:0.9rem;color:var(--text-muted);}
.lp-table-wrap{overflow-x:auto;margin:12px 0 16px;border:1px solid var(--border);border-radius:var(--radius);}
.lp-blog-table{width:100%;border-collapse:collapse;font-size:0.95rem;min-width:660px;}
.lp-blog-table th{background:var(--green);color:#fff;text-align:left;padding:13px 15px;font-family:var(--font-serif);font-weight:600;}
.lp-blog-table td{padding:12px 15px;border-bottom:1px solid var(--border);}
.lp-blog-table tbody tr:nth-child(even) td{background:var(--cream);}
@media (max-width:600px){.lp-blog-content h2{font-size:1.4rem;}.lp-blog-content{font-size:1rem;}}
