/* ====== FONTS: GERBERA ====== */
@font-face {
    font-family: "Gerbera";
    src: url("../fonts/Gerbera-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gerbera";
    src: url("../fonts/Gerbera.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gerbera";
    src: url("../fonts/Gerbera-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ====== BASE ====== */
:root {
    --bg: #FFFFFF;
    --dark: #101B20;
    --g80: #40464D;
    --g60: #707479;
    --g40: #9CA0A3;
    --container: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: "Gerbera", system-ui, -apple-system, sans-serif;
    color: var(--dark);
    background: var(--bg);
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ====== HEADER ====== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(16,27,32,.06);
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.header__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header__logo {
    display: block;
    height: 64px;
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

/* Nav centered */
.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark);
    transition: opacity .2s;
}

.nav-link:hover { opacity: .6; }

.nav-link--active {
    opacity: 1;
    font-weight: 500;
}

/* Social icons */
.header__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(16,27,32,.15);
    transition: all .3s;
    overflow: hidden;
}

.header__social-link:hover {
    border-color: var(--dark);
    background: rgba(16,27,32,.05);
    transform: translateY(-2px);
}

.header__social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 12px;
    flex-shrink: 0;
}

.header__burger span {
    display: block;
    height: 1px;
    background: var(--dark);
    margin: 6px 0;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid rgba(16,27,32,.08);
}

.mobile-menu--open { display: block; }

.mobile-menu__inner {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mobile-menu__socials {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(16,27,32,.08);
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(16,27,32,.2);
    transition: all .3s;
}

.mobile-social-link:hover {
    border-color: var(--dark);
    background: rgba(16,27,32,.05);
}

.mobile-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ====== ABOUT PAGE ====== */
.about-page {
    padding-top: 0;
}

.about-top {
    padding: 60px 0 32px;
}

.about-breadcrumbs {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(16, 27, 32, .55);
    margin-bottom: 24px;
    text-align: center;
}

.about-title {
    margin: 0;
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
}

.about-subtitle {
    margin: 20px auto 0;
    max-width: 760px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(16, 27, 32, .6);
    text-align: center;
}

/* TICKER */
.hero__ticker {
    width: 100%;
    overflow: hidden;
    background: var(--dark);
    padding: 16px 0;
    margin: 40px 0;
}

.hero__ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.hero__ticker-track span {
    flex-shrink: 0;
    padding-right: 24px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HERO IMAGE */
.about-hero { padding: 0; }

.about-hero__stage {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.about-hero__decor {
    position: absolute;
    font-size: 180px;
    line-height: 1;
    font-weight: 400;
    color: rgba(16, 27, 32, .92);
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.about-hero__decor--p  { left: -20px;  top: 80px; }
.about-hero__decor--o1 { left: 26%;    top: 58%;  font-size: 140px; }
.about-hero__decor--m  { right: 26%;   top: 10%;  font-size: 160px; }
.about-hero__decor--o2 { right: -20px; bottom: 35px; }

/* COLLAGE */
.about-collage {
    padding: 80px 0 100px;
}

.section-label {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(16, 27, 32, .55);
    margin-bottom: 24px;
    text-align: center;
}

.section-title {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(16, 27, 32, .6);
    text-align: center;
}

.about-collage__grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 1.05fr;
    gap: 20px;
    align-items: start;
}

.about-collage__grid img {
    width: 100%;
    display: block;
    border: 1px solid rgba(16, 27, 32, .08);
    background: #fff;
    object-fit: cover;
}

.about-collage__left img   { height: 280px; }
.about-collage__center img { height: 400px; }

.about-collage__right { position: relative; }

.about-collage__right-main { height: 320px; }

.about-collage__right-float {
    position: absolute;
    left: -20%;
    bottom: -80px;
    width: 60%;
    height: 180px;
    object-fit: cover;
    border: 1px solid rgba(16, 27, 32, .08);
    background: #fff;
}

.about-collage__quote {
    margin-top: 100px;
    display: flex;
    justify-content: flex-end;
}

.about-collage__quote-text {
    max-width: 520px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(16, 27, 32, .75);
    text-align: left;
}

/* BOTTOM IMAGE */
.about-bottom { padding: 0; }

.about-bottom__imgwrap {
    width: 100%;
    overflow: hidden;
}

.about-bottom__imgwrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    gap: 48px;
}

.footer__brand {
    display: flex;
    align-items: center;
}

.footer__logo {
    height: 64px;
    width: auto;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__title {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .5;
    margin-bottom: 20px;
}

.footer__col a,
.footer__col div {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    opacity: .8;
}

.footer__col a:hover { opacity: 1; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12px;
    opacity: .5;
}

.footer__bottom a { opacity: 1; }
.footer__bottom a:hover { opacity: .7; }

/* ====== REVEAL ====== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
    .about-title { font-size: 32px; line-height: 1.2; }
    .about-hero__stage { height: 420px; }

    .about-collage__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-collage__left img,
    .about-collage__center img,
    .about-collage__right-main { height: 320px; }

    .about-collage__right-float {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 240px;
        margin-top: 16px;
    }

    .about-collage__quote { justify-content: center; margin-top: 60px; }
    .about-collage__quote-text { text-align: center; }

    .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .header__nav { display: none; }
    .header__burger { display: block; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .footer__cols { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 560px) {
    .about-hero__decor { display: none; }
    .about-hero__stage { height: 300px; }
    .about-title { font-size: 26px; }
    .about-subtitle, .section-desc { font-size: 13px; }
    .hero__ticker-track span { font-size: 10px; }
}