:root{
    --primary:#008c94;
    --secondary:#6a7171;

    --heroText:#ffffff;
    --heroOverlayA: rgba(0,0,0,.72);
    --heroOverlayB: rgba(0,0,0,.25);

    --ink:#111827;
    --muted:#6a7171;
    --warm:#008c94;
    --beige:#eef2f1;
}

/* ---------- Top Bar ---------- */
.hl-topbar{
    background: rgba(0, 0, 0, 0.919);
    color: rgba(255,255,255,.86);
    position: relative;
    z-index: 60;
    height: 40px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.hl-topbar a{
    color: rgba(255,255,255,.86);
    text-decoration: none;
    font-size: 10px;
}
.hl-topbar a:hover{ color:#fff; }
.hl-topbar .sep{ opacity:.6; }

.hl-topbar-icon{
    width: 22px; height: 22px;
    display:inline-flex; align-items:center; justify-content:center;
    border:1px solid rgba(255,255,255,.24);
    color: rgba(255,255,255,.92);
    text-decoration:none;
    transition: .2s ease;
}
.hl-topbar-icon:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.34);
}

/* ---------- Hero Wrapper ---------- */
.hl-hero{
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--heroText);
}
.hl-hero-bg{ position:absolute; inset:0; background-size: cover; background-position: center; transform: scale(1.02); }
.hl-hero-overlay{
    position:absolute; inset:0;
    background: linear-gradient(90deg, var(--heroOverlayA) 0%, rgba(0,0,0,.45) 55%, var(--heroOverlayB) 100%);
}

/* ---------- Navbar on Hero ---------- */
.hl-nav{
    position: absolute;
    left:0; right:0;
    top: 0;
    z-index: 55;
    padding: 14px 0;
    background: transparent;
}
.hl-brand{
    color:#fff !important;
    font-weight: 700;
    letter-spacing:.2px;
    display:flex;
    align-items:center;
    gap:.65rem;
}
.hl-brand-mark{
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.22);
    position: relative;
    flex: 0 0 auto;
}
.hl-brand-mark::after{
    content:"";
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary);
    position:absolute;
    left:50%; top:50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 6px rgba(0,140,148,.18);
}

.hl-nav .nav-link{ color: rgba(255,255,255,.92) !important; font-size: 15px; padding: .55rem .8rem; }
.hl-nav .nav-link:hover{ color:#fff !important; }

.hl-nav .dropdown-menu{
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.12);
    box-shadow: 0 18px 50px rgba(2,8,23,.22);
}

.hl-cta{
    background: #fff;
    color: #111 !important;
    border: 0;
    font-weight: 650;
    border-radius: 0 !important;
    padding: .7rem 1.15rem;
}
.hl-cta:hover{ background: rgba(255,255,255,.9); }

.hl-nav-icon{ color: rgba(255,255,255,.9); text-decoration:none; font-size: 18px; }
.hl-nav-icon:hover{ color:#fff; }

.hl-nav .navbar-toggler{ border: 1px solid rgba(255,255,255,.35); padding: .35rem .55rem; }
.hl-nav .navbar-toggler:focus{ box-shadow: 0 0 0 .2rem rgba(0,140,148,.25); }
.hl-nav .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%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero Content ---------- */
.hl-hero-content{ position: relative; z-index: 10; padding-top: 150px; padding-bottom: 60px; }
.hl-kicker{ font-size: 16px; opacity: .9; margin-bottom: 12px; }
.hl-title{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.24;
    font-size: clamp(42px, 5.2vw, 72px);
    margin: 0 0 22px;
    letter-spacing: -.5px;
}
.hl-title span {
    font-size: 26px;
}
.hl-circle-btn{
    width: 92px; height: 92px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.30);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; font-size: 28px;
    background: rgba(0,0,0,.16);
    transition: .2s ease;
}
.hl-circle-btn:hover{ transform: translateY(-2px); background: rgba(0,0,0,.28); border-color: rgba(255,255,255,.45); }

.hl-bottom{ margin-top: 36px; padding-top: 18px; }
.hl-bottom-line{ height: 1px; width: 100%; background: rgba(255,255,255,.25); margin-bottom: 18px; }
.hl-sub{ font-size: 16px; opacity: .92; }
.hl-tags{ display:flex; gap: 20px; flex-wrap: wrap; margin-top: 14px; }
.hl-tag{ color: rgba(255,255,255,.90); text-decoration:none; font-size: 14px; display:inline-flex; align-items:center; gap: 8px; }
.hl-tag:hover{ color:#fff; }
.hl-quote{ font-size: 14px; opacity: .86; }

@media (max-width: 991.98px){
    .hl-topbar{ display:none; }
    .hl-nav{
    position: sticky;
    top: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    padding: 10px 0;
    }
    .hl-hero{ min-height: auto; }
    .hl-hero-content{ padding-top: 46px; }
    .hl-circle-btn{ width: 78px; height: 78px; font-size: 24px; }
}

/* ---------- Shared section typography ---------- */
.kicker{
    font-size: 13px;
    color: var(--warm);
    letter-spacing: .02em;
    margin-bottom: 12px;
}
.title{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.15;
    font-size: clamp(34px, 3.2vw, 54px);
    color: #1b1f24;
    margin: 0;
}

/* ---------- About ---------- */
.about-screenshot{ background: #ffffff; padding-top: 110px; padding-bottom: 110px; }
.about-kicker{
    font-size: 15px;
    letter-spacing: .02em;
    color: color-mix(in oklab, var(--primary) 65%, var(--warm));
    margin-bottom: 18px;
}
.about-title{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.12;
    font-size: clamp(40px, 3.6vw, 64px);
    color: #1b1f24;
    margin: 0;
}
.about-arrow{ margin-top: 60px; color: #1b1f24; opacity: .95; }
.about-copy{ font-size: 18px; line-height: 1.9; color: #2f343a; max-width: 560px; margin-top: 150px; }
.about-actions{ display: flex; gap: 22px; margin-top: 42px; align-items: center; flex-wrap: wrap; }

.btn-about-primary{
    background: var(--warm);
    color: #fff;
    border: 1px solid var(--warm);
    padding: 14px 28px;
    font-weight: 400;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}
.btn-about-primary:hover{
    background: color-mix(in oklab, var(--warm) 85%, black);
    border-color: color-mix(in oklab, var(--warm) 85%, black);
    color: #fff;
}
.btn-about-outline{
    background: transparent;
    color: #1b1f24;
    border: 1px solid #1b1f24;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}
.btn-about-outline:hover{ background: rgba(27,31,36,.06); color: #1b1f24; }

@media (max-width: 991.98px){
    .about-screenshot{ padding-top: 70px; padding-bottom: 70px; }
    .about-copy{ margin-top: 28px; }
    .about-arrow{ margin-top: 28px; }
}

/* ---------- Cards look ---------- */
.expertise-section{ background: var(--beige); padding-top: 100px; padding-bottom: 100px; }
.expertise-kicker{ font-size: 15px; color: var(--warm); margin-bottom: 14px; }
.expertise-title{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.15;
    font-size: clamp(38px, 3.8vw, 62px);
    color: #1b1f24;
    margin: 0;
}
.expertise-card{
    background: #ffffff;
    padding: 42px 38px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 40px rgba(0,0,0,.06);
    border-radius: 0;
    display:flex;
    flex-direction:column;
    min-height: 420px;
}
.expertise-icon{
    width: 52px; height: 52px;
    display:flex; align-items:center; justify-content:center;
    border: 1px solid rgba(0,0,0,.12);
    color: #1b1f24;
    font-size: 26px;
    margin-bottom: 26px;
}
.expertise-card-title{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 14px;
    color:#1b1f24;
}
.expertise-card-text{
    color: #4b4f55;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 0;
    max-width: 70ch;
}
.expertise-tags{
    margin-top: auto;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 34px;
}
.expertise-tag{
    font-size: 11px;
    padding: 6px 10px;
    border: 1px solid rgba(0,0,0,.35);
    color: #2b2f33;
    background: transparent;
    line-height: 1;
}
.expertise-btn{
    background: #1b1f24;
    color: #fff;
    border: 1px solid #1b1f24;
    padding: 14px 26px;
    border-radius: 0;
    font-weight: 400;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
}
.expertise-btn:hover{ background: #111316; border-color: #111316; color:#fff; }
@media (max-width: 991.98px){
    .expertise-section{ padding-top: 70px; padding-bottom: 70px; }
    .expertise-card{ min-height: auto; }
    .expertise-card-text{ max-width: none; }
}

/* ---------- IP Services section ---------- */
.ip-section{ background:#fff; padding: 110px 0; position:relative; overflow:hidden; }
.ip-section::before{
    content:"";
    position:absolute;
    right: -90px;
    top: -60px;
    width: 520px;
    height: 520px;
    opacity: .06;
    background-repeat:no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Emblem-important.svg/512px-Emblem-important.svg.png");
    pointer-events:none;
}
.ip-tabs .nav-link{
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.12);
    color:#1b1f24;
    font-weight: 700;
    padding: 12px 16px;
}
.ip-tabs .nav-link.active{
    background: #1b1f24;
    color:#fff;
    border-color:#1b1f24;
}
.ip-list li{
    margin-bottom: 10px;
    color:#4b4f55;
    line-height: 1.9;
    font-size: 14px;
}
@media (max-width: 991.98px){
    .ip-section{ padding: 70px 0; }
    .ip-section::before{ width: 420px; height: 420px; right:-140px; top:-120px; }
}

/* ---------- Highlights (Recent Experiences) ---------- */
.highlights-section{ background: var(--beige); padding: 110px 0; }
.hl-card{
    background:#fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 0;
    padding: 26px 24px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,.06);
}
.hl-card h3{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: 20px;
    color:#1b1f24;
    margin: 0 0 10px;
}
.hl-card p{
    margin:0;
    color:#4b4f55;
    font-size: 13px;
    line-height: 1.9;
}
@media (max-width: 991.98px){
    .highlights-section{ padding: 70px 0; }
}

/* ---------- Experience (detailed accordion) ---------- */
.exp-section{ background:#fff; padding: 110px 0; }
.exp-faq{ border-top: 1px solid rgba(0,0,0,.10); }
.exp-faq-item{ border-bottom: 1px solid rgba(0,0,0,.10); }
.exp-faq-q{
    width:100%;
    background: transparent;
    border: 0;
    padding: 18px 0;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 16px;
    color:#1b1f24;
    font-size: 14px;
    font-weight: 800;
    text-align:left;
}
.exp-faq-ico{
    width: 22px; height: 22px;
    display:inline-flex; align-items:center; justify-content:center;
    border: 1px solid rgba(0,0,0,.28);
    color:#1b1f24;
    flex: 0 0 auto;
    font-size: 12px;
}
.exp-faq-a{
    padding: 0 0 18px 0;
    color:#5a5f66;
    font-size: 13px;
    line-height: 1.9;
    max-width: 92ch;
}
.exp-bullets{
    margin: 10px 0 0;
    padding-left: 18px;
}
.exp-bullets li{ margin-bottom: 8px; }

.exp-media{
    position: relative;
    height: 420px;
    overflow:hidden;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.06);
}
.exp-media-bg{ position:absolute; inset:0; background-size: cover; background-position: center; transform: scale(1.02); }
.exp-media-overlay{
    position:absolute; inset:0;
    background: radial-gradient(circle at center, rgba(0,0,0,.10) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.70) 100%);
}
@media (max-width: 991.98px){
    .exp-section{ padding: 70px 0; }
    .exp-media{ height: 320px; }
}

/* ---------- Offices ---------- */
.offices-section{ background:#fff; padding: 110px 0; }
.office-card{
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 0;
    padding: 28px 26px;
    height: 100%;
    box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.office-city{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    color:#1b1f24;
    margin-bottom: 10px;
}
.office-line{ color:#4b4f55; font-size: 14px; line-height: 1.9; margin: 0; }
.office-meta a{ color: var(--primary); text-decoration:none; }
.office-meta a:hover{ text-decoration:underline; }
@media (max-width: 991.98px){ .offices-section{ padding: 70px 0; } }

/* ---------- Team ---------- */
.team-section{ background: #ffffff; padding-top: 110px; padding-bottom: 110px; }
.team-title{
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.1;
    font-size: clamp(34px, 3vw, 54px);
    color: #1b1f24;
    margin: 0 0 18px;
}
.team-sub{ color: #4b4f55; font-size: 14px; line-height: 1.9; margin-bottom: 18px; }
.team-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    color: var(--warm);
    text-decoration: none;
    border-bottom: 1px solid rgba(169,120,61,.35);
    padding-bottom: 2px;
}
.team-link:hover{
    color: color-mix(in oklab, var(--warm) 85%, black);
    border-bottom-color: rgba(169,120,61,.65);
}
.team-img{
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 300px;
    background:#f3f4f6;
    border: 1px solid rgba(0,0,0,.06);
}
.team-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.01);
    transition: transform .25s ease;
}
.team-card:hover .team-img img{ transform: scale(1.06); }
.team-social{
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: flex;
    gap: 10px;
}
.team-social a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    text-decoration:none;
    font-size: 14px;
}
.team-social a:hover{ background: rgba(0,0,0,.60); }
.team-info{ padding-top: 14px; }
.team-name{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
    color:#1b1f24;
}
.team-role{ margin-top: 4px; font-size: 12px; color:#6a7171; }
@media (max-width: 991.98px){ .team-section{ padding-top: 70px; padding-bottom: 70px; } .team-img{ height: 280px; } }

/* ---------- Footer + ToTop ---------- */
.site-footer{ background:#0b1220; color: rgba(255,255,255,.86); padding: 36px 0; }
.site-footer a{ color: rgba(255,255,255,.86); text-decoration:none; }
.site-footer a:hover{ color:#fff; text-decoration:underline; }

#toTop{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.15);
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity: 0;
    pointer-events:none;
    transition: .2s ease;
    z-index: 99;
    box-shadow: 0 12px 25px rgba(0,0,0,.12);
}
#toTop.show{ opacity: 1; pointer-events:auto; }