/* about.css */

/* ============================================================
   PAGE WRAPPER
============================================================ */
body {
    background: #111;
    margin: 0;
    padding: 0;
}

.about-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   MOBILE NAV (fixed, top corners)
============================================================ */
.about-mobile-nav {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 50;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
.about-mobile-nav img {
    width: 32px;
    height: 32px;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease;
}
.about-mobile-nav img:hover { transform: scale(1.1); }

/* ============================================================
   HERO BANNER — Option C style
============================================================ */
.about-hero {
    background: #111;
    padding: 0 0 0 0;
    position: relative;
    border-bottom: none;
}

/* Desktop nav bar inside hero */
.hero-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-nav-link {
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.hero-nav-link:hover { color: #fff; }

/* Icon + wordmark grid */
.hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
    padding: 48px 48px 44px;
    max-width: 900px;
}

.hero-icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.hero-icon-label {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9fbc99;
}

.hero-text-block { }

.hero-title {
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 3.2rem;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.hero-tagline {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.82rem;
    color: #aaa;
    letter-spacing: 1.5px;
    border-top: 1px solid #2a2a2a;
    padding-top: 12px;
    margin-top: 4px;
    text-transform: uppercase;
}

.hero-accent-line {
    height: 3px;
    background: linear-gradient(90deg, #9fbc99, #5a7a55, #9fbc99);
}

/* ============================================================
   TORN EDGE
============================================================ */
.torn-into-dark {
    width: 100%;
    height: 28px;
    background: #111;
    /* jagged bottom edge biting into the first panel */
    clip-path: polygon(
        0% 0%, 3% 100%, 6% 0%, 9% 100%, 12% 0%, 15% 100%,
        18% 0%, 21% 100%, 24% 0%, 27% 100%, 30% 0%, 33% 100%,
        36% 0%, 39% 100%, 42% 0%, 45% 100%, 48% 0%, 51% 100%,
        54% 0%, 57% 100%, 60% 0%, 63% 100%, 66% 0%, 69% 100%,
        72% 0%, 75% 100%, 78% 0%, 81% 100%, 84% 0%, 87% 100%,
        90% 0%, 93% 100%, 96% 0%, 99% 100%, 100% 0%
    );
    margin-bottom: -1px;
}

/* ============================================================
   PANELS
============================================================ */
.about-panel {
    padding: 72px 48px;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.about-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.panel-dark { background: #111; }
.panel-light { background: #f5f0eb; }
.panel-mid   { background: #141f15; border-top: 1px solid #1e3020; }
.panel-form  { background: #0a0a0a; }

.panel-big-label {
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -1px;
    color: #9fbc99;
    margin-bottom: 20px;
}
.panel-big-label-dark { color: #222; }

.panel-body {
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 560px;
}
.panel-body-dark  { color: #bbb; }
.panel-body-light { color: #444; }

/* Stat row */
.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-value {
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 1.8rem;
    color: #9fbc99;
    letter-spacing: 1px;
}

.stat-label {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ============================================================
   PANEL PHOTO ROW (image left, text right)
============================================================ */
.panel-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.panel-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================================
   FEEDBACK FORM
============================================================ */
.form-title {
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.form-subtitle {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.72rem;
    color: #9fbc99;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.form-type-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-type-btn {
    padding: 6px 18px;
    border: 1.5px solid #2a2a2a;
    border-radius: 20px;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    color: #555;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.15s, color 0.15s;
}
.form-type-btn:hover  { border-color: #9fbc99; color: #9fbc99; }
.form-type-btn.active { border-color: #9fbc99; color: #9fbc99; }

.form-field {
    display: block;
    width: 100%;
    max-width: 520px;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: #141414;
    border: 1.5px solid #222;
    color: #ddd;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.15s;
}
.form-field:focus { border-color: #9fbc99; }
.form-field::placeholder { color: #444; }

.form-textarea {
    height: 110px;
    resize: vertical;
}

.form-submit {
    background: transparent;
    border: 1.5px solid #9fbc99;
    color: #9fbc99;
    padding: 11px 32px;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.form-submit:hover { background: #9fbc99; color: #111; }

/* ============================================================
   FOOTER
============================================================ */
.about-footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}

.footer-text {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.75rem;
    color: #444;
    max-width: 480px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.72rem;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.5px;
}
.footer-link:hover { color: #9fbc99; border-color: #9fbc99; }

.footer-ig {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-ig:hover { opacity: 0.7; }
.footer-ig-icon { display: block; height: 18px; width: auto; max-width: 18px; flex-shrink: 0; object-fit: contain; filter: grayscale(100%) brightness(0.6); }
.footer-ig-handle {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.72rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 768px) {
    .about-mobile-nav { display: flex; }
    .hero-nav { display: none; }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 72px 28px 36px; /* top padding clears mobile nav */
        max-width: 100%;
    }

    .hero-icon-block {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-icon { width: 64px; height: 64px; }

    .hero-title { font-size: 2.2rem; }

    .about-panel { padding: 48px 28px; }

    .panel-big-label { font-size: 3.5rem; }

    .panel-body { font-size: 0.95rem; }

    .panel-photo-row { grid-template-columns: 1fr; gap: 24px; }
    .panel-photo { max-width: 100%; }

    .stat-row { gap: 24px; flex-wrap: wrap; }

    .form-field { max-width: 100%; }

    .about-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 28px;
    }
}
