:root {
    --brand: #a66127;
    --brand-dark: #744017;
    --ink: #171513;
    --muted: #716d67;
    --cream: #f8f3ed;
    --line: #e6ddd4;
    --serif: "Playfair Display", Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    animation: pageReveal .55s ease-out both;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
}

p {
    color: var(--muted);
}

a {
    text-decoration: none;
}

.site-header {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 7px 30px rgba(20, 14, 8, .08);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 84px;
}

.navbar-brand img {
    width: 180px;
    height: 54px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.navbar-nav {
    gap: .45rem;
}

.nav-link {
    color: #222 !important;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.8rem .65rem !important;
    position: relative;
}

.nav-link::after {
    background: var(--brand);
    bottom: 16px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) scaleX(0);
    transition: .25s;
    width: 70%;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--brand) !important;
}

.header-contact i {
    color: var(--brand);
    font-size: 1.25rem;
}

.header-contact small {
    color: var(--muted);
    display: block;
    font-size: .68rem;
    text-transform: uppercase;
}

.header-contact a:not(.btn) {
    color: var(--ink);
    display: block;
    font-size: .8rem;
    font-weight: 700;
}

.btn {
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: .75rem 1.25rem;
    text-transform: uppercase;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.btn-brand {
    align-items: center;
    background: linear-gradient(135deg, #b56d2c, #824717);
    border: 0;
    color: #fff;
    display: inline-flex;
    gap: .65rem;
}

.btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-color: var(--brand);
    color: var(--ink);
}

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

.hero {
    min-height: 620px;
    overflow: visible;
    position: relative;
}

.hero-slider {
    inset: 0;
    overflow: hidden;
    position: absolute;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

.hero-slider .carousel-item::after {
    background: linear-gradient(90deg, rgba(12, 11, 10, .62) 0%, rgba(12, 11, 10, .3) 36%, transparent 60%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-slider .carousel-item.active img {
    animation: heroZoom 5s ease-out forwards;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    bottom: 85px;
    opacity: .75;
    width: 5%;
    z-index: 3;
}

.hero-slider .carousel-indicators {
    bottom: 92px;
    margin-bottom: 0;
    z-index: 3;
}

.hero-slider .carousel-indicators [data-bs-target] {
    border: 0;
    border-radius: 50%;
    height: 8px;
    margin: 0 5px;
    width: 8px;
}

.min-vh-hero {
    min-height: 535px;
}

.hero .container {
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
}

.hero-slide-copy {
    animation: heroCopyIn .7s ease both;
}

.hero .eyebrow {
    color: #e5a66c;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.35rem, 3.7vw, 3.65rem);
    line-height: 1.08;
    margin: .25rem 0 1.3rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

.hero h1 em {
    color: #e5a66c;
    font-style: normal;
}

.hero p {
    color: rgba(255, 255, 255, .88);
    font-size: 1rem;
    max-width: 600px;
}

.hero .btn-outline-dark {
    border-color: rgba(255, 255, 255, .8);
    color: #fff;
}

.hero .btn-outline-dark:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.hero-stats {
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(166, 97, 39, .12);
    border-radius: 6px;
    box-shadow: 0 14px 40px rgba(55, 31, 13, .14);
    padding: 1.15rem .75rem;
    position: relative;
    transform: translateY(50%);
    z-index: 4;
}

.hero-stats>div {
    align-items: center;
    border-right: 1px solid var(--line);
    display: flex;
    gap: .9rem;
    justify-content: center;
    min-height: 58px;
    padding: .25rem 1rem;
}

.hero-stats>div:last-child {
    border-right: 0;
}

.hero-stats i {
    align-items: center;
    background: #fbf3eb;
    border: 1px solid #ead5c2;
    border-radius: 50%;
    color: var(--brand);
    display: flex;
    flex: 0 0 48px;
    font-size: 1.4rem;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.hero-stats>div>span {
    min-width: 0;
}

.hero-stats span span,
.hero-stats small,
.hero-stats strong {
    display: block;
}

.hero-stats strong {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.15;
}

.hero-stats strong .counter {
    display: inline;
}

.hero-stats small {
    color: var(--muted);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .035em;
    line-height: 1.35;
    margin-top: .25rem;
    text-transform: uppercase;
}

.section {
    padding: 78px 0;
}

.section-soft {
    background: linear-gradient(180deg, #fbf9f6, #fff);
}

.section-heading {
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2,
.section h2 {
    margin-bottom: 0;
}

.service-card {
    align-items: center;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1rem;
    text-align: center;
    transition: .3s;
}

.service-card:hover {
    border-color: var(--brand);
    box-shadow: 0 16px 40px rgba(90, 48, 19, .12);
    transform: translateY(-8px);
}

.service-card i {
    color: var(--brand);
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.service-card h3 {
    align-items: center;
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.3;
    margin: 0 0 .65rem;
    min-height: 2.6em;
}

.service-card p {
    font-size: .9rem;
    line-height: 1.55;
    margin: 0;
    min-height: 4.65em;
}

.image-card h3,
.furniture-card h3,
.blog-card h3,
.testimonial h3 {
    font-size: 1rem;
    font-weight: 700;
}

.why-heading {
    margin-bottom: 2.4rem;
    max-width: 760px;
}

.why-heading p {
    font-size: 1rem;
    line-height: 1.65;
    margin: .9rem auto 0;
    max-width: 620px;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(6, 1fr);
}

.benefit {
    align-items: flex-start;
    background: linear-gradient(145deg, #fff, #fbf5ef);
    border: 1px solid #eaded3;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-height: 175px;
    overflow: hidden;
    padding: 1.2rem;
    position: relative;
    text-align: left;
    transition: .3s ease;
}

.benefit::after {
    background: linear-gradient(135deg, transparent 52%, rgba(166, 97, 39, .09));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.benefit:hover {
    border-color: #d6b393;
    box-shadow: 0 16px 32px rgba(68, 39, 18, .1);
    transform: translateY(-6px);
}

.benefit-number {
    color: #bca896;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    position: absolute;
    right: 1rem;
    top: .85rem;
}

.benefit i {
    align-items: center;
    background: #f4e7da;
    border-radius: 50%;
    color: var(--brand);
    display: flex;
    font-size: 1.45rem;
    height: 50px;
    justify-content: center;
    width: 50px;
    transition: background-color .3s ease, color .3s ease, transform .3s ease;
}

.benefit strong {
    font-size: .9rem;
    line-height: 1.4;
    max-width: 150px;
    position: relative;
    z-index: 1;
}

.benefit:hover i {
    background: var(--brand);
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
}

.preview-section {
    padding: 0 0 78px;
}

.preview-panel {
    background: var(--cream);
    border-radius: 0;
    margin: 0;
    width: 100%;
}

.preview-image {
    min-height: 430px;
}

.color-compare {
    --reveal: 50%;
    height: 100%;
    min-height: 430px;
    overflow: hidden;
    position: relative;
}

.compare-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    user-select: none;
    width: 100%;
}

.compare-muted {
    filter: grayscale(1);
}

.compare-color {
    clip-path: inset(0 0 0 var(--reveal));
}

.compare-divider {
    align-items: center;
    background: #fff;
    border: 2px solid var(--brand);
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .22);
    color: var(--brand);
    display: flex;
    height: 48px;
    justify-content: center;
    left: var(--reveal);
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    z-index: 3;
}

.compare-divider::before {
    background: #fff;
    content: "";
    height: 430px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    z-index: -1;
}

.compare-divider i {
    font-size: .85rem;
    margin: 0 -1px;
}

.compare-label {
    background: rgba(23, 21, 19, .75);
    border-radius: 99px;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .42rem .7rem;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
    z-index: 2;
}

.compare-label-before {
    left: 18px;
}

.compare-label-after {
    right: 18px;
}

.compare-range {
    cursor: ew-resize;
    height: 100%;
    inset: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
    z-index: 4;
}

.preview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.4rem;
}

.preview-copy h2 {
    font-size: 2rem;
}

.preview-copy p,
.preview-copy li {
    font-size: 1rem;
}

.preview-copy ul {
    list-style: none;
    padding: 0;
}

.preview-copy li::before {
    color: var(--brand);
    content: "✓";
    margin-right: .6rem;
}

.furniture-category-panel {
    background: linear-gradient(145deg, #9a571f, #c8884e);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.2rem 1.8rem;
}

.category-kicker {
    color: #f6dbc2;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.furniture-category-panel h2 {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.1;
    margin: .45rem 0 1.2rem;
}

.furniture-category-list {
    display: grid;
    gap: .38rem .7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.furniture-category-list a {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    font-size: .7rem;
    font-weight: 600;
    gap: .35rem;
    min-width: 0;
    padding: .35rem 0;
}

.furniture-category-list a:hover {
    color: #fff3e8;
    padding-left: .2rem;
}

.furniture-category-list i {
    color: #f6d2b0;
    flex: 0 0 auto;
    font-size: .58rem;
}

.furniture-category-list span {
    overflow-wrap: anywhere;
}

.category-link {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: .45rem;
    letter-spacing: .04em;
    margin-top: 1.1rem;
    text-transform: uppercase;
}

.category-link:hover {
    color: #fff3e8;
}

.design-orbit {
    align-items: center;
    background: radial-gradient(circle at center, #f0d3ae, #9d5b26);
    display: flex;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
}

.orbit-floor {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border-radius: 48% 52% 45% 55%;
    box-shadow: 0 25px 60px #49260f66;
    display: flex;
    flex-direction: column;
    height: 220px;
    justify-content: center;
    position: relative;
    transform: rotate(-8deg);
    width: 220px;
}

.orbit-floor i {
    color: var(--brand);
    font-size: 4.6rem;
}

.orbit-floor span {
    background: #fff;
    border: 1px solid var(--brand);
    border-radius: 99px;
    font-size: .65rem;
    padding: .25rem .55rem;
    position: absolute;
}

.orbit-floor span:nth-of-type(1) {
    left: -25px;
    top: 50%;
}

.orbit-floor span:nth-of-type(2) {
    right: -22px;
    top: 20%;
}

.orbit-floor span:nth-of-type(3) {
    bottom: 3px;
    right: 10px;
}

.image-card,
.furniture-card,
.blog-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(34, 24, 16, .08);
    overflow: hidden;
}

.image-card img,
.furniture-card img,
.blog-card img {
    transition: transform .5s;
    width: 100%;
}

.image-card img {
    aspect-ratio: 1.55;
    object-fit: cover;
}

.image-card div {
    padding: .9rem;
}

.image-card div span {
    color: var(--brand);
    font-size: .68rem;
    font-weight: 700;
}

.image-card:hover img,
.furniture-card:hover img,
.blog-card:hover img {
    transform: scale(1.08);
}

.furniture-card {
    text-align: center;
}

.furniture-card img {
    aspect-ratio: 1.3;
    object-fit: cover;
}

.furniture-card h3 {
    font-size: .75rem;
    margin: 0;
    padding: .75rem .3rem;
}

.furniture-tabs {
    border-bottom: 0;
    gap: .5rem;
    margin: 0 auto 2rem;
}

.furniture-tabs .nav-link::after {
    display: none;
}

.furniture-tabs .nav-link {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    padding: .8rem 1.4rem;
    text-transform: uppercase;
}

.furniture-tabs .nav-link:hover {
    color: var(--brand);
}

.furniture-tabs .nav-link.active {
    border-bottom-color: var(--brand);
    color: var(--brand);
}

.furniture-tab-content {
    min-height: 300px;
}

.furniture-showcase-box {
    background: linear-gradient(145deg,#fff,#fbf7f3);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(55,31,13,.08);
    padding: 1.25rem;
}

.furniture-highlight-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.furniture-zoom-button {
    background: #fff;
    border: 1px solid #eadfd5;
    border-radius: 7px;
    cursor: zoom-in;
    display: block;
    height: 100%;
    overflow: hidden;
    padding: 0;
    text-align: center;
    width: 100%;
}

.furniture-image-wrap {
    align-items: center;
    background: #f8f3ee;
    display: flex;
    min-height: 175px;
    overflow: hidden;
    position: relative;
}

.furniture-image-wrap img {
    height: 175px;
    object-fit: contain;
    transition: transform .35s ease;
    width: 100%;
}

.furniture-image-wrap i {
    align-items: center;
    background: rgba(255,255,255,.92);
    border-radius: 50%;
    bottom: 10px;
    color: var(--brand);
    display: flex;
    height: 36px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 10px;
    transform: translateY(6px);
    transition: .25s ease;
    width: 36px;
}

.furniture-zoom-button:hover .furniture-image-wrap img {
    transform: scale(1.035);
}

.furniture-zoom-button:hover .furniture-image-wrap i,
.furniture-zoom-button:focus-visible .furniture-image-wrap i {
    opacity: 1;
    transform: translateY(0);
}

.furniture-zoom-button strong {
    color: var(--ink);
    display: block;
    font-size: .82rem;
    line-height: 1.35;
    padding: .85rem .5rem;
}

@media (max-width:1199px) {
    .furniture-highlight-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width:575px) {
    .furniture-tabs .nav-link {
        font-size: .68rem;
        padding: .7rem .6rem;
    }

    .furniture-highlight-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .furniture-showcase-box {
        padding: .75rem;
    }
}

.process-section {
    background: #faf7f2;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 2rem;
    position: relative;
}

.process-line::before {
    border-top: 1px dashed var(--brand);
    content: "";
    left: 4%;
    position: absolute;
    right: 4%;
    top: 27px;
}

.process-step {
    padding-right: 1.2rem;
    position: relative;
}

.step-number {
    align-items: center;
    background: #fff;
    border: 1px solid var(--brand);
    border-radius: 50%;
    display: flex;
    font-family: var(--serif);
    font-weight: 700;
    height: 55px;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    width: 55px;
    z-index: 1;
}

.process-step h3 {
    font-size: .85rem;
    font-weight: 700;
}

.process-step p {
    font-size: .7rem;
}

.material-card {
    align-items: center;
    background: linear-gradient(135deg, #6f4225, #b77a43);
    border-radius: 6px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    min-height: 110px;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.material-card i {
    font-size: 2rem;
}

.material-card strong {
    font-size: .75rem;
}

.testimonials {
    background: #fbf9f6;
}

.testimonial {
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    height: 100%;
    padding: 1.4rem;
}

.testimonial img,
.testimonial .avatar {
    border-radius: 50%;
    flex: 0 0 70px;
    height: 70px;
    object-fit: cover;
    width: 70px;
}

.testimonial .avatar {
    align-items: center;
    background: var(--brand);
    color: #fff;
    display: flex;
    font-family: var(--serif);
    font-size: 1.5rem;
    justify-content: center;
}

.testimonial h3 {
    margin: 0;
}

.testimonial small {
    color: var(--muted);
}

.testimonial p {
    font-size: .77rem;
    margin: .5rem 0 0;
}

.stars {
    color: #e3a124;
    letter-spacing: .1rem;
}

.blog-card img {
    aspect-ratio: 2.7;
    object-fit: cover;
}

.blog-card>div {
    padding: 1rem;
}

.blog-card small {
    color: var(--muted);
}

.blog-card h3 {
    margin: .55rem 0;
}

.blog-card a {
    color: var(--brand);
    font-size: .75rem;
    font-weight: 700;
}

.consultation-strip {
    background: linear-gradient(90deg, rgba(25, 20, 16, .92), rgba(39, 29, 21, .78)), url("../../images/footer.png") center/cover no-repeat;
    color: #fff;
    padding: 3.5rem 0 2rem;
}

.consultation-strip h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.consultation-strip p {
    color: #e6ddd2;
}

.promise-row {
    border-top: 1px solid #ffffff26;
    padding-top: 1rem;
}

.promise-row div {
    font-size: .82rem;
}

.promise-row i {
    color: #d89454;
    margin-right: .5rem;
}

.site-footer {
    background: #171717;
    color: #d8d8d8;
    padding: 55px 0 0;
}

.footer-logo {
    filter: invert(1) grayscale(1);
    height: 58px;
    mix-blend-mode: screen;
    object-fit: contain;
    object-position: left center;
    width: 220px;
}

.site-footer p,
.site-footer a {
    color: #aaa;
    display: block;
    font-size: .76rem;
    margin-bottom: .35rem;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer h3 {
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.socials {
    display: flex;
    gap: .5rem;
}

.socials a {
    align-items: center;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.footer-form .form-control {
    background: #272727;
    border-color: #383838;
    border-radius: 2px;
    color: #fff;
    font-size: .75rem;
    margin-bottom: .55rem;
}

.copyright {
    border-top: 1px solid #333;
    color: #777;
    font-size: .68rem;
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.copyright a {
    display: inline;
}

.whatsapp-float {
    align-items: center;
    background: #0b8f78;
    border: 4px solid #fff;
    border-radius: 50%;
    bottom: 28px;
    box-shadow: 0 7px 25px #0004;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 76px;
    justify-content: center;
    position: fixed;
    right: 22px;
    width: 76px;
    z-index: 20;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-float span {
    font-size: .56rem;
    font-weight: 700;
}

.back-to-top {
    background: var(--brand);
    border: 0;
    bottom: 112px;
    color: #fff;
    display: none;
    height: 38px;
    position: fixed;
    right: 40px;
    width: 38px;
    z-index: 19;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.025);
    }
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageReveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes dropdownReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galleryReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .hero-slider .carousel-item.active img,
    .hero-slide-copy {
        animation: none;
    }
}

/* About page */
.about-banner {
    min-height: 345px;
    overflow: hidden;
    position: relative;
}

.about-banner-image {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .95) 26%, rgba(255, 255, 255, .18) 54%), url("../images/about-hero.jpg") center right/cover no-repeat;
    inset: 0;
    position: absolute;
}

.about-banner-row {
    min-height: 345px;
}

.about-banner h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
}

.about-banner p {
    color: #26211d;
    font-size: .95rem;
    margin-top: 2.5rem;
    max-width: 370px;
}

.about-breadcrumb {
    align-items: center;
    display: flex;
    gap: .65rem;
}

.about-breadcrumb a {
    color: var(--ink);
}

.about-breadcrumb span {
    color: var(--brand);
    font-weight: 700;
}

.about-breadcrumb i {
    font-size: .75rem;
}

.about-photo {
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(40, 25, 14, .12);
    overflow: hidden;
}

.about-photo img {
    aspect-ratio: 1.44;
    object-fit: cover;
    transition: transform .6s;
    width: 100%;
}

.about-photo:hover img {
    transform: scale(1.04);
}

.about-story h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.about-story p {
    color: #2d2925;
    font-size: .9rem;
}

.about-stats-section {
    padding-bottom: 55px;
}

.about-stats {
    background: linear-gradient(100deg, #faf7f4, #fff8f1);
    border-radius: 9px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.6rem 0;
}

.about-stat {
    align-items: center;
    border-right: 1px solid #d7c8bb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
    text-align: center;
}

.about-stat:last-child {
    border: 0;
}

.about-stat i {
    color: var(--brand);
    font-size: 2rem;
}

.about-stat strong {
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.2;
}

.about-stat small {
    font-size: .66rem;
    text-transform: uppercase;
}

.about-values {
    padding-top: 15px;
}

.title-line {
    background: var(--brand);
    display: block;
    height: 2px;
    margin: .65rem auto 0;
    width: 36px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.value-card {
    border-right: 1px solid var(--line);
    padding: 0 1.1rem;
    text-align: center;
}

.value-card:last-child {
    border: 0;
}

.value-card i {
    color: var(--brand);
    font-size: 2.5rem;
}

.value-card h3 {
    font-size: .85rem;
    font-weight: 700;
    margin: .6rem 0;
}

.value-card p {
    color: #332e2a;
    font-size: .73rem;
    margin: 0;
}

.reality-panel,
.journey-panel {
    background: linear-gradient(110deg, #faf7f3, #fff);
    border-radius: 9px;
    overflow: hidden;
}

.reality-copy {
    padding: 2.5rem;
}

.reality-copy h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.08;
    max-width: 430px;
}

.about-check-list {
    list-style: none;
    margin: 1.7rem 0 0;
    padding: 0;
}

.about-check-list li {
    color: #2c2723;
    font-size: .82rem;
    margin-bottom: .75rem;
    padding-left: 1.6rem;
    position: relative;
}

.about-check-list li::before {
    align-items: center;
    background: var(--brand);
    border-radius: 50%;
    color: #fff;
    content: "✓";
    display: flex;
    font-size: .55rem;
    height: 14px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 4px;
    width: 14px;
}

.reality-image {
    min-height: 410px;
    position: relative;
}

.reality-image>img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.goal-card {
    background: #1d1d1d;
    bottom: 25px;
    color: #fff;
    max-width: 185px;
    padding: 1.6rem 1.2rem;
    position: absolute;
    right: 25px;
    text-align: center;
}

.goal-card i {
    color: #ca7c32;
    font-size: 2.5rem;
}

.goal-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
}

.goal-card p {
    color: #eee;
    font-size: .76rem;
    margin: 0;
}

.journey-panel {
    padding: 1.8rem 2rem;
}

.journey-panel h2 {
    font-size: 1.7rem;
}

.journey-panel p {
    color: #2d2925;
    font-size: .76rem;
}

.journey-panel img {
    border-radius: 8px;
    height: 185px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.purpose-card {
    border-left: 1px solid var(--line);
    height: 100%;
    padding-left: 1.6rem;
}

.purpose-title {
    align-items: center;
    display: flex;
    gap: .85rem;
    margin-bottom: 1rem;
}

.purpose-title i {
    align-items: center;
    background: var(--brand);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 45px;
    font-size: 1.2rem;
    height: 45px;
    justify-content: center;
}

.purpose-title h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 0;
}

.about-cta {
    align-items: center;
    background: linear-gradient(100deg, #171717, #242424);
    border-radius: 7px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin-top: 1.4rem;
    padding: 1rem 2rem;
}

.about-cta-copy {
    align-items: center;
    display: flex;
    gap: 1rem;
}

.about-cta-copy>i {
    align-items: center;
    border: 2px solid var(--brand);
    border-radius: 50%;
    color: var(--brand);
    display: flex;
    flex: 0 0 50px;
    font-size: 1.4rem;
    height: 50px;
    justify-content: center;
}

.about-cta h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    margin: 0;
}

.about-cta p {
    color: #ddd;
    font-size: .75rem;
    margin: .2rem 0 0;
}

/* Founders page */
.dropdown-menu {
    animation: dropdownReveal .22s ease-out both;
    background: #fff;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 12px 35px rgba(29, 20, 13, .14);
    padding: .45rem .7rem;
}

@media (min-width:1200px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown:hover > .dropdown-toggle::before {
        content: "";
        height: 12px;
        left: 0;
        position: absolute;
        right: 0;
        top: 100%;
    }
}

.dropdown-item {
    background: transparent;
    border-bottom: 2px solid #e6d6c8;
    border-radius: 0;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 600;
    padding: .7rem .55rem;
    transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
}

.dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
    background: var(--cream);
    color: var(--brand);
    padding-left: 1rem;
}

.dropdown-item.active {
    font-weight: 700;
}

.founders-banner {
    color: #fff;
    min-height: 415px;
    overflow: hidden;
    position: relative;
}

.founders-banner-image {
    background: linear-gradient(90deg, rgba(15, 15, 14, .98) 0%, rgba(17, 16, 14, .86) 31%, rgba(17, 16, 14, .08) 62%), url("../images/founders-hero.jpg") center right/cover no-repeat;
    inset: 0;
    position: absolute;
}

.founders-banner-row {
    min-height: 415px;
}

.founders-banner h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
}

.founders-breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.founders-breadcrumb a {
    color: #fff;
}

.founders-breadcrumb span {
    color: #d29450;
}

.founders-breadcrumb i {
    font-size: .75rem;
}

.founders-line {
    background: #c27731;
    display: block;
    height: 2px;
    margin: 1.8rem 0;
    width: 40px;
}

.founders-banner p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 430px;
}

.founders-heading {
    margin-bottom: 2.2rem;
}

.founders-main {
    padding-bottom: 45px;
}

.founder-card {
    height: 100%;
    padding-bottom: 85px;
    position: relative;
}

.founder-card>.row {
    background: linear-gradient(110deg, #fff, #faf6f1);
    border: 1px solid #ede4dc;
    border-radius: 8px 8px 0 0;
    min-height: 310px;
    overflow: hidden;
}

.founder-photo img {
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    width: 100%;
}

.founder-copy {
    padding: 1.7rem 1.3rem;
}

.founder-copy h3 {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 700;
}

.founder-copy h4 {
    color: var(--brand);
    font-size: .95rem;
}

.founder-rule {
    background: #c88951;
    display: block;
    height: 1px;
    margin: 1rem 0;
    width: 30px;
}

.founder-copy p,
.founder-copy li {
    color: #26211e;
    font-size: .77rem;
}

.founder-copy ul {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.founder-copy li {
    margin-bottom: .65rem;
    padding-left: 1.4rem;
    position: relative;
}

.founder-copy li::before {
    align-items: center;
    background: var(--brand);
    border-radius: 50%;
    color: #fff;
    content: "✓";
    display: flex;
    font-size: .48rem;
    height: 13px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 3px;
    width: 13px;
}

.founder-card blockquote {
    align-items: flex-start;
    background: linear-gradient(110deg, #98591f, #b97536);
    border-radius: 0 0 8px 8px;
    bottom: 0;
    color: #fff;
    display: flex;
    gap: 1rem;
    margin: 0;
    min-height: 85px;
    padding: 1.2rem 1.5rem;
    position: absolute;
    right: 0;
    width: 74%;
}

.founder-card blockquote i {
    font-size: 2rem;
    line-height: 1;
}

.founder-card blockquote span {
    font-size: .83rem;
    line-height: 1.55;
}

.founders-strength .section-heading p {
    font-size: .82rem;
    margin-top: 1rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.leadership-item {
    border-right: 1px solid var(--line);
    padding: 0 1.2rem;
    text-align: center;
}

.leadership-item:last-child {
    border: 0;
}

.leadership-item i {
    color: var(--brand);
    font-size: 3rem;
}

.leadership-item h3 {
    font-size: .82rem;
    font-weight: 700;
    margin: .75rem 0 .35rem;
}

.leadership-item p {
    color: #2d2926;
    font-size: .72rem;
    margin: 0;
}

.founders-journey {
    background: radial-gradient(circle at center, #292929, #151515);
    border-radius: 8px;
    color: #fff;
    padding: 1.5rem 2.2rem 2.1rem;
}

.founders-journey h2 {
    text-align: center;
}

.founders-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 1.2rem;
}

.founders-stat {
    align-items: center;
    border-right: 1px solid #806342;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.founders-stat:last-child {
    border: 0;
}

.founders-stat i {
    color: #b86f29;
    font-size: 2.3rem;
}

.founders-stat strong {
    font-family: var(--serif);
    font-size: 2rem;
}

.founders-stat span {
    font-size: .74rem;
}

.founders-contact {
    background: linear-gradient(110deg, #fff, #faf7f3);
    border-radius: 8px;
}

.founders-contact-image img {
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    width: 100%;
}

.founders-contact-copy {
    padding: 1.5rem 2.2rem;
}

.founders-contact-copy h2 {
    font-size: 2rem;
}

.founders-contact-copy>p {
    color: #2c2825;
    font-size: .85rem;
}

.founders-contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 1.4rem 0;
}

.founders-contact-details>div {
    align-items: center;
    border-right: 1px solid #d9c8b8;
    display: flex;
    gap: .8rem;
    padding-right: .9rem;
}

.founders-contact-details>div:last-child {
    border: 0;
}

.founders-contact-details i {
    color: var(--brand);
    font-size: 1.8rem;
}

.founders-contact-details a,
.founders-contact-details span {
    color: var(--ink);
    font-size: .77rem;
    font-weight: 600;
}

/* Services page */
.services-banner {
    color: #fff;
    min-height: 440px;
    overflow: hidden;
    position: relative;
}

.services-banner-image {
    background: linear-gradient(90deg, rgba(17, 18, 18, .98) 0%, rgba(17, 18, 18, .84) 35%, rgba(17, 18, 18, .08) 68%), url("../images/services-hero.jpg") center right/cover no-repeat;
    inset: 0;
    position: absolute;
}

.services-banner-row {
    min-height: 390px;
}

.services-banner h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.2vw, 4.8rem);
    font-weight: 700;
    line-height: 1.04;
}

.services-title-line {
    background: #fff;
    display: block;
    height: 2px;
    margin: 1.4rem 0;
    width: 38px;
}

.services-banner p {
    color: #fff;
    font-size: .9rem;
    max-width: 430px;
}

.services-promises {
    align-items: center;
    display: flex;
    gap: 3.2rem;
    min-height: 50px;
    position: relative;
}

.services-promises span {
    align-items: center;
    display: flex;
    font-size: .78rem;
    gap: .65rem;
}

.services-promises i {
    color: #cc782c;
    font-size: 1.7rem;
}

.services-list {
    background: linear-gradient(180deg, #fff, #fdfbf9);
}

.service-detail-card {
    background: #fff;
    border: 1px solid #e8e1da;
    border-radius: 7px;
    box-shadow: 0 8px 25px rgba(30, 22, 15, .05);
    height: 100%;
    overflow: hidden;
    transition: .3s;
}

.service-detail-card:hover {
    box-shadow: 0 18px 45px rgba(73, 42, 20, .13);
    transform: translateY(-6px);
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    aspect-ratio: 1.6;
    object-fit: cover;
    transition: transform .5s;
    width: 100%;
}

.service-detail-card:hover img {
    transform: scale(1.04);
}

.service-number {
    background: var(--brand);
    color: #fff;
    font-family: var(--serif);
    font-size: 1rem;
    left: 12px;
    padding: .45rem .55rem;
    position: absolute;
    top: 12px;
}

.service-icon {
    align-items: center;
    background: #fff;
    border: 1px solid #e5d9ce;
    border-radius: 50%;
    bottom: -26px;
    color: var(--brand);
    display: flex;
    font-size: 1.8rem;
    height: 58px;
    justify-content: center;
    left: 18px;
    position: absolute;
    width: 58px;
}

.service-detail-copy {
    padding: 2.1rem 1.4rem 1.6rem;
}

.service-detail-copy h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
}

.service-detail-copy p {
    color: #2e2925;
    font-size: .82rem;
    line-height: 1.7;
    margin: 0;
    min-height: 150px;
}

.service-detail-copy a {
    color: var(--brand);
    font-size: .75rem;
    font-weight: 700;
}

.services-stats-section {
    padding-bottom: 55px;
}

.services-stats {
    background: linear-gradient(100deg, #faf7f4, #fff9f3);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.5rem 0;
}

.services-stat {
    align-items: center;
    border-right: 1px solid #d9cbbf;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.services-stat:last-child {
    border: 0;
}

.services-stat i {
    color: var(--brand);
    font-size: 2.3rem;
}

.services-stat strong {
    font-family: var(--serif);
    font-size: 1.85rem;
}

.services-stat span {
    font-size: .68rem;
}

.service-process {
    padding-top: 10px;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}

.service-process-grid::before {
    border-top: 1px dashed var(--brand);
    content: "";
    left: 9%;
    position: absolute;
    right: 9%;
    top: 34px;
}

.service-process-step {
    padding: 0 1rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.service-process-step>span {
    align-items: center;
    background: #fff;
    border: 1px solid #d2aa87;
    border-radius: 50%;
    color: var(--brand);
    display: flex;
    font-size: 2rem;
    height: 70px;
    justify-content: center;
    margin: 0 auto 1rem;
    width: 70px;
}

.service-process-step h3 {
    font-size: .8rem;
    font-weight: 700;
}

.service-process-step p {
    color: #2e2926;
    font-size: .68rem;
}

.services-cta {
    align-items: center;
    background: linear-gradient(90deg, rgba(24, 23, 21, .98), rgba(24, 23, 21, .88)), url("../images/services-cta.jpg") center/cover;
    border-radius: 7px;
    color: #fff;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.2fr 1.4fr auto;
    padding: 2.4rem 2rem;
}

.services-cta h2 {
    font-size: 2rem;
}

.services-cta p {
    color: #ddd;
    font-size: .78rem;
    margin: 0;
}

.services-cta-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.services-cta-details span {
    border-right: 1px solid #8c7562;
    font-size: .7rem;
}

.services-cta-details span:last-child {
    border: 0;
}

.services-cta-details i {
    color: #d2843e;
    font-size: 1.35rem;
    margin-right: .4rem;
}

/* Products page */
.products-banner {
    color: #fff;
    min-height: 320px;
    overflow: hidden;
    position: relative;
}

.products-banner-image {
    background: linear-gradient(90deg, rgba(18, 17, 15, .98), rgba(18, 17, 15, .78) 38%, rgba(18, 17, 15, .1) 70%), url("../images/products-hero.jpg") center right/cover no-repeat;
    inset: 0;
    position: absolute;
}

.products-banner-row {
    min-height: 320px;
}

.products-breadcrumb {
    align-items: center;
    display: flex;
    gap: .65rem;
}

.products-breadcrumb a {
    color: #fff;
}

.products-breadcrumb span {
    color: #d99450;
}

.products-breadcrumb i {
    font-size: .7rem;
}

.products-banner h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    margin: .8rem 0;
}

.products-banner h2 {
    color: #d99450;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
}

.products-title-line {
    background: #fff;
    display: block;
    height: 2px;
    margin: 1.25rem 0;
    width: 34px;
}

.products-banner p {
    color: #fff;
    font-size: .82rem;
    max-width: 400px;
}

.products-quality {
    align-items: center;
    background: linear-gradient(160deg, #7b461e, #3d2517);
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    padding: 1.4rem;
    position: absolute;
    right: 5%;
    text-align: center;
    width: 180px;
}

.products-quality i {
    color: #e0a064;
    font-size: 2.2rem;
}

.products-quality span {
    font-size: .73rem;
}

.products-section {
    background: #fcfaf8;
}

.products-catalog {
    background: linear-gradient(120deg, #faf7f3, #fff);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 1.2rem;
}

.product-categories {
    border-right: 1px solid var(--line);
    padding-right: 1rem;
}

.product-categories h3,
.product-filters label {
    color: #4b4038;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-categories button {
    background: transparent;
    border: 0;
    border-radius: 3px;
    color: #342e2a;
    display: block;
    font-size: .75rem;
    margin: .15rem 0;
    padding: .55rem .65rem;
    text-align: left;
    width: 100%;
}

.product-categories button.active,
.product-categories button:hover {
    background: #f1e7de;
    color: var(--brand);
    font-weight: 700;
}

.product-filters {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 1.2rem;
}

.product-filters label {
    display: block;
}

.product-filters .form-select {
    border-color: #dfd4ca;
    font-size: .72rem;
    margin-top: .4rem;
}

.product-card {
    background: #fff;
    border: 1px solid #e7ddd5;
    border-radius: 6px;
    box-shadow: 0 7px 20px rgba(38, 28, 20, .06);
    height: 100%;
    overflow: hidden;
    transition: .3s;
}

.product-card:hover {
    box-shadow: 0 16px 35px rgba(60, 37, 20, .14);
    transform: translateY(-5px);
}

.product-grid-item {
    animation: galleryReveal .5s ease both;
}

.product-grid-item:nth-child(2n) {
    animation-delay: .05s;
}

.product-grid-item:nth-child(3n) {
    animation-delay: .1s;
}

.product-grid-item:nth-child(4n) {
    animation-delay: .15s;
}

.product-image-button {
    align-items: center;
    background: #f7f3ef;
    border: 0;
    cursor: zoom-in;
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 220px;
    padding: 0;
    position: relative;
    width: 100%;
}

.product-image-button img {
    display: block;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transition: .35s;
    width: 100%;
}

.product-card:hover .product-image-button img {
    transform: scale(1.025);
}

.image-card:hover img,
.furniture-card:hover img {
    transform: scale(1.06);
}

.product-zoom-icon {
    align-items: center;
    background: rgba(255,255,255,.92);
    border-radius: 50%;
    bottom: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,.16);
    color: var(--brand);
    display: flex;
    height: 38px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 12px;
    transform: translateY(6px);
    transition: .25s;
    width: 38px;
}

.product-image-button:hover .product-zoom-icon,
.product-image-button:focus-visible .product-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.product-image-modal .modal-content {
    background: #111;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.product-image-modal .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
}

.product-image-modal .modal-body {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 70vh;
    padding: 1rem;
}

.product-image-modal img {
    max-height: 82vh;
    object-fit: contain;
    width: 100%;
}

.products-empty {
    display: none;
    padding: 3rem;
    text-align: center;
}

.products-benefits {
    padding: 0 0 25px;
}

.products-benefit-grid {
    background: #faf7f3;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.2rem;
}

.products-benefit-grid>div {
    align-items: center;
    border-right: 1px solid var(--line);
    display: flex;
    gap: .7rem;
    padding: .4rem .8rem;
}

.products-benefit-grid>div:last-child {
    border: 0;
}

.products-benefit-grid i {
    color: var(--brand);
    font-size: 1.8rem;
}

.products-benefit-grid span {
    color: #554c45;
    font-size: .62rem;
}

.products-benefit-grid strong {
    color: var(--ink);
    display: block;
    font-size: .69rem;
}

.products-cta {
    align-items: center;
    background: linear-gradient(90deg, rgba(24, 22, 19, .97), rgba(24, 22, 19, .83)), url("../images/products-hero.jpg") center/cover;
    border-radius: 7px;
    color: #fff;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.2fr 1fr auto;
    padding: 2rem 2.5rem;
}

.products-cta h2 {
    font-size: 2rem;
}

.products-cta ul {
    border-left: 1px solid #81634c;
    list-style: none;
    margin: 0;
    padding-left: 2rem;
}

.products-cta li {
    font-size: .75rem;
    margin: .45rem 0;
}

.products-cta li::before {
    color: #d4863d;
    content: "✕";
    margin-right: .6rem;
}

/* Contact page */
.contact-banner {
    min-height: 315px;
    overflow: hidden;
    position: relative;
}

.contact-banner-image {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .94) 30%, rgba(255, 255, 255, .08) 65%), url("../images/contact-hero.jpg") center right/cover no-repeat;
    inset: 0;
    position: absolute;
}

.contact-banner-row {
    min-height: 315px;
}

.contact-banner h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
}

.contact-title-line,
.contact-small-line {
    background: var(--brand);
    display: block;
    height: 2px;
    margin: 1rem 0;
    width: 36px;
}

.contact-banner p {
    color: #2d2925;
    font-size: .83rem;
    line-height: 1.75;
}

.contact-info-section {
    padding: 40px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-info-grid>div {
    align-items: center;
    border-right: 1px solid var(--line);
    display: flex;
    gap: 1rem;
    padding: 0 1.2rem;
}

.contact-info-grid>div:last-child {
    border: 0;
}

.contact-info-grid>div>i {
    align-items: center;
    background: #faf4ee;
    border-radius: 50%;
    color: var(--brand);
    display: flex;
    flex: 0 0 58px;
    font-size: 1.8rem;
    height: 58px;
    justify-content: center;
}

.contact-info-grid span {
    color: #302a26;
    font-size: .72rem;
}

.contact-info-grid strong {
    display: block;
    font-size: .8rem;
    margin-bottom: .35rem;
}

.contact-info-grid a {
    color: #302a26;
    display: block;
}

.contact-main {
    padding-top: 10px;
}

.contact-panel {
    background: linear-gradient(110deg, #fff, #f9f4ee);
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(44, 29, 18, .07);
}

.contact-form-wrap {
    padding: 2.2rem;
}

.contact-form-wrap h2,
.contact-feature h2 {
    font-size: 2rem;
}

.contact-form-wrap>p,
.contact-feature>div>p {
    color: #302b27;
    font-size: .75rem;
}

.contact-form-wrap label {
    color: #746b63;
    font-size: .65rem;
    margin-bottom: .35rem;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border-color: #ddd5ce;
    border-radius: 3px;
    font-size: .72rem;
    padding: .75rem;
}

.contact-feature {
    background: linear-gradient(110deg, #fbf7f2, #f1e7dc);
    min-height: 450px;
    overflow: hidden;
    padding: 2.2rem;
    position: relative;
}

.contact-feature-image {
    background: url("../images/contact-feature-clean.jpg") right bottom/auto 92% no-repeat;
    inset: 0;
    opacity: .95;
    position: absolute;
}

.contact-feature>div {
    max-width: 54%;
}

.contact-feature-list {
    margin-top: 1.8rem;
}

.contact-feature-list>div {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.contact-feature-list i {
    color: var(--brand);
    font-size: 1.7rem;
}

.contact-feature-list span {
    color: #342e2a;
    font-size: .72rem;
}

.contact-feature-list strong {
    display: block;
    font-size: .8rem;
    margin-bottom: .25rem;
}

.contact-map-section {
    padding-bottom: 20px;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.contact-map>iframe {
    display: block;
    height: 350px;
    width: 100%;
}

.map-card {
    background: rgba(255, 255, 255, .96);
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(40, 28, 18, .18);
    left: 22px;
    padding: 1.3rem;
    position: absolute;
    top: 22px;
    width: 210px;
}

.map-card h3 {
    font-size: .85rem;
    font-weight: 700;
}

.map-card h3 i {
    font-size: 1.3rem;
    margin-right: .5rem;
}

.map-card p {
    color: #302b27;
    font-size: .7rem;
}

.contact-cta {
    align-items: center;
    background: linear-gradient(90deg, rgba(22, 21, 19, .97), rgba(22, 21, 19, .82)), url("../images/contact-hero.jpg") center/cover;
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.15fr 1fr auto;
    padding: 2rem 2.4rem;
}

.contact-cta h2 {
    font-size: 2rem;
}

.contact-cta p {
    color: #ddd;
    font-size: .72rem;
}

.contact-cta-benefits {
    display: flex;
    justify-content: space-between;
}

.contact-cta-benefits span {
    border-right: 1px solid #765b44;
    font-size: .68rem;
    padding: 0 1rem;
    text-align: center;
}

.contact-cta-benefits span:last-child {
    border: 0;
}

.contact-cta-benefits i {
    color: #d48740;
    display: block;
    font-size: 1.5rem;
    margin-bottom: .4rem;
}

@media (max-width:1199px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
    }

    .nav-link {
        padding: .6rem !important;
    }

    .nav-link::after {
        display: none;
    }

    .header-contact {
        margin-top: 1rem;
    }

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

}

@media (max-width:991px) {
    .hero-slider .carousel-item img {
        object-position: center;
    }

    .hero-stats>div:nth-child(2) {
        border-right: 0;
    }

    .hero-stats>div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
        padding-bottom: .8rem;
    }

    .hero-stats>div:nth-child(n+3) {
        padding-top: .8rem;
    }

    .process-line {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .process-line::before {
        display: none;
    }

    .preview-copy {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 0;
    }

    .value-card:nth-child(3) {
        border: 0;
    }

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

    .about-stat:nth-child(3) {
        border: 0;
    }

    .about-stat:nth-child(n+4) {
        margin-top: 1.5rem;
    }

    .about-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.2rem;
    }
}

@media (max-width:767px) {
    .section {
        padding: 58px 0;
    }

    .hero {
        min-height: 680px;
    }

    .min-vh-hero {
        min-height: 560px;
    }

    .hero-slider .carousel-item img {
        object-position: 58% center;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .hero-slider .carousel-indicators {
        bottom: 112px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero-stats {
        margin: 0 -.35rem;
        padding: .8rem .35rem;
    }

    .hero-stats>div {
        gap: .6rem;
        justify-content: flex-start;
        padding-left: .65rem;
        padding-right: .65rem;
    }

    .hero-stats i {
        flex-basis: 40px;
        font-size: 1.15rem;
        height: 40px;
        width: 40px;
    }

    .hero-stats strong {
        font-size: 1rem;
    }

    .hero-stats small {
        font-size: .56rem;
        letter-spacing: .015em;
    }

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

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

    .whatsapp-float {
        height: 62px;
        width: 62px;
    }

    .whatsapp-float span {
        display: none;
    }

    .about-banner-image {
        background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .68)), url("../images/about-hero.jpg") center/cover;
    }

    .about-banner p {
        margin-top: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .about-stat {
        border-bottom: 1px solid var(--line);
        border-right: 0;
    }

    .about-stat:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .about-stat:last-child {
        grid-column: 1/-1;
    }

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

    .value-card:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .value-card:nth-child(even) {
        border-right: 0;
    }

    .reality-copy {
        padding: 1.7rem;
    }

    .reality-image {
        min-height: 330px;
    }

    .goal-card {
        bottom: 12px;
        right: 12px;
    }

    .journey-panel {
        padding: 1.4rem;
    }

    .purpose-card {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 1.5rem 0 0;
    }

    .about-cta {
        padding: 1.3rem;
    }

    .about-cta-copy {
        align-items: flex-start;
    }
}

/* Keep shared breadcrumb styling authoritative over page-specific responsive rules. */
.shared-page-banner .about-banner-image,
.shared-page-banner .founders-banner-image,
.shared-page-banner .services-banner-image,
.shared-page-banner .projects-banner-image,
.shared-page-banner .products-banner-image,
.shared-page-banner .contact-banner-image {
    background: url("../../images/breadcrumb.png") center/cover no-repeat;
}

.shared-page-banner p {
    color: #f1ece7;
    margin: 0;
}

@media (max-width:991px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 0;
    }

    .leadership-item:nth-child(3) {
        border: 0;
    }

    .founders-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0;
    }

    .founders-stat:nth-child(3) {
        border: 0;
    }

    .founders-contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .founders-contact-details>div {
        border: 0;
    }

    .services-promises {
        flex-wrap: wrap;
        gap: 1rem 2rem;
        padding-bottom: 1rem;
    }

    .services-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0;
    }

    .services-stat:nth-child(3) {
        border: 0;
    }

    .service-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 0;
    }

    .service-process-grid::before {
        display: none;
    }

    .services-cta {
        grid-template-columns: 1fr;
    }

    .products-catalog {
        grid-template-columns: 1fr;
    }

    .product-categories {
        border: 0;
        display: flex;
        flex-wrap: wrap;
        gap: .3rem;
    }

    .product-categories h3 {
        width: 100%;
    }

    .product-categories button {
        width: auto;
    }

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

    .products-benefit-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0;
    }

    .products-benefit-grid>div:nth-child(3) {
        border: 0;
    }

    .products-cta,
    .contact-cta {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
    }

    .contact-info-grid>div:nth-child(2) {
        border: 0;
    }
}

@media (max-width:767px) {
    .founders-banner-image {
        background: linear-gradient(90deg, rgba(16, 15, 14, .95), rgba(16, 15, 14, .48)), url("../images/founders-hero.jpg") 62% center/cover;
    }

    .founder-card {
        padding-bottom: 0;
    }

    .founder-card blockquote {
        position: static;
        width: 100%;
    }

    .founder-photo img {
        max-height: 420px;
    }

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

    .leadership-item:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .leadership-item:nth-child(even) {
        border: 0;
    }

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

    .founders-stat:nth-child(3) {
        border-right: 1px solid #806342;
    }

    .founders-stat:nth-child(even) {
        border: 0;
    }

    .founders-stat:last-child {
        grid-column: 1/-1;
    }

    .founders-journey {
        padding: 1.4rem;
    }

    .founders-contact-copy {
        padding: 1.5rem;
    }

    .services-banner-image {
        background: linear-gradient(90deg, rgba(17, 18, 18, .96), rgba(17, 18, 18, .46)), url("../images/services-hero.jpg") 62% center/cover;
    }

    .services-banner-row {
        min-height: 440px;
    }

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

    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.2rem;
    }

    .services-stat {
        border-bottom: 1px solid var(--line);
        border-right: 0;
        padding: .8rem;
    }

    .services-stat:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .services-stat:last-child {
        grid-column: 1/-1;
    }

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

    .service-process-step:last-child {
        grid-column: 1/-1;
    }

    .services-cta-details {
        grid-template-columns: 1fr;
    }

    .services-cta-details span {
        border: 0;
    }

    .products-banner-image {
        background: linear-gradient(90deg, rgba(18, 17, 15, .94), rgba(18, 17, 15, .5)), url("../images/products-hero.jpg") 65% center/cover;
    }

    .products-quality {
        display: none;
    }

    .product-filters {
        grid-template-columns: 1fr;
    }

    .products-benefit-grid {
        grid-template-columns: 1fr;
    }

    .products-benefit-grid>div {
        border-bottom: 1px solid var(--line);
        border-right: 0;
    }

    .products-cta {
        padding: 1.5rem;
    }

    .products-cta ul {
        border-left: 0;
        padding-left: 0;
    }

    .contact-banner-image {
        background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .55)), url("../images/contact-hero.jpg") 65% center/cover;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid>div {
        border-bottom: 1px solid var(--line);
        border-right: 0;
        padding: 1rem;
    }

    .contact-form-wrap,
    .contact-feature {
        padding: 1.5rem;
    }

    .contact-feature>div {
        max-width: 80%;
    }

    .map-card {
        left: 12px;
        top: 12px;
    }

    .contact-cta {
        padding: 1.5rem;
    }

    .contact-cta-benefits {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-cta-benefits span {
        border: 0;
        padding: 0;
        text-align: left;
    }

    .contact-cta-benefits i {
        display: inline;
        margin-right: .5rem;
    }
}

/* Projects page */
.projects-banner {
    color: #fff;
    min-height: 335px;
    overflow: hidden;
    position: relative;
}

.projects-banner-image {
    background: linear-gradient(90deg, rgba(18, 18, 17, .98), rgba(18, 18, 17, .8) 37%, rgba(18, 18, 17, .06) 72%), url("../images/projects-hero.jpg") center right/cover no-repeat;
    inset: 0;
    position: absolute;
}

/* Shared inner-page banner and breadcrumb */
.shared-page-banner {
    color: #fff;
    min-height: 415px;
    overflow: hidden;
    position: relative;
}

.shared-page-banner .about-banner-image,
.shared-page-banner .founders-banner-image,
.shared-page-banner .services-banner-image,
.shared-page-banner .projects-banner-image,
.shared-page-banner .products-banner-image,
.shared-page-banner .contact-banner-image {
    background: url("../../images/breadcrumb.png") center/cover no-repeat;
    inset: 0;
    position: absolute;
}

.shared-page-banner .about-banner-row,
.shared-page-banner .founders-banner-row,
.shared-page-banner .services-banner-row,
.shared-page-banner .projects-banner-row,
.shared-page-banner .products-banner-row,
.shared-page-banner .contact-banner-row {
    min-height: 415px;
}

.shared-page-banner h1 {
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 .85rem;
}

.shared-page-banner .founders-breadcrumb,
.shared-page-banner .about-breadcrumb,
.shared-page-banner .products-breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.shared-page-banner .founders-breadcrumb a,
.shared-page-banner .about-breadcrumb a,
.shared-page-banner .products-breadcrumb a {
    color: #fff;
}

.shared-page-banner .founders-breadcrumb span,
.shared-page-banner .about-breadcrumb span,
.shared-page-banner .products-breadcrumb span {
    color: #e0a064;
    font-weight: 600;
}

.shared-page-banner .founders-breadcrumb i,
.shared-page-banner .about-breadcrumb i,
.shared-page-banner .products-breadcrumb i {
    color: rgba(255,255,255,.72);
    font-size: .75rem;
}

.shared-page-banner .founders-line {
    background: #c27731;
    display: block;
    height: 2px;
    margin: 1.4rem 0;
    width: 40px;
}

.shared-page-banner p {
    color: #f1ece7;
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
    max-width: 470px;
}

.shared-page-banner .products-quality {
    display: none;
}

.shared-page-banner .services-promises {
    display: none;
}

@media (max-width:767px) {
    .shared-page-banner,
    .shared-page-banner .about-banner-row,
    .shared-page-banner .founders-banner-row,
    .shared-page-banner .services-banner-row,
    .shared-page-banner .projects-banner-row,
    .shared-page-banner .products-banner-row,
    .shared-page-banner .contact-banner-row {
        min-height: 390px;
    }

    .shared-page-banner .about-banner-image,
    .shared-page-banner .founders-banner-image,
    .shared-page-banner .services-banner-image,
    .shared-page-banner .projects-banner-image,
    .shared-page-banner .products-banner-image,
    .shared-page-banner .contact-banner-image {
        background-position: 58% center;
    }

    .shared-page-banner h1 {
        font-size: 2.65rem;
    }
}

.projects-banner-row {
    min-height: 335px;
}

.projects-banner h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
}

.projects-title-line {
    background: #c77a34;
    display: block;
    height: 2px;
    margin: 1.3rem 0;
    width: 35px;
}

.projects-banner p {
    color: #fff;
    font-size: .85rem;
    line-height: 1.7;
    max-width: 410px;
}

.projects-page {
    background: #fdfcfb;
}

.projects-filter-bar {
    align-items: end;
    background: linear-gradient(110deg, #faf7f3, #fff);
    border-radius: 7px;
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1.35fr repeat(4, 1fr) auto;
    margin-bottom: 1.5rem;
    padding: 1rem 1.4rem;
}

.projects-filter-title {
    align-items: center;
    display: flex;
    gap: .75rem;
    height: 38px;
}

.projects-filter-title i {
    color: var(--brand);
    font-size: 1.7rem;
}

.projects-filter-title strong {
    font-size: .72rem;
    text-transform: uppercase;
}

.projects-filter-bar label {
    color: #51473f;
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
}

.projects-filter-bar .form-select {
    border-color: #e0d7cf;
    font-size: .7rem;
    margin-top: .35rem;
}

.projects-filter-bar button {
    background: transparent;
    border: 0;
    color: var(--brand);
    font-size: .7rem;
    font-weight: 700;
    height: 38px;
    text-transform: uppercase;
}

.project-page-card {
    background: #fff;
    border: 1px solid #e7dfd8;
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(39, 28, 20, .05);
    height: 100%;
    overflow: hidden;
    transition: .3s;
}

.project-page-card:hover {
    box-shadow: 0 18px 42px rgba(59, 37, 21, .14);
    transform: translateY(-5px);
}

.project-page-image {
    position: relative;
}

.project-gallery-trigger {
    border: 0;
    cursor: zoom-in;
    display: block;
    overflow: hidden;
    padding: 0;
    text-align: left;
    width: 100%;
}

.project-page-image img {
    aspect-ratio: 1.68;
    object-fit: cover;
    transition: .5s;
    width: 100%;
}

.project-page-card:hover img {
    transform: scale(1.04);
}

.project-page-image span {
    background: #fff;
    border-radius: 99px;
    bottom: -12px;
    color: #493c32;
    font-size: .57rem;
    font-weight: 700;
    left: 12px;
    padding: .42rem .8rem;
    position: absolute;
    text-transform: uppercase;
}

.project-page-copy {
    padding: 1.4rem 1rem 1.1rem;
}

.project-page-copy h2 {
    font-size: 1.15rem;
}

.project-page-copy small {
    color: var(--brand);
    font-size: .62rem;
}

.project-page-copy p {
    color: #332e2a;
    font-size: .73rem;
    min-height: 45px;
}

.project-view-button {
    background: transparent;
    border: 0;
    color: var(--brand);
    font-size: .7rem;
    font-weight: 700;
    padding: 0;
    text-transform: uppercase;
}

.project-view-button:hover {
    color: var(--brand-dark);
}

.projects-empty {
    display: none;
    padding: 3rem;
    text-align: center;
}

.projects-metrics-section {
    padding-bottom: 20px;
}

.projects-metrics {
    background: radial-gradient(circle at center, #292929, #151515);
    border-radius: 7px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.25rem;
}

.projects-metrics>div {
    align-items: center;
    border-right: 1px solid #6a513b;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.projects-metrics>div:last-child {
    border: 0;
}

.projects-metrics i {
    color: #b96f2c;
    font-size: 1.8rem;
}

.projects-metrics strong {
    font-family: var(--serif);
    font-size: 1.6rem;
}

.projects-metrics span {
    font-size: .65rem;
}

.projects-cta {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .82) 45%, rgba(255, 255, 255, .03) 70%), url("../images/projects-bottom.jpg") center right/cover no-repeat;
    border-radius: 7px;
    min-height: 170px;
    padding: 1.8rem 2.3rem;
}

.projects-cta>div {
    max-width: 430px;
}

.projects-cta h2 {
    font-size: 2rem;
}

.projects-cta p {
    color: #2f2925;
    font-size: .75rem;
}

.project-gallery-modal .modal-content {
    background: #111;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.project-gallery-modal .btn-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 5;
}

.project-gallery-modal .carousel-item img {
    height: min(76vh, 760px);
    object-fit: contain;
}

.project-gallery-modal .carousel-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, .9));
    bottom: 0;
    left: 0;
    padding: 5rem 7rem 2rem;
    right: 0;
    text-align: left;
}

.project-gallery-modal .carousel-caption span {
    color: #e0a064;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-gallery-modal .carousel-caption h2 {
    color: #fff;
    font-size: 2rem;
}

.project-gallery-modal .carousel-caption p {
    color: #ddd;
    margin: 0;
}

.project-gallery-modal .carousel-control-prev,
.project-gallery-modal .carousel-control-next {
    width: 8%;
}

@media (max-width:991px) {
    .projects-filter-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-filter-title {
        grid-column: 1/-1;
    }

    .projects-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0;
    }

    .projects-metrics>div:nth-child(3) {
        border: 0;
    }
}

@media (max-width:767px) {
    .projects-banner-image {
        background: linear-gradient(90deg, rgba(18, 18, 17, .95), rgba(18, 18, 17, .45)), url("../images/projects-hero.jpg") 64% center/cover;
    }

    .projects-filter-bar {
        grid-template-columns: 1fr;
    }

    .projects-filter-title {
        grid-column: auto;
    }

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

    .projects-metrics>div:nth-child(3) {
        border-right: 1px solid #6a513b;
    }

    .projects-metrics>div:nth-child(even) {
        border: 0;
    }

    .projects-metrics>div:last-child {
        grid-column: 1/-1;
    }

    .projects-cta {
        padding: 1.5rem;
    }

    .project-gallery-modal .carousel-item img {
        height: 65vh;
    }

    .project-gallery-modal .carousel-caption {
        padding: 4rem 1.5rem 2.2rem;
    }

    .project-gallery-modal .carousel-caption h2 {
        font-size: 1.35rem;
    }
}

/* Final shared banner override */
.shared-page-banner .about-banner-image,
.shared-page-banner .founders-banner-image,
.shared-page-banner .services-banner-image,
.shared-page-banner .projects-banner-image,
.shared-page-banner .products-banner-image,
.shared-page-banner .contact-banner-image {
    background: url("../../images/breadcrumb.png") center/cover no-repeat;
}

.shared-page-banner p {
    color: #f1ece7;
    margin: 0;
}

@media (max-width:767px) {
    .shared-page-banner .about-banner-image,
    .shared-page-banner .founders-banner-image,
    .shared-page-banner .services-banner-image,
    .shared-page-banner .projects-banner-image,
    .shared-page-banner .products-banner-image,
    .shared-page-banner .contact-banner-image {
        background: url("../../images/breadcrumb.png") 58% center/cover no-repeat;
    }
}
