:root {
    --gold: #D4AF37;
    --gold-soft: #E8CC70;
    --gold-dim: rgba(212, 175, 55, .28);
    --green: #457021;
    --green-deep: #2B4715;
    --ink: #0A0C08;
    --panel: #12150E;
    --panel-2: #171B12;
    --ivory: #F3F1E7;
    --stone: #A6A290;
    --stone-dim: #726E5F;
    --line: rgba(212, 175, 55, .16);
    --radius: 2px;
    --maxw: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--ivory);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ivory);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
}

section {
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .01em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: #181300;
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: rgba(243, 241, 231, .28);
    color: var(--ivory);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------- NAV ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: background .35s ease, padding .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(10, 12, 8, .92);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text .b1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: .02em;
}

.brand-text .b2 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: .24em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--stone);
    position: relative;
    padding: 4px 0;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--ivory);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lang-toggle {
    display: flex;
    border: 1px solid rgba(243, 241, 231, .25);
    border-radius: 20px;
    overflow: hidden;
}

.lang-toggle button {
    background: transparent;
    border: none;
    color: var(--stone);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 7px 14px;
    cursor: pointer;
    transition: all .2s;
}

.lang-toggle button.active {
    background: var(--gold);
    color: #181300;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--ivory);
}

.mobile-panel {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 99;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 28px;
}

.mobile-panel.open {
    display: flex;
}

.mobile-panel a {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.mobile-panel .lang-toggle {
    align-self: flex-start;
    margin-top: 10px;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    /*display: flex;
    align-items: flex-end;*/
    background:
        linear-gradient(180deg, rgba(10, 12, 8, .55) 0%, rgba(10, 12, 8, .72) 55%, var(--ink) 100%),
        linear-gradient(90deg, rgba(10, 12, 8, .55), rgba(43, 71, 21, .28)),
        url('https://images.unsplash.com/photo-1776914579657-3396d13eb13e?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    padding-top: 180px;
}

.hero-inner {
    padding-bottom: 96px;
  
}

.hero .eyebrow {
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(38px, 5.4vw, 64px);
    line-height: 1.06;
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero p {
    color: var(--stone);
    font-size: 17px;
    max-width: 560px;
    margin-bottom: 38px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- TICKER ---------- */
.ticker {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
}

.ticker-track {
    display: inline-flex;
    gap: 48px;
    animation: scrollTicker 32s linear infinite;
}

.ticker-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--stone-dim);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 48px;
}

.ticker-track span::after {
    content: '◆';
    color: var(--gold);
    font-size: 9px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- SECTION SHELL ---------- */
.section {
    padding: 120px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head .eyebrow {
    margin-bottom: 20px;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin-bottom: 18px;
}

.section-head p {
    color: var(--stone);
    font-size: 16px;
}

.alt-bg {
    background: var(--panel);
}

/* ---------- COMPANY ---------- */
.company-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: start;
    margin-bottom: 96px;
}

.legal-block p {
    color: var(--stone);
    margin-bottom: 20px;
    font-size: 15.5px;
}

.legal-block p strong {
    color: var(--ivory);
    font-weight: 600;
}

.wy-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(180deg, rgba(10, 12, 8, 0) 30%, rgba(10, 12, 8, .92) 100%),
        url('../images/115826.jpg') center/cover no-repeat;
}

.wy-card-inner {
    padding: 28px;
}

.wy-card-inner .tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.wy-card-inner h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    margin-bottom: 8px;
}

.wy-card-inner p {
    color: var(--stone);
    font-size: 13.5px;
}

/* org chart */
.org-chart {
    padding: 20px 0 8px;
}

.org-root {
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(212, 175, 55, .10), rgba(212, 175, 55, .02));
}

.org-root .b1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .01em;
}

.org-root .b2 {
    font-size: 10.5px;
    letter-spacing: .18em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
}

.org-rail {
    width: 1px;
    height: 40px;
    background: var(--gold-dim);
    margin: 0 auto;
}

.org-rail-h {
    height: 1px;
    background: var(--gold-dim);
    max-width: 760px;
    margin: 0 auto;
}

.org-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 14px;
    margin-top: 0px;
    padding-top: 34px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.org-node {
    position: relative;
    flex: 1 1 160px;
    max-width: 190px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px 14px;
    text-align: center;
    background: var(--panel-2);
    transition: border-color .25s, transform .25s;
}

.org-node::before {
    content: '';
    position: absolute;
    top: -34px;
    left: 50%;
    width: 1px;
    height: 34px;
    background: var(--gold-dim);
}

.org-node:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.org-node .num {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .1em;
    display: block;
    margin-bottom: 8px;
}

.org-node .name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.3;
}

/* ---------- PORTFOLIO / GROUP COMPANIES ---------- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    border: 1px solid var(--line);
    background: var(--panel-2);
    border-radius: 6px;
    padding: 32px 28px;
    transition: border-color .25s, transform .25s;
}

.portfolio-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.portfolio-card.is-tbd {
    border-style: dashed;
    opacity: .72;
}

.portfolio-logo {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.portfolio-card .sector {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.portfolio-card.is-tbd .sector {
    color: var(--stone-dim);
}

.portfolio-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.portfolio-card p {
    color: var(--stone);
    font-size: 14px;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-card {
    background: var(--ink);
    padding: 40px 34px;
    transition: background .25s, transform .2s ease;
    cursor: pointer;
}

.service-card:hover,
.service-card:focus-visible {
    background: var(--panel);
    transform: translateY(-2px);
}

.service-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 18.5px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--stone);
    font-size: 14.5px;
}

.service-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 8, .72);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 110;
}

.service-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.service-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    background: linear-gradient(180deg, var(--panel) 0%, var(--ink) 100%);
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 48px rgba(0, 0, 0, .25);
    padding: 34px 28px;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 111;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.service-drawer.open {
    transform: translateX(0);
}

.service-drawer-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.service-drawer-eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-drawer h3 {
    font-size: 24px;
    line-height: 1.2;
}

.service-drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ivory);
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.service-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-drawer-description {
    color: var(--stone);
    font-size: 15px;
    line-height: 1.7;
}

.service-drawer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 18px;
    color: var(--ivory);
}

.service-drawer-list li {
    color: var(--stone);
    font-size: 14.5px;
}

/* ---------- PARTNERS ---------- */
.partners-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.partners-photo {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4/5;
}

.partners-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
    margin-top: 38px;
}

.principle .n {
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 8px;
}

.principle h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.principle p {
    color: var(--stone);
    font-size: 14px;
}

.partners-copy p.lead {
    color: var(--stone);
    font-size: 16px;
    margin-bottom: 8px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.contact-info-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.contact-info-item .k {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-item .v {
    font-size: 16px;
    color: var(--ivory);
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field label {
    display: block;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 8px;
    font-weight: 600;
}

.field input,
.field textarea {
    width: 100%;
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--ivory);
    padding: 13px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    border-radius: 3px;
    transition: border-color .2s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 13px;
    color: var(--stone-dim);
    margin-top: -4px;
}

.form-success {
    display: none;
    color: var(--green);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 600;
}

.form-success.show {
    display: block;
}

/* ---------- FOOTER ---------- */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 92px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(18, 140, 126, .35);
    z-index: 120;
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(18, 140, 126, .45);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

.progress-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(10, 12, 8, .9);
    color: var(--ivory);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 121;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}

.progress-wrap.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.progress-wrap:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.progress-wrap svg {
    width: 22px;
    height: 22px;
}

.progress-circle {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0deg, var(--gold) 0deg, rgba(212, 175, 55, .16) 0deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
    transition: background .2s ease;
}

footer {
    border-top: 1px solid var(--line);
    padding: 44px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    color: var(--stone-dim);
    font-size: 12.5px;
    max-width: 520px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--stone);
    font-size: 13px;
}

@media(max-width:980px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .company-grid,
    .partners-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .partners-photo {
        aspect-ratio: 16/9;
    }
}

@media(max-width:600px) {

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .wrap {
        padding: 0 22px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}