@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');
:root {
    --clr-primary: #B5522D;
    --clr-dark: #1E1E1E;
    --clr-light: #F7F5F2;
    --clr-muted: #5C5C5C;
    --clr-border: #E0DDD9;
    --ff-display: 'Baskervville', Georgia, serif;
    --ff-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
    /* Bootstrap overrides via CSS variables */
    --bs-primary: #B5522D;
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-body-color: #5C5C5C;
    --bs-body-bg: #F7F5F2;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 15px;
    line-height: 1.75;
    background-color: var(--clr-light);
    color: var(--clr-muted);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: color var(--transition);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    font-family: var(--ff-display);
    font-weight: 400;
    color: var(--clr-dark);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

h1, .h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}

h2, .h2 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 25px;
    font-weight: 600;
}

h3, .h3 {
    font-size: 60px;
    line-height: 75.6px;
    font-weight: 600;
}

h4, .h4 {
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

h5, .h5 {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--clr-dark);
}

h6, .h6 {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-muted);
}

p {
    font-family: var(--ff-body);
    color: var(--clr-muted);
    line-height: 1.8;
}

.italic-accent, .reveal h2 em {
    font-style: italic;
    color: var(--clr-primary);
    font-weight: 500;
}

.btn-ember, .btn-ember-outline, .btn-ember-light, .btn-ember-light-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.95px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
    line-height: 19.5px;
}

/* Filled primary */
.btn-ember {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ember:hover {
    background-color: #9b4324;
    border-color: #9b4324;
    color: #fff;
}

/* Outline dark */
.btn-ember-outline {
    background-color: transparent;
    border-color: var(--clr-dark);
    color: var(--clr-dark);
}

.btn-ember-outline:hover {
    background-color: var(--clr-dark);
    color: #fff;
}

/* Filled light */
.btn-ember-light {
    background-color: var(--clr-light);
    border-color: var(--clr-light);
    color: var(--clr-dark);
}

.btn-ember-light:hover {
    background-color: #fff;
    color: var(--clr-dark);
}

/* Outline light (for dark backgrounds) */
.btn-ember-light-outline {
    background-color: transparent;
    border-color: var(--clr-dark);
    color: var(--clr-dark);
}

.btn-ember-light-outline:hover {
    background-color: var(--clr-light);
    color: var(--clr-dark);
}

/* ============================================================
   SECTION LABEL  (overline text above headings)
   ============================================================ */
.section-label {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3.25px;
    text-transform: uppercase;
    color: #B5522D;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    line-height: 19.5px;
}

.section-label::before {
    /* content: "I \2014"; */
    color: var(--clr-primary);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ember-navbar {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 50px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    position: absolute;
}

.ember-navbar.scrolled {
    background: rgba(247, 245, 242);
    padding: 54px0;
    position: fixed;
    box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
}

.ember-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    margin-top: 40px;
    z-index: 2;
}

.ember-logo .logo-mark {
    width: 36px;
    height: 36px;
    background: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.ember-logo .logo-mark span {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    color: #fff;
    font-style: italic;
}

.ember-logo .logo-name {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    transition: color var(--transition);
}

.ember-navbar.scrolled .logo-name {
    color: var(--clr-dark);
}

.ember-nav-link {
    font-family: var(--ff-body);
    font-size: 20px;
    font-weight: 400;
    color: white;
    transition: color var(--transition) !important;
}

.ember-navbar.scrolled .ember-nav-link {
    /* color: var(--clr-dark) !important; */
}

.ember-nav-link:hover {
    color: var(--clr-primary) !important;
}

.nav-contact-btn {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
    padding: 9px 22px;
    transition: all var(--transition);
    border-radius: 2px;
}

.ember-navbar.scrolled .nav-contact-btn {
    color: var(--clr-dark);
    border-color: var(--clr-dark);
}

.nav-contact-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff !important;
}

#hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    padding: 250px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../img/home-banner.gif") center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 10s ease forwards;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(190deg,rgba(0,0,0,.3) 8.27%,rgba(0,0,0,.75) 85.03%);
    /* adjust as needed */
    width: 100%;
    height: 100%;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 30, 30, .25) 0%, rgba(30, 30, 30, .1) 40%, rgba(30, 30, 30, .6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 14px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 117.3px;
    line-height: 125px;
}

.hero-content p {
    color: white !important;
    font-size: 18px !important;
    max-width: 100%;
    margin: 0 auto 34px;
    line-height: 29.3px !important;
}

/* Scroll line */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .25);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-primary);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

#about {
    padding-top: 140px !important;
    padding-bottom: 100px !important;
    background: var(--clr-light);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 128px;
    height: 128px;
    background: transparent;
    z-index: 0;
    border: 2px solid #E8DED2;
}

.stat-num {
    font-size: 36px;
    color: #B5522D;
    line-height: 1;
    font-weight: 400;
}

.stat-num sup {
    font-size: 36px;
    color: var(--clr-primary);
    position: relative;
    top: 0;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--clr-muted);
}

.about-divider {
    width: 40px;
    height: 2px;
    margin-bottom: 25px;
    margin-top: 30px;
}

#partners {
    background: var(--clr-primary);
    padding-top: 100px;
    padding-bottom: 100px;
}

#partners h2 {
    color: #fff;
}

#partners p {
    color: white;
    font-size: 18px;
    line-height: 29.3px;
    margin-bottom: 50px;
}

.partner-logo {
    font-family: var(--ff-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    font-style: italic;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.partner-logo:hover {
    color: #fff;
}

#projects {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: #F3EEE8;
}

.project-card {
    overflow: hidden;
    margin-bottom: 100px;
}

.project-img-wrap {
    overflow: hidden;
}

.project-img-wrap img {
    width: 100%;
    object-fit: cover;
    transition: transform .7s ease;
    height: 430px;
}

.project-card:hover .project-img-wrap img {
    transform: scale(1.05);
}

.project-info {
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-tag {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-primary);
    letter-spacing: 2.4px;
    margin-bottom: 20px !important;
}

.project-location {
    font-size: 18px;
    color: #5C5C5C;
}

.project-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.project-link:hover {
    gap: 14px;
    color: var(--clr-primary);
}

#process {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: #F7F5F2;
}

.process-divider {
    border-top: 2px solid #b5522d7d;
}

.step-num {
    font-family: var(--ff-display);
    font-size: 70px;
    color: #b5522d73;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--clr-dark);
    line-height: 32px;
    font-family: var(--ff-display);
    margin-bottom: 8px;
}

.process-col {
    padding-right: 15px;
}

.process-col:last-child {
    border-right: none;
}

#services {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: #F3EEE8;
}

.service-row {
    transition: padding-left var(--transition);
    cursor: pointer;
    background-color: #F7F5F2;
    border-radius: 4px;
    margin-bottom: 20px;
    padding-right: 30px;
}

.service-row:first-child {
}

.service-row:hover {
    padding-left: 12px;
}

.service-num {
    min-width: 120px;
    transition: color var(--transition);
    font-family: var(--ff-display);
    font-size: 90px;
    color: #b5522d73;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: inherit;
}

.service-row:hover .service-num {
    color: var(--clr-primary);
}

.service-name {
    font-family: var(--ff-display);
    font-size: 30px;
    color: var(--clr-dark);
    font-weight: 600;
}

.service-desc {
    font-size: 15.1px;
    color: var(--clr-muted);
    width: 75%;
    line-height: 27.2px;
}

.service-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.service-row:hover .service-arrow {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.service-row:hover .service-arrow svg {
    transform: rotate(-45deg);
    stroke: #fff;
}

.service-arrow svg {
    transition: all var(--transition);
    color: #b5522d73;
    height: 25px !important;
    width: 25px !important;
}

#gallery {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.gallery-grid {
}

.gallery-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-grid {
}

.gallery-wide {
    grid-column: 2 / 4;
    grid-row: 2;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

#testimonial {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #F3EEE8;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--ff-display);
    font-size: 50px;
    line-height: 56px;
    color: #1E1E1E;
    font-style: italic;
    max-width: 900px;
    margin-bottom: 40px !important;
}

.dot-nav span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: all var(--transition);
}

.dot-nav span.active {
    background: var(--clr-primary);
    width: 22px;
    border-radius: 3px;
}


#cta {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('../img/cta-bg.png') center/cover no-repeat;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(30, 30, 30, .74); */
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content p {
    color: #5C5C5C;
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--clr-dark);
    padding-top: 80px !important;
}

.footer-logo-mark {
}

.footer-logo-mark span {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    color: #fff;
    font-style: italic;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .08);
}

.footer-link {
    font-size: 16px;
    color: #FFFFFF;
    display: block;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--clr-primary);
}

.footer-heading {
    font-size: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: var(--ff-display);
    font-weight: 400;
}

.footer-social-btn {
    color: #FFFFFF;
    font-size: 16px;
    transition: all var(--transition);
    margin-left: 20px;
}

.footer-social-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .28);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

.reveal-delay-5 {
    transition-delay: .5s;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
    .project-info {
        height: auto;
    }

    .project-img-wrap img {
        height: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .gallery-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .gallery-wide {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .process-col {
        border-right: none;
        border-bottom: 1px solid var(--clr-border);
        padding-right: 0;
    }

    .process-col:last-child {
        border-bottom: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .about-img-accent {
        display: none;
    }

    .service-desc {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
    }

    .gallery-main {
        grid-column: 1;
        grid-row: 1;
    }

    .gallery-wide {
        grid-column: 1;
        grid-row: 4;
    }
}

.d-none.d-lg-flex.align-items-center.gap-5 {
    margin: 0 auto;
}

.lead {
    font-size: 18px !important;
    font-weight: 400;
    color: var(--clr-muted) !important;
    line-height: 29.3px !important;
}

.scroll-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.scroll-bottom p {
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 6px;
}

.reveal.reveal-delay-2 p {
    font-size: 18px;
    line-height: 29.3px;
    font-weight: 400;
    margin-bottom: 25px;
}

#partners h2 em {
    color: white;
    font-weight: 500;
}

section#partners .section-label {
    justify-content: center;
    color: white;
}

section#partners .section-label:before {
    color: white;
}

.partner-logo-wrapper {
    margin-top: 60px;
}

.process-col p {
    color: #5C5C5C;
    font-size: 16px;
    line-height: 27.2px;
}

section#projects .section-label::before {
    /* content: "II \2014"; */
}

section#process .section-label::before {
    /* content: "III \2014"; */
}

#services .section-label::before {
    /* content: "IV \2014"; */
}

section#gallery .section-label::before {
    /* content: "V \2014"; */
}

section#testimonial .section-label::before {
    /* content: "VI \2014"; */
}

.t-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.95px;
    text-transform: uppercase;
    color: #1E1E1E;
    margin-bottom: 0;
}

.t-role {
    font-size: 14px;
    color: var(--clr-muted);
}

.no-before:before {
    display: none;
}

footer#footer p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
}

footer#footer ul.list-unstyled li {
    margin-bottom: 6px;
}

.contact-info-wrapper a {
    color: white;
    display: block;
    font-size: 16px;
    line-height: 20px;
}

.contact-info-wrapper p {
    margin-top: 25px;
}

/*right-sticky*/
.quick-quote-button-wrapper {
    right: 0;
}

.slide-out-button-wrapper {
    position: absolute;
    width: 0;
    top: 50%;
    -webkit-tap-highlight-color: transparent;
}

.quick-quote-button {
    transform: translate(-50%, -100%) rotate(270deg);
    background-color: #666b53;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.top-button {
    z-index: 1;
}

.slide-out-widget-button {
    position: absolute;
    display: flex;
    align-items: center;
    height: 43px;
    transform-origin: bottom;
    line-height: 26px;
    padding: 0 1px;
    cursor: pointer;
    white-space: nowrap;
}

.slide-out-button_right-img {
    position: absolute;
    right: 1px;
    top: 0;
    transform: translateX(100%);
    width: unset;
    height: unset;
}

.slide-out-button_left-img {
    position: absolute;
    left: 1px;
    top: 0;
    transform: translateX(calc(-100% + 1px));
    width: unset;
    height: unset;
}

.quick-quote-button {
    transform: translate(-50%, -100%) rotate(270deg);
    background-color: var(--clr-primary);
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 22px;
}

.slide-out-widget-button {
    position: fixed;
    display: flex;
    align-items: center;
    height: 43px;
    transform-origin: bottom;
    line-height: 26px;
    padding: 0 25px;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--ff-body);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.slide-out-button-wrapper {
    position: absolute;
    top: 50%;
    -webkit-tap-highlight-color: transparent;
    z-index: 999;
}

.hero-box {
    position: relative;
    bottom: -100px;
    /* overlaps next section */
    right: 0;
    width: 320px;
    overflow: hidden;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 99999999999;
    margin-left: auto;
    =: 30px; }

/* Top textured panel */
.hero-box__top {
    background: #e8ddd0;
    padding: 22px 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-box__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid white;
}

.hero-box__quote, .hero-box__top p {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 18px;
    line-height: 21px;
    color: var(--clr-dark);
    margin: 0;
    font-weight: 500;
    width: 65%;
}

/* Bottom white panel */
.hero-box__bottom {
    background: #ffffff;
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

/* Shared button base */
.hero-box__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ff-body);
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.95px;
}

/* Filled primary (amber/orange) */
.hero-box__btn--primary {
    background-color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    color: #ffffff;
}

.hero-box__btn--primary:hover {
    background-color: #9b4324;
    border-color: #9b4324;
    color: #ffffff;
}

/* "or" divider */
.hero-box__or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    color: var(--clr-muted);
}

.hero-box__or span {
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}

.hero-box__or small {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--clr-muted);
    font-style: italic;
}

/* Outline dark */
.hero-box__btn--outline {
    background-color: transparent;
    border: 2px solid var(--clr-dark);
    color: var(--clr-dark);
}

.hero-box__btn--outline:hover {
    background-color: var(--clr-dark);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-box {
        right: 24px;
        width: 290px;
    }
}

@media (max-width: 991.98px) {
    .hero-box {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 380px;
        margin: 40px auto 0;
        border-radius: 10px;
    }
}

.hero-box-container.container {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1;
}

.blog-section {
    background: #F7F5F2;
    padding: 100px 0;
    position: relative;
}

.blog-section .inner {
    padding: 0 24px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3.25px;
    text-transform: uppercase;
    color: #B5522D;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    line-height: 19.5px;
}

.section-label::before {
    /* content: "VII \2014"; */
    color: #B5522D;
}

.blog-section h2 {
    font-family: 'Baskervville', serif;
    font-size: 70px;
    line-height: 75.6px;
    color: #1E1E1E;
    font-weight: 400;
    margin-bottom: 50px;
}

.blog-section h2 em {
    font-style: italic;
    color: #B5522D;
}

.blog-slider-wrap {
    position: relative;
    overflow: hidden;
}

.blog-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8ddd0;
    position: relative;
    overflow: hidden;
}

.blog-card-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-img-inner {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px 24px 30px;
}

.blog-cat {
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #B5522D;
    margin-bottom: 12px;
    display: block;
}

.blog-card-body h4 {
    font-family: 'Baskervville', serif;
    font-size: 24px;
    line-height: 30px;
    color: #1E1E1E;
    font-weight: 400;
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: #5C5C5C;
    line-height: 23px;
    margin-bottom: 20px;
}

.blog-read {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B5522D;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    font-weight: 400;
}

.blog-read:hover {
    gap: 14px;
}

.blog-read-arrow {
    font-size: 16px;
}

.blog-meta {
    font-size: 11px;
    color: #9e9e9e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid #E0DDD9;
}

.blog-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
}

.blog-nav-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid #1E1E1E;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #1E1E1E;
}

.blog-nav-btn:hover {
    background: #B5522D;
    border-color: #B5522D;
    color: #fff;
}

.blog-dots {
    display: flex;
    gap: 8px;
    margin-left: 4px;
}

.blog-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E0DDD9;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.blog-dot.active {
    background: #B5522D;
    width: 22px;
    border-radius: 3px;
}

.reviews-section {
    background: #1E1E1E;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section .inner {
    padding: 0 24px;
}

.reviews-section .section-label {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    color: #b5522d;
}

.reviews-section .section-label::before {
    color: #B5522D;
    /* content: "VIII \2014"; */
}

.reviews-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 24px;
}

.reviews-section h2 {
    font-family: 'Baskervville', serif;
    font-size: 70px;
    line-height: 75.6px;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

.reviews-section h2 em {
    font-style: italic;
    color: #B5522D;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 22px;
    flex-shrink: 0;
}

.google-badge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.google-badge-text {
}

.google-badge-score {
    font-family: 'Baskervville', serif;
    font-size: 28px;
    color: #fff;
    line-height: 1;
    font-weight: 400;
}

.google-badge-stars {
    color: #F5A623;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 2px 0;
}

.google-badge-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 28px 28px;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(181, 82, 45, 0.4);
}

.review-quote-mark {
    font-family: 'Baskervville', serif;
    font-size: 60px;
    color: #B5522D;
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
}

.review-stars {
    color: #F5A623;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-text, .review-card p {
    font-family: 'Baskervville', serif;
    font-size: 17px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
    color: #fff;
}

.review-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.review-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.review-google-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0.3;
    width: 20px;
}

.reviews-cta {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.reviews-cta-btn:hover {
    background: #B5522D;
    border-color: #B5522D;
}

.reviews-cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.scroll-bottom img {
    filter: invert(1) brightness(34);
}

.btn-ember-white-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.ember-navbar.scrolled .ember-logo {
    margin-top: 0;
}

nav.ember-navbar.scrolled img {
    width: 80%;
}

a.ember-nav-link:hover {
    color: var(--clr-primary);
}

nav.ember-navbar.scrolled a.ember-nav-link {
    color: #000;
}

.quick-quote-message {
    position: fixed;
    right: 44px;
    background: white;
    text-align: center;
    bottom: 53%;
    padding: 10px 24px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.quick-quote-message h2 {
    font-size: 21px;
    margin: 0;
    line-height: 35px;
}

.quick-quote-message p {
}

.navbar-cta-phone * {
    color: white !important;
}

nav.ember-navbar.scrolled .navbar-cta-phone-text * {
    color: black !important;
}

nav.ember-navbar.scrolled {
}

nav.ember-navbar.scrolled .navbar-cta-btn {
    background: black;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.cta {
    padding-top: 120px;
    padding-bottom: 120px;
}

section.banner.inner-banner {
    padding-top: 220px;
    padding-bottom: 150px;
    position: relative;
}

section.banner.inner-banner .hero-content p {
    color: #ffffff !important;
}

section.banner.inner-banner .hero-content h1 {
    color: #ffffff;
    font-size: 90px;
    line-height: 100px;
}

section.banner.inner-banner .hero-content p.lead {
    color: #fffafa !important;
    font-size: 16px !important;
}

.project-info {
    padding: 3.5rem 2rem;
}

.project-info.project-info-inner {
    padding-right: 0px;
}

.project-info.project-info-inner hr {
    border-width: 2px;
    border-color: #B5522D;
    opacity: 1 !important;
    width: 32px;
    margin-top: 0;
}

.project-info.project-info-inner p {
    color: #5C5C5C;
    width: 80%;
}

.nav-tabs .nav-link {
    color: #5C5C5C;
    text-transform: uppercase;
    font-family: var(--ff-body);
    border: 1px solid #E8DED2;
    border-radius: 0px;
    padding: 8px 20px;
}

ul#myTab {
    gap: 20px;
    border: 0;
    margin-bottom: 50px;
}

.nav-tabs .nav-link.active {
    background-color: #1E1E1E;
    color: #F7F5F2;
}

section.project-tabs {
    padding: 80px 0px;
    background-color: #F7F5F2;
}

.project-info.project-info-inner .project-location {
    margin-bottom: 10px !important;
}

section.featured-project {
    background-color: #F3EEE8;
    padding: 80px 0px;
}

.featured-info h6 {
    color: #B5522D;
    font-size: 16px;
    letter-spacing: 2.4px;
}

.featured-info p {
    color: #5C5C5C;
    font-size: 16px;
    line-height: 28.8px;
}

.featured-info {
    margin: 60px 0 0;
}

section.inner-process {
    background-color: #F7F5F2;
    padding: 120px 0;
}

.process-steps {
    --bs-gutter-y: 40px;
}

.process-step {
    position: relative;
}

.process-step .step-num {
    font-family: var(--ff-display);
    font-size: 70px;
    line-height: 1;
    font-weight: bold;
    color: #B5522D80;
    margin-bottom: 20px;
    display: inline-block;
    background-color: #f7f5f2;
    position: relative;
    padding-right: 15px;
}

.process-step .step-line {
    height: 2px;
    background-color: #D9876A;
    margin-top: 5px;
    border-width: 2px;
    border-color: #B5522D;
    opacity: 1 !important;
    width: 32px;
}

.process-step .step-name {
    font-family: var(--ff-display);
    font-size: 25px;
    line-height: 1.2;
    color: var(--clr-dark);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 575.98px) {
    .process-step .step-num {
        font-size: 40px;
    }
    .process-step .step-name {
        font-size: 19px;
    }
}

.process-step:before {
    content: "";
    position: absolute;
    width: 92%;
    background-color: #B5522D;
    height: 1px;
    top: 45px;
    z-index: 0;
}

.last-process-step:before{
	display: none;
}

section.service-offer {
    background-color: #F7F5F2;
    padding: 80px 0px;
}

.offer-grid {
    margin-top: 30px;
}

.offer-img-wrap {
    overflow: hidden;
}

.offer-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform .7s ease;
}

.offer-img-wrap:hover img {
    transform: scale(1.05);
}

.offer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background-color: #F3EEE8;
    flex-wrap: wrap;
    align-items: start;
}

.offer-num {
    font-family: var(--ff-display);
    font-size: 70px;
    line-height: 1;
    font-weight: bold;
    color: #B5522D80;
    margin-bottom: 14px;
}

.offer-line {
    width: 40px;
    height: 0.5px;
    background-color: #B5522D;
    margin-bottom: 15px;
}

.offer-title {
    font-family: var(--ff-display);
    font-size: 40px;
    line-height: 1.2;
    color: var(--clr-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.offer-info p {
    font-size: 16px;
    color: var(--clr-muted);
    line-height: 28.8px;
    margin-bottom: 28px;
    max-width: 90%;
}

@media (max-width: 991.98px) {
    .offer-info {
        padding: 40px 30px;
        order: 2;
    }
    .offer-img-wrap img {
        min-height: 280px;
    }
}

#process.process-color{
	background: #F3EEE8 !important;
}

section.approach {
    background-color: #F3EEE8;
    padding: 100px 0;
}

.approach-grid {
    margin-top: 0;
    --bs-gutter-x: 50px;
    --bs-gutter-y: 30px;
}

.approach-num {
    font-family: var(--ff-display);
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
    color: #B5522D80;
    margin-bottom: 8px;
}

.approach-line {
    width: 32px;
    height: 0.5px;
    background-color: #B07D4F;
    margin-bottom: 15px;
}

.approach-title {
    font-family: var(--ff-display);
    font-size: 32px;
    line-height: 1.2;
    color: var(--clr-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.approach-col p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 27px;
    margin: 0;
    max-width: 90%;
}

@media (max-width: 767.98px) {
    .approach-col p {
        max-width: 100%;
    }
}

section.team {
    background-color: #F7F5F2;
    padding: 100px 0;
}

.team-grid {
    margin-top: 0;
    --bs-gutter-x: 40px;
    --bs-gutter-y: 50px;
}

.team-img-wrap {
    overflow: hidden;
    margin-bottom: 24px;
}

.team-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform .7s ease;
    object-position: top;
}

.team-member:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--clr-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.team-role {
    font-family: var(--ff-body);
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px !important;
    color: var(--clr-muted);
    line-height: 27px;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .team-img-wrap img {
        height: 320px;
    }
    .team-member p {
        max-width: 100%;
    }
}

section.values {
    background-color: #F3EEE8;
    padding: 100px 0;
}

.values-grid {
    margin-top: 20px;
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.value-card {
    background-color: #F7F5F2;
    padding: 32px 27px;
    height: 100%;
    position: relative;
}

.value-tick {
    display: block;
    width: 24px;
    height: 0.5px;
    background-color: #B07D4F;
    margin-bottom: 18px;
}

.value-title {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--clr-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px !important;
    color: var(--clr-muted);
    line-height: 24px !important;
    margin: 0;
    margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
    .value-card {
        padding: 30px 26px;
    }
}

section.partners-strip {
    background-color: #F7F5F2;
    padding: 80px 0;
}

.partners-label {
    justify-content: center;
    margin-bottom: 30px;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.partner-pill {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--clr-muted);
    border: 1px solid var(--clr-border);
    padding: 12px 22px;
    transition: all var(--transition);
}

.partner-pill:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

section.gallery-showcase {
    background-color: #F7F5F2;
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--ff-body);
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--clr-muted);
    background: transparent;
    border: 1px solid var(--clr-border);
    padding: 8px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.filter-btn.active {
    background-color: var(--clr-dark);
    border-color: var(--clr-dark);
    color: var(--clr-light);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
}

.g-item {
    overflow: hidden;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.g-item:hover img {
    transform: scale(1.05);
}

.g-item.g-tall {
    grid-row: span 2;
}

.g-item.g-wide {
    grid-column: span 2;
}

/* Hidden by filter */
.g-item.is-hidden {
    display: none;
}

@media (max-width: 991.98px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .g-item.g-wide {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    .g-item.g-tall,
    .g-item.g-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

section.craft-editorial {
    background-color: #F3EEE8;
    padding: 100px 0;
    overflow: hidden;
}

/* Aligns slider left edge with container, overflows to the right */
.craft-slider-wrap {
    margin-top: 30px;
    padding-left: max(24px, calc((100% - 1320px) / 2 + 12px));
}

.craft-slider-wrap .swiper {
    overflow: visible;
}

.craft-slide .craft-img {
    overflow: hidden;
    height: 280px;
    margin-bottom: 16px;
}

.craft-slide .craft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.craft-slide:hover .craft-img img {
    transform: scale(1.05);
}

.craft-cat {
    font-family: var(--ff-body);
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--clr-muted);
}

.craft-nav {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}

.craft-nav-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--clr-dark);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 18px;
    color: var(--clr-dark);
}

.craft-nav-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.craft-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.craftSwiper .swiper-slide {
    width: 40%;
}

@media (max-width: 991.98px) {
    .craftSwiper .swiper-slide { width: 100%; }
}

@media (max-width: 575.98px) {
    .craftSwiper .swiper-slide { width: 100%; }
}

.contact-banner{
	background-image: url(../img/contact-banner.png);
}

section.contact-section {
    background-color: #F7F5F2;
    padding: 100px 0;
}

/* â”€â”€ Left info column â”€â”€ */
.contact-details {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 34px;
}

.contact-icon {
    color: var(--clr-primary);
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
}

.contact-label {
    font-family: var(--ff-body);
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 6px;
}

.contact-value {
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--clr-dark);
    line-height: 1.5;
    display: block;
}

a.contact-value:hover {
    color: var(--clr-primary);
}

/* â”€â”€ Right form â”€â”€ */
.contact-form {
    width: 100%;
}

.form-line {
    margin-bottom: 30px;
}

.form-line label {
    display: block;
    font-family: var(--ff-body);
    font-size: 14px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--clr-dark);
    margin-bottom: 4px;
}

.form-line input,
.form-line select,
.form-line textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--clr-border);
    padding: 4px 0 12px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--clr-dark);
    transition: border-color var(--transition);
    border-radius: 0;
    outline: none;
}

.form-line textarea {
    resize: vertical;
    min-height: 40px;
}

.form-line input::placeholder,
.form-line textarea::placeholder {
    color: #B5B0A9;
}

.form-line input:focus,
.form-line select:focus,
.form-line textarea:focus {
    border-bottom-color: var(--clr-primary);
}

/* Native select arrow tidy-up */
.form-line select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C5C5C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
    cursor: pointer;
}

.form-line select:invalid {
    color: #B5B0A9;
}

section.faq-section {
    background-color: #F7F5F2;
    padding: 100px 0;
}

.faq-label {
    justify-content: center;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--ff-display);
    font-size: 19px;
    color: var(--clr-dark);
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--clr-primary);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 16px;
    color: var(--clr-muted);
    transition: transform var(--transition), color var(--transition);
    line-height: 1;
    font-weight: 400 !important;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--transition);
}

.faq-a p {
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 27px;
    margin: 0;
    padding: 0 60px 26px 0;
}

.faq-q span {
    font-weight: bold;
}
section.banner.inner-banner::after {position: absolute;width: 100%;}

section.banner.inner-banner::after {
 content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(190deg, rgba(0, 0, 0, .3) 8.27%, rgba(0, 0, 0, .75) 85.03%);
    width: 100%;
    height: 100%;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--clr-primary);
    font-weight: 500;
}

.testimonialSwiper {
    overflow: hidden;
}

.testimonialSwiper .swiper-slide {
    text-align: center;
    opacity: 0 !important;
    transition: opacity .9s ease;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1 !important;
}

.testimonialSwiper .swiper-pagination {
    position: static;
}

.dot-nav-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
}

.dot-nav-bullet.active {
    background: #B5522D;
    width: 24px;
    border-radius: 4px;
}

.testimonial-quote p {
    font-family: var(--ff-display);
    font-size: 50px;
    line-height: 56px;
    color: #1E1E1E;
    font-style: italic;
    max-width: 900px;
    margin-bottom: 40px !important;
}

.swiper-pagination.dot-nav {
    opacity: 1 !important;
}

.project-info-inner h3 em {
    color: var(--clr-primary);
    font-weight: 500;
}

.banner-content {
    max-width: 980px;
    margin: 0 auto;
}

.banner-content > p:first-of-type {
    margin-bottom: 12px;
}