/* Walking the Valley — Coughtry-inspired Palette
   Gold: #C49A4A | Dark: #1A1A1A | Off-white: #F8F5F0 | Mid: #4A4A4A | Border: #E5DDD5
*/

/* ── Reset for home page ── */
body.home-page {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: #1A1A1A;
    background: #F8F5F0;
    overflow-x: hidden;
}

/* ── CSS variables ── */
:root {
    --ce-white:       #ffffff;
    --ce-offwhite:    #F8F5F0;
    --ce-cream:       #F2EDE5;
    --ce-gold:        #C49A4A;
    --ce-gold-dark:   #A37A30;
    --ce-gold-light:  rgba(196, 154, 74, 0.1);
    --ce-dark:        #1A1A1A;
    --ce-mid:         #4A4A4A;
    --ce-light:       #7A7A7A;
    --ce-border:      #E5DDD5;
    --ce-section-dark: #1C1C1C;
}

/* ── HEADER ── */
.ce-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.ce-header.scrolled {
    border-bottom-color: var(--ce-border);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
.ce-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
    height: 8rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.ce-logo img {
    height: 5rem;
    width: auto;
    display: block;
}

/* Header nav */
.ce-nav { flex: 1; }
.ce-nav .nav {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 3rem;
    align-items: center;
}
.ce-nav .nav-icon { display: none; }
.ce-nav .nav a {
    color: var(--ce-dark);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.ce-nav .nav a:hover,
.ce-nav .nav .nav-current a {
    color: var(--ce-gold);
    border-bottom-color: var(--ce-gold);
    opacity: 1;
}
/* Remove Braun nav overrides on ce-nav */
.ce-nav .nav li {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    font-size: inherit;
    width: auto; height: auto;
}
.ce-nav .nav li:hover { background: none !important; }
.ce-nav .nav li:active { transform: none; }

/* ── BUTTONS ── */
.ce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.ce-btn-gold {
    background: var(--ce-gold);
    border-color: var(--ce-gold);
    color: #1A1A1A;
}
.ce-btn-gold:hover {
    background: var(--ce-gold-dark);
    border-color: var(--ce-gold-dark);
    color: #1A1A1A;
    opacity: 1;
}
.ce-btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}
.ce-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    opacity: 1;
}
.ce-btn-full { width: 100%; }

/* ── BURGER ── */
.ce-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.ce-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ce-dark);
    transition: transform 0.3s, opacity 0.3s;
}
.ce-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ce-burger.open span:nth-child(2) { opacity: 0; }
.ce-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.ce-mobile-nav {
    display: none;
    position: fixed;
    top: 8rem; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--ce-border);
    padding: 2.4rem 3rem 3rem;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ce-mobile-nav.open { display: flex; }
.ce-mobile-nav .nav {
    list-style: none;
    margin: 0 0 2.4rem; padding: 0;
    display: flex;
    flex-direction: column;
}
.ce-mobile-nav .nav-icon { display: none; }
.ce-mobile-nav .nav li {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--ce-border) !important;
    width: auto; height: auto;
}
.ce-mobile-nav .nav li:active { transform: none; }
.ce-mobile-nav .nav a {
    display: block;
    padding: 1.4rem 0;
    color: var(--ce-dark);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

/* ── HERO ── */
.ce-hero {
    position: relative;
    height: 100vh;
    min-height: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ce-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.ce-hero-video iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}
.ce-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.45) 100%);
    z-index: 1;
}
.ce-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 92rem;
    padding: 4rem 4.5rem 5rem;
    background: rgba(10,5,0,0.68);
    border-radius: 4px;
}
.ce-hero-photo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(196,154,74,0.65);
    box-shadow: 0 0 0 8px rgba(196,154,74,0.1);
}
.ce-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.ce-hero-text { flex: 1; min-width: 0; }
.ce-hero-content h1 {
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 1.6rem 0 2.4rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.ce-gold-text { color: var(--ce-gold); }
.ce-hero-content p {
    font-size: clamp(1.6rem, 1.8vw, 1.9rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 4rem;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.ce-hero-btns {
    display: flex;
    gap: 1.6rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Scroll hint */
.ce-scroll-hint {
    position: absolute;
    bottom: 3.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
    animation: bounce 2.4s ease-in-out infinite;
}
.ce-scroll-hint:hover { color: rgba(255,255,255,0.9); opacity: 1; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SHARED SECTION STYLES ── */
.ce-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}
.ce-eyebrow {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ce-gold);
    margin-bottom: 1.2rem;
}
.ce-services .ce-eyebrow,
.ce-about .ce-eyebrow { color: #7A5A1E; }
.ce-hero .ce-eyebrow { color: rgba(255,255,255,0.9); }
.ce-section-header {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 6rem;
}
.ce-section-header h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--ce-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.6rem;
    line-height: 1.2;
}
.ce-section-header p {
    font-size: 1.8rem;
    color: var(--ce-mid);
    line-height: 1.7;
    margin: 0;
}

/* ── SERVICES ── */
.ce-services {
    background: var(--ce-white);
    padding: 10rem 0;
}
.ce-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
}
.ce-service-card {
    background: var(--ce-offwhite);
    border: 1px solid var(--ce-border);
    padding: 4.8rem 4rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.ce-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.ce-service-icon {
    width: 7.2rem; height: 7.2rem;
    background: var(--ce-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.8rem;
    color: var(--ce-gold);
}
.ce-service-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ce-dark);
    margin-bottom: 1.6rem;
    letter-spacing: -0.01em;
}
.ce-service-card p {
    font-size: 1.6rem;
    color: var(--ce-mid);
    line-height: 1.75;
    margin-bottom: 3.2rem;
}
.ce-card-link {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ce-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--ce-gold);
    padding-bottom: 0.2rem;
    transition: color 0.2s, border-color 0.2s;
}
.ce-card-link:hover { color: var(--ce-gold-dark); border-color: var(--ce-gold-dark); opacity: 1; }
.ce-services .ce-card-link { color: #7A5A1E; border-bottom-color: #7A5A1E; }
.ce-services .ce-card-link:hover { color: #5A3E0E; border-bottom-color: #5A3E0E; }

/* ── ABOUT ── */
.ce-about {
    background: var(--ce-offwhite);
    padding: 10rem 0;
}
.ce-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}
.ce-about-image {
    position: relative;
}
.ce-about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.ce-about-image::before {
    content: '';
    position: absolute;
    top: -2rem; left: -2rem;
    right: 2rem; bottom: 2rem;
    border: 2px solid var(--ce-gold);
    z-index: 0;
    pointer-events: none;
}
.ce-about-image img { position: relative; z-index: 1; }
.ce-about-content h2 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--ce-dark);
    letter-spacing: -0.02em;
    margin-bottom: 2.4rem;
    line-height: 1.2;
}
.ce-about-content p {
    font-size: 1.7rem;
    color: var(--ce-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.ce-btn-about {
    background: transparent;
    border: 2px solid var(--ce-gold);
    color: var(--ce-gold);
    margin-top: 1.6rem;
}
.ce-btn-about:hover {
    background: var(--ce-gold);
    color: #fff;
    opacity: 1;
}

/* ── CONTACT ── */
.ce-contact {
    background: var(--ce-section-dark);
    padding: 10rem 0;
}
.ce-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: start;
}
.ce-contact-info .ce-eyebrow { color: var(--ce-gold); }
.ce-contact-info h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.ce-contact-info > p {
    font-size: 1.7rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 4rem;
}
.ce-contact-details { display: flex; flex-direction: column; gap: 1.6rem; }
.ce-contact-item {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: rgba(255,255,255,0.8);
    font-size: 1.6rem;
}
.ce-contact-item svg { color: var(--ce-gold); flex-shrink: 0; }

/* Form */
.ce-form { display: flex; flex-direction: column; gap: 1.6rem; }
.ce-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.ce-form input,
.ce-form textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.5rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.ce-form input::placeholder,
.ce-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.ce-form input:focus,
.ce-form textarea:focus {
    border-color: var(--ce-gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(196, 154, 74, 0.25);
    outline: none;
}
.ce-form input:-webkit-autofill,
.ce-form input:-webkit-autofill:hover,
.ce-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px rgba(28, 28, 28, 0.97) inset, 0 0 0 3px rgba(196, 154, 74, 0.25);
    border-color: var(--ce-gold);
    transition: background-color 5000s ease-in-out 0s;
}
.ce-form textarea { resize: vertical; }

/* ── FOOTER ── */
.ce-footer {
    background: #111;
    color: rgba(255,255,255,0.65);
    padding: 7rem 0 0;
}
.ce-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ce-footer-logo {
    max-width: 16rem;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}
.ce-footer-brand p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}
.ce-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem; height: 4rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
}
.ce-footer-social-link:hover {
    color: var(--ce-gold);
    border-color: var(--ce-gold);
    opacity: 1;
}
.ce-footer-links h3,
.ce-footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2.4rem;
}
.ce-footer-links .nav {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.ce-footer-links .nav-icon { display: none; }
.ce-footer-links .nav li {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto; height: auto;
}
.ce-footer-links .nav li:active { transform: none; }
.ce-footer-links .nav a {
    color: rgba(255,255,255,0.55);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.6rem 0;
    display: block;
}
.ce-footer-links .nav a:hover { color: var(--ce-gold); opacity: 1; }
.ce-footer-contact p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0 0 0.6rem;
}
.ce-footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; }
.ce-footer-contact a:hover { color: var(--ce-gold); opacity: 1; }
.ce-footer-brokerage {
    max-width: 14rem;
    height: auto;
    margin-top: 2.8rem;
    opacity: 0.6;
    filter: brightness(10);
}
.ce-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.4rem 4rem;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
}

/* ── TABLET ── */
@media (max-width: 1024px) {
    .ce-header-inner { padding: 0 2.4rem; gap: 2rem; }
    .ce-header-cta { display: none; }
    .ce-section-inner { padding: 0 2.4rem; }
    .ce-footer-inner { padding: 0 2.4rem 6rem; gap: 4rem; }
    .ce-footer-bottom { padding: 2.4rem 2.4rem; }
    .ce-contact-grid { gap: 5rem; }
}

/* ── MOBILE ── */
@media (max-width: 767px) {
    /* Header */
    .ce-nav { display: none; }
    .ce-burger { display: flex; }
    .ce-header-inner { padding: 0 1.6rem; gap: 1.2rem; height: 4rem; }
    .ce-logo img { height: 2.6rem; }
    .ce-mobile-nav { top: 4rem; }

    /* Hero — stacked image-above, text-below layout */
    .ce-hero {
        height: auto;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--ce-section-dark);
    }
    .ce-hero-video {
        display: block;
        position: relative;
        inset: auto;
        height: 60vw;
        min-height: 220px;
        max-height: 320px;
        flex-shrink: 0;
        z-index: 0;
    }
    .ce-hero-overlay { display: none; }
    .ce-hero-content {
        position: static;
        background: var(--ce-section-dark);
        padding: 3.6rem 2rem 5rem;
        max-width: 100%;
        text-align: center;
    }
    .ce-hero-content h1 {
        font-size: clamp(2.8rem, 8vw, 3.8rem);
        margin: 1.2rem 0 2rem;
    }
    .ce-hero-content p {
        font-size: 1.55rem;
        margin-bottom: 3rem;
    }
    .ce-hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
    }
    .ce-hero-btns .ce-btn { width: 100%; }
    .ce-scroll-hint { display: none; }

    /* Sections */
    .ce-section-inner { padding: 0 2rem; }
    .ce-section-header { margin-bottom: 3.6rem; }
    .ce-section-header p { font-size: 1.6rem; }

    .ce-services { padding: 5rem 0; }
    .ce-services-grid { grid-template-columns: 1fr; }
    .ce-service-card { padding: 3.2rem 2.4rem; }
    .ce-service-card h3 { font-size: 2rem; }
    .ce-service-card p { font-size: 1.5rem; }

    .ce-about { padding: 5rem 0; }
    .ce-about-grid { grid-template-columns: 1fr; gap: 3.2rem; }
    .ce-about-image::before { display: none; }
    .ce-about-content p { font-size: 1.55rem; }

    .ce-contact { padding: 5rem 0; }
    .ce-contact-grid { grid-template-columns: 1fr; gap: 3.2rem; }
    .ce-form-row { grid-template-columns: 1fr; }
    .ce-contact-info > p { font-size: 1.55rem; }
    .ce-contact-item { font-size: 1.5rem; }

    .ce-footer-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem 4rem;
    }
    .ce-footer-bottom { padding: 2rem 2rem; }
}

/* cache-bust placeholder */

/* cache-bust 1778015733 */

/* ── FAQ Page ──────────────────────────────────────────────────── */
.ce-faq-page { padding: 6rem 0 8rem; }
.ce-faq-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}
.ce-faq-title h1 {
    font-size: 3.2rem;
    font-weight: 700;
    position: sticky;
    top: 100px;
    margin: 0;
}
.ce-faq-list { border-top: 1px solid rgba(0,0,0,0.1); }
.ce-faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.ce-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    color: #1A1A1A;
    font-size: 1.65rem;
    font-family: inherit;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    gap: 2rem;
    transition: color 0.2s;
}
.ce-faq-question:hover { color: var(--ce-gold); }
.ce-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--ce-gold);
    transition: transform 0.3s ease;
}
.ce-faq-item.open .ce-faq-icon { transform: rotate(45deg); }
.ce-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
    padding-bottom: 0;
}
.ce-faq-item.open .ce-faq-answer {
    max-height: 800px;
    padding-bottom: 2.4rem;
}
.ce-faq-answer p {
    font-size: 1.55rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0;
}
@media (max-width: 680px) {
    .ce-faq-layout {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    .ce-faq-title h1 { position: static; }
}

/* ── Neighborhood Pages ──────────────────────────────────────────── */
.ce-nbhd-hero {
    background: rgba(196,154,74,0.08);
    border-bottom: 2px solid var(--ce-gold);
    padding: 5rem 0 4rem;
}
.ce-nbhd-hero .ce-eyebrow { color: var(--ce-gold); margin-bottom: 1rem; }
.ce-nbhd-hero h1 { font-size: 3.8rem; font-weight: 700; color: #1A1A1A; margin: 0 0 1rem; line-height: 1.15; }
.ce-nbhd-tagline { font-size: 1.8rem; color: #4A4A4A; max-width: 620px; line-height: 1.6; margin: 0; }
.ce-nbhd-body { padding: 5rem 0; }
.ce-nbhd-grid { display: grid; grid-template-columns: 1fr 280px; gap: 5rem; align-items: start; }
.ce-nbhd-content h2 { font-size: 2.2rem; font-weight: 700; color: #1A1A1A; margin: 0 0 1rem; }
.ce-nbhd-content p { font-size: 1.6rem; line-height: 1.8; color: #4A4A4A; margin-bottom: 2.4rem; }
.ce-nbhd-content p:last-child { margin-bottom: 0; }
.ce-nbhd-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.2rem; }
.ce-nbhd-stat {
    background: #fff;
    border: 1px solid #E5DDD5;
    border-radius: 8px;
    padding: 1.6rem 2rem;
    border-left: 3px solid var(--ce-gold);
}
.ce-nbhd-stat-label { display: block; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ce-gold); margin-bottom: 0.4rem; }
.ce-nbhd-stat-value { display: block; font-size: 1.65rem; font-weight: 600; color: #1A1A1A; }
.ce-nbhd-highlights { padding: 4.5rem 0; background: #F0EBE3; }
.ce-nbhd-highlights h2 { font-size: 2.4rem; font-weight: 700; color: #1A1A1A; margin-bottom: 2.4rem; }
.ce-nbhd-highlights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.ce-nbhd-highlight { background: #fff; border-radius: 8px; padding: 2.4rem; border-top: 3px solid var(--ce-gold); }
.ce-nbhd-highlight h3 { font-size: 1.55rem; font-weight: 700; color: #1A1A1A; margin: 0 0 0.8rem; }
.ce-nbhd-highlight p { font-size: 1.45rem; color: #4A4A4A; line-height: 1.7; margin: 0; }
.ce-nbhd-cta { padding: 5rem 0; text-align: center; background: #1A1A1A; color: #fff; }
.ce-nbhd-cta h2 { font-size: 2.6rem; font-weight: 700; margin: 0 0 1rem; }
.ce-nbhd-cta p { font-size: 1.65rem; color: rgba(255,255,255,0.72); margin: 0 auto 2.4rem; max-width: 520px; line-height: 1.6; }
.ce-nbhd-hub { padding: 5rem 0; }
.ce-nbhd-hub h2 { font-size: 2.4rem; font-weight: 700; color: #1A1A1A; margin-bottom: 2.4rem; }
.ce-nbhd-hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.ce-nbhd-card {
    background: #fff;
    border: 1px solid #E5DDD5;
    border-radius: 10px;
    padding: 2.8rem 2.4rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.2s, border-color 0.2s;
    border-top: 3px solid var(--ce-gold);
}
.ce-nbhd-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-color: var(--ce-gold); }
.ce-nbhd-card h3 { font-size: 1.9rem; font-weight: 700; color: #1A1A1A; margin: 0 0 0.8rem; }
.ce-nbhd-card .ce-nbhd-card-price { font-size: 1.35rem; font-weight: 600; color: var(--ce-gold); margin-bottom: 1rem; }
.ce-nbhd-card p { font-size: 1.45rem; color: #4A4A4A; line-height: 1.65; margin: 0 0 1.6rem; }
.ce-nbhd-card .ce-card-link { font-size: 1.35rem; font-weight: 600; color: var(--ce-gold); }
@media (max-width: 900px) {
    .ce-nbhd-hub-grid { grid-template-columns: repeat(2,1fr); }
    .ce-nbhd-highlights-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
    .ce-nbhd-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ce-nbhd-sidebar { position: static; }
    .ce-nbhd-hub-grid { grid-template-columns: 1fr; }
    .ce-nbhd-highlights-grid { grid-template-columns: 1fr; }
    .ce-nbhd-hero h1 { font-size: 2.8rem; }
    .ce-nbhd-tagline { font-size: 1.6rem; }
    .ce-nbhd-content h2 { font-size: 2rem; }
    .ce-nbhd-content p { font-size: 1.5rem; }
    .ce-nbhd-highlights h2 { font-size: 2rem; }
    .ce-nbhd-highlight h3 { font-size: 1.45rem; }
    .ce-nbhd-highlight p { font-size: 1.35rem; }
    .ce-nbhd-cta h2 { font-size: 2.2rem; }
    .ce-nbhd-cta p { font-size: 1.55rem; }
}

/* ── MARKET SNAPSHOT ── */
.ce-market .ce-section-header h2 { color: #fff; }
.ce-market .ce-section-header p { color: rgba(255,255,255,0.65); }
.ce-market {
    background: #1C1C1C;
    padding: 8rem 0;
}
.ce-market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 5rem 0 4rem;
}
.ce-market-card {
    background: #242424;
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 3px solid var(--ce-gold);
    border-radius: 4px;
    padding: 3rem 2.4rem;
    text-align: center;
}
.ce-market-label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin: 0 0 1.4rem;
}
.ce-market-value {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--ce-gold);
    margin: 0 0 1.2rem;
    line-height: 1;
}
.ce-market-trend {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
}
.ce-market-trend svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}
.ce-trend-up svg { color: #6BBF6B; }
.ce-trend-down svg { color: #6BBF6B; }
.ce-trend-neutral svg { color: rgba(255,255,255,0.4); }
.ce-market-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2.8rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.ce-market-source {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
@media (max-width: 900px) {
    .ce-market-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .ce-market { padding: 6rem 0; }
    .ce-market-grid { grid-template-columns: 1fr; gap: 1.4rem; margin: 4rem 0 3rem; }
    .ce-market-value { font-size: 3.2rem; }
    .ce-market-footer { flex-direction: column; align-items: stretch; }
    .ce-market-footer .ce-btn { width: 100%; text-align: center; }
}

/* ── BLOG POSTS ── */
.ce-post-article {
    background: #1C1C1C;
    min-height: 60vh;
}
.ce-post-header {
    background: #1C1C1C;
    padding: 6rem 0 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ce-post-header .ce-eyebrow { margin-bottom: 1.2rem; }
.ce-post-header h1 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.6rem;
}
.ce-post-date {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    letter-spacing: 0.04em;
}
.ce-post-body {
    padding: 5rem 0 8rem;
    max-width: 72rem;
}
.ce-post-body h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 4rem 0 1.4rem;
    line-height: 1.25;
}
.ce-post-body p {
    font-size: 1.7rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    margin: 0 0 2rem;
}
.ce-post-body ul {
    padding-left: 2.4rem;
    margin: 0 0 2.4rem;
}
.ce-post-body li {
    font-size: 1.7rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    margin-bottom: 1rem;
}
.ce-post-body strong {
    color: #fff;
    font-weight: 600;
}
.ce-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    color: var(--ce-gold);
    text-decoration: none;
    margin-bottom: 4rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.ce-post-back:hover { opacity: 1; }
@media (max-width: 680px) {
    .ce-post-header { padding: 4rem 0 3rem; }
    .ce-post-body { padding: 3.5rem 0 6rem; }
    .ce-post-body h2 { font-size: 2rem; margin-top: 3rem; }
    .ce-post-body p, .ce-post-body li { font-size: 1.55rem; }
}
