@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ================================================
   RESET & ROOT
   ================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #283d33;
    --pri-dark: #24372e;
    --logo-bg: #24382d;
    --bg: #fafaf8;
    --white: #ffffff;
    --t-dark: #111111;
    --t-med: #5d5d5d;
    --t-light: #b0b0b0;
    --t-muted: #4f4f4f;
    --t-body: #454545;
    --beige: #ebdabd;
    --tan: #d8c7a6;
    --warm: #f5eedf;
    --border: #e7e7e7;
    --star: #cfa068;
    --foot-t: #f6f6f6;
    --font: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--t-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
main {
    min-height: 80vh;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
}

/* ================================================
   NAVIGATION
   ================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}
/* glassmorphism – home hero */

.page-template-reimagine-home nav.glass {
    background: rgba(250, 250, 248, 0.1);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
}
.page-template-reimagine-home nav.glass .nav-link {
    color: #fff;
}
nav.glass,
.sticky nav.glass {
    background: #ffffff;
    backdrop-filter: blur(4px);
}
nav.glass .nav-link,
.sticky nav.glass .nav-link {
    color: #111;
}

/* solid white – about / services */
nav.solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
}
nav.solid .nav-link {
    color: var(--primary);
}
nav.solid .btn-nav-outline {
    border-color: var(--primary);
    color: var(--primary);
}

/* logo */
.nav-logo {
    height: 88px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-logo img {
    height: 100%;
    object-fit: contain;
    width: fit-content;
}

/* menu */
.nav-menu {
    display: flex;
    gap: 4px;
}
.nav-link {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 2px;
    transition: opacity 0.2s;
    text-transform: uppercase;
}
.nav-link:hover {
    opacity: 0.7;
}

/* cta buttons in nav */
.nav-cta {
    display: flex;
    gap: 8px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 4px;
    background: #2d3f35;
    cursor: pointer;
    position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #fff;
    content: '';
    transition: transform 0.2s ease;
}
.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
}
.nav-toggle::before {
    top: 16px;
}
.nav-toggle::after {
    bottom: 16px;
}

.page-template-reimagine-home .btn-nav-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 2px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-nav-outline,
.sticky .btn-nav-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 2px;
    border: 1px solid #283d33;

    background: transparent;
    color: #283d33;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
nav.solid .btn-nav-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-nav-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 2px;
    border: none;
    background: var(--primary);
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-nav-primary:hover {
    background: var(--pri-dark);
}

/* ================================================
   SHARED BUTTONS
   ================================================ */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 2px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 2px;
    border: none;
    background: var(--primary);
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-primary:hover {
    background: var(--pri-dark);
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    padding: 12px 24px;
    height: 48px;
    border-radius: 2px;
    border: none;
    background: var(--pri-dark);
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
		text-transform: uppercase;
}
.btn-sm:hover {
    background: var(--primary);
}

/* ================================================
   SECTION TITLE PATTERN
   ================================================ */
.sec-head {
    display: flex;
    justify-content: space-between;
align-items: center;
    width: 100%;
}
.sec-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sec-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #9cb9a8;
    text-transform: uppercase;
}
.sec-title h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.21;
    color: var(--t-dark);
}
.sec-desc {
    max-width: 402px;
}
.sec-desc p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
}
h1 {
    font-size: 64px;
    font-weight: 600;

    letter-spacing: -1px;
    line-height: 1.21875;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    /* height: 860px; */
    width: 100%;
    aspect-ratio: 1.85;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    left: 20%;
    bottom: 54px;
    max-width: 665px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.21875;
}
.hero-content > p {
    font-size: 16px;
    color: var(--bg);
    line-height: 1.5;
    max-width: 565px;
}
.hero-btns {
    display: flex;
    gap: 8px;
    margin-top: 80px;
}

.btn-hero-cream {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 216px;
    height: 48px;
    border-radius: 2px;
    background: var(--bg);
    border: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-hero-cream:hover {
    background: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 216px;
    height: 48px;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-hero-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* ================================================
   EXPERT REMODELLING  (cream bg)
   ================================================ */
.expert {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-end;
}
.cards-grid {
    display: flex;
    gap: 24px;
    width: 100%;
}

.card {
    flex: 1;
    background: #fff;
    border-radius: 2px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}
.expert .btn-outline {
    width: fit-content;
}
.card-num {
    font-size: 38px;
    font-weight: 500;
    color: var(--beige);
    line-height: 1.21;
}
.card-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.33;
}
.card-text p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
    margin-top: 8px;
}
.card-img {
    /* flex: 1; */
    /* min-height: 220px; */
    border-radius: 2px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   DIFFERENCE SECTION  (white bg – home & about)
   ================================================ */
.w-white {
    background: #fff;
}

.diff {
    padding: 80px;

    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    justify-content: flex-end;
}
.diff-img {
    flex: 1;
    height: 620px;
    border-radius: 2px;
    overflow: hidden;
}
.diff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diff-content {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 24px;
}
.diff-content .sec-title h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.33;
    margin-top: 8px;
}
.diff-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.diff-item {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.21;
    color: var(--t-light);
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px 0;
}
.diff-item.active {
    color: var(--t-dark);
}

.diff-explain {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.diff-explain p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
}

/* ================================================
   GALLERY  (white bg)
   ================================================ */
.gallery {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.gallery-card-wrap:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
}

.gallery-card-wrap:nth-child(1) img {
    height: 540px;
}

.gallery-card-wrap:nth-child(2) {
    grid-area: 1 / 3 / 2 / 4;
    height: 540px;
}
.gallery-card-wrap:nth-child(2) img {
    height: 540px;
}
.gallery-card-wrap:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
}
.gallery-card-wrap:nth-child(3) img {
    height: 400px;
}

.gallery-card-wrap:nth-child(4) {
    height: 400px;
    grid-area: 2 / 2 / 3 / 4;
}
.gallery-card-wrap:nth-child(4) img {
    height: 400px;
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    min-height: 240px;
    background: #f6f6f6;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-card:hover img {
    transform: scale(1.03);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: #fafaf81a;

    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    gap: 12px;
    height: fit-content;
    backdrop-filter: blur(24px);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-title {
    font-size: 20px;
    line-height: 1.3;
}
.gallery-count {
    font-size: 20px;
    line-height: 1.3;
    opacity: 0.9;
}
.gallery-hidden {
    display: none;
}

.call-fab {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 1200;
}
.call-fab a {
    display: inline-flex;
    width: 140px;
    height: 140px;
    border-radius: 50%;
background: rgba(250, 250, 248, 0.1);
backdrop-filter: blur(24px);

    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.call-fab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.call-fab__img {
    display: block;
    width: 100%;
    height: 100%;
}
.call-fab__img--mob {
    display: none;
}
.call-fab__img--desk {
    display: block;
}
.call-fab__icon {
    color: #fff;
    font-size: 26px;
}
.call-fab__bubble {
    position: absolute;
    left: 50%;
    top: -52px;
    transform: translateX(-50%);
    background: #fff;
    color: #111;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.call-fab__bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
}



@media (max-width: 776px) {
	.call-fab__bubble.show {
    opacity: 1;
}
    .call-fab__img--mob {
        display: block;
    }
    .call-fab__img--desk {
        display: none;
    }
}
/* ================================================
   TESTIMONIALS  (cream bg)
   ================================================ */
.testimonials {
    padding: 80px 0;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.testimonials .mob {
    display: none;
}
.testimonials .sec-head {
    padding: 0 80px;
}
.testimonials-cards {
    display: flex;
    gap: 24px;
    padding: 0 80px;
}

.t-card {
    flex: 1;
    background: #fff;
    border-radius: 2px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 288px;
}
.t-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.t-card-info h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.4;
}
.t-card-info p {
    font-size: 16px;
    color: var(--t-muted);
    line-height: 1.5;
}

.quote-icon {
    font-size: 30px;
    color: #f1f7f4;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
}
.star {
    color: var(--star);
    font-size: 20px;
    line-height: 24px;
}
.t-card-quote {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
    flex: 1;
}
.t-card-date {
    font-size: 14px;
    color: var(--t-light);
    text-align: right;
    line-height: 1.57;
    margin-top: auto;
}

/* summary card */
.summary-card {
    height: auto;
}
.summary-title h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.33;
}
.summary-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.summary-rating .num {
    font-size: 24px;
    font-weight: 500;
    color: var(--t-med);
}
.summary-detail {
    font-size: 16px;
    color: var(--t-med);
    text-align: center;
}
.summary-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bar-label {
    width: 12px;
    font-size: 16px;
    color: var(--t-med);
    text-align: center;
}
.bar-track {
    flex: 1;
    height: 8px;
    border-radius: 2px;
    background: var(--warm);
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--star);
}
.bar-pct {
    width: 46px;
    font-size: 16px;
    color: var(--t-med);
    text-align: right;
}

/* ================================================
   HOW IT WORKS  (white bg)
   ================================================ */
.howit {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.howit-body {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}
.howit-stages {
    width: 620px;
    height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stage {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    flex: 1;
}
.stage-num {
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stage-num span {
    font-size: 38px;
    font-weight: 500;
    color: var(--beige);
    line-height: 1.21;
}
.stage-text h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.33;
}
.stage-text p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
    margin-top: 4px;
}
.howit-img {
    width: 764px;
    height: 620px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}
.howit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   CONTACT  (cream bg)
   ================================================ */
.contact {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-end;
}
.contact .sec-head {
    width: 100%;
}
.contact-body {
    display: flex;
    gap: 48px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}
.contact-img {
    flex: 1;
    height: 620px;
    border-radius: 2px;
    overflow: hidden;
}
.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card {
    max-width: 620px;
    background: #fff;
    border-radius: 2px;
    padding: 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
		height: auto;
}
.contact-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.33;
}
.contact-card .c-desc {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
    margin-top: 8px;
}

.form-row {
    display: flex;
    gap: 24px;
}
.form-row input {
    flex: 1;
}
.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--primary);
    padding: 8px 0;
    font-family: inherit;
    font-size: 16px;
    color: var(--t-dark);
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
}
.form-input::placeholder {
    color: var(--t-light);
}
.form-input:focus {
    border-color: var(--star);
}

.form-select-wrap {
    border-bottom: 1px solid var(--primary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: var(--t-light);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.form-select option {
    color: var(--t-dark);
}
.select-arrow {
    width: 24px;
    height: 24px;
    pointer-events: none;
    color: var(--primary);
}

.form-gap {
    margin-top: 24px;
}
.btn-full {
    width: 100%;
}
.wpcf7-spinner{
	display: none;
}
/* ================================================
   FOOTER
   ================================================ */
footer {
    background: var(--pri-dark);
    padding: 8px 80px 8px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}
.footer-logo {
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-logo img {
    width: 200px;
    height: 200px;

    object-fit: cover;
}
.footer-brand p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    max-width: 400px;
}
.footer-cols {
    display: flex;
    gap: 48px;
    width: 100%;
    justify-content: space-between;
    padding-top: 40px;
}
.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--foot-t);
    line-height: 1.4;
    margin-bottom: 24px;
}
.footer-col a {
    display: block;
    font-size: 16px;
    color: var(--foot-t);
    line-height: 1.5;
    margin-bottom: 10px;
    transition: opacity 0.2s;
}
.footer-col a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 241, 229, 0.2);
}
.footer-bottom p {
    font-size: 16px;
    color: #fff;
    line-height: 1.75;
}

/* ================================================
   ABOUT – OUR STORY
   ================================================ */
.story {
    padding: 0 80px 80px;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.story.top-pad {
    padding-top: calc(88px + 80px);
}
.story h1 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.21875;
    color: var(--t-dark);
}

.story-grid {
    display: flex;
    gap: 24px;
}
.story-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
}
.story-img {
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}
.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}
.story-icon {
    font-size: 36px;
    color: var(--tan);
}
.story-text p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
}

.story-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.story-stat h2 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.21875;
    color: var(--t-dark);
    text-align: center;
}
.story-stat p {
    font-size: 16px;
    color: var(--t-med);
    text-align: center;
}

.story-right {
    width: 723px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
		margin-left: -80px;
}
.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   ABOUT – A PASSION FOR PERFECTION
   ================================================ */
.passion {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}
.passion-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.passion-content h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.21;
    color: var(--t-dark);
}
.passion-content p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
}
.circles {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}
.circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 46px;
    text-align: center;
}
.circle h3 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.21875;
    color: var(--t-dark);
}
.circle p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
}

/* ================================================
   ABOUT – READY TO START CTA
   ================================================ */
.about-cta {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-end;
}
.cta-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}
.cta-card a {
    width: fit-content;
}
.cta-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #9cb9a8;
    letter-spacing: 0.14px;
    line-height: 1.57;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}
.cta-card h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.21;
    color: var(--t-dark);
}
.cta-card p {
    font-size: 16px;
    color: var(--t-dark);
    line-height: 1.5;
}
.cta-img {
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
    min-height: 540px;
}
.cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-img--tall {
    min-height: 620px;
}

/* ================================================
   SERVICES – TOP HEADING
   ================================================ */
.services-top {
    padding: calc(88px + 80px) 80px 80px;

    margin: 0 auto;
}
.services-top h1 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.21875;
    color: var(--t-dark);
}

/* ================================================
   SERVICE BLOCK
   ================================================ */
.svc-block {
    padding: 0 80px 80px;

    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.svc-block.pad-top {
    padding-top: 80px;
}

.svc-tall-img {
    width: 434px;
    min-height: 556px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}
.svc-tall-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.svc-row {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.svc-row--rev {
    flex-direction: row-reverse;
}

.svc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;

}
.svc-text h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.21;
    color: var(--t-dark);
}
.svc-text p {
    font-size: 16px;
    color: var(--t-med);
    line-height: 1.5;
}
.svc-sm-img {
    border-radius: 2px;
    overflow: hidden;
		flex: 1;
    flex-shrink: 0;
}
.svc-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
		min-height: 266px;
}

.svc-bullets {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
		align-items:center;

}
.svc-bullets-box{
	width: fit-content;

}
.svc-bullets li {
    font-size: 16px;
    color: var(--t-body);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}
.svc-bullets li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* service section with white bg wrapper */
.svc-white {
    background: #fff;
}
.svc-white .svc-block {
    padding: 80px;
}

/* ================================================
   FAQ
   ================================================ */
.faq {
    padding: 80px;

    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.faq-body {
    display: flex;
    gap: 48px;
    align-items: stretch;
}
.faq-list {
    width: 720px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
}

.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
}
.faq-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.faq-num {
    width: 52px;
    text-align: center;
    flex-shrink: 0;
}
.faq-num span {
    font-size: 38px;
    font-weight: 500;
    color: var(--beige);
    line-height: 1.21;
}
.faq-q {
    font-size: 20px;
    font-weight: 500;
    color: var(--t-dark);
    line-height: 1.4;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.faq-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
    border-color: var(--primary);
}
.faq-item.open .faq-toggle svg line:first-child{
display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s;
    padding-left: 68px;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 12px;
}
.faq-answer p {
    font-size: 16px;
    color: var(--t-body);
    line-height: 1.5;
}

.faq-img {
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
    max-height: 620px;
		height: 100%;
}
.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-desc {
    display: none;
}

/* ================================================
   MOBILE MENU OVERLAY
   ================================================ */
.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: fit-content;
    padding-bottom: 16px;
}
.mob-menu.open {
    display: flex;
}
.mob-menu-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}
.mob-menu-close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}
.mob-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.mob-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 110px;
}

.mob-menu-links li {
    border-bottom: 1px solid #e7e7e7;
    width: 100%;
    margin: 0 16px;
}
.mob-menu-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 0;
    line-height: 1.4;
    display: block;
    text-align: center;
}
.mob-menu-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
}
.mob-menu-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 2px;
    border: 1.5px solid var(--primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mob-menu-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 2px;
    border: none;
    background: var(--primary);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   RESPONSIVE – MOBILE  (≤ 776 px)
   ================================================ */
@media (max-width: 776px) {
    h1 {
        font-size: 44px;
    }
    /* ── NAV ── */
    nav {
        padding: 0 16px;
    }
    .menu-menu-container {
        width: 100%;
    }
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
    .btn-nav-outline {
        display: none !important;
    }
    .btn-nav-primary {
        display: none;
    }
    .call-fab a {
        width: 80px;
        height: 80px;
    }

    /* ── HERO ── */
    .hero {
        height: 844px;
    }
    .hero-content {
        left: 16px;
        right: 16px;
        bottom: 0;
        max-width: 100%;
        backdrop-filter: blur(24px);
        background: #fafaf81a;
        margin-left: -16px;
        margin-right: -16px;
        padding: 32px 16px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 8px;
        margin-top: 32px;
    }
    .hero-bg img {
        object-position: 75%;
    }
    .btn-hero-cream,
    .btn-hero-outline {
        width: 100%;
    }

    /* ── SHARED ── */
    .sec-head {
        flex-direction: column;
        gap: 16px;
    }
    .sec-title h2 {
        font-size: 24px;
    }
    .sec-desc {
        max-width: 100%;
    }

    /* ── EXPERT / CARDS ── */
    .expert {
        padding: 32px 16px;
    }
    .cards-grid {
        flex-direction: column;
        gap: 16px;
    }
    .phone-float {
        display: none;
    }

    /* ── DIFF ── */
    .diff {
        display: flex;
        flex-direction: column-reverse;
        padding: 32px 16px;
        gap: 24px;
    }

    .diff-list {
        margin-top: 60px;
    }
    .diff-img {
        max-width: 100%;
        width: 100%;
        height: 400px;
        flex: none;
    }
    .diff-content {
        width: 100%;
        height: auto;
    }
    .diff-content .sec-title h3 {
        font-size: 20px;
    }
    .diff-item {
        font-size: 24px;
    }

    /* ── GALLERY ── */
    .gallery {
        display: none;
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
        padding: 32px 16px;
    }
    .testimonials .desc {
        display: none;
    }
    .testimonials .mob {
        display: block;
        width: 100%;
    }
    .testimonials .sec-head {
        padding: 0;
    }
    .testimonials-cards {
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }
    .summary-card {
        order: -1;
    }

    /* ── HOW IT WORKS ── */
    .howit {
        padding: 32px 16px;
    }
    .stage-num span {
        font-size: 24px;
    }
    .howit-body {
        flex-direction: column;
        gap: 24px;
        overflow: visible;
    }
    .howit-stages {
        width: 100%;
        height: auto;
    }
    .howit-img {
        width: 100%;
        height: 400px;
    }

    /* ── CONTACT ── */
    .contact {
        padding: 32px 16px;
    }
    .contact-body {
        flex-direction: column-reverse;
        gap: 24px;
    }
    .contact-img {
        flex: none;
        height: 400px;
    }
    .contact-card {
        width: 100%;
        height: auto;
        flex-shrink: 1;
				padding: 16px;
    }
    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    /* ── FOOTER ── */
    footer {
        padding: 28px 16px 8px;
        min-height: auto;
    }
    .footer-main {
        flex-direction: column;
        gap: 24px;
    }
    .footer-brand {
        flex-direction: column;
        gap: 0;
        align-items: start;
    }

    .footer-logo {
        width: 140px;
        height: 140px;
    }
    .footer-logo img {
        width: 140px;
        height: 140px;
    }
    .footer-cols {
        flex-wrap: wrap;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 4px;
    }

    /* ── ABOUT – STORY ── */
    .story {
        padding: 0 16px 32px;
    }
    .story.top-pad {
        padding-top: calc(88px + 32px);
    }
    .story h1 {
        font-size: 44px;
    }
    .story-grid {
        flex-direction: column;
        height: auto;
        gap: 24px;
    }

    .story-row {
        display: flex;
        flex-direction: column-reverse;
    }
    .story-row.desc {
        flex-direction: column;
    }
    .story-img {
        width: 100%;
    }
    .story-right {
        width: 100%;
        height: 100%;
        margin-right: -16px;
        overflow: visible;
margin-left: auto;
transform: none!important;
    }

    /* ── ABOUT – PASSION ── */
    .passion {
        flex-direction: column;
        padding: 32px 16px;
        gap: 24px;
    }
    .passion-content h2 {
        font-size: 24px;
    }
    .circles {
        gap: 4px;
        width: 100%;
    }
    .circle {
        flex: 1;
        width: auto;
        aspect-ratio: 1;
        padding: 20px;
				width: auto;
				height: auto;
    }
    .circle h3 {
        font-size: 44px;
    }
    .circle p {
        font-size: 14px;
    }

    /* ── ABOUT – CTA ── */
    .about-cta {
        flex-direction: column;
        padding: 32px 16px;
        gap: 16px;
        align-items: stretch;
    }
    .cta-card {
        min-height: auto;
    }
    .cta-card h2 {
        font-size: 24px;
    }
    .cta-img,
    .cta-img--tall {
        min-height: auto;
    }
    .cta-img img {
        aspect-ratio: 1;
        object-fit: cover;
    }
    .cta-img--tall img {
        aspect-ratio: 1.6;
        object-fit: cover;
    }

    /* ── SERVICES – TOP ── */
    .services-top {
        padding: calc(88px + 32px) 16px 32px;
    }
    .services-top h1 {
        font-size: 44px;
    }

    /* ── SERVICES – BLOCKS ── */
    .svc-block {
        flex-direction: column;
        padding: 0 16px 32px;
        gap: 24px;
    }
    .svc-block.pad-top {
        padding-top: 32px;
    }
    .svc-tall-img {
        width: 100%;
        min-height: 0;
        height: 458px;
    }
    .svc-row {
        flex-direction: column;
        gap: 24px;
    }
    .svc-sm-img {
        width: 100% !important;
        height: 234px;
    }
    .svc-row:last-child .svc-sm-img {
        height: 186px;
    }
    .svc-text {
        padding: 0;
    }
    .svc-text h2 {
        font-size: 24px;
    }
    .svc-bullets {
        padding: 0;
        justify-content: flex-start;
				align-items:flex-start;
    }

    /* kitchen – content above tall-img */
    .svc-block.pad-top .svc-tall-img {
        order: 1;
    }
    .svc-block.pad-top .svc-content {
        order: 0;
    }

    /* tile – white wrapper */
    .svc-white .svc-block {
        padding: 32px 16px;
    }

    /* ── FAQ ── */
    .faq {
        padding: 32px 16px;
    }
    .faq-desc {
        display: block;
        font-size: 16px;
        color: var(--t-med);
        line-height: 1.5;
        margin-top: 8px;
    }
    .faq-body {
        flex-direction: column;
        gap: 24px;
    }
    .faq-list {
        width: 100%;
    }
    .faq-img {
        min-height: auto;
    }
    .faq-answer {
        margin-left: 0;
				padding-left: 44px;
    }
    .top-pad {
        padding-top: calc(88px + 32px);
    }

    .faq-num {
        width: auto;
    }
    .faq-num span {
        font-size: 24px;
    }
    .column-revers {
        flex-direction: column-reverse;
    }
}

.custom-contact-form {
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.form-field {
    position: relative;
    flex: 1;
}

.form-field.full-width {
    width: 100%;
    margin-bottom: 60px;
}

.field-icon {
    position: absolute;
    left: 0px;
    top: 61%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
}

.custom-contact-form input[type='text'],
.custom-contact-form input[type='tel'],
.custom-contact-form input[type='email'],
.custom-contact-form select {
    width: 100%;
    padding: 12px 12px 12px 30px;
    border: none;
    border-bottom: 1px solid #283d33;
    background: transparent;
    font-size: 16px;
    color: #b0b0b0;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}

.custom-contact-form input::placeholder,
.custom-contact-form select option:first-child {
    color: #b0b0b0;
}

.custom-contact-form input:focus,
.custom-contact-form select:focus {
    border-bottom-color: #283d33;
}

.custom-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23283D33' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    margin-top: 100px;
    padding: 12px 0;
    cursor: pointer;
}
.custom-contact-form select option {
    font-size: 16px;
    backgcolorround: #b0b0b0;
}

.submit-btn,
.glsr-button {
    background: #283d33;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    float: right;
    transition: background 0.3s;
    border-radius: 0;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #1a2820;
}

/* Валідація */
.wpcf7-not-valid {
    border-bottom-color: #ef4444 !important;
}

.wpcf7-validation-errors {
    color: #ef4444;
    margin-top: 10px;
}

.contact-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 80px;
}

.contact-list-item {
    background-color: white;
    padding: 32px 16px;
}
.contact-link,
.contact-caption {
    color: #111111;
    font-weight: 500;
    font-size: 24px;
    margin-top: 4px;
}

.m_l {
    transform: translateX(-80px);
}
.m_r {
    transform: translateX(80px);
}
/* Responsive */
@media (max-width: 768px) {
    .contact-list {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .submit-btn {
        width: 100%;
        float: none;
    }
    .custom-contact-form select {
        margin-top: 40px;
    }
    .m_l {
        transform: translateX(-16px);
    }
    .m_r {
        transform: translateX(16px);
    }

}

/* ====== */
.page-template-default {
}
.page-template-default h1 {
    margin-bottom: 48px;
}
.container {
    padding: 80px;

    margin: 0 auto;
}

.testimonials-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonials-left {
    padding: 24px;
    background: #283d33;
}
.testimonials-form,
.testimonials-summary,
.testimonials-reviews {
    margin-bottom: 24px;
    background: white;
    padding: 24px;
		color: rgba(93, 93, 93, 1);

}
.glsr-star,
form.glsr-form .glsr-star-rating--stars {
  
    filter: contrast(0.55);
}
.glsr-summary .glsr-bar-background-percent {
    background-color: #cfa068 !important;
}
.glsr-default form.glsr-form .glsr-field-toggle input[type='checkbox']:checked + .glsr-toggle-track:before {
    background-color: #283e33 !important;
}

@media (max-width: 768px) {
    .testimonials-box {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 16px;
    }

    .testimonials-left,
    .testimonials-form,
    .testimonials-summary,
    .testimonials-reviews {
        padding: 16px;
    }
    .contact-link,
    .contact-caption {
        font-size: 20px;
    }

    .footer-col:first-child {
        width: 100%;
    }
.default-page__box{
	padding-top: 70px;
}
}

.default-page{
	background-image:url('./../images/desktop.png');
	background-repeat:no-repeat;
	background-size:cover;
}
