:root {
    --bg: #fbf7f2;
    --text: #1f1b17;
    --muted: #655a4f;
    --surface: #ffffff;
    --primary: #465863;
    --primary-2: #df8a43;
    --accent: #21433a;
    --ring: rgba(180, 83, 42, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.16);
    --glass-bg-soft: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 18px 40px rgba(24, 22, 20, 0.12);
    --glass-lite-bg: rgba(255, 255, 255, 0.12);
    --glass-lite-border: rgba(255, 255, 255, 0.22);
    --glass-deep-bg: rgba(255, 255, 255, 0.64);
    --glass-deep-border: rgba(255, 255, 255, 0.5);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Poppins", inter;
    color: var(--text);
    background:
        radial-gradient(circle at 80% 10%, rgba(223, 138, 67, 0.25), transparent 36%),
        radial-gradient(circle at 10% 70%, rgba(33, 67, 58, 0.2), transparent 35%),
        var(--bg);
    min-height: 100vh;
}

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

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px) saturate(115%);
    -webkit-backdrop-filter: blur(12px) saturate(115%);
    background: rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 22px rgba(15, 13, 11, 0.07);
    transition: background-color 380ms ease, box-shadow 380ms ease;
}

.site-header.is-sticky {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 28px rgba(15, 13, 11, 0.12);
    border-bottom-color: rgba(70, 88, 99, 0.14);
}

.nav-wrap {
    /* min-height: 78px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
        color: white;
}

.brand img {
    height: 6.8rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
}

.nav a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
    transition: color 160ms ease;
}

.nav-whatsapp {
    display: none;
}

.nav a:hover {
    color: var(--text);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.4rem;
    height: 2px;
    margin: 0.28rem auto;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.btn {
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 600;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-outline {
    border: 1px solid var(--glass-lite-border);
    padding: 1rem 2rem;
    color: var(--surface);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    transition: transform 360ms ease, background-color 360ms ease, box-shadow 360ms ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(70, 88, 99, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 1rem;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.15);
    transition: transform 360ms ease, box-shadow 360ms ease, background-color 360ms ease;
}

.btn-icon:hover {
    background: rgba(70, 88, 99, 0.65);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.btn-solid {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 32px rgba(180, 83, 42, 0.33);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.228);
    color: #fff;
    background: rgba(255, 255, 255, 0.315);
}

.hero {
    position: relative;
    padding-top: 0;
}

.hero-slider {
    position: relative;
    overflow: clip;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 520ms cubic-bezier(0.25, 0.92, 0.29, 1);
}

.slide {
    min-width: 100%;
    min-height: clamp(520px, 78vh, 700px);
    position: relative;
    display: grid;
    align-items: center;
    isolation: isolate;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(14, 17, 16, 0.86), rgba(14, 17, 16, 0.35));
    z-index: -1;
}

.slide:nth-child(1) {
    background:
        linear-gradient(160deg, rgba(180, 83, 42, 0.2), transparent 52%),
        radial-gradient(circle at 80% 20%, rgba(223, 138, 67, 0.42), transparent 28%),
        url("../images/hero/slide-1.jpg") center/cover no-repeat,
        #3f2f27;
}

.slide:nth-child(2) {
    background:
        linear-gradient(160deg, rgba(33, 67, 58, 0.24), transparent 52%),
        radial-gradient(circle at 75% 25%, rgba(123, 164, 153, 0.34), transparent 30%),
        url("../images/hero/slide-2.jpg") center/cover no-repeat,
        #2c3330;
}

.slide:nth-child(3) {
    background:
        linear-gradient(160deg, rgba(96, 66, 42, 0.25), transparent 52%),
        radial-gradient(circle at 80% 20%, rgba(255, 188, 122, 0.32), transparent 30%),
        url("../images/hero/slide-3.jpg") center/cover no-repeat,
        #48392d;
}

.slide-content {
    color: #fff;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 1.1rem;
    max-width: 720px;
    margin-inline: auto;
    padding-block: 4rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 450ms ease, transform 450ms ease;
    margin-bottom: 5rem;
}

.slide.is-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-family:"Cormorant Garamond", serif;
    margin-top: 8rem;
    line-height: 1.08;
    font-size: 64px;
    max-width: 48ch;
}

.lead {
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 0.8rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 70ch;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.slide-actions .btn {
    font-size: 0.88rem;
    padding: 1.2rem 4rem;
}

.slider-controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    pointer-events: none;
}

.slider-arrow,
.slider-dots {
    pointer-events: auto;
}

.slider-arrow {
    width: 2.55rem;
    height: 2.55rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    font-size: 1.2rem;
    transition: background-color 340ms ease, transform 340ms ease, box-shadow 340ms ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.14);
}

.slider-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.slider-dot {
    width: 0.56rem;
    height: 0.56rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    transition: width 200ms ease, background-color 200ms ease;
}

.slider-dot.is-active {
    width: 1.8rem;
    background: #fff;
}

:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 2px;
}

/*==================================================
    FURNITURE COLLECTION
==================================================*/

#furniture-collection{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,
        rgba(212,184,145,.18),
        transparent 45%),
        radial-gradient(circle at bottom right,
        rgba(224,203,170,.15),
        transparent 40%),
        #f8f6f2;
}

/* Decorative Blobs */

#furniture-collection::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    left:-180px;
    background:#eadbc5;
    opacity:.25;
    filter:blur(100px);
    border-radius:50%;
}

#furniture-collection::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-200px;
    bottom:-220px;
    background:#efe2d3;
    opacity:.25;
    filter:blur(100px);
    border-radius:50%;
}

#furniture-collection .container{
    position:relative;
    z-index:2;
}

/*=========================================
            HEADER
==========================================*/

.section-subtitle{

    display:block;

    font-size:18px;

    font-weight:500;

    color:#222;

    margin-bottom:10px;
}

.section-title{

    font-family:"Cormorant Garamond", serif;

    font-size:64px;

    line-height:1.08;

    font-weight:500;

    color:#241c18;

    margin-bottom:18px;
}

.section-description{

    max-width:660px;

    margin:auto;

    font-size:19px;

    line-height:1.7;

    color:#5b5550;
}

/*=========================================
        FEATURED CARD
==========================================*/

.featured-furniture{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:28px;

    height:620px;

    text-decoration:none;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}

.featured-furniture img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;
}

.featured-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.68),
        rgba(0,0,0,.25),
        rgba(0,0,0,.05)
    );

    transition:.5s;
}

.featured-content{

    position:absolute;

    left:40px;

    right:40px;

    bottom:40px;

    color:#fff;

    z-index:5;
}

.featured-content h3{

    font-family:"Cormorant Garamond", serif;

    font-size:40px;

    line-height:1.05;

    font-weight:500;

    margin-bottom:28px;
}

.btn-explore{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:17px 34px;

    border-radius:999px;

    background:#111;

    color:#fff;

    font-weight:500;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.2);
}

.btn-explore i{

    font-size:18px;

    transition:.35s;
}

/* Hover */

.featured-furniture:hover img{

    transform:scale(1.08);
}

.featured-furniture:hover .featured-overlay{

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,.35),
        rgba(0,0,0,.08)
    );
}

.featured-furniture:hover .btn-explore{

    transform:translateY(-5px);

    background:#000;

    box-shadow:
    0 22px 45px rgba(0,0,0,.35);
}

.featured-furniture:hover .btn-explore i{

    transform:translate(3px,-3px);
}

/*=========================================
        CATEGORY CARD
==========================================*/

.category-card{

    position:relative;

    display:block;

    height:140px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,.07);

    transition:all .45s ease;
}

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;
}

.category-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(255,255,255,.18),
        rgba(0,0,0,.10)
    );
}

.category-title{

    position:absolute;

    top:18px;

    left:18px;

    right:55px;

    color:#ffffff;

    font-size:16px;

    font-weight:500;

    line-height:1.2;

    z-index:5;
}

.category-arrow{

    position:absolute;

    top:16px;

    right:16px;

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(8px);

    color:#111;

    z-index:5;

    transition:.4s;
}

.category-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.14);
}

.category-card:hover img{

    transform:scale(1.08);
}

.category-card:hover .category-arrow{

    transform:
    translate(3px,-3px)
    rotate(15deg);
}

/*=========================================
            INFO CARDS
==========================================*/

.info-card{

    background:rgba(255, 255, 255, 0.54);
    border:1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);

    border-radius:18px;

    height:92px;

    display:flex;

    align-items:center;

    padding:18px;

    gap:16px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.06);

    transition:transform .4s ease, box-shadow .4s ease, background-color .4s ease;
}

.info-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#1f1713;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

    transition:.35s;
}

.info-text{

    line-height:1.15;
}

.info-text span{

    display:block;

    font-size:15px;

    color:#444;
}

.info-text strong{

    display:block;

    font-size:16px;

    color:#111;

    font-weight:600;
}

.info-card:hover{

    transform:translateY(-6px);

    background:rgba(255, 255, 255, 0.62);

    box-shadow:
    0 25px 55px rgba(0,0,0,.12);
}

.info-card:hover .info-icon{

    transform:scale(1.08);
}

/*=========================================
            RESPONSIVE
==========================================*/

@media(max-width:1199px){

    .section-title{

        font-size:52px;
    }

    .featured-content h3{

        font-size:44px;
    }

    .featured-furniture{

        height:520px;
    }

}

@media(max-width:991px){

    #furniture-collection{

        padding:80px 0;
    }

    .featured-furniture{

        margin-bottom:30px;
    }

}

@media(max-width:767px){

    .section-title{

        font-size:38px;
    }

    .section-description{

        font-size:16px;
    }

    .featured-furniture{

        height:420px;
    }

    .featured-content{

        left:25px;

        right:25px;

        bottom:25px;
    }

    .featured-content h3{

        font-size:32px;

        margin-bottom:20px;
    }

    .btn-explore{

        padding:14px 24px;

        font-size:15px;
    }

    .category-title{

        font-size:18px;
    }

    .info-card{

        height:auto;
    }
}

/*==================================================
    ARCHITECTURAL BOARD PANELS
==================================================*/

#architectural-panels{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,
        rgba(220,197,170,.16),
        transparent 45%),
        radial-gradient(circle at bottom right,
        rgba(232,215,192,.14),
        transparent 42%),
        #f8f6f2;
}

#architectural-panels::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    left:-180px;
    background:#efe2d1;
    border-radius:50%;
    filter:blur(110px);
    opacity:.30;
}

#architectural-panels::after{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    right:-220px;
    bottom:-220px;
    background:#eadbc5;
    border-radius:50%;
    filter:blur(120px);
    opacity:.25;
}

#architectural-panels .container{
    position:relative;
    z-index:2;
}

/*=========================================
            SECTION HEADER
==========================================*/

.panel-title{

    font-family:"Cormorant Garamond", serif;

    font-size:60px;

    font-weight:500;

    line-height:1.08;

    color:#241c18;

    margin-bottom:18px;
}

.panel-description{

    max-width:520px;

    font-size:19px;

    line-height:1.75;

    color:#5b5550;

    margin-bottom:0;
}

/*=========================================
            PANEL GRID
==========================================*/

.panel-card{
    display:block;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    transition:all .45s ease;
    height:100%;
}

.panel-image{

    position:relative;

    height:100px;

    overflow:hidden;

    background:#f3f3f3;
}

.panel-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;
}

.panel-content{

    padding:16px;
}

.panel-content h6{
    font-size:12px;
    font-weight:500;
    color:#191919;
    margin-bottom:12px;
    line-height:1.35;
    min-height:25px;
}

.panel-content span{

    display:inline-flex;

    align-items:center;

    gap:6px;

    font-size:13px;

    font-weight:500;

    color:#6d655f;

    transition:.35s;
}

.panel-content span i{

    font-size:15px;

    transition:.35s;
}

/*=========================================
            CARD HOVER
==========================================*/

.panel-card:hover{
    transform:translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,.12);
}

.panel-card:hover img{

    transform:scale(1.08);
}

.panel-card:hover span{

    color:#111;
}

.panel-card:hover span i{

    transform:translateX(4px);
}

/*=========================================
            CTA BUTTON
==========================================*/

.btn-panel-explore{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:62px;

    padding:0 38px;

    border-radius:999px;

    background:#202020;

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:all .35s ease;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);
}

.btn-panel-explore i{

    transition:.35s;
}

.btn-panel-explore:hover{

    color:#fff;

    background:#000;

    transform:translateY(-5px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.28);
}

.btn-panel-explore:hover i{

    transform:
        translate(4px,-4px);
}

/*=========================================
            RIGHT IMAGE
==========================================*/

.panel-showcase{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:100%;

    min-height:760px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.10);
}

.panel-showcase img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;
}

.panel-showcase-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.18)
        );

    transition:.4s;
}

.panel-showcase:hover img{

    transform:scale(1.06);
}

.panel-showcase:hover .panel-showcase-overlay{

    background:
        linear-gradient(
            rgba(0,0,0,.02),
            rgba(0,0,0,.24)
        );
}

/*=========================================
            RESPONSIVE
==========================================*/

@media (max-width:1199px){

    .panel-title{

        font-size:50px;
    }

    .panel-showcase{

        min-height:680px;
    }

}

@media (max-width:991px){

    #architectural-panels{

        padding:80px 0;
    }

    .panel-showcase{

        min-height:550px;

        margin-top:50px;
    }

}

@media (max-width:767px){

    .panel-title{

        font-size:38px;
    }

    .panel-description{

        font-size:16px;
    }

    .panel-image{

        height:110px;
    }

    .panel-content{

        padding:14px;
    }

    .panel-content h6{

        font-size:15px;

        min-height:auto;
    }

    .btn-panel-explore{

        width:100%;

        height:56px;

        font-size:16px;
    }

    .panel-showcase{

        min-height:420px;

        border-radius:22px;
    }

}


@media (max-width: 920px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 50%;
        right: auto;
        /* width: min(440px, 94vw);
        display: grid; */
        justify-items: center;
        gap: 0;
        margin-top: 0.45rem;
        padding: 0.45rem 0.5rem 0.7rem;
        border: 1px solid rgba(31, 27, 23, 0.1);
        border-radius: 16px;
        background: rgba(251, 247, 242, 0.98);
        box-shadow: 0 16px 28px rgba(15, 13, 11, 0.13);
        transform-origin: top;
        transform: translateX(-50%) scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 220ms ease;
    }

    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 10px;
        padding: 0.78rem 1rem;
        margin: 0.12rem 0;
        width: 100%;
    }

    .nav a:hover {
        background: rgba(70, 88, 99, 0.08);
    }

    .nav-whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        margin: 0.58rem auto 0.2rem;
        padding: 0.82rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #1db954, #25d366);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        width: calc(100% - 1.2rem);
        box-shadow: 0 12px 22px rgba(29, 185, 84, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.45);
        transition: transform 320ms ease, box-shadow 320ms ease;
    }

    .nav-whatsapp i {
        font-size: 1.06rem;
    }

    .nav-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(29, 185, 84, 0.38);
    }

    .nav.is-open {
        transform: translateX(-50%) scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .btn-outline {
        display: none;
    }
}

@media (max-width: 640px) {
    .slide {
        min-height: 76vh;
    }

    .slide-content {
        padding-block: 3.2rem;
        gap: 0.9rem;
    }

    h1 {
        max-width: 15ch;
    }

    .slider-controls {
        bottom: 0.9rem;
    }

    .slider-arrow {
        width: 2.2rem;
        height: 2.2rem;
    }
}

/*=====================================
        IMAGE REVEAL
======================================*/

.image-loading,
.panel-loading{

    opacity:0;

    filter:blur(10px);

    transition:
        opacity .8s ease,
        filter .8s ease;
}

.image-loaded,
.panel-loaded{

    opacity:1;

    filter:blur(0);
}

/*=====================================
        BUTTON RIPPLE
======================================*/

.btn-ripple,
.panel-ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.35);

    animation:panelRipple .7s linear;

    pointer-events:none;
}

/*==================================================
                TESTIMONIALS
==================================================*/

#testimonials {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(224, 203, 170, .18), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 184, 145, .18), transparent 46%),
        #f8f6f2;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 22px;
    background: var(--glass-deep-bg);
    border: 1px solid var(--glass-deep-border);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    padding: 32px 28px;
    box-shadow: var(--glass-shadow);
    transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.66);
    box-shadow: 0 30px 60px rgba(22, 20, 18, .18);
}

.testimonial-rating {
    display: inline-flex;
    gap: 6px;
    color: #c4985f;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #4f4740;
    line-height: 1.75;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0e6d9;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #1f1b17;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: #72675e;
}

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

#faq {
    position: relative;
    background: #f5f2ed;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
    transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 36px rgba(0, 0, 0, .11);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #1f1b17;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 24px;
    transition: color 320ms ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #1f1b17;
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(70, 88, 99, .15);
}

.faq-accordion .accordion-body {
    color: #5b5550;
    line-height: 1.75;
    padding: 0 24px 22px;
}

.faq-accordion .accordion-button::after {
    background-size: 1.1rem;
}

@keyframes panelRipple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==================================================
                SITE FOOTER
==================================================*/

#site-footer{
    position:relative;
    overflow:hidden;
    background:#1f1f1f;
    color:#fff;
}

/*==================================================
                CTA SECTION
==================================================*/

.footer-cta{
    position:relative;
    height:520px;
    overflow:hidden;
}

.footer-cta-image{
    position:absolute;
    inset:0;
}

.footer-cta-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 8s ease;
}

.footer-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(0,0,0,.30),
            rgba(0,0,0,.45)
        );
}

.footer-cta:hover img{
    transform:scale(1.08);
}

.footer-cta .container{
    position:relative;
    z-index:2;
    height:100%;
}

.footer-cta .row{
    height:100%;
}

.footer-cta-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100%;
}

.footer-cta-content h2{

    font-family:"Cormorant Garamond", serif;

    font-size:68px;

    font-weight:500;

    line-height:1.08;

    color:#fff;

    margin-bottom:40px;

    text-align:center;

    text-shadow:
        0 5px 20px rgba(0,0,0,.25);

}

.footer-cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:64px;

    padding:0 42px;

    border-radius:999px;

    background:#2a2a2a;

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.35s;

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);

}

.footer-cta-btn i{

    transition:.35s;

}

.footer-cta-btn:hover{

    color:#fff;

    background:#000;

    transform:translateY(-5px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.35);

}

.footer-cta-btn:hover i{

    transform:
        translate(4px,-4px);

}

/*==================================================
                MAIN FOOTER
==================================================*/

.footer-main{

    background:#262626;

    padding:75px 0;

}

.footer-brand img{

    max-width:180px;

    margin-bottom:18px;

}

.footer-brand p{

    color:#a7a7a7;

    font-size:15px;

    letter-spacing:1px;

    line-height:1.6;

    text-transform:uppercase;

    margin:0;

}

/*==================================================
                LINKS
==================================================*/

.footer-links ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    color:#d9d9d9;

    text-decoration:none;

    font-size:15px;

    transition:.35s;

    position:relative;

}

.footer-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:0;

    height:1px;

    background:#fff;

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

}

.footer-links a:hover::after{

    width:100%;

}

/*==================================================
                NEWSLETTER
==================================================*/

.newsletter-group{

    display:flex;

    align-items:center;

    border:1px solid rgba(255,255,255,.18);

    border-radius:999px;

    overflow:hidden;

    height:54px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

}

.newsletter-group input{

    flex:1;

    height:100%;

    border:none;

    outline:none;

    background:transparent;

    padding:0 22px;

    color:#fff;

    font-size:14px;

}

.newsletter-group input::placeholder{

    color:#9d9d9d;

}

.newsletter-group button{

    border:none;

    height:100%;

    padding:0 24px;

    background:transparent;

    color:#fff;

    font-weight:500;

    transition:.35s;

}

.newsletter-group:hover{

    border-color:rgba(255,255,255,.45);

}

.newsletter-group button:hover{

    background:#fff;

    color:#111;

}

/*==================================================
                SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:18px;

    margin-top:35px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#fff;

    color:#111;

    transform:translateY(-5px);

}

/*==================================================
                NAVIGATION
==================================================*/

.footer-navigation{

    display:flex;

    justify-content:flex-end;

    gap:10px;

    margin-top:40px;

}

.footer-navigation a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    transition:.35s;

    text-decoration:none;

}

.footer-navigation a:hover{

    background:#fff;

    color:#111;

    transform:translateY(-4px);

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1199px){

    .footer-cta-content h2{

        font-size:56px;

    }

}

@media(max-width:991px){

    .footer-cta{

        height:430px;

    }

    .footer-main{

        text-align:center;

    }

    .footer-brand{

        margin-bottom:30px;

    }

    .footer-brand img{

        margin:auto auto 20px;

        display:block;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-navigation{

        justify-content:center;

    }

}

@media(max-width:767px){

    .footer-cta{

        height:360px;

    }

    .footer-cta-content h2{

        font-size:38px;

        margin-bottom:25px;

    }

    .footer-cta-btn{

        width:100%;

        max-width:320px;

        height:56px;

        font-size:15px;

    }

    .newsletter-group{

        flex-direction:column;

        height:auto;

        border-radius:18px;

    }

    .newsletter-group input{

        width:100%;

        height:55px;

    }

    .newsletter-group button{

        width:100%;

        height:52px;

        border-top:1px solid rgba(255,255,255,.10);

    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .faq-accordion .accordion-button {
        font-size: 16px;
        padding: 18px 16px;
    }

    .faq-accordion .accordion-body {
        padding: 0 16px 16px;
    }

}

/*==================================================
                FURNITURE PAGE
==================================================*/

.furniture-page-hero,
.single-furniture-hero {
    padding-top: 10.5rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(circle at top right, rgba(223, 138, 67, 0.18), transparent 36%),
        radial-gradient(circle at bottom left, rgba(70, 88, 99, 0.14), transparent 36%),
        #f8f5ef;
}

.furniture-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    margin: 0.65rem 0 1rem;
}

.furniture-hero-copy {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #51483f;
    max-width: 56ch;
}

.furniture-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.furniture-hero-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(15, 13, 11, 0.14);
    transition: transform 380ms ease, box-shadow 380ms ease;
}

.furniture-hero-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 62px rgba(15, 13, 11, 0.18);
}

.furniture-hero-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.furniture-stat-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(240px, 84%);
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.furniture-stat-card strong {
    display: block;
    font-size: 1.4rem;
    color: #1f1b17;
}

.furniture-stat-card span {
    font-size: 0.9rem;
    color: #5b5550;
}

.furniture-filter-strip {
    margin-top: -1rem;
    padding-bottom: 2rem;
}

.furniture-filter-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #5b5550;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 340ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: #465863;
    color: #fff;
}

.furniture-catalog-card {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition: transform 380ms ease, box-shadow 380ms ease;
}

.furniture-catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.13);
}

.furniture-catalog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.furniture-catalog-card:hover img {
    transform: scale(1.05);
}

.catalog-content {
    padding: 1.2rem 1.2rem 1.4rem;
}

.catalog-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin: 0 0 0.45rem;
}

.catalog-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #595147;
    line-height: 1.7;
}

.catalog-content span {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #2b3a44;
    font-size: 0.9rem;
    font-weight: 600;
}

.signature-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.signature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-content p {
    color: #544b42;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.signature-content ul {
    margin: 0 0 1.2rem;
    padding-left: 1.2rem;
    color: #51483f;
}

.material-library {
    background: #f4f0e9;
}

.material-card {
    min-height: 130px;
    border-radius: 16px;
    display: flex;
    align-items: end;
    padding: 1rem;
    background: linear-gradient(160deg, rgba(70, 88, 99, 0.15), rgba(70, 88, 99, 0.03)), #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
    transition: transform 360ms ease, box-shadow 360ms ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.material-card span {
    font-size: 0.92rem;
    font-weight: 600;
    color: #2f2a25;
}

.furniture-page-cta {
    background: #f8f6f2;
}

.furniture-page-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin-bottom: 1.1rem;
}

/*==================================================
            SINGLE FURNITURE PAGE
==================================================*/

.breadcrumb-wrap {
    margin-bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: #5e564c;
}

.single-furniture-gallery {
    border-radius: 22px;
    overflow: hidden;
}

.single-furniture-gallery .main-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

.thumb-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.thumb-grid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
}

.single-furniture-content h1 {
    margin: 0.45rem 0 0.85rem;
    font-size: clamp(2rem, 4.1vw, 3.1rem);
    line-height: 1.08;
}

.single-furniture-content p {
    color: #544b42;
    line-height: 1.8;
}

.single-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.2rem 0;
}

.single-meta-grid div {
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.single-meta-grid strong,
.single-meta-grid span {
    display: block;
}

.single-meta-grid strong {
    font-size: 0.82rem;
    color: #6a6258;
}

.single-meta-grid span {
    margin-top: 0.2rem;
    font-weight: 700;
    color: #1f1b17;
}

.single-furniture-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.detail-card {
    border-radius: 18px;
    padding: 1.4rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.detail-card ul {
    margin: 0.8rem 0 0;
    padding-left: 1.25rem;
    color: #544b42;
}

.detail-glass {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.finish-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.finish-tags span {
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(70, 88, 99, 0.1);
    color: #2b3640;
    font-size: 0.84rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .furniture-page-hero,
    .single-furniture-hero {
        padding-top: 8.5rem;
    }

    .furniture-hero-media img {
        min-height: 400px;
    }

    .single-furniture-gallery .main-image {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .furniture-page-hero,
    .single-furniture-hero {
        padding-top: 7.6rem;
    }

    .furniture-filter-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .single-meta-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================================
                BOARD PAGES
==================================================*/

.board-page-hero {
    padding-top: 10.5rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(circle at top right, rgba(220, 197, 170, 0.2), transparent 38%),
        radial-gradient(circle at bottom left, rgba(70, 88, 99, 0.12), transparent 38%),
        #f7f3ec;
}

.board-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.9rem);
    line-height: 1.08;
    margin: 0.6rem 0 0.95rem;
}

.board-hero-copy {
    color: #544b42;
    line-height: 1.78;
    max-width: 56ch;
}

.board-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.board-hero-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(18, 16, 14, 0.14);
    transition: transform 380ms ease, box-shadow 380ms ease;
}

.board-hero-media img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.board-hero-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 62px rgba(18, 16, 14, 0.18);
}

.board-filter-strip {
    margin-top: -1rem;
    padding-bottom: 2rem;
}

.board-filter-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.board-catalog {
    background: #f8f6f2;
}

@media (max-width: 991px) {
    .board-page-hero {
        padding-top: 8.5rem;
    }

    .board-hero-media img {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .board-page-hero {
        padding-top: 7.6rem;
    }

    .board-filter-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

/*==================================================
                PROJECT PAGES
==================================================*/

.projects-hero,
.project-case-hero {
    padding-top: 10.5rem;
    padding-bottom: 3.5rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(223, 138, 67, 0.16), transparent 36%),
        radial-gradient(circle at 15% 70%, rgba(70, 88, 99, 0.13), transparent 38%),
        #f7f4ee;
}

.projects-hero-title,
.project-case-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    line-height: 1.06;
    margin: 0.65rem 0 0.95rem;
}

.projects-hero-copy,
.project-case-copy {
    max-width: 60ch;
    color: #554c42;
    line-height: 1.78;
}

.projects-hero-meta {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
}

.projects-hero-meta strong {
    display: block;
    color: #1f1b17;
    font-size: 1.4rem;
}

.projects-hero-meta span {
    font-size: 0.92rem;
    color: #63594f;
}

.projects-layout {
    background: #f8f6f2;
}

.projects-sidebar {
    position: sticky;
    top: 7rem;
    border-radius: 18px;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.projects-sidebar h3 {
    margin: 0 0 0.85rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.projects-sidebar a {
    display: block;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    margin-bottom: 0.45rem;
    color: #4f463d;
    font-weight: 600;
    transition: all 340ms ease;
}

.projects-sidebar a:hover,
.projects-sidebar a.is-active {
    background: #465863;
    color: #fff;
}

.project-feature {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.3rem;
}

.project-feature img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.project-feature-content {
    height: 100%;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-feature-content h2 {
    margin: 0.5rem 0 0.8rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    line-height: 1.1;
}

.project-feature-content p {
    color: #564d44;
    line-height: 1.75;
}

.project-feature-content ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.15rem;
    color: #4e463d;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(70, 88, 99, 0.12);
    color: #2f3d48;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-stream {
    display: grid;
    gap: 1rem;
}

.project-stream-item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1rem;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 360ms ease, box-shadow 360ms ease;
}

.project-stream-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-stream-item img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

.project-stream-item > div {
    padding: 1rem 1rem 1rem 0;
}

.project-stream-item h3 {
    margin: 0.5rem 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.project-stream-item p {
    color: #564d44;
    line-height: 1.7;
    margin-bottom: 0.55rem;
}

.project-stream-item a {
    color: #2f3d48;
    font-weight: 700;
}

.projects-cta {
    background: #f5f1ea;
}

.projects-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin-bottom: 1.1rem;
}

.project-case-kpis {
    display: grid;
    gap: 0.7rem;
}

.project-case-kpis div {
    padding: 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
}

.project-case-kpis strong,
.project-case-kpis span {
    display: block;
}

.project-case-kpis strong {
    font-size: 1.15rem;
    color: #1f1b17;
}

.project-case-kpis span {
    font-size: 0.85rem;
    color: #63594f;
}

.project-case-cover {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

.project-case-cover img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.case-block {
    border-radius: 16px;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 0.95rem;
}

.case-block h2 {
    margin: 0 0 0.45rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
}

.case-block p {
    margin: 0;
    color: #5a5047;
    line-height: 1.78;
}

.case-sidebar {
    position: sticky;
    top: 7rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    padding: 1.1rem;
}

.case-sidebar h3 {
    margin: 0 0 0.6rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.case-sidebar ul {
    margin: 0 0 1rem;
    padding-left: 1rem;
    color: #534a41;
    line-height: 1.7;
}

.project-gallery-strip img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .projects-hero,
    .project-case-hero {
        padding-top: 8.5rem;
    }

    .projects-sidebar,
    .case-sidebar {
        position: static;
    }

    .project-stream-item {
        grid-template-columns: 1fr;
    }

    .project-stream-item > div {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 767px) {
    .projects-hero,
    .project-case-hero {
        padding-top: 7.6rem;
    }

    .project-feature img {
        min-height: 260px;
    }

    .project-gallery-strip img {
        height: 220px;
    }
}

/*==================================================
                ABOUT PAGE
==================================================*/

.about-hero {
    padding-top: 10.5rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(223, 138, 67, 0.14), transparent 36%),
        radial-gradient(circle at 12% 65%, rgba(70, 88, 99, 0.12), transparent 34%),
        #f8f4ee;
}

.about-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
    margin: 0.6rem 0 0.9rem;
}

.about-hero-copy {
    max-width: 56ch;
    color: #564d44;
    line-height: 1.78;
}

.about-hero-actions {
    margin-top: 1.35rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.about-outline-btn {
    color: #fff;
    border-color: rgba(70, 88, 99, 0.35);
    background: rgba(70, 88, 99, 0.75);
}

.about-hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.13);
    transition: transform 360ms ease, box-shadow 360ms ease;
}

.about-hero-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.16);
}

.about-hero-media img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.about-stat-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    border-radius: 14px;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.about-stat-card strong,
.about-stat-card span {
    display: block;
}

.about-stat-card strong {
    font-size: 1.2rem;
    color: #1f1b17;
}

.about-stat-card span {
    font-size: 0.83rem;
    color: #645a50;
}

.brand-story {
    background: #f7f4ee;
}

.story-row {
    position: relative;
    margin-bottom: 1.25rem;
}

.story-row::before {
    content: "";
    position: absolute;
    left: 40%;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(70, 88, 99, 0.25), rgba(70, 88, 99, 0.05));
}

.story-image {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.story-content {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.1rem;
}

.story-year {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2c3a45;
    background: rgba(70, 88, 99, 0.11);
    margin-bottom: 0.55rem;
}

.story-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin: 0 0 0.55rem;
}

.story-content p {
    margin: 0;
    color: #584f45;
    line-height: 1.75;
}

.principles-grid {
    background: #faf8f4;
}

.principle-card {
    height: 100%;
    border-radius: 20px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    transition: transform 360ms ease, box-shadow 360ms ease;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.principle-icon {
    font-size: 1.35rem;
    color: #2f3d48;
    transition: transform 360ms ease;
}

.principle-card:hover .principle-icon {
    transform: translateX(3px);
}

.principle-card h3 {
    margin: 0.7rem 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.principle-card p {
    margin: 0;
    color: #5a5148;
    line-height: 1.72;
}

.craft-process {
    background: #f5f1ea;
}

.process-step {
    height: 100%;
    border-radius: 16px;
    padding: 1.15rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2f3d48;
    background: rgba(70, 88, 99, 0.12);
    border: 1px solid rgba(70, 88, 99, 0.15);
    transition: box-shadow 360ms ease, transform 360ms ease;
}

.process-step:hover .process-number {
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(70, 88, 99, 0.09);
}

.process-step h3 {
    margin: 0.7rem 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
}

.process-step p {
    margin: 0;
    color: #5c5349;
    line-height: 1.72;
}

.studio-showcase {
    background: #faf8f4;
}

.studio-media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.studio-media img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    transition: transform 380ms ease;
}

.studio-media:hover img {
    transform: scale(1.03);
}

.studio-showcase h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 0.8rem;
}

.studio-showcase p {
    margin: 0 0 1rem;
    color: #564d44;
    line-height: 1.78;
}

.studio-metrics {
    display: grid;
    gap: 0.8rem;
}

.studio-metric-card {
    border-radius: 14px;
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.studio-metric-card h3 {
    margin: 0 0 0.35rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
}

.studio-metric-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.68;
}

.leadership-wrap {
    background: #f6f2ec;
}

.leadership-quote {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-quote p {
    margin: 0 0 0.9rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    line-height: 1.2;
}

.leadership-quote h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.leadership-quote span {
    margin-top: 0.2rem;
    color: #62584f;
    font-size: 0.9rem;
}

.team-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.team-mini-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.team-mini-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.team-mini-card h4 {
    margin: 0.65rem 0 0.2rem;
    padding: 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
}

.team-mini-card span {
    display: block;
    padding: 0 0.75rem 0.75rem;
    font-size: 0.86rem;
    color: #60564d;
}

.trust-bar {
    background: #faf8f4;
}

.trust-item {
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(70, 88, 99, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    min-height: 84px;
}

.trust-item i {
    font-size: 1.2rem;
    color: #2f3d48;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #453d35;
}

.about-cta-band {
    background: linear-gradient(140deg, #2f3d48, #465863);
}

.about-cta-band h2 {
    font-family: "Cormorant Garamond", serif;
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin: 0 0 1rem;
}

@media (max-width: 991px) {
    .about-hero {
        padding-top: 8.6rem;
    }

    .about-hero-media img {
        min-height: 380px;
    }

    .story-row::before {
        display: none;
    }

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

@media (max-width: 767px) {
    .about-hero {
        padding-top: 7.6rem;
    }

    .about-hero-actions .btn {
        width: 100%;
    }

    .about-hero-media img {
        min-height: 300px;
    }

    .story-image,
    .studio-media img {
        height: 260px;
        min-height: 260px;
    }

    .team-mini-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================================
                CONTACT PAGE
==================================================*/

.contact-hero {
    padding-top: 10.5rem;
    padding-bottom: 3.2rem;
    background:
        radial-gradient(circle at 80% 15%, rgba(223, 138, 67, 0.15), transparent 36%),
        radial-gradient(circle at 15% 70%, rgba(70, 88, 99, 0.12), transparent 34%),
        #f8f4ee;
}

.contact-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.9rem);
    line-height: 1.08;
    margin: 0.65rem 0 0.85rem;
}

.contact-hero-copy {
    max-width: 62ch;
    margin: 0 auto;
    color: #564d44;
    line-height: 1.8;
}

.contact-methods {
    background: #f9f6f1;
}

.contact-method-card {
    height: 100%;
    border-radius: 18px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 360ms ease, box-shadow 360ms ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-method-card i {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(70, 88, 99, 0.12);
    color: #2f3d48;
    margin-bottom: 0.7rem;
}

.contact-method-card h3 {
    margin: 0 0 0.35rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.95rem;
}

.contact-method-card p {
    margin: 0 0 0.55rem;
    color: #5b5249;
    line-height: 1.72;
}

.contact-method-card a {
    font-weight: 700;
    color: #2c3a45;
}

.contact-form-wrap {
    background: #f6f2eb;
}

.contact-form {
    border-radius: 20px;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.contact-form .form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #463e36;
    margin-bottom: 0.35rem;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(70, 88, 99, 0.2);
    box-shadow: none;
    transition: border-color 340ms ease, box-shadow 340ms ease, background-color 340ms ease;
}

.contact-form textarea.form-control {
    min-height: 170px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(70, 88, 99, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(70, 88, 99, 0.13);
    background-color: #fff;
}

.contact-form .btn {
    margin-top: 0.3rem;
}

.project-snapshot {
    border-radius: 16px;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.project-snapshot h3 {
    margin: 0 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
}

.project-snapshot p {
    margin: 0 0 0.7rem;
    color: #5a5148;
    line-height: 1.72;
}

.project-snapshot ul {
    margin: 0 0 0.9rem;
    padding-left: 1.1rem;
    color: #51483f;
    line-height: 1.7;
}

.snapshot-meta {
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(70, 88, 99, 0.08);
}

.snapshot-meta strong,
.snapshot-meta span {
    display: block;
}

.snapshot-meta strong {
    font-size: 0.84rem;
    color: #413830;
}

.snapshot-meta span {
    margin-top: 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2f3d48;
}

.studio-location {
    background: #f9f6f1;
}

.location-map-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.location-map-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.map-caption {
    padding: 0.8rem 1rem;
    font-size: 0.86rem;
    color: #5d544a;
}

.location-address-card {
    border-radius: 18px;
    background: #fff;
    padding: 1.15rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.location-address-card h2 {
    margin: 0 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.location-address-card p {
    margin: 0 0 0.7rem;
    color: #564d44;
    line-height: 1.75;
}

.location-address-card ul {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: #51483f;
    line-height: 1.7;
}

.hours-promise {
    background: #f5f1ea;
}

.hours-promise-inner {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hours-promise-inner strong,
.hours-promise-inner span {
    display: block;
}

.hours-promise-inner strong {
    font-size: 0.9rem;
    color: #2f3d48;
}

.hours-promise-inner span {
    margin-top: 0.25rem;
    color: #5a5148;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-hero {
        padding-top: 8.6rem;
    }

    .project-snapshot {
        position: static;
    }

    .hours-promise-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding-top: 7.6rem;
    }

    .contact-method-card {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-form .btn {
        width: 100%;
    }

    .location-map-card img {
        min-height: 260px;
    }
}