:root{
    --brand: #bfa37a;
    --brand-dark: #9c825a;
    --accent:#a11217;
    --accent-soft: #c73a3f;
    --brand-soft: #e8dcc8;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --bg: #f6f4f1;
    --bg-soft:#f1eee9;
    --surface:#ffffff;
    --navy: #0d1625;
    --line: rgba(0,0,0,.08);
    --shadow: 0 20px 60px rgba(0,0,0,.08);
    --shadow-soft: 0 10px 30px rgba(0,0,0,.06);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
    margin: 0;
    background: linear-gradient(180deg, #f6f4f1 0%, #f1eee9 100%);
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-opened{
    overflow: hidden;
}

img{
    max-width: 100%;
    display: block;
}

.container{ max-width: 1180px; }

section{
    padding-top: 48px;
    padding-bottom: 48px;
    scroll-margin-top: 96px;
    position: relative;
}

section h2{
    font-size: clamp(1.8rem, 2.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    color: var(--navy);
    padding-bottom: 8px;
    position: relative;
}

section h2::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 84px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    border-radius: 3px;
    opacity: .95;
}

.section-subtitle{
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 22px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.topbar{
    background:
            radial-gradient(900px 260px at 0% 0%, rgba(198,168,107,.10), transparent 55%),
            linear-gradient(180deg, #07101d 0%, #050b14 100%);
    color: rgba(255,255,255,.86);
    font-size: .84rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 1031;
}

body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea {
    font-family: "Inter", system-ui, -apple-system, sans-serif !important;
}

.topbar .container{
    min-height: 44px;
}

.topbar a{
    color: rgba(255,255,255,.92);
    text-decoration: none;
    transition: opacity .15s ease, color .15s ease;
}

.topbar a:hover{
    color: #fff;
    opacity: 1;
}

.topbar .topbar-email{
    font-weight:700;
    color: rgba(255,255,255,.95);
    text-decoration:none;
}

.topbar .topbar-email svg{
    margin-right:8px;
    vertical-align:middle;
}

.navbar{
    background: rgba(248,244,238,.82) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16,24,38,.06);
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    box-shadow: 0 10px 28px rgba(16,24,38,.05);
    transition: padding .28s ease, background .28s ease, box-shadow .28s ease;
}

.navbar.scrolled{
    background: rgba(248,244,238,.92) !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    box-shadow: 0 14px 34px rgba(16,24,38,.08);
}

.brand-luxury{
    display:flex;
    align-items:center;
    text-decoration:none;
    margin-right: 14px;
    flex-shrink: 0;
}

.logo-frame{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:18px;
    background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.60));
    border:1px solid rgba(198,168,107,.30);
    backdrop-filter: blur(10px);
    box-shadow:
            0 6px 18px rgba(16,24,38,.08),
            inset 0 1px 0 rgba(255,255,255,.72);
    transition: all .28s ease;
    position: relative;
    overflow: hidden;
}

.logo-frame::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(120deg, rgba(255,255,255,.38), transparent 40%, rgba(198,168,107,.10) 100%);
    pointer-events:none;
}

.site-logo{
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.05));
    transition: height .28s ease, transform .28s ease, filter .28s ease;
    position: relative;
    z-index: 1;
}

.navbar.scrolled .logo-frame{
    padding: 6px 12px;
    border-radius: 16px;
    box-shadow:
            0 8px 20px rgba(16,24,38,.08),
            inset 0 1px 0 rgba(255,255,255,.74);
}

.navbar.scrolled .site-logo{
    height: 34px;
}

.brand-luxury:hover .logo-frame{
    transform: translateY(-2px);
    box-shadow:
            0 14px 34px rgba(16,24,38,.14),
            inset 0 1px 0 rgba(255,255,255,.8);
    border-color: rgba(198,168,107,.45);
}

.brand-luxury:hover .site-logo{
    transform: scale(1.03);
}

.navbar .navbar-collapse{
    align-items: center;
}

.navbar .navbar-nav{
    align-items: center;
}

.navbar .nav-link{
    color: rgba(16,24,38,.76);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 10px;
    position: relative;
    transition: color .15s ease;
    white-space: nowrap;
}

.navbar .nav-link:hover{
    color: var(--navy);
}

.navbar .nav-link::after{
    content: "";
    position: absolute;
    left: 10px;
    bottom: 2px;
    width: calc(100% - 20px);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.navbar .nav-link:hover::after{
    transform: scaleX(1);
}

.navbar .navbar-toggler{
    border: 1px solid rgba(16,24,38,.12);
    border-radius: 14px;
    padding: 8px 10px;
    background: rgba(255,255,255,.55);
}

.navbar .navbar-toggler:focus{
    box-shadow: 0 0 0 .2rem rgba(198,168,107,.18);
}

.navbar .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816,24,38,0.78%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section{
    padding-top: 26px;
    padding-bottom: 24px;
    overflow: hidden;
}

.hero-shell{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(28px, 4vw, 48px);
    background:
            radial-gradient(900px 460px at 15% 10%, rgba(198,168,107,.18), transparent 55%),
            linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38)),
            linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42));
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: none;
    backdrop-filter: blur(12px);
    transform: translate3d(0,0,0);
    will-change: transform;
}

.hero-shell::before{
    content:"";
    position:absolute;
    inset:0;
    background:
            radial-gradient(700px 300px at 100% 0%, rgba(13,22,37,.08), transparent 50%),
            linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
    pointer-events:none;
}

.hero-parallax-copy{
    will-change: transform;
    transition: transform .08s linear;
}

.hero-section .display-4{
    font-size: clamp(2.45rem, 5vw, 4.35rem);
    line-height: .98;
    letter-spacing: -0.05em;
    color: var(--navy);
    margin-bottom: 16px;
    max-width: 10.5ch;
}

.hero-section .lead{
    font-size: 1.08rem;
    color: rgba(16,24,38,.68) !important;
    max-width: 560px;
    margin-bottom: 24px;
}

.hero-img-wrap{
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.65);
    background: #d9d0c3;
    isolation: isolate;
    transform: translateZ(0);
}

.hero-img-wrap::before{
    content: "";
    position:absolute;
    inset:0;
    background: none;
    pointer-events:none;
    z-index: 2;
    opacity: 0;
}

.hero-img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    will-change: auto;
    background: transparent;
}

.hero-layout{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

#heroMedia{
    flex: 0 0 29%;
    max-width: 29%;
    order: 2;
}

#heroCopy{
    flex: 0 0 58%;
    max-width: 58%;
    order: 1;
    padding-right: 24px;
    padding-left: 18px;
}

#heroMedia .hero-img-wrap{
    max-width: 300px;
    margin-left: auto;
    margin-right: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
    border: 1px solid rgba(198,168,107,.22);
    box-shadow:
            0 24px 55px rgba(16,24,38,.12),
            0 10px 24px rgba(198,168,107,.10);
}

#heroMedia .hero-img{
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    padding: 18px;
    transform: none !important;
}

#heroSection .display-4{
    max-width: 10.6ch;
    margin-bottom: 18px;
}

#heroSection .lead{
    max-width: 560px;
    margin-bottom: 0;
}

#services{
    padding-top: 40px;
    padding-bottom: 24px;
}

#services .section-subtitle{
    width: 100%;
    max-width: none;
    margin: 0 0 22px 0;
    text-align: left;
    line-height: 1.75;
    font-size: 1.02rem;
    color: var(--muted);
}

#about{
    padding-top: 24px;
    padding-bottom: 24px;
}

#references{
    padding-top: 24px;
    padding-bottom: 24px;
}

#contact{
    padding-top: 24px;
    padding-bottom: 20px;
}

#about .about-wrap{
    background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.74));
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(16,24,38,.06);
    padding: 30px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

#about .about-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(800px 260px at 0% 0%, rgba(198,168,107,.14), transparent 55%),
            radial-gradient(600px 220px at 100% 100%, rgba(13,22,37,.04), transparent 60%);
    pointer-events: none;
}

#about .about-title{
    margin-bottom: 14px;
}

#about .about-inner{
    position: relative;
    z-index: 1;
}

#about .about-team-media{
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}

#about .about-team-image-wrap{
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(16,24,38,.08);
    box-shadow: 0 20px 44px rgba(16,24,38,.12);
    background: #ebe4d8;
    max-width: 880px;
    margin: 0 auto;
}

#about .about-team-image{
    width: 100%;
    height: clamp(240px, 38vw, 420px);
    display: block;
    object-fit: cover;
    object-position: center;
}

#about .about-text{
    position: relative;
    z-index: 1;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 10px;
}

#about .about-text:last-child{
    margin-bottom: 0;
}

#about .about-leadership{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
    align-items: stretch;
}

#about .about-person-card{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background:
            linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow:
            0 16px 34px rgba(16,24,38,.08),
            0 8px 18px rgba(198,168,107,.10);
    overflow: hidden;
}

#about .about-person-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198,168,107,.12), transparent 42%);
    pointer-events: none;
}

#about .about-person-image-wrap{
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 4.6;
    border-radius: 20px;
    overflow: hidden;
    background: #ece6dc;
    border: 1px solid rgba(16,24,38,.06);
    box-shadow: 0 14px 30px rgba(16,24,38,.10);
    margin-bottom: 18px;
}

#about .about-person-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#about .about-person-content{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

#about .about-person-name{
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

#about .about-person-role{
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(198,168,107,.12);
    border: 1px solid rgba(198,168,107,.20);
    color: rgba(16,24,38,.82);
    font-size: .72rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
}

#about .about-person-bio{
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.72;
    margin: 0 0 auto 0;
}

#about .about-person-meta{
    position: relative;
    z-index: 1;
    margin-top: 16px;
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(16,24,38,.08);
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 12px;
    align-content: start;
}

#about .about-person-meta-item{
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
}

#about .about-person-meta-icon{
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: rgba(16,24,38,.58);
}

#about .about-person-meta strong{
    color: var(--navy);
    font-weight: 700;
}

#about .about-person-email{
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

#about .about-person-email:hover{
    color: var(--brand-dark);
}

.services-grid{
    margin-bottom: 0;
}

.service-card{
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
    box-shadow: 0 14px 34px rgba(16,24,38,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
    cursor: pointer;
    height: 100%;
    outline: none;
    position: relative;
    isolation: isolate;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius: 24px;
    background:
            radial-gradient(240px 100px at 0% 0%, rgba(198,168,107,.18), transparent 55%),
            radial-gradient(220px 120px at 100% 100%, rgba(198,168,107,.12), transparent 60%);
    opacity: 0;
    transition: opacity .28s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius: 24px;
    box-shadow:
            0 0 0 1px rgba(198,168,107,.0),
            0 18px 42px rgba(198,168,107,.0);
    transition: box-shadow .28s ease;
    pointer-events:none;
    z-index: 0;
}

.service-card > *{
    position: relative;
    z-index: 1;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow:
            0 22px 44px rgba(16,24,38,.12),
            0 8px 28px rgba(198,168,107,.14);
    border-color: rgba(198,168,107,.38);
    filter: saturate(1.02);
}

.service-card:hover::before{
    opacity: 1;
}

.service-card:hover::after{
    box-shadow:
            inset 0 0 0 1px rgba(198,168,107,.18),
            0 24px 48px rgba(198,168,107,.14);
}

.service-card:focus-visible{
    box-shadow: 0 0 0 3px rgba(198,168,107,.18), var(--shadow);
}

.service-card-media{
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-card-media::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(13,22,37,.56));
}

.service-card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .3s ease;
}

.service-card:hover .service-card-media img{
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.02);
}

.service-card-body{
    padding: 18px 18px 20px;
}

.service-kicker{
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(16,24,38,.48);
    margin-bottom: 8px;
}

.service-title{
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.service-text{
    color: var(--muted);
    margin-bottom: 14px;
    min-height: 72px;
}

.service-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
}

.service-link .arrow{
    transition: transform .18s ease;
}

.service-card:hover .service-link .arrow{
    transform: translateX(4px);
}

.references-wrap{
    background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72));
    border-radius: 24px;
    border: 1px solid rgba(16,24,38,.08);
    box-shadow: 0 18px 40px rgba(16,24,38,.06);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.reference-logo{
    width: 100%;
    max-width: 1100px;
    height: clamp(220px, 40vw, 420px);
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.refs-strip{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    position: relative;
}

.refs-strip::-webkit-scrollbar{
    height: 8px;
}

.refs-strip::-webkit-scrollbar-thumb{
    background: rgba(16,24,38,.15);
    border-radius: 999px;
}

.refs-strip::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width: 56px;
    height: 100%;
    background: linear-gradient(90deg, rgba(245,241,234,0), rgba(245,241,234,1));
    pointer-events:none;
    opacity: 0;
    transition: opacity .15s ease;
}

/* CONTACT */
.contact-wrap{
    background:
            radial-gradient(800px 280px at 0% 0%, rgba(198,168,107,.16), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72));
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(16,24,38,.06);
    padding: 22px;
    backdrop-filter: blur(10px);
}

.contact-wrap .row{
    align-items: stretch;
}

.contact-kicker{
    color: rgba(16,24,38,.52);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-hero-card,
.contact-social-card{
    height: 100%;
}

.contact-hero-card{
    background:
            radial-gradient(700px 240px at 0% 0%, rgba(198,168,107,.18), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.76));
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 24px;
    padding: 30px 30px 26px;
    box-shadow: 0 18px 40px rgba(16,24,38,.06);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100%;
}

.contact-hero-title{
    font-size: clamp(1.7rem, 2.4vw, 2.15rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.035em;
    margin: 0 0 16px 0;
    line-height: 1.1;
    max-width: 14ch;
}

.contact-hero-text{
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0 0 24px 0;
    max-width: 54ch;
}

.contact-main-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    padding-top: 0;
}

.btn-contact-primary{
    background: linear-gradient(135deg, #c6a86b, #e7d3a4);
    border: none;
    color: #101826;
    font-weight: 800;
    padding: 14px 22px;
    min-height: 54px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(198,168,107,.30);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    align-self: flex-start;
}

.btn-contact-primary:hover{
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(198,168,107,.34);
    filter: brightness(.99);
    color: #000;
}
.contact-wrap .contact-hero-card .contact-main-actions .btn-contact-primary{
    position: relative !important;
    top: 12px !important;
    left: 18px !important;
}

.btn-contact-secondary{
    border-radius: 14px;
    padding: 13px 18px;
    border: 1px solid rgba(16,24,38,.10);
    background: rgba(255,255,255,.78);
    color: rgba(16,24,38,.92);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
    box-shadow: 0 10px 20px rgba(16,24,38,.06);
    cursor: pointer;
}
.contact-wrap .contact-hero-card .contact-main-actions .btn-contact-primary:hover{
    transform: translateY(-1px);
}
.btn-contact-secondary:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(16,24,38,.10);
    color: rgba(16,24,38,.92);
}

.contact-social-card{
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 22px rgba(16,24,38,.06);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-social-title{
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.2;
}

.contact-social-text{
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.7;
}

.contact-social-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.btn-soft{
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(16,24,38,.10);
    background: rgba(255,255,255,.78);
    color: rgba(16,24,38,.92);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
    box-shadow: 0 10px 20px rgba(16,24,38,.06);
    min-height: 56px;
}

.btn-soft:hover{
    transform: translateY(-1px);
    filter: brightness(.99);
    box-shadow: 0 14px 28px rgba(16,24,38,.10);
    color: rgba(16,24,38,.92);
}

.btn-instagram{
    background: linear-gradient(135deg, rgba(225,48,108,.12), rgba(131,58,180,.10), rgba(252,176,69,.12), rgba(255,255,255,.72));
    border: 1px solid rgba(16,24,38,.10);
}

/* FOOTER */
.site-footer{
    position: relative;
    padding-top: 44px;
    padding-bottom: 28px;
    background:
            radial-gradient(900px 260px at 0% 0%, rgba(198,168,107,.10), transparent 55%),
            linear-gradient(180deg, #07101d 0%, #050b14 100%);
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 20px;
}

.site-footer .container{
    position: relative;
    z-index: 1;
}

.footer-title{
    font-size: 1.06rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.footer-muted{
    color: rgba(255,255,255,.72);
}

.site-footer a{
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-weight: 600;
    transition: color .15s ease, opacity .15s ease;
}

.site-footer a:hover{
    color: #e7d3a4;
    opacity: 1;
}

.footer-offices-shell{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.footer-offices-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-offices-subtitle{
    color: rgba(255,255,255,.64);
    max-width: 520px;
    text-align: right;
    line-height: 1.65;
    font-size: .96rem;
}

.footer-office-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.footer-office-card{
    padding: 18px 18px;
    border-radius: 20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
    min-height: 100%;
}

.footer-office-label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .80rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(231,211,164,.92);
    margin-bottom: 8px;
}

.footer-office-title{
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.45;
}

.footer-office-text{
    color: rgba(255,255,255,.76);
    line-height: 1.72;
    margin: 0;
    font-size: .95rem;
}

.footer-map-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d8b872, #f1dfb2);
    color: #101826 !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
    transition: transform .15s ease, box-shadow .15s ease;
    text-decoration: none;
}

.footer-map-link:hover{
    color: #101826 !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(0,0,0,.22);
}

.footer-bottom{
    padding-top: 18px;
    margin-top: 26px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.86);
    font-size: .95rem;
}

/* MODALS */
.service-modal,
.site-modal{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(13,22,37,.48);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
}

.service-modal.is-open,
.site-modal.is-open{
    display: flex;
}

.service-modal-dialog,
.site-modal-dialog{
    position: relative;
    width: min(100%, 1080px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 26px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
    border: 1px solid rgba(16,24,38,.08);
    box-shadow: 0 28px 70px rgba(16,24,38,.22);
}

.site-modal-dialog{
    width: min(100%, 760px);
    padding: 28px;
}

.service-modal-close,
.site-modal-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16,24,38,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--navy);
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(16,24,38,.08);
    z-index: 2;
}

.service-modal-copy{
    padding: 34px 28px 28px;
    height: 100%;
}

.service-modal-kicker,
.site-modal-kicker{
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(16,24,38,.48);
    margin-bottom: 10px;
}

.service-modal-title,
.site-modal-title{
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.service-modal-text,
.site-modal-text{
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-modal-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-modal-tag{
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(16,24,38,.08);
    box-shadow: 0 8px 18px rgba(16,24,38,.05);
    color: rgba(16,24,38,.86);
    font-weight: 700;
    font-size: .92rem;
}

.service-modal-gallery{
    height: 100%;
    padding: 18px;
}

.service-modal-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 460px;
}

.service-modal-item{
    position: relative;
    cursor: zoom-in;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.service-modal-item.large{
    grid-column: span 2;
}

.service-modal-item img{
    -webkit-user-drag: none;
    pointer-events: none;
    transition: transform .28s ease, filter .28s ease;
}

.service-modal-item:hover img{
    transform: scale(1.03);
    filter: saturate(1.03);
}

/* FORM */
.site-form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.site-form-group{
    display: flex;
    flex-direction: column;
}

.site-form-group.full{
    grid-column: 1 / -1;
}

.site-label{
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.site-input,
.site-textarea{
    width: 100%;
    border: 1px solid rgba(16,24,38,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.90);
    color: var(--text);
    padding: 13px 14px;
    font: inherit;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.site-input:focus,
.site-textarea:focus{
    border-color: rgba(198,168,107,.65);
    box-shadow: 0 0 0 4px rgba(198,168,107,.14);
}

.site-textarea{
    min-height: 140px;
    resize: vertical;
}

.site-help{
    font-size: .88rem;
    color: var(--muted);
    margin-top: 8px;
}

.site-error{
    display: none;
    margin-top: 8px;
    font-size: .88rem;
    color: #b42318;
    font-weight: 600;
}

.site-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.site-status{
    margin-top: 14px;
    font-size: .92rem;
    font-weight: 600;
}

.site-status.error{
    color: #b42318;
}

.site-status.success{
    color: #166534;
}

.hp-wrap{
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.mini-check-wrap{
    margin-top: 14px;
    margin-bottom: 4px;
}

.mini-check{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(16,24,38,.08);
    box-shadow: 0 8px 18px rgba(16,24,38,.04);
}

.mini-check input[type="checkbox"]{
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--brand-dark);
    flex: 0 0 auto;
    cursor: pointer;
}

.mini-check-label{
    margin: 0;
    color: var(--text);
    font-size: .93rem;
    line-height: 1.7;
}

.mini-check-label a{
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mini-check-label a:hover{
    color: var(--brand-dark);
}

.legal-help{
    margin-top: 8px;
    margin-bottom: 0;
    font-size: .86rem;
    line-height: 1.6;
    color: var(--muted);
}

#kvkkError{
    margin-top: 8px;
}

.contact-success-banner{
    display: none;
    margin-bottom: 18px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
    border: 1px solid rgba(16,24,38,.08);
    box-shadow: 0 12px 28px rgba(16,24,38,.06);
}

.contact-success-title{
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-success-text{
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.contact-success-close{
    border: 1px solid rgba(16,24,38,.10);
    background: rgba(255,255,255,.82);
    color: var(--navy);
    font-weight: 800;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(16,24,38,.05);
}

/* LIGHTBOX */
.lightbox-modal{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
            radial-gradient(circle at top, rgba(255,255,255,.06), transparent 35%),
            rgba(5, 11, 20, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 3000;
}

.lightbox-modal.is-open{
    display: flex;
}

.lightbox-dialog{
    position: relative;
    width: min(100%, 1160px);
    height: min(88vh, 860px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
    background:
            linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
            0 35px 90px rgba(0,0,0,.42),
            inset 0 1px 0 rgba(255,255,255,.08);
}

.lightbox-dialog::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(700px 220px at 0% 0%, rgba(198,168,107,.18), transparent 50%),
            radial-gradient(700px 220px at 100% 100%, rgba(255,255,255,.06), transparent 45%);
    pointer-events: none;
}

.lightbox-image-wrap{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 68px 18px 74px;
}

.lightbox-image{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    background: rgba(255,255,255,.04);
}

.lightbox-image-wrap::after{
    content: "Preview only";
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.92);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close,
.lightbox-nav{
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.10);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover{
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.22);
}

.lightbox-close{
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 1.55rem;
    line-height: 1;
}

.lightbox-nav{
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 1;
}

.lightbox-nav:hover{
    transform: translateY(calc(-50% - 2px));
}

.lightbox-prev{
    left: 10px;
}

.lightbox-next{
    right: 10px;
}

.lightbox-counter{
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.94);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* security polish */
.site-submit[disabled],
.site-submit.is-loading{
    opacity: .78;
    cursor: not-allowed;
    pointer-events: none;
}

.site-submit.is-loading::after{
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 10px;
    border-radius: 999px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    display: inline-block;
    vertical-align: -2px;
    animation: btn-spin .7s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.site-status.success{
    color: #0f5132;
}

.site-status.error{
    color: #8a1c1c;
}

/* RESPONSIVE */
@media (max-width: 991.98px){
    section{
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .container,
    main.container{
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar .container{
        gap: 12px;
    }

    .logo-frame{
        padding: 8px 12px;
        border-radius: 16px;
    }

    .site-logo{
        height: 34px;
    }

    .hero-section{
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .hero-shell{
        padding: 22px;
        border-radius: 24px;
    }

    .hero-layout{
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
    }

    #heroCopy,
    #heroMedia{
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }

    #heroCopy{ order: 1; }
    #heroMedia{ order: 2; }

    #heroSection .display-4,
    .hero-section .display-4{
        max-width: 100%;
        font-size: clamp(2.1rem, 7vw, 3.4rem);
        line-height: 1.02;
        margin-bottom: 14px;
    }

    #heroSection .lead,
    .hero-section .lead{
        max-width: 100%;
        width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    #heroMedia .hero-img-wrap{
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    #heroMedia .hero-img{
        width: 100%;
        max-height: none;
        min-height: 220px;
        object-fit: contain;
        padding: 22px;
    }

    #about .about-leadership{
        grid-template-columns: 1fr;
    }

    #about .about-team-image-wrap{
        max-width: 100%;
    }

    #about .about-team-image{
        height: clamp(220px, 46vw, 340px);
    }

    .reference-logo{
        height: clamp(160px, 34vw, 260px);
    }

    .footer-offices-head{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-offices-subtitle{
        max-width: 100%;
        text-align: left;
    }

    .footer-office-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .contact-hero-card,
    .contact-social-card{
        padding: 24px;
    }

    .contact-hero-title{
        font-size: clamp(1.55rem, 3vw, 1.95rem);
        max-width: 100%;
    }

    .contact-hero-text{
        margin: 0 0 20px 0;
        max-width: 100%;
        line-height: 1.75;
    }

    .contact-main-actions{
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 767.98px){
    .topbar .container{
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .topbar .topbar-email{
        font-size: .95rem;
        line-height: 1.45;
        word-break: break-word;
    }

    .navbar{
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .navbar .container{
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar .navbar-brand,
    .navbar .brand-luxury{
        max-width: calc(100% - 76px);
        min-width: 0;
    }

    .navbar .logo-frame{
        max-width: 100%;
    }

    .navbar .site-logo{
        max-width: 100%;
        height: 34px;
    }

    .navbar .navbar-toggler{
        padding: 10px 12px;
        border-radius: 16px;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .navbar .navbar-collapse{
        flex-basis: 100%;
        width: 100%;
        margin-top: 14px;
        padding: 10px 2px 4px;
    }

    .navbar .navbar-collapse.show,
    .navbar .navbar-collapse.collapsing{
        display: block;
    }

    .navbar .navbar-nav{
        width: 100%;
        align-items: flex-start;
    }

    .navbar .nav-link{
        padding: 10px 0;
        letter-spacing: .08em;
    }

    .navbar .navbar-collapse.show .navbar-nav,
    .navbar .navbar-collapse.collapsing .navbar-nav{
        padding: 10px 14px;
        border-radius: 18px;
        background: rgba(255,255,255,.74);
        border: 1px solid rgba(16,24,38,.08);
        box-shadow: 0 12px 30px rgba(16,24,38,.08);
    }

    main.container{
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }

    section{
        padding-top: 28px;
        padding-bottom: 28px;
        scroll-margin-top: 84px;
    }

    .hero-shell{
        padding: 18px;
        border-radius: 22px;
    }

    #heroSection .display-4,
    .hero-section .display-4{
        font-size: clamp(2rem, 10vw, 2.9rem);
    }

    #heroMedia .hero-img{
        min-height: 200px;
        padding: 18px;
    }

    .service-card-media{
        height: 220px;
    }

    .service-text{
        min-height: 0;
    }

    .about-wrap,
    .references-wrap,
    .contact-wrap,
    .contact-hero-card,
    .contact-social-card{
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-offices-shell{
        max-width: 100%;
    }

    .footer-office-grid{
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-office-card{
        padding: 16px;
        border-radius: 18px;
    }

    .footer-office-label{
        letter-spacing: .08em;
    }

    .footer-office-title{
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .footer-office-text{
        font-size: .98rem;
        line-height: 1.7;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .footer-map-link{
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom{
        margin-top: 18px;
        padding-top: 14px;
        font-size: .9rem;
    }

    .site-modal,
    .service-modal,
    .lightbox-modal{
        padding: 12px;
    }

    .site-modal-dialog,
    .service-modal-dialog{
        max-height: calc(100vh - 24px);
        border-radius: 22px;
    }

    .site-modal_dialog{
        padding: 22px 18px;
    }

    .service-modal-copy{
        padding: 24px 18px 18px;
    }

    .service-modal-gallery{
        padding: 12px;
    }

    .service-modal-grid{
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-modal-item.large{
        grid-column: auto;
    }

    .site-form-row{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-wrap{
        padding: 18px;
    }

    .contact-hero-card,
    .contact-social-card{
        padding: 20px;
        border-radius: 20px;
    }

    .contact-hero-title{
        font-size: clamp(1.4rem, 6vw, 1.75rem);
        margin: 0 0 12px 0;
        line-height: 1.14;
        max-width: 100%;
    }

    .contact-hero-text,
    .contact-social-text{
        font-size: .98rem;
        line-height: 1.72;
    }

    .contact-hero-text{
        margin: 0 0 18px 0;
    }

    .contact-main-actions{
        margin-top: 0;
    }

    .btn-contact-primary,
    .btn-soft{
        width: 100%;
        justify-content: center;
    }

    .lightbox-dialog{
        height: min(84vh, 720px);
        border-radius: 22px;
    }

    .mini-check{
        padding: 12px 13px;
        gap: 10px;
    }

    .mini-check-label{
        font-size: .9rem;
        line-height: 1.65;
    }

    /* Make Contact Us button visually match the mobile social buttons (instagram/linkedin/facebook)
       - same gradient, border, padding, height and alignment
       - only on mobile */
    .btn-contact-primary{
      /* reuse the instagram-like soft gradient used for social */
      background: linear-gradient(135deg, rgba(225,48,108,.12), rgba(131,58,180,.10), rgba(252,176,69,.12), rgba(255,255,255,.72)) !important;
      border: 1px solid rgba(16,24,38,.10) !important;
      color: rgba(16,24,38,.92) !important;
      padding: 12px 14px !important;
      min-height: 56px !important;
      border-radius: 14px !important;
      box-shadow: 0 10px 20px rgba(16,24,38,.06) !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      width: 100% !important; /* match social buttons which are full width on mobile */
      text-align: center !important;
    }

    /* Remove the small left offset that previously shifted the contact button inside hero card */
    .contact-wrap .contact-hero-card .contact-main-actions .btn-contact-primary{
      position: static !important;
      top: auto !important;
      left: auto !important;
      align-self: stretch !important;
    }

    /* Ensure contact actions align similarly to social actions (stacked full-width buttons) */
    .contact-main-actions{
      display: flex !important;
      flex-direction: column !important;
      gap: 10px !important;
      width: 100% !important;
    }

    /* Make the topbar email occupy full width with no left/right gaps on mobile */
    .topbar{
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    .topbar .container{
      padding-left: env(safe-area-inset-left, 0) !important;
      padding-right: env(safe-area-inset-right, 0) !important;
      /* remove Bootstrap container horizontal gutters on mobile */
      max-width: 100% !important;
    }

    .topbar .topbar-email{
      display: block !important;
      width: 100% !important;
      padding: 10px 0 !important; /* vertical padding while no horizontal padding */
      text-align: center !important; /* centre the email text */
      white-space: normal !important;
      word-break: break-word !important;
      overflow-wrap: anywhere !important;
      box-sizing: border-box !important;
    }

    /* If there are adjacent elements in the topbar, ensure they don't add extra horizontal gap */
    .topbar .container > *{
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    /* Target the exact topbar container classes to ensure we override Bootstrap utilities */
    .topbar .container.d-flex.justify-content-between.align-items-center.flex-wrap.gap-2 {
      justify-content: center !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      width: 100% !important;
    }

    .topbar .container.d-flex.justify-content-between.align-items-center.flex-wrap.gap-2 > .ms-auto {
      margin-left: 0 !important;
      margin-right: 0 !important;
      width: 100% !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    /* Ensure the email anchor is centered (SVG + text) and fills the row */
    .topbar .container.d-flex.justify-content-between.align-items-center.flex-wrap.gap-2 .topbar-email{
      display: inline-flex !important;
      justify-content: center !important;
      align-items: center !important;
      width: 100% !important;
      margin: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      text-align: center !important;
      gap: 8px !important;
    }
}

/* ...existing code... */
