/* About page — brand / logo section */

.about-brand {
    position: relative;
    padding: 4.5rem 0 1rem;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(196, 137, 74, 0.14), transparent 58%),
        radial-gradient(700px 380px at 95% 20%, rgba(42, 51, 64, 0.08), transparent 55%),
        linear-gradient(180deg, #fbfaf7 0%, #f4f1ec 100%);
}

.about-brand-glow {
    position: absolute;
    inset: auto 10% -40% 10%;
    height: 280px;
    background: radial-gradient(circle, rgba(196, 137, 74, 0.18), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.about-brand-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2.75rem;
    padding: 2.5rem 2.75rem;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 250, 247, 0.88) 100%);
    border: 1px solid rgba(18, 22, 28, 0.07);
    box-shadow:
        0 20px 50px rgba(18, 22, 28, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.about-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #c4894a, #e2b07a, #a86f35);
}

html[dir="ltr"] .about-brand-panel::before {
    inset: 0 0 0 auto;
}

.about-brand-mark {
    position: relative;
    width: 168px;
    height: 168px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.about-brand-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(196, 137, 74, 0.35);
    background:
        conic-gradient(from 210deg, rgba(196, 137, 74, 0.22), transparent 35%, rgba(196, 137, 74, 0.12), transparent 70%, rgba(196, 137, 74, 0.25));
    animation: aboutBrandSpin 18s linear infinite;
}

.about-brand-ring::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px dashed rgba(18, 22, 28, 0.1);
}

.about-brand-logo {
    position: relative;
    z-index: 1;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow:
        0 14px 34px rgba(18, 22, 28, 0.12),
        0 0 0 8px rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.about-brand-logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    display: block;
}

.about-brand-fallback {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #12161c, #2a3340);
    color: #e2b07a;
    font-size: 2.8rem;
    font-weight: 800;
}

.about-brand-copy {
    min-width: 0;
    text-align: right;
}

html[dir="ltr"] .about-brand-copy {
    text-align: left;
}

.about-brand-eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a86f35;
}

.about-brand-name {
    margin: 0 0 0.35rem;
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #12161c;
}

.about-brand-name-alt {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #5c6570;
}

.about-brand-tagline {
    margin: 0;
    max-width: 36em;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5c6570;
}

@keyframes aboutBrandSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .about-brand {
        padding: 3rem 0 0.5rem;
    }

    .about-brand-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1.75rem;
        padding: 2rem 1.5rem;
    }

    .about-brand-panel::before {
        inset: 0 0 auto 0;
        width: auto;
        height: 4px;
        background: linear-gradient(90deg, #c4894a, #e2b07a, #a86f35);
    }

    .about-brand-copy,
    html[dir="ltr"] .about-brand-copy {
        text-align: center;
    }

    .about-brand-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .about-brand-mark {
        width: 140px;
        height: 140px;
    }

    .about-brand-logo {
        width: 100px;
        height: 100px;
    }
}
