/* ============================================================
   Custom Homes — Apple Liquid Glass Refresh
   Keeps existing palette and structure, upgrades surfaces only
   ============================================================ */

:root {
    --cf-gold:        #C9A84C;
    --cf-gold-light:  #dfc278;
    --cf-gold-dk:     #a07c2a;

    --cf-sage:        #588157;
    --cf-sage-lt:     #A3C59E;
    --cf-sage-tint:   #EFF4F8;

    --cf-navy:        #1C1917;
    --cf-cream:       #F5F2ED;
    --cf-bg:          #FAFAF8;
    --cf-check:       #588157;

    --cf-glass-white: rgba(255, 255, 255, 0.58);
    --cf-glass-white-strong: rgba(255, 255, 255, 0.72);
    --cf-glass-cream: rgba(245, 242, 237, 0.62);
    --cf-glass-sage: rgba(88, 129, 87, 0.12);
    --cf-glass-dark: rgba(28, 25, 23, 0.66);

    --cf-border-soft: rgba(255, 255, 255, 0.44);
    --cf-border-sage: rgba(88, 129, 87, 0.20);
    --cf-border-dark: rgba(255, 255, 255, 0.12);

    --cf-shadow-soft: 0 8px 28px rgba(28, 25, 23, 0.06);
    --cf-shadow-md: 0 16px 44px rgba(28, 25, 23, 0.10);
    --cf-shadow-lg: 0 28px 80px rgba(28, 25, 23, 0.14);

    --cf-glass-blur: 18px;
    --cf-glass-blur-strong: 28px;

    --cf-radius-sm: 14px;
    --cf-radius-md: 20px;
    --cf-radius-lg: 28px;
    --cf-radius-xl: 36px;
}

/* ============================================================
   BASE
   ============================================================ */

.cf-hero,
.cf-checklist,
.cf-packages,
.cf-explorer,
.cf-extras,
.cf-cta-strip,
.cf-process,
.cf-faq {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

.cf-checklist,
.cf-process,
.cf-extras,
.cf-faq {
    position: relative;
    overflow: clip;
}

.cf-checklist::before,
.cf-process::before,
.cf-extras::before,
.cf-faq::before {
    content: '';
    position: absolute;
    inset: auto auto 0 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163,197,158,0.10) 0%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}

.cf-checklist::after,
.cf-process::after,
.cf-extras::after,
.cf-faq::after {
    content: '';
    position: absolute;
    inset: 0 0 auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 72%);
    filter: blur(28px);
    pointer-events: none;
}

.cf-section-tag {
    color: var(--cf-sage);
    padding-left: 0.7rem;
    border-left: 2px solid var(--cf-sage);
    letter-spacing: 0.14em;
}

.cf-section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}

.cf-section-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--cf-sage) 0%, var(--cf-sage-lt) 100%);
    margin: 0.75rem auto 0;
    border-radius: 999px;
}

.section-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn--gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(180deg, #6d946a 0%, #588157 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid rgba(88,129,87,0.75);
    box-shadow:
        0 10px 24px rgba(88,129,87,0.22),
        inset 0 1px 0 rgba(255,255,255,0.24);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(88,129,87,0.28),
        inset 0 1px 0 rgba(255,255,255,0.24);
    background: linear-gradient(180deg, #648b62 0%, #4f744e 100%);
}

.btn--ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.8rem;
    background: rgba(255,255,255,0.36);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.44);
    box-shadow:
        0 8px 20px rgba(28,25,23,0.08),
        inset 0 1px 0 rgba(255,255,255,0.42);
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    backdrop-filter: blur(var(--cf-glass-blur));
}

.btn--ghost-light:hover {
    border-color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.48);
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(28,25,23,0.10),
        inset 0 1px 0 rgba(255,255,255,0.48);
}

.cf-hero .btn--ghost-light {
    color: var(--cf-sage);
    border-color: rgba(88,129,87,0.28);
    background: rgba(255,255,255,0.42);
}

.cf-hero .btn--ghost-light:hover {
    background: rgba(255,255,255,0.58);
    border-color: rgba(88,129,87,0.42);
    color: #3d6040;
}

.btn--outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.8rem;
    background: rgba(255,255,255,0.30);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(28,25,23,0.14);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    backdrop-filter: blur(var(--cf-glass-blur));
}

.btn--outline-dark:hover {
    background: rgba(28,25,23,0.86);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */

.cf-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 84% 14%, rgba(163,197,158,0.24) 0%, transparent 34%),
        radial-gradient(circle at 16% 88%, rgba(201,168,76,0.10) 0%, transparent 26%),
        linear-gradient(160deg, #fafaf8 0%, #f5f2ed 55%, #eef3eb 100%);
    overflow: hidden;
    isolation: isolate;
}

.cf-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(163,197,158,0.28) 0%, rgba(163,197,158,0.08) 44%, transparent 72%);
    filter: blur(18px);
    z-index: 1;
    pointer-events: none;
}

/* Hero background image inserted as an <img> (from WP attachment ID). */
.cf-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    z-index: -1;
}

/* If the image has an intrinsic aspect ratio that leads to letterboxing, ensure
   the hero keeps sufficient height for visual balance. */
.cf-hero { min-height: 56vh; }

.cf-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--cf-sage) 22%, var(--cf-sage-lt) 55%, transparent 100%);
    z-index: 1;
}

/* overlay visuals moved to the .cf-hero background to reduce extra markup */

.cf-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5.5rem 1.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.cf-hero__content::before {
    content: '';
    position: absolute;
    inset: 2rem 0 0 0;
    max-width: 760px;
    height: calc(100% - 2rem);
    margin: 0 auto;
    /* Disabled visual container: remove the rounded translucent panel */
    display: none;
}

.cf-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cf-sage);
    margin-bottom: 1rem;
}

.cf-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6vw, 5rem);
    color: #1C1917;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.cf-hero__sub {
    font-size: 1.08rem;
    color: #78716C;
    max-width: 620px;
    margin: 0 auto 2.35rem;
    line-height: 1.75;
    text-wrap: balance;
}

.cf-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cf-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(88,129,87,0.14);
}

.cf-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.1rem;
    position: relative;
}

.cf-hero__stat + .cf-hero__stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2rem;
    width: 1px;
    background: rgba(88,129,87,0.14);
}

.cf-hero__stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cf-sage);
    line-height: 1.1;
}

.cf-hero__stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #78716C;
    margin-top: 0.2rem;
    white-space: nowrap;
}

@media (max-width: 540px) {
    .cf-hero {
        min-height: 92svh;
    }

    .cf-hero__content {
        padding: 3.5rem 1rem 3rem;
    }

    .cf-hero__content::before {
        /* ensure pseudo-element stays disabled on small screens */
        display: none;
    }

    .cf-hero__sub {
        font-size: 1rem;
        margin: 10px 26px 30px 26px;
        line-height: 1.5;
    }

    .cf-hero__stats {
        gap: 0;
        margin-top: 2.1rem;
        padding-top: 1.2rem;
    }

    .cf-hero__stat {
        padding: 0.6rem 1.15rem;
    }

    .cf-hero__stat + .cf-hero__stat::before {
        display: none;
    }

    .cf-hero__stat-num {
        font-size: 1.95rem;
    }
}

/* Mobile: reduce hero background image opacity to 80% under 700px */
@media (max-width: 700px) {
    .cf-hero__bg {
        opacity: 0.6;
    }

    /* ensure content remains above the background image */
    .cf-hero__content {
        z-index: 2;
    }
}

/* ============================================================
   PROCESS
   ============================================================ */

.cf-process {
    background: var(--cf-cream);
}

.cf-process__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .cf-process__grid {
        grid-template-columns: 1fr;
    }
}

.cf-process__card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.58) 100%);
    border-radius: 22px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.56);
    box-shadow:
        0 12px 30px rgba(88,129,87,0.08),
        inset 0 1px 0 rgba(255,255,255,0.52);
    backdrop-filter: blur(var(--cf-glass-blur));
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.cf-process__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.24) 0%, transparent 42%);
    pointer-events: none;
}

.cf-process__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 42px rgba(88,129,87,0.12),
        inset 0 1px 0 rgba(255,255,255,0.56);
    border-color: rgba(88,129,87,0.20);
}

.cf-process__icon {
    font-size: 1.75rem;
    line-height: 1;
    width: 56px;
    height: 56px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(239,244,248,0.78) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.54);
    backdrop-filter: blur(10px);
}

.cf-process__card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cf-navy);
    margin-bottom: 0.45rem;
}

.cf-process__card p {
    font-size: 0.92rem;
    color: #78716C;
    line-height: 1.65;
    margin: 0;
}

.cf-process__cta {
    margin-top: 2.5rem;
}

/* ============================================================
   CHECKLIST
   ============================================================ */

.cf-checklist {
    background: var(--cf-bg);
    z-index: 1;
}

.cf-model-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    background:
        linear-gradient(135deg, rgba(28,25,23,0.88) 0%, rgba(40,56,40,0.78) 100%);
    border: 1px solid rgba(163,197,158,0.22);
    border-radius: 18px;
    padding: 1rem 1.35rem;
    margin: 0 0 2.5rem;
    color: #fff;
    box-shadow:
        0 18px 44px rgba(28,25,23,0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(var(--cf-glass-blur));
}

.cf-model-banner__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cf-sage-lt);
    white-space: nowrap;
}

.cf-model-banner__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
    min-width: 0;
}

.cf-model-banner__change {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.78);
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}

.cf-model-banner__change:hover {
    border-color: var(--cf-sage-lt);
    color: #fff;
    background: rgba(255,255,255,0.10);
}

.cf-model-trigger {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    padding: 1rem 1.35rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.76) 0%, rgba(239,244,248,0.82) 100%);
    border: 1px solid rgba(255,255,255,0.58);
    border-radius: 18px;
    margin-bottom: 2.5rem;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    box-shadow:
        0 14px 36px rgba(88,129,87,0.08),
        inset 0 1px 0 rgba(255,255,255,0.56);
    transition: all 0.25s ease;
    backdrop-filter: blur(var(--cf-glass-blur));
}

.cf-model-trigger:hover {
    border-color: rgba(88,129,87,0.22);
    box-shadow:
        0 18px 42px rgba(88,129,87,0.12),
        inset 0 1px 0 rgba(255,255,255,0.56);
    transform: translateY(-2px);
}

.cf-model-trigger[hidden] {
    display: none;
}

.cf-model-trigger__icon {
    font-size: 1.4rem;
    line-height: 1;
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.54);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.62);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.52);
}

.cf-model-trigger__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cf-model-trigger__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cf-sage);
}

.cf-model-trigger__text {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--cf-navy);
}

.cf-model-trigger__arrow {
    color: var(--cf-sage);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cf-model-selector {
    background:
        linear-gradient(180deg, rgba(245,242,237,0.72) 0%, rgba(255,255,255,0.52) 100%);
    border: 1px solid rgba(255,255,255,0.56);
    border-radius: 28px;
    padding: 2rem 2rem 2.25rem;
    margin-bottom: 3rem;
    box-shadow:
        0 20px 54px rgba(28,25,23,0.08),
        inset 0 1px 0 rgba(255,255,255,0.54);
    backdrop-filter: blur(var(--cf-glass-blur-strong));
}

.cf-model-selector__header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.cf-model-selector__step {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cf-sage);
    margin-bottom: 0.4rem;
}

.cf-model-selector__note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0.25rem 0 0;
    line-height: 1.6;
}

.cf-model-selector__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-muted);
    padding: 2rem;
    font-size: 0.95rem;
}

.cf-model-selector__empty a {
    color: var(--cf-sage);
    font-weight: 600;
    text-decoration: none;
}

.cf-model-selector__empty a:hover {
    text-decoration: underline;
}

.cf-model-selector__view-all {
    text-align: center;
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
}

.cf-model-selector__view-all a {
    color: #6b7280;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.cf-model-selector__view-all a:hover {
    color: var(--cf-gold);
    text-decoration: underline;
}

.cf-model-selector__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 300px));
    gap: 1.25rem;
    justify-content: center;
}

@media (max-width: 700px) {
    .cf-model-selector__grid {
        grid-template-columns: repeat(2, minmax(0, 300px));
    }
}

@media (max-width: 460px) {
    .cf-model-selector__grid {
        grid-template-columns: minmax(0, 340px);
    }
}

.cf-model-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.66) 100%);
    border: 1px solid rgba(255,255,255,0.60);
    border-radius: 22px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow:
        0 12px 30px rgba(28,25,23,0.06),
        inset 0 1px 0 rgba(255,255,255,0.56);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(var(--cf-glass-blur));
}

.cf-model-card:hover,
.cf-model-card:focus-within {
    border-color: rgba(88,129,87,0.24);
    transform: translateY(-4px);
    box-shadow:
        0 18px 42px rgba(88,129,87,0.12),
        inset 0 1px 0 rgba(255,255,255,0.58);
}

.cf-model-card.is-selected {
    border-color: rgba(88,129,87,0.34);
    box-shadow:
        0 0 0 3px rgba(88,129,87,0.14),
        0 18px 42px rgba(88,129,87,0.12),
        inset 0 1px 0 rgba(255,255,255,0.58);
}

.cf-model-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.cf-model-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cf-model-card:hover .cf-model-card__img {
    transform: scale(1.04);
}

.cf-model-card__img--placeholder {
    height: 200px;
    background: linear-gradient(135deg, #d8ddd3 0%, #b9c8b4 100%);
}

.cf-model-card__gallery-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(28,25,23,0.52);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.42rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 2;
    backdrop-filter: blur(12px);
}

.cf-model-card:hover .cf-model-card__gallery-btn,
.cf-model-card:focus-within .cf-model-card__gallery-btn {
    opacity: 1;
}

.cf-model-card__gallery-btn:hover {
    background: rgba(28,25,23,0.72);
}

.cf-model-card__info {
    padding: 1rem 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.cf-model-card__name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

.cf-model-card__specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
}

.cf-model-card__specs li {
    font-size: 0.78rem;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cf-model-card__spec-icon {
    font-size: 0.85em;
}

.cf-model-card__price {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--cf-sage);
}

.cf-model-card__select {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: 0.72rem 1rem;
    background: linear-gradient(180deg, #cfae55 0%, #b8943c 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow:
        0 10px 20px rgba(201,168,76,0.18),
        inset 0 1px 0 rgba(255,255,255,0.18);
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.cf-model-card__select:hover {
    background: linear-gradient(180deg, #bf9d46 0%, #a98734 100%);
    transform: translateY(-1px);
}

.cf-model-card.is-selected .cf-model-card__select {
    background: linear-gradient(180deg, #6a9168 0%, #588157 100%);
}

.cf-model-card__check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--cf-sage);
    border-radius: 50%;
    display: none;
    z-index: 3;
    box-shadow: 0 8px 18px rgba(88,129,87,0.24);
}

.cf-model-card.is-selected .cf-model-card__check {
    display: block;
}

.cf-model-card__check::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.cf-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cfGalleryFadeIn 0.2s ease both;
}

.cf-gallery-modal[hidden] {
    display: none;
}

@keyframes cfGalleryFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cf-gallery-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.82);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.cf-gallery-modal__inner {
    position: relative;
    z-index: 1;
    width: min(92vw, 980px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cf-gallery-modal__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.cf-gallery-modal__close:hover {
    opacity: 1;
}

.cf-gallery-modal__title {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.cf-gallery-modal__stage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.cf-gallery-modal__img-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17,17,17,0.54);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.cf-gallery-modal__img {
    max-width: 100%;
    max-height: 62vh;
    object-fit: contain;
    display: block;
}

.cf-gallery-modal__arrow {
    flex-shrink: 0;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    backdrop-filter: blur(10px);
}

.cf-gallery-modal__arrow:hover {
    background: rgba(255,255,255,0.26);
}

.cf-gallery-modal__counter {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    margin: 0;
}

.cf-gallery-modal__thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 90px;
    overflow-y: auto;
}

.cf-gallery-modal__thumb {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.15s;
    overflow: hidden;
    flex-shrink: 0;
}

.cf-gallery-modal__thumb img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    opacity: 0.65;
    transition: opacity 0.15s;
}

.cf-gallery-modal__thumb:hover img,
.cf-gallery-modal__thumb.is-active img {
    opacity: 1;
}

.cf-gallery-modal__thumb.is-active {
    border-color: var(--cf-gold);
}

@media (max-width: 600px) {
    .cf-gallery-modal__arrow {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .cf-gallery-modal__img {
        max-height: 52vh;
    }

    .cf-gallery-modal__thumb img {
        width: 54px;
        height: 40px;
    }
}

/* ============================================================
   WIZARD GRID
   ============================================================ */

.cf-wizard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .cf-wizard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .cf-wizard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cf-wizard-grid {
        gap: 0.75rem;
    }

    .cf-wizard-card,
    .cf-wizard-card--soon {
        flex-direction: row;
        align-items: center;
        padding: 0.9rem 1rem;
        gap: 0.875rem;
    }

    .cf-wizard-card__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.15rem;
        border-radius: 12px;
    }

    .cf-wizard-card__body {
        flex: 1;
        min-width: 0;
        gap: 0.15rem;
    }

    .cf-wizard-card__title {
        font-size: 0.95rem;
    }

    .cf-wizard-card__desc {
        display: none;
    }

    .cf-wizard-card__meta {
        margin-top: 0.15rem;
        gap: 0.35rem;
    }

    .cf-wizard-card__time {
        font-size: 0.71rem;
    }

    .cf-wizard-card__cta,
    .cf-wizard-card__cta--disabled {
        flex-shrink: 0;
        padding: 0.55rem 0.875rem;
        font-size: 0.83rem;
        white-space: nowrap;
    }

    .cf-model-trigger {
        padding: 0.875rem 1.1rem;
    }

    .cf-model-banner {
        padding: 0.875rem 1.1rem;
    }
}

.cf-wizard-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.62) 100%);
    border: 1px solid rgba(255,255,255,0.56);
    border-radius: 22px;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    box-shadow:
        0 12px 30px rgba(28,25,23,0.06),
        inset 0 1px 0 rgba(255,255,255,0.56);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(var(--cf-glass-blur));
    overflow: hidden;
}

.cf-wizard-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 40%);
    pointer-events: none;
}

.cf-wizard-card:hover:not(.cf-wizard-card--soon) {
    border-color: rgba(88,129,87,0.24);
    box-shadow:
        0 18px 42px rgba(88,129,87,0.12),
        inset 0 1px 0 rgba(255,255,255,0.58);
    transform: translateY(-4px);
}

.cf-wizard-card--soon {
    opacity: 0.58;
}

.cf-wizard-card__icon {
    font-size: 1.6rem;
    line-height: 1;
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(239,244,248,0.82) 100%);
    border: 1px solid rgba(255,255,255,0.56);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.50);
    backdrop-filter: blur(10px);
}

.cf-wizard-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cf-wizard-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-dark);
    margin: 0;
}

.cf-wizard-card__desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

.cf-wizard-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cf-wizard-card__time {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-muted);
    background: rgba(240,237,232,0.78);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.cf-wizard-card__status {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.cf-wizard-card__status[data-status="idle"] {
    background: #f0f0f0;
    color: #888;
}

.cf-wizard-card__status[data-status="in-progress"] {
    background: #fff4e0;
    color: #d97706;
}

.cf-wizard-card__status[data-status="complete"] {
    background: #e8f8f0;
    color: #059669;
}

.cf-wizard-card__status--soon {
    background: #f0f0f0;
    color: #aaa;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.cf-wizard-card__cta {
    display: block;
    text-align: center;
    padding: 0.78rem 1.25rem;
    font-size: 0.93rem;
    border-radius: 999px;
}

.cf-wizard-card__cta--disabled {
    display: block;
    text-align: center;
    padding: 0.78rem 1.25rem;
    background: rgba(235,235,235,0.82);
    color: #bbb;
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 600;
    pointer-events: none;
    cursor: not-allowed;
}

.cf-checklist-guest-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.1rem 1.75rem;
    font-size: 0.93rem;
    color: var(--color-muted);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.64) 0%, rgba(245,242,237,0.78) 100%);
    border: 1px dashed rgba(88,129,87,0.24);
    border-radius: 18px;
    box-shadow:
        0 10px 24px rgba(28,25,23,0.04),
        inset 0 1px 0 rgba(255,255,255,0.52);
    backdrop-filter: blur(12px);
}

.cf-checklist-guest-note a {
    color: var(--cf-sage);
    font-weight: 600;
    text-decoration: none;
}

.cf-checklist-guest-note a:hover {
    text-decoration: underline;
}

/* ============================================================
   EXTRAS
   ============================================================ */

.cf-extras {
    background: var(--cf-cream);
}

.cf-extras__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .cf-extras__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .cf-extras__grid {
        grid-template-columns: 1fr;
    }
}

.cf-extra-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.60) 100%);
    border-radius: 22px;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.56);
    box-shadow:
        0 12px 30px rgba(28,25,23,0.06),
        inset 0 1px 0 rgba(255,255,255,0.56);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(var(--cf-glass-blur));
    overflow: hidden;
    position: relative;
}

.cf-extra-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 45%);
    pointer-events: none;
}

.cf-extra-card:hover {
    border-color: rgba(88,129,87,0.24);
    transform: translateY(-4px);
    box-shadow:
        0 18px 42px rgba(88,129,87,0.12),
        inset 0 1px 0 rgba(255,255,255,0.56);
}

.cf-extra-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.7rem;
}

.cf-extra-card__desc {
    font-size: 0.93rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.cf-extra-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.58);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cf-sage);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.54);
    backdrop-filter: blur(10px);
}

.cf-extras__note {
    color: var(--color-muted);
}

/* ============================================================
   CTA STRIP
   ============================================================ */

.cf-cta-strip {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 70% 36%, rgba(88,129,87,0.16) 0%, transparent 30%),
        linear-gradient(180deg, #1c1917 0%, #141210 100%);
    text-align: center;
    position: relative;
    overflow: clip;
    isolation: isolate;
}

.cf-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04) 0%, transparent 18%),
        radial-gradient(circle at 85% 80%, rgba(163,197,158,0.08) 0%, transparent 26%);
    pointer-events: none;
}

.cf-cta-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--cf-sage) 30%, var(--cf-sage-lt) 60%, transparent 95%);
}

.cf-cta-strip__inner {
    max-width: 760px;
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
}

.cf-cta-strip__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.cf-cta-strip__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin: 0 auto 2.25rem;
    line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */

.cf-faq {
    background: var(--cf-bg);
}

.cf-faq__grid {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 2.5rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.cf-faq__item {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.60) 100%);
    border: 1px solid rgba(255,255,255,0.58);
    border-radius: 18px;
    margin: 0;
    overflow: hidden;
    box-shadow:
        0 10px 26px rgba(28,25,23,0.05),
        inset 0 1px 0 rgba(255,255,255,0.56);
    backdrop-filter: blur(14px);
}

.cf-faq__item summary {
    list-style: none;
}

.cf-faq__item summary::-webkit-details-marker {
    display: none;
}

.cf-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--cf-navy);
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
    transition: background 0.25s ease;
}

.cf-faq__question:hover {
    background: rgba(239,244,248,0.48);
}

.cf-faq__question::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239,244,248,0.88);
    color: var(--cf-sage);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    transition: background 0.25s ease;
}

.cf-faq__item[open] > .cf-faq__question {
    color: var(--cf-sage);
    background: rgba(239,244,248,0.62);
}

.cf-faq__item[open] > .cf-faq__question::after {
    content: '−';
    background: var(--cf-sage);
    color: #fff;
}

.cf-faq__answer {
    padding: 0 1.4rem 1.4rem 1.4rem;
}

.cf-faq__answer p {
    font-size: 0.91rem;
    color: #78716C;
    line-height: 1.75;
    margin: 0;
}

.cf-faq__answer p + p {
    margin-top: 0.6rem;
}

.cf-faq__answer ul,
.cf-faq__answer ol {
    margin: 0.5rem 0 0.5rem 1.25rem;
    padding: 0;
}

.cf-faq__answer li {
    font-size: 0.91rem;
    color: #78716C;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.cf-faq__answer li strong {
    color: var(--cf-navy);
    font-weight: 600;
}

/* ============================================================
   LEGACY BLOCKS KEPT SAFE
   ============================================================ */

.cf-packages {
    background: var(--cf-cream);
}

.cf-explorer {
    background: #fff;
}

.cf-tabs {
    display: flex;
    gap: 0;
    margin: 2.5rem 0 0;
    border-bottom: 2px solid #e8e8e8;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cf-tabs::-webkit-scrollbar {
    display: none;
}

.cf-tab {
    background: none;
    border: none;
    padding: 0.85rem 1.6rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--color-muted);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease;
    letter-spacing: 0.01em;
}

.cf-tab::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.25s ease;
}

.cf-tab:hover {
    color: var(--color-dark);
}

.cf-tab.is-active {
    color: var(--color-dark);
}

.cf-tab.is-active::after {
    background: var(--cf-sage);
}

.cf-panel {
    display: none;
    padding: 2.5rem 0;
}

.cf-panel.is-active {
    display: block;
}

.cf-panel__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

@media (max-width: 780px) {
    .cf-panel__body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cf-panel__right {
        order: -1;
    }
}

.cf-panel__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
}

.cf-panel__desc {
    color: var(--color-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.cf-material-group {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0ede8;
}

.cf-material-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cf-material-group__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.6rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--cf-sage);
}

.cf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cf-chip {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: #f4f2ef;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #555;
    border: 1px solid #e8e5e0;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cf-chip:hover {
    background: var(--cf-sage);
    color: #fff;
    border-color: var(--cf-sage);
}

.cf-panel__right {
    display: flex;
    align-items: stretch;
}

.cf-panel__img {
    width: 100%;
    min-height: 380px;
    border-radius: 18px;
    background: #1a1a2e;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.cf-panel__img--flooring  { background: linear-gradient(145deg, #2c2015 0%, #6b4e2a 100%); }
.cf-panel__img--countertops { background: linear-gradient(145deg, #1a1a1a 0%, #4a4040 100%); }
.cf-panel__img--cabinets  { background: linear-gradient(145deg, #1e1e2e 0%, #3a3050 100%); }
.cf-panel__img--bathroom  { background: linear-gradient(145deg, #0f1e24 0%, #2a4a50 100%); }

.cf-panel__img-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    z-index: 1;
}

.cf-calc-cta {
    margin-top: 1.75rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--cf-sage-tint) 0%, #e0ede0 100%);
    border: 1px solid rgba(88,129,87,0.2);
    border-left: 4px solid var(--cf-sage);
    border-radius: 18px;
}

.cf-calc-cta__label {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin: 0 0 0.75rem;
    font-weight: 500;
}

.cf-calc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    background: var(--cf-sage);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.cf-calc-cta__btn:hover {
    background: #3d6040;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .cf-package {
        padding: 1.75rem 1.5rem;
    }

    .cf-tab {
        padding: 0.75rem 1.1rem;
        font-size: 0.9rem;
    }

    .cf-panel__img {
        min-height: 240px;
    }

    .cf-model-selector {
        padding: 1.5rem 1.25rem;
        border-radius: 22px;
    }
}