@charset "UTF-8";
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root {
    --translateY-scroll: 0px;
    --clr-bg: #151515;
    --clr-primary: #c19b5f;
    --clr-secondary: #1a1a1a;
    --clr-txt: #ffffff;
    --clr-txt-dim: rgba(255,255,255,0.8);
    --clr-txt-muted: rgba(255,255,255,0.55);
}
html{scroll-behavior:smooth;font-size:16px}
body{
    background: #151515;
    color: #fff;
    font-family: 'Arapey', serif;
    font-weight:400;
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
    overflow-x: hidden;
}
body.nav-open{overflow:hidden}

img{max-width:100%;height:auto;display:block}
a{color:#fff;text-decoration:none;transition:color .25s ease}
a:hover{color:#c19b5f}
ul{list-style:none}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip{position:absolute;top:-999px;left:-999px;z-index:999;padding:8px 15px;background:#c19b5f;color:#151515;font-size:14px}
.skip:focus{top:0;left:0}

.container{
    width:100%;
    max-width: 1200px;
    margin:0 auto;
    padding: 0 30px;
}

/* === HEADER === */
.site-header{
    position: fixed;
    top:0;left:0;right:0;
    z-index:100;
    width:100%;
}
.site-header-desktop{
    transition: background .35s ease, box-shadow .3s ease;
}
.site-header-desktop-primary{padding:22px 0}
.site-header-desktop-primary--floatable{
    background:transparent;
    transition: background .35s ease;
}
.site-header-desktop.is-scrolled .site-header-desktop-primary--floatable{
    background:rgba(21,21,21,0.95);
    box-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.site-header-desktop-primary .container{
    display: flex;
    align-items:center;
    justify-content: space-between;
}
.site-logo__btn{display:inline-block}
.site-logo__expanded{
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.site-nav-menu{
    display:flex;
    align-items:center;
    gap: 0;
}
.site-nav-menu[data-menu-type="desktop"] > li{
    position:relative;
}
.site-nav-link {
    display: inline-block;
    padding: 10px 18px;
    font-family:'Antonio', sans-serif;
    font-size: 13px;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing: 2.2px;
    color:#fff;
    transition: color .2s ease;
    background:none;
    border:none;
    cursor:pointer;
}
.site-nav-link:hover{color: #c19b5f}

.site-nav-submenu{position:relative}
.site-nav-submenu-toggle{
    display:inline-flex;
    align-items:center;
    gap:5px;
}
.site-nav-submenu-toggle::after{
    content:'\f078';
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    font-size:9px;
    transition: transform .2s ease;
}
.site-nav-submenu-toggle[aria-expanded="true"]::after{
    transform:rotate(180deg);
}
.sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:rgba(26,26,26,0.97);
    min-width: 220px;
    padding: 12px 0;
    border:1px solid rgba(193,155,95,0.15);
    z-index:50;
}
.sub-menu.is-open{display:block}
.sub-menu ul{padding:0}
.sub-menu li a{
    display:block;
    padding: 9px 22px;
    font-family:'Antonio', sans-serif;
    font-size: 12px;
    text-transform:uppercase;
    letter-spacing:1.8px;
    color: rgba(255,255,255,0.8);
    transition: color .2s ease, background .2s ease;
}
.sub-menu li a:hover{
    color: #c19b5f;
    background:rgba(193,155,95,0.06);
}

.btn{
    display:inline-block;
    cursor:pointer;
    border:none;
    font-family:'Antonio', sans-serif;
    text-transform:uppercase;
    letter-spacing: 2px;
    transition: all .25s ease;
}
.btn-brand{
    background: transparent;
    color: #fff;
    border: 1px solid #c19b5f;
    padding: 11px 28px;
    font-size: 12px;
    letter-spacing: 2.5px;
}
.btn-brand:hover{
    background: #c19b5f;
    color: #151515;
}
.site-nav-cta{
    margin-left: 8px;
}

/* === MOBILE HEADER === */
.site-header-mobi{display:none}
.site-header-mobi__bar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:15px;
    padding-bottom:15px;
}
.nav-toggle-btn{
    background:none;
    border:none;
    cursor:pointer;
    padding: 8px;
    display:flex;
    flex-direction:column;
    gap: 5px;
    width: 32px;
}
.nav-toggle-btn__line{
    display:block;
    width:100%;
    height: 2px;
    background:#fff;
    transition: transform .3s ease, opacity .2s ease;
}
.site-header-mobi.is-open .nav-toggle-btn__line:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.site-header-mobi.is-open .nav-toggle-btn__line:nth-child(2){
    opacity:0;
}
.site-header-mobi.is-open .nav-toggle-btn__line:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}
.site-header-mobi__panel{
    display:none;
    position:fixed;
    top: 0;
    left:0;right:0;bottom:0;
    background:rgba(21,21,21,0.98);
    padding: 80px 30px 40px;
    overflow-y:auto;
    z-index:90;
}
.site-header-mobi__panel.is-open{display:block}
.site-header-mobi__panel .site-nav-menu{
    flex-direction:column;
    align-items:flex-start;
    gap:0;
}
.site-header-mobi__panel .site-nav-link {
    font-size: 16px;
    padding: 14px 0;
    letter-spacing: 2.5px;
}
.site-header-mobi__panel .sub-menu{
    position:static;
    background:transparent;
    border:none;
    padding:0 0 0 18px;
    min-width:auto;
}
.site-header-mobi__panel .sub-menu li a{
    padding: 10px 0;
    font-size:14px;
}
.site-header-mobi__panel .btn-brand{
    margin-top: 20px;
}

/* === HERO === */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hero--fullheight{min-height:100vh}
.hero__content{
    position:relative;
    z-index: 5;
    text-align:center;
    padding: 120px 0 80px;
}
.hero__content .fr-fic.fr-dib{
    margin: 0 auto 35px;
    filter: brightness(0) invert(1);
}
.hero__headline{
    font-family: 'Antonio', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}
.hero__sub{
    font-family: 'Arapey', serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 35px;
}
.hero__content .btn-brand{
    padding: 14px 38px;
    font-size: 13px;
}

.gallery{
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    z-index:1;
}
.gallery--fit img,
.gallery--fit .gallery__item-enhancement img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.gallery--dimmed::after{
    content:'';
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    background: linear-gradient(180deg, rgba(21,21,21,0.65) 0%, rgba(21,21,21,0.4) 40%, rgba(21,21,21,0.7) 100%);
    z-index:2;
}
.gallery__item{
    position:absolute;
    top:0;left:0;right:0;bottom:0;
}
.gallery__item-enhancement{
    position:absolute;
    top:0;left:0;right:0;bottom:0;
}
.gallery__item-fallback{display:none}

/* === INTRO / ONE-COL TEXT === */
.c-one-col--text{
    padding: 80px 0;
}
.c-one-col--text h2{
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 30px;
    color:#fff;
}
.c-one-col--text > p{
    font-family: 'Arapey', serif;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    max-width: 720px;
    margin: 0 auto 18px;
    text-align: center;
}

/* === SPLIT SECTIONS === */
.c-split{
    display:flex;
    min-height: 500px;
}
.c-split--vcenter{align-items:center}
.c-split__col{
    width:50%;
    position:relative;
}
.c-split__col--empty .c-split__col-inner{
    position:absolute;
    top:0;left:0;right:0;bottom:0;
}
.c-split__image{
    width:100%;
    height:100%;
    min-height: 500px;
    background-size:cover;
    background-repeat:no-repeat;
}
.c-split__col-inner{height:100%}
.c-split__content{
    padding: 60px 55px;
}
.c-split__content.content{
    background: #1a1a1a;
    background-image:
        linear-gradient(45deg, rgba(193,155,95,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(193,155,95,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(193,155,95,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(193,155,95,0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    min-height: 500px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.c-split__heading{
    font-family: 'Antonio', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color:#fff;
}
.c-split__content p{
    font-family: 'Arapey', serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 25px;
}
.c-split__content .btn-brand{
    align-self:flex-start;
}

/* === TOUT OVERLAY === */
.c-tout-overlay{
    width:100%;
    height: 380px;
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment: fixed;
}

/* === SERVICES GRID === */
.svc-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    max-width: 900px;
    margin: 40px auto 0;
}
.svc-card{
    text-align:left;
}
.svc-card__icon{
    width: 48px;
    height: 48px;
    object-fit:contain;
    margin-bottom: 18px;
    opacity: 0.85;
}
.svc-card h3{
    font-family: 'Antonio', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #c19b5f;
}
.svc-card p{
    font-family: 'Arapey', serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    text-align:left;
}

/* === CASES GRID === */
.cases-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.case-item{
    background: #1a1a1a;
    overflow:hidden;
}
.case-item__img-wrap{
    height: 220px;
    overflow:hidden;
}
.case-item__img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform .4s ease;
}
.case-item:hover .case-item__img-wrap img{
    transform: scale(1.04);
}
.case-item__body{
    padding: 22px 24px 28px;
}
.case-item__tag{
    display:inline-block;
    font-family: 'Antonio', sans-serif;
    font-size: 11px;
    text-transform:uppercase;
    letter-spacing: 2px;
    color: #c19b5f;
    border: 1px solid rgba(193,155,95,0.35);
    padding: 3px 12px;
    margin-bottom: 12px;
}
.case-item__body h3{
    font-family: 'Antonio', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color:#fff;
    line-height:1.35;
}
.case-item__body p{
    font-family: 'Arapey', serif;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

/* === TESTIMONIALS === */
.testi-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.testi-card{
    background: #1a1a1a;
    padding: 35px 30px 30px;
    border-left: 3px solid #c19b5f;
    position:relative;
}
.testi-card::before{
    content: '\201C';
    font-family: 'Antonio', sans-serif;
    font-size: 60px;
    color: rgba(193,155,95,0.2);
    position:absolute;
    top: 10px;
    right: 20px;
    line-height:1;
}
.testi-card__quote{
    font-family: 'Arapey', serif;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-style: italic;
}
.testi-card__author{
    display:flex;
    flex-direction:column;
    gap: 4px;
}
.testi-card__name{
    font-family: 'Antonio', sans-serif;
    font-size: 13px;
    text-transform:uppercase;
    letter-spacing: 1.5px;
    color:#fff;
}
.testi-card__detail{
    font-family: 'Arapey', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.testi-cta{
    text-align:center;
    margin-top: 40px;
}

/* === PRICING === */
.pricing-list{
    margin-bottom: 25px;
}
.pricing-row{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-row:first-child{
    border-top: 1px solid rgba(255,255,255,0.08);
}
.pricing-label{
    font-family: 'Antonio', sans-serif;
    font-size: 14px;
    text-transform:uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.8);
}
.pricing-val{
    font-family: 'Arapey', serif;
    font-size: 15px;
    color: #c19b5f;
    text-align:right;
}
.pricing-note{
    font-family: 'Arapey', serif;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}

/* === TRUST === */
.trust-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px auto 35px;
    max-width: 900px;
}
.trust-item{
    text-align:center;
}
.trust-item__num{
    display:block;
    font-family: 'Antonio', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #c19b5f;
    line-height: 1;
    margin-bottom: 10px;
}
.trust-item__desc{
    font-family: 'Arapey', serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}
.trust-text{
    font-family: 'Arapey', serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    text-align:center;
    max-width: 680px;
    margin: 0 auto;
}

/* === CONTACT DETAILS === */
.contact-details{
    margin: 20px 0 25px;
}
.contact-details p{
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.75);
}
.contact-details i{
    color: #c19b5f;
    width: 20px;
    text-align:center;
    margin-right: 8px;
}
.contact-details a{
    color: rgba(255,255,255,0.75);
}
.contact-details a:hover{color: #c19b5f}

/* === REVEAL ANIMATION === */
.revealable{
    opacity:0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.revealable.is-revealed{
    opacity:1;
    transform: translateY(0);
}

/* === MOBILE FOOTER === */
.mobi-footer{display:none}
.mobi-footer--sticky{
    position:fixed;
    bottom:0;left:0;right:0;
    z-index:90;
    background: #151515;
    border-top: 1px solid rgba(193,155,95,0.2);
    padding: 10px 15px;
}
.mobi-footer__list{
    display:flex;
    gap: 10px;
}
.mobi-footer__item{flex:1}
.btn-block{
    display:block;
    width:100%;
    text-align:center;
    padding: 12px 10px;
    font-size: 11px;
}

/* === FOOTER === */
footer{
    background: #1a1a1a;
    border-top: 1px solid rgba(193,155,95,0.12);
}
.site-footer-desktop{}
.site-footer-desktop-primary{
    padding: 55px 0 45px;
}
.site-footer-desktop-primary__container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 28px;
    text-align:center;
}
.footer-logo__img{
    height: 38px;
    width:auto;
    margin: 0 auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}
.site-footer-desktop-primary .site-nav-menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap: 0;
}
.site-footer-desktop-primary .site-nav-link {
    font-size: 11px;
    padding: 6px 15px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}
.site-footer-desktop-primary .site-nav-link:hover{color:#c19b5f}

.footer-info{
    margin-top: 5px;
}
.footer-info p{
    font-family:'Arapey', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
}
.footer-info a{
    color: rgba(255,255,255,0.55);
}
.footer-info a:hover{color: #c19b5f}

.site-footer-desktop-secondary{
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
    text-align:center;
}
.site-powered-by{
    font-family:'Arapey', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
}

/* === RESPONSIVE === */
@media (max-width: 768px){
    .site-header-desktop{display:none}
    .site-header-mobi{
        display:block;
        position:fixed;
        top:0;left:0;right:0;
        z-index:100;
        background:rgba(21,21,21,0.95);
    }
    .mobi-footer--sticky{display:block}

    .hero__headline{
        font-size:28px;
        letter-spacing: 2px;
    }
    .hero__sub{
        font-size:15px;
        padding: 0 10px;
    }
    .hero__content .fr-fic.fr-dib{
        width: 280px !important;
    }
    .hero__content{
        padding: 100px 0 60px;
    }

    .c-split{
        flex-direction:column;
        min-height:auto;
    }
    .c-split__col{width:100%}
    .c-split__col--empty .c-split__col-inner{
        position:relative;
    }
    .c-split__image{
        min-height: 300px;
    }
    .c-split__content{
        padding: 40px 25px;
    }
    .c-split__content.content{
        min-height:auto;
    }
    .c-split--alternate .c-split__col--empty{
        order:-1;
    }

    .c-one-col--text{
        padding: 50px 0;
    }
    .c-one-col--text h2{
        font-size: 24px;
        letter-spacing: 2px;
    }

    .svc-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cases-grid{
        grid-template-columns: 1fr;
    }
    .testi-grid{
        grid-template-columns: 1fr;
    }
    .trust-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .trust-item__num{font-size: 36px}

    .c-tout-overlay{
        height: 240px;
        background-attachment: scroll;
    }

    .site-footer-desktop-primary{
        padding: 40px 0 90px;
    }
}
@media (max-width: 559px){
    .container{padding:0 20px}
    .hero__headline{font-size:24px}
    .hero__sub{font-size:14px}
    .c-split__heading{font-size:22px}
    .pricing-row{
        flex-direction:column;
        gap:4px;
    }
    .pricing-val{text-align:left}
}
@media (min-width: 769px) and (max-width: 1024px){
    .site-nav-link {
        padding: 10px 12px;
        font-size: 12px;
        letter-spacing: 1.8px;
    }
    .site-logo__expanded{height:36px}
    .svc-grid{gap: 30px 35px}
    .c-split__content{padding: 40px 35px}
}

/* === PAGE HERO (subpages) === */
.page-hero--short{
    padding: 140px 0 50px;
    background: #1a1a1a;
    text-align:center;
}
.subpage-template .site-header-desktop-primary--floatable{
    background:rgba(21,21,21,0.95);
}
.page-hero__title{
    font-family: 'Antonio', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color:#fff;
}

/* === LEGAL CONTENT === */
.legal-content{
    padding: 50px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}
.legal-updated{
    font-family: 'Arapey', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 35px;
}
.legal-content h3{
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c19b5f;
    margin-top: 35px;
    margin-bottom: 12px;
}
.legal-content p{
    font-family: 'Arapey', serif;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}
.legal-content a{
    color: #c19b5f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* === COOKIE TABLE === */
.cookie-table-wrap{
    overflow-x:auto;
    margin: 20px 0;
}
.cookie-table{
    width:100%;
    border-collapse: collapse;
    font-family: 'Arapey', serif;
    font-size: 14px;
}
.cookie-table th{
    font-family: 'Antonio', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c19b5f;
    text-align:left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(193,155,95,0.25);
    font-weight:400;
}
.cookie-table td{
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    line-height: 1.65;
    vertical-align:top;
}
.cookie-table tbody tr:hover td{
    background: rgba(193,155,95,0.04);
}
.svc-table td:first-child{
    color: rgba(255,255,255,0.9);
    font-weight:400;
    white-space: nowrap;
}
.table-note{
    font-family: 'Arapey', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 10px;
    text-align:center;
}

/* === COOKIE BANNER (GDPR) === */
.cookie-banner{
    position:fixed;
    bottom: 0;
    left:0;right:0;
    z-index: 200;
    background: rgba(26,26,26,0.97);
    border-top: 1px solid rgba(193,155,95,0.2);
    padding: 18px 0;
    backdrop-filter: blur(8px);
}
.cookie-banner__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 25px;
}
.cookie-banner__txt{
    font-family: 'Arapey', serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    flex:1;
}
.cookie-banner__txt a{
    color: #c19b5f;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner__btns{
    display:flex;
    gap: 10px;
    flex-shrink:0;
}
.cookie-banner__accept{
    padding: 8px 22px;
    font-size: 11px;
}
.cookie-banner__decline{
    padding: 8px 22px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    background:transparent;
    font-family: 'Antonio', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor:pointer;
    transition: all .2s ease;
}
.cookie-banner__decline:hover{
    color:#fff;
    border-color: rgba(255,255,255,0.4);
}

/* === TESTIMONIALS FULL (subpage) === */
.testi-intro{
    font-family: 'Arapey', serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    text-align:center;
    max-width: 700px;
    margin: 0 auto;
}
.testi-full-list{
    padding: 20px 0 60px;
}
.testi-full{
    display:flex;
    gap: 0;
    margin-bottom: 40px;
    background: #1a1a1a;
    overflow:hidden;
}
.testi-full--reverse{
    flex-direction: row-reverse;
}
.testi-full__photo{
    width: 40%;
    flex-shrink:0;
    min-height: 350px;
}
.testi-full__photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.testi-full__body{
    padding: 40px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.testi-full__tag{
    display:inline-block;
    font-family: 'Antonio', sans-serif;
    font-size: 11px;
    text-transform:uppercase;
    letter-spacing: 2px;
    color: #c19b5f;
    border: 1px solid rgba(193,155,95,0.35);
    padding: 3px 12px;
    margin-bottom: 14px;
    align-self:flex-start;
}
.testi-full__body h3{
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color:#fff;
    margin-bottom: 16px;
    line-height: 1.3;
}
.testi-full__quote{
    font-family: 'Arapey', serif;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin-bottom: 20px;
}
.testi-full__author{
    display:flex;
    flex-direction:column;
    gap: 3px;
}
.testi-full__name{
    font-family: 'Antonio', sans-serif;
    font-size: 13px;
    text-transform:uppercase;
    letter-spacing: 1.5px;
    color:#fff;
}
.testi-full__with{
    font-family: 'Arapey', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* === CTA SECTION === */
.cta-section{
    padding-bottom: 80px;
}
.cta-row{
    text-align:center;
    margin-top: 25px;
    display:flex;
    gap: 15px;
    justify-content:center;
    flex-wrap:wrap;
}

/* === RESPONSIVE SUBPAGES === */
@media (max-width: 768px){
    .page-hero--short{
        padding: 110px 0 35px;
    }
    .page-hero__title{
        font-size: 26px;
        letter-spacing: 2.5px;
    }
    .legal-content{padding: 30px 20px 60px}
    .testi-full{
        flex-direction:column;
    }
    .testi-full--reverse{
        flex-direction:column;
    }
    .testi-full__photo{
        width:100%;
        min-height: 220px;
        max-height: 280px;
    }
    .testi-full__body{
        padding: 25px 22px;
    }
    .cookie-banner__inner{
        flex-direction:column;
        gap: 12px;
        text-align:center;
    }
    .cookie-table{font-size:13px}
    .cookie-table th, .cookie-table td{padding:10px 10px}
    .svc-table td:first-child{white-space:normal}
}
