
:root{
    --color-primary:#c58a3d;
    --color-accent:#a56b21;
    --color-dark:#171717;
    --color-text:#2d2d2d;
    --color-muted:#66615b;
    --color-white:#ffffff;
    --color-bg:#ffffff;
    --color-bg-soft:#f7f2ea;
    --color-border:#e8dfd3;

    --shadow-soft:0 14px 40px rgba(0,0,0,.08);
    --shadow-medium:0 18px 36px rgba(0,0,0,.12);
    --shadow-strong:0 24px 60px rgba(0,0,0,.16);

    --radius-sm:14px;
    --radius-md:20px;
    --radius-lg:28px;
    --radius-xl:30px;

    --space-1:8px;
    --space-2:12px;
    --space-3:16px;
    --space-4:20px;
    --space-5:24px;
    --space-6:32px;
    --space-7:40px;
    --space-8:48px;
    --space-9:64px;
    --space-10:80px;

    --container:1240px;
    --transition:.25s ease;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--color-text);
    background:var(--color-bg);
    line-height:1.6;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:min(calc(100% - 32px), var(--container));
    margin-inline:auto;
}

.site-main{display:block}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:300;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(232,223,211,.65);
}

.header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.site-branding img{
    max-height:58px;
    width:auto;
}

.site-title{
    font-size:1.35rem;
    font-weight:800;
    letter-spacing:-.02em;
    color:var(--color-dark);
}

.main-nav .menu,
.menu-fallback{
    display:flex;
    align-items:center;
    gap:26px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-nav a{
    font-weight:700;
    color:var(--color-dark);
    transition:var(--transition);
}

.main-nav a:hover{color:var(--color-primary)}

.nav-toggle{
    display:none;
    width:48px;
    height:48px;
    border:1px solid var(--color-border);
    background:#fff;
    border-radius:12px;
    padding:0;
    cursor:pointer;
}

.nav-toggle span{
    display:block;
    width:20px;
    height:2px;
    background:var(--color-dark);
    margin:5px auto;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-phone{
    padding:0 14px;
    min-height:42px;
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(223,214,203,.9);
    box-shadow:0 10px 22px rgba(0,0,0,.04);
    color:var(--color-dark);
    font-weight:800;
    white-space:nowrap;
}

/* Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 24px;
    border-radius:999px;
    border:1px solid transparent;
    font-weight:800;
    text-align:center;
    transition:var(--transition);
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
    background:linear-gradient(180deg, var(--color-primary), var(--color-accent));
    color:#fff;
    box-shadow:0 16px 30px rgba(165,107,33,.22);
}

.btn-secondary{
    background:rgba(255,255,255,.84);
    border:1px solid rgba(221,209,194,.9);
    color:var(--color-dark);
}

/* Shared typography */
.section{
    padding:72px 0;
}

.section-head{
    max-width:860px;
    margin-bottom:28px;
}

.section-head--center{
    text-align:center;
    margin-inline:auto;
}

.section-kicker,
.hero-kicker{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(255,255,255,.85);
    border:1px solid rgba(223,214,203,.9);
    color:var(--color-primary);
    font-size:.9rem;
    font-weight:800;
    margin-bottom:16px;
}

.section-head h2,
.entry-title{
    margin:0 0 12px;
    font-size:clamp(2rem, 3.7vw, 3rem);
    line-height:1.08;
    letter-spacing:-.04em;
    color:var(--color-dark);
}

.section-head p,
.entry-content,
.template-intro{
    color:var(--color-muted);
}

/* Full width hero */
.hero-fw{
    position:relative;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    padding:128px 0 92px;
}

.hero-fw-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,
            rgba(250,247,242,.96) 0%,
            rgba(250,247,242,.90) 28%,
            rgba(250,247,242,.35) 56%,
            rgba(250,247,242,.08) 76%,
            rgba(250,247,242,0) 100%);
}

.hero-fw-inner{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0, .95fr) 390px;
    align-items:start;
    gap:56px;
}

.hero-fw-content{
    max-width:660px;
    padding-top:16px;
}

.hero-fw-content h1{
    margin:0 0 18px;
    font-size:clamp(3rem, 5.6vw, 5.1rem);
    line-height:.98;
    letter-spacing:-.055em;
    color:var(--color-dark);
    max-width:9.2ch;
}

.hero-fw-content .hero-text{
    max-width:48ch;
    margin:0 0 22px;
    font-size:1.08rem;
    line-height:1.7;
    color:var(--color-muted);
}

.hero-usp-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:0 0 24px;
}

.hero-usp-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(210,193,170,.72);
    box-shadow:0 10px 22px rgba(0,0,0,.04);
    color:var(--color-dark);
    font-weight:700;
    font-size:.95rem;
}

.hero-usp-pill::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--color-primary);
    box-shadow:0 0 0 4px rgba(197,138,61,.12);
}

.hero-mini-review{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
    color:var(--color-muted);
}

.hero-mini-review__stars{
    letter-spacing:2px;
    color:var(--color-primary);
    font-size:1rem;
}

.hero-trust-inline{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    color:var(--color-muted);
    font-size:.95rem;
}

.hero-trust-inline strong{
    color:var(--color-dark);
}

.hero-fw-form{
    position:relative;
    margin-top:8px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(255,255,255,.96);
    backdrop-filter:blur(16px);
    padding:24px;
    border-radius:24px;
    box-shadow:var(--shadow-strong);
}

.hero-fw-form__badge{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(197,138,61,.12);
    color:var(--color-primary);
    font-size:.85rem;
    font-weight:800;
    margin-bottom:12px;
}

.hero-fw-form h2{
    margin:0 0 10px;
    font-size:2rem;
    line-height:1.02;
    letter-spacing:-.04em;
    color:var(--color-dark);
}

.hero-fw-form p{
    margin:0 0 16px;
    color:#69645f;
}

.hero-form-inner{
    padding:16px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(228,219,209,.9);
}

.hero-form-inner .wpcf7 form p{
    margin:0 0 12px;
}

.hero-form-inner .wpcf7 form p:last-child{
    margin-bottom:0;
}

.hero-form-inner input[type="text"],
.hero-form-inner input[type="email"],
.hero-form-inner input[type="tel"],
.hero-form-inner input[type="number"],
.hero-form-inner textarea,
.hero-form-inner select{
    width:100%;
    min-height:50px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(223,214,203,.95);
    background:#fff;
    font:inherit;
    color:var(--color-dark);
    transition:border-color .2s ease, box-shadow .2s ease;
}

.hero-form-inner textarea{
    min-height:120px;
    padding-top:14px;
}

.hero-form-inner input:focus,
.hero-form-inner textarea:focus,
.hero-form-inner select:focus{
    outline:none;
    border-color:rgba(197,138,61,.85);
    box-shadow:0 0 0 4px rgba(197,138,61,.10);
}

.hero-form-inner input[type="submit"],
.hero-form-inner .wpcf7-submit,
.hero-form-inner button{
    width:100%;
    min-height:54px;
    border:none;
    border-radius:999px;
    background:linear-gradient(180deg, var(--color-primary), var(--color-accent));
    color:#fff;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 16px 30px rgba(165,107,33,.22);
}

.form-placeholder{
    background:var(--color-bg-soft);
    border:1px dashed #d4bf9f;
    border-radius:14px;
    padding:16px;
}

/* Metrics below hero */
.hero-afterbar{
    background:#fff;
    border-top:1px solid rgba(232,223,211,.85);
    border-bottom:1px solid rgba(232,223,211,.85);
}

.hero-afterbar__inner{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    padding:18px 0;
}

.hero-afterbar__item{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.hero-afterbar__item strong{
    font-size:1.45rem;
    line-height:1;
    color:var(--color-dark);
}

.hero-afterbar__item span{
    color:#6f6a64;
}

/* Cards / grids */
.cards-grid{
    display:grid;
    gap:22px;
}

.cards-grid--3{
    grid-template-columns:repeat(3,1fr);
}

.info-card,
.step-card,
.post-card,
.content-single,
.sidebar-card{
    padding:26px;
    border:1px solid var(--color-border);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}

.info-card h3,
.step-card h3{
    margin:0 0 10px;
    color:var(--color-dark);
    font-size:1.25rem;
}

.info-card p,
.step-card p{
    margin:0;
    color:var(--color-muted);
}

.card-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:rgba(197,138,61,.12);
    color:var(--color-primary);
    font-weight:900;
    margin-bottom:18px;
}

.showcase-panel{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:center;
    padding:30px;
    border:1px solid var(--color-border);
    border-radius:28px;
    background:linear-gradient(135deg, #fbf8f3, #fff);
    box-shadow:var(--shadow-soft);
}

.showcase-panel__content h2{
    margin:0 0 12px;
    font-size:clamp(2rem, 3.6vw, 3rem);
    line-height:1.06;
    letter-spacing:-.04em;
    color:var(--color-dark);
}

.showcase-panel__content p{
    margin:0 0 18px;
    color:var(--color-muted);
    max-width:48ch;
}

.showcase-panel__visual{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.showcase-tile{
    min-height:260px;
    border-radius:22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.08)),
        linear-gradient(135deg, #b58b5f, #ead8c2 55%, #c79d73);
    box-shadow:var(--shadow-soft);
}

.showcase-tile.dark{
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.08)),
        linear-gradient(135deg, #7f7f7f, #d8d8d8 55%, #989898);
}

/* Template / content layouts */
.template-hero{
    padding:64px 0 34px;
    background:linear-gradient(180deg, #fcfaf7, var(--color-bg-soft));
    border-bottom:1px solid rgba(232,223,211,.8);
}

.template-title{
    margin:0 0 12px;
    font-size:clamp(2.1rem, 4vw, 3.8rem);
    line-height:1.05;
    letter-spacing:-.04em;
    color:var(--color-dark);
}

.two-col-layout,
.project-single-layout,
.region-intro-panel,
.blog-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:24px;
    align-items:start;
}

.sidebar-card{
    position:sticky;
    top:110px;
}

.sidebar-card h3{
    margin:0 0 10px;
    color:var(--color-dark);
}

.sidebar-card p{
    margin:0 0 16px;
    color:var(--color-muted);
}

.project-grid,
.article-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.project-card,
.article-card{
    border:1px solid var(--color-border);
    border-radius:24px;
    background:#fff;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.project-thumb img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
}

.project-card__content,
.article-card__content{
    padding:20px;
}

.project-card__content h2,
.article-card__content h2{
    margin:0 0 10px;
    color:var(--color-dark);
    font-size:1.3rem;
    line-height:1.15;
}

.project-link{
    display:inline-block;
    margin-top:14px;
    font-weight:800;
    color:var(--color-primary);
}

.project-badge{
    display:inline-flex;
    align-items:center;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(197,138,61,.12);
    color:var(--color-primary);
    font-size:.82rem;
    font-weight:800;
    margin-bottom:12px;
}

.project-featured-image{
    margin-bottom:18px;
    overflow:hidden;
    border-radius:20px;
}

.project-featured-image img{
    width:100%;
    height:auto;
}

.review-panel{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    padding:30px;
    border:1px solid var(--color-border);
    border-radius:28px;
    background:linear-gradient(180deg, #fff, #fcfaf7);
    box-shadow:var(--shadow-soft);
}

.review-panel h2{
    margin:0 0 12px;
    font-size:clamp(1.8rem, 3vw, 2.5rem);
    line-height:1.08;
    letter-spacing:-.04em;
    color:var(--color-dark);
}

.review-panel p{
    margin:0;
    color:var(--color-muted);
}

.review-score{
    padding:22px;
    border-radius:22px;
    background:#fff;
    border:1px solid var(--color-border);
    margin-bottom:16px;
}

.review-score strong{
    display:block;
    font-size:2rem;
    line-height:1;
    color:var(--color-dark);
}

.review-score span{
    display:block;
    margin-top:8px;
    color:var(--color-muted);
}

.review-points{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
}

.review-points li{
    position:relative;
    padding-left:28px;
    font-weight:700;
    color:var(--color-dark);
}

.review-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--color-primary);
    font-weight:900;
}

.cta-panel{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    align-items:center;
    padding:30px;
    border-radius:28px;
    background:linear-gradient(135deg, var(--color-bg-soft), #fff);
    border:1px solid var(--color-border);
    box-shadow:var(--shadow-soft);
}

.cta-panel h2{
    margin:0 0 10px;
    font-size:clamp(1.9rem, 3vw, 2.7rem);
    line-height:1.08;
    letter-spacing:-.04em;
    color:var(--color-dark);
}

.cta-panel p{
    margin:0;
    color:var(--color-muted);
}

.cta-panel__actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:14px;
}

.faq-list{
    display:grid;
    gap:16px;
}

.faq-item{
    border:1px solid var(--color-border);
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow-soft);
    overflow:hidden;
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:20px 24px;
    font-weight:800;
    color:var(--color-dark);
}

.faq-item summary::-webkit-details-marker{display:none}

.faq-content{
    padding:0 24px 22px;
    color:var(--color-muted);
}

/* Footer */
.site-footer{
    padding:36px 0 96px;
    border-top:1px solid rgba(232,223,211,.8);
    background:#fff;
}

.footer-top{
    display:grid;
    grid-template-columns:1.1fr 1.9fr;
    gap:28px;
    align-items:start;
    padding-bottom:28px;
}

.footer-brand strong{
    display:block;
    font-size:1.3rem;
    color:var(--color-dark);
    margin-bottom:10px;
}

.footer-brand p{
    margin:0;
    color:var(--color-muted);
}

.footer-columns{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.footer-col{
    padding:20px;
    border:1px solid var(--color-border);
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}

.footer-col h3{
    margin:0 0 10px;
    color:var(--color-dark);
    font-size:1.05rem;
}

.footer-col__text{
    color:var(--color-muted);
}

.footer-contact a{
    font-weight:800;
    color:var(--color-dark);
}

.footer-bottom{
    padding-top:18px;
    border-top:1px solid rgba(232,223,211,.8);
    color:var(--color-muted);
}

/* Mobile sticky CTA */
.mobile-sticky-cta{
    position:fixed;
    left:16px;
    right:16px;
    bottom:16px;
    z-index:300;
    min-height:54px;
    display:none;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:linear-gradient(180deg, var(--color-primary), var(--color-accent));
    color:#fff;
    font-weight:800;
    box-shadow:0 18px 36px rgba(0,0,0,.2);
}

/* Responsive */
@media (max-width: 1100px){
    .hero-fw{
        padding:96px 0 64px;
    }

    .hero-fw-inner,
    .showcase-panel,
    .review-panel,
    .cta-panel,
    .two-col-layout,
    .project-single-layout,
    .region-intro-panel,
    .blog-layout{
        grid-template-columns:1fr;
    }

    .hero-fw-content,
    .section-head{
        max-width:none;
    }

    .hero-afterbar__inner,
    .cards-grid--3,
    .project-grid,
    .article-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-top{
        grid-template-columns:1fr;
    }

    .footer-columns{
        grid-template-columns:repeat(2,1fr);
    }

    .sidebar-card{
        position:static;
    }

    .cta-panel__actions{
        justify-content:flex-start;
    }

    .showcase-panel__visual{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 940px){
    .nav-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        top:calc(100% + 8px);
        left:16px;
        right:16px;
        background:#fff;
        border:1px solid var(--color-border);
        border-radius:18px;
        box-shadow:var(--shadow-soft);
        padding:16px;
        opacity:0;
        visibility:hidden;
        transform:translateY(-8px);
        transition:var(--transition);
    }

    .main-nav.is-open{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .main-nav .menu,
    .menu-fallback{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .header-actions .header-cta{
        display:none;
    }
}

@media (max-width: 640px){
    .container{
        width:min(calc(100% - 24px), var(--container));
    }

    .site-header{
        backdrop-filter:none;
    }

    .header-inner{
        min-height:72px;
        gap:14px;
    }

    .header-phone{
        padding:0 10px;
        min-height:38px;
        font-size:.92rem;
    }

    .hero-fw{
        padding:72px 0 44px;
        background-position:66% center;
    }

    .hero-fw-overlay{
        background:linear-gradient(180deg,
            rgba(250,247,242,.94) 0%,
            rgba(250,247,242,.90) 38%,
            rgba(250,247,242,.76) 62%,
            rgba(250,247,242,.52) 100%);
    }

    .hero-fw-content h1{
        max-width:none;
        font-size:clamp(2.2rem, 10vw, 3.3rem);
    }

    .hero-fw .hero-actions{
        flex-direction:column;
    }

    .hero-fw .hero-actions .btn,
    .cta-panel__actions .btn{
        width:100%;
    }

    .hero-trust-inline{
        flex-direction:column;
        gap:8px;
    }

    .hero-fw-form{
        width:100%;
        padding:18px;
        border-radius:20px;
    }

    .hero-fw-form h2{
        font-size:1.55rem;
    }

    .hero-afterbar__inner,
    .cards-grid--3,
    .project-grid,
    .article-grid,
    .footer-columns,
    .showcase-panel__visual{
        grid-template-columns:1fr;
    }

    .section{
        padding:52px 0;
    }

    .info-card,
    .step-card,
    .post-card,
    .content-single,
    .sidebar-card,
    .showcase-panel,
    .review-panel,
    .cta-panel{
        padding:20px;
        border-radius:22px;
    }

    .showcase-tile{
        min-height:180px;
    }

    .mobile-sticky-cta{
        display:flex;
    }

    .site-footer{
        padding-bottom:94px;
    }
}


/* v17 extra foundation */
.pagination-space{
    margin-top:24px;
}
.project-meta-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:0 0 18px;
}
.project-meta-card{
    padding:16px 18px;
    border:1px solid var(--color-border);
    border-radius:18px;
    background:#fcfaf7;
}
.project-meta-card strong{
    display:block;
    color:var(--color-dark);
    margin-bottom:4px;
}
.project-meta-card span{
    color:var(--color-muted);
}
@media (max-width: 640px){
    .project-meta-grid{
        grid-template-columns:1fr;
    }
}


/* v19 premium design upgrade */
.hero-fw--premium{
    padding:136px 0 96px;
}
.hero-fw-overlay--premium{
    background:
        linear-gradient(90deg,
            rgba(249,246,241,.97) 0%,
            rgba(249,246,241,.92) 24%,
            rgba(249,246,241,.38) 54%,
            rgba(249,246,241,.08) 78%,
            rgba(249,246,241,0) 100%);
}
.hero-fw-inner--premium{
    grid-template-columns:minmax(0, 1fr) 400px;
    gap:64px;
}
.hero-fw-content--premium h1{
    text-wrap:balance;
}
.hero-fw-form--premium{
    box-shadow:0 28px 70px rgba(0,0,0,.18);
    border-radius:26px;
}
.hero-afterbar--premium .hero-afterbar__item{
    background:linear-gradient(180deg, #fff, #fcfaf7);
}
.intro-panel--premium{
    box-shadow:0 24px 50px rgba(0,0,0,.06);
}
.beforeafter-premium-grid{
    display:grid;
    grid-template-columns:1.35fr .85fr .85fr;
    gap:22px;
}
.beforeafter-premium-card{
    display:flex;
    flex-direction:column;
    border:1px solid var(--color-border);
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow-soft);
}
.beforeafter-premium-card--large{
    min-height:520px;
}
.beforeafter-premium-visual{
    min-height:260px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.10)),
        linear-gradient(135deg, #b58b5f, #ead8c2 55%, #c79d73);
}
.beforeafter-premium-visual.dark{
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.10)),
        linear-gradient(135deg, #8a8a8a, #d8d8d8 55%, #9f9f9f);
}
.beforeafter-premium-card--large .beforeafter-premium-visual{
    min-height:350px;
}
.beforeafter-premium-content{
    padding:22px;
}
.beforeafter-label{
    display:inline-flex;
    min-height:30px;
    align-items:center;
    padding:0 12px;
    border-radius:999px;
    background:rgba(197,138,61,.12);
    color:var(--color-primary);
    font-size:.82rem;
    font-weight:800;
    margin-bottom:12px;
}
.beforeafter-premium-content h3{
    margin:0 0 10px;
    font-size:1.5rem;
    line-height:1.08;
    letter-spacing:-.03em;
    color:var(--color-dark);
}
.beforeafter-premium-content p{
    margin:0;
    color:var(--color-muted);
}
.section-services--premium{
    background:linear-gradient(180deg, #fff, #fbf8f3);
}
.info-card--premium{
    transition:transform .2s ease, box-shadow .2s ease;
}
.info-card--premium:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 44px rgba(0,0,0,.08);
}
.info-card--premium-dark{
    background:#1f1f1f;
    border-color:#2c2c2c;
    box-shadow:none;
}
.info-card--premium-dark .card-icon{
    background:rgba(255,255,255,.08);
    color:#fff;
}
.info-card--premium-dark h3,
.info-card--premium-dark p{
    color:#fff;
}
.info-card--premium-dark p{
    opacity:.82;
}
.steps-grid--premium .step-card{
    background:linear-gradient(180deg, #fff, #fcfaf7);
}
.section-home-showcase--premium .showcase-panel--premium{
    box-shadow:0 28px 60px rgba(0,0,0,.08);
}
.section-reviews--premium{
    background:linear-gradient(180deg, #fbf8f3, #fff);
}
.review-panel--premium{
    box-shadow:0 24px 56px rgba(0,0,0,.08);
}
.section-faq--premium .faq-item{
    box-shadow:0 12px 26px rgba(0,0,0,.05);
}
.section-cta--premium .cta-panel--premium{
    box-shadow:0 28px 60px rgba(0,0,0,.08);
}
.site-footer--v18{
    background:linear-gradient(180deg, #fff, #fbf8f3);
}
.footer-col--cta{
    background:#1f1f1f;
    border-color:#2c2c2c;
}
.footer-col--cta h3,
.footer-col--cta p{
    color:#fff;
}
.footer-col--cta p{
    opacity:.84;
}
@media (max-width: 1100px){
    .beforeafter-premium-grid{
        grid-template-columns:1fr 1fr;
    }
    .beforeafter-premium-card--large{
        grid-column:1 / -1;
        min-height:auto;
    }
}
@media (max-width: 640px){
    .hero-fw--premium{
        padding:84px 0 48px;
    }
    .hero-fw-inner--premium{
        gap:28px;
    }
    .beforeafter-premium-grid{
        grid-template-columns:1fr;
    }
}


/* v20 cleanup premium */
.hero-fw--premium{
    padding:128px 0 88px;
}
.hero-fw-inner--premium{
    gap:56px;
}
.hero-fw-form--premium{
    box-shadow:0 22px 54px rgba(0,0,0,.16);
}
.hero-afterbar--premium .hero-afterbar__item{
    box-shadow:none;
    background:#fff;
}
.section-home-intro--clean,
.section-home-showcase--clean,
.section-services--clean,
.section-home-process--clean,
.section-reviews--clean,
.section-faq--clean{
    background:#fff;
}
.intro-panel--clean,
.showcase-panel--clean,
.review-panel--clean{
    box-shadow:0 16px 36px rgba(0,0,0,.06);
}
.beforeafter-premium-grid,
.beforeafter-premium-card,
.beforeafter-premium-visual,
.beforeafter-premium-content,
.beforeafter-label{
    all: unset;
}
.section-home-showcase--clean{
    padding-top:32px;
}
.showcase-panel--clean{
    background:#fff;
    border:1px solid var(--color-border);
}
.showcase-panel__visual--clean{
    gap:12px;
}
.showcase-tile{
    box-shadow:none;
}
.section-services--clean{
    background:#faf8f4;
}
.info-card--clean{
    transition:box-shadow .2s ease, transform .2s ease;
}
.info-card--clean:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(0,0,0,.07);
}
.section-home-benefits,
.section-home-benefits--premium{
    display:none;
}
.steps-grid--premium .step-card{
    background:#fff;
}
.review-panel--clean{
    background:#fff;
}
.review-photo-placeholder{
    min-height:240px;
}
.section-cta--premium .cta-panel--premium{
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.site-footer--v18{
    background:#fbf8f3;
}
.footer-col,
.footer-col--cta{
    box-shadow:none;
}
.footer-col--cta{
    background:#fff;
    border:1px solid var(--color-border);
}
.footer-col--cta h3,
.footer-col--cta p{
    color:var(--color-dark);
}
.footer-col--cta p{
    opacity:1;
}
@media (max-width: 1100px){
    .hero-fw--premium{
        padding:96px 0 64px;
    }
}
