/* ==========================================
   LRM STRENGTH SYSTEMS
   ABOUT PAGE
========================================== */


/* ==========================================
   VARIABLES
========================================== */

:root {

    --red: #f11b1b;

    --red-dark: #b81414;

    --black: #050505;

    --dark: #101010;

    --dark-gray: #1a1a1a;

    --white: #ffffff;

    --gray: #999999;

    --light-gray: #eeeeee;

}


/* ==========================================
   RESET
========================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: Arial, Helvetica, sans-serif;

    background: var(--white);

    color: var(--black);

    overflow-x: hidden;

}


/* ==========================================
   CONTAINER
========================================== */

.about-container {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

}


/* ==========================================
   HEADER
========================================== */

.site-header {

    position: sticky;

    top: 0;

    width: 100%;

    background: #000;

    border-bottom: 1px solid #222;

    z-index: 1000;

}


.header-container {

    width: 90%;

    max-width: 1300px;

    min-height: 100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo-link {

    display: flex;

    align-items: center;

}


.site-logo {

    height: 85px;

    width: auto;

    object-fit: contain;

}


/* ==========================================
   NAVIGATION
========================================== */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 28px;

}


.main-navigation a {

    color: var(--white);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: color 0.25s ease;

}


.main-navigation a:hover,

.main-navigation a.active {

    color: var(--red);

}


/* ==========================================
   HERO
========================================== */

.about-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            #050505,
            #181818,
            #050505
        );

}


.about-hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(241, 27, 27, 0.15),
            transparent 70%
        );

    right: -200px;

    top: 50%;

    transform: translateY(-50%);

}


.hero-background-text {

    position: absolute;

    right: -30px;

    bottom: -80px;

    color: rgba(255, 255, 255, 0.025);

    font-size: 400px;

    font-weight: 900;

    letter-spacing: -30px;

    user-select: none;

}


.about-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.section-eyebrow {

    color: var(--red);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.about-hero h1 {

    color: var(--white);

    font-size: clamp(70px, 10vw, 140px);

    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -6px;

    margin-bottom: 35px;

}


.about-hero h1 span {

    color: var(--red);

}


.hero-description {

    max-width: 600px;

    color: #999;

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 40px;

}


.hero-button {

    display: inline-block;

    padding: 18px 32px;

    background: var(--red);

    color: var(--white);

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: all 0.25s ease;

}


.hero-button:hover {

    background: var(--white);

    color: var(--black);

    transform: translateY(-4px);

}


/* ==========================================
   JOSH STORY
========================================== */

.josh-story {

    padding: 130px 20px;

    background: var(--white);

}


.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


/* ==========================================
   IMAGE PLACEHOLDER
========================================== */

.josh-image-wrapper {

    position: relative;

}


.josh-image-wrapper::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    border: 4px solid var(--red);

    top: 25px;

    left: 25px;

}


.josh-image-placeholder {

    position: relative;

    z-index: 2;

    min-height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background:

        linear-gradient(
            135deg,
            #111,
            #222
        );

    color: var(--white);

}


.josh-image-placeholder span {

    color: var(--red);

    font-size: 90px;

    font-weight: 900;

    letter-spacing: -5px;

}


.josh-image-placeholder p {

    margin-top: 15px;

    color: #777;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* ==========================================
   STORY CONTENT
========================================== */

.story-content h2 {

    font-size: clamp(40px, 5vw, 65px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -2px;

    margin-bottom: 30px;

}


.story-content h2 span {

    display: block;

    color: var(--red);

}


.story-content p {

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 20px;

}


.location-tag {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding: 14px 20px;

    background: #111;

    color: var(--white);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

}


.location-icon {

    color: var(--red);

}


/* ==========================================
   LRM MISSION
========================================== */

.lrm-mission {

    padding: 130px 20px;

    background: #080808;

    color: var(--white);

}


.mission-header {

    max-width: 850px;

    margin-bottom: 70px;

}


.mission-header h2 {

    font-size: clamp(45px, 6vw, 75px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -3px;

}


.mission-header h2 span {

    color: var(--red);

    display: block;

}


.mission-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.mission-card {

    padding: 45px 35px;

    background: #111;

    border-top: 3px solid var(--red);

    transition: all 0.3s ease;

}


.mission-card:hover {

    transform: translateY(-10px);

    background: #161616;

}


.mission-number {

    color: var(--red);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 45px;

}


.mission-card h3 {

    font-size: 22px;

    font-weight: 900;

    margin-bottom: 20px;

}


.mission-card p {

    color: #888;

    font-size: 15px;

    line-height: 1.7;

}


/* ==========================================
   STRONGMAN SECTION
========================================== */

.strongman-section {

    padding: 130px 20px;

    background: #f2f2f2;

}


.strongman-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.strongman-content h2 {

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -3px;

    margin-bottom: 30px;

}


.strongman-content h2 span {

    display: block;

    color: var(--red);

}


.strongman-content p {

    color: #666;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 20px;

}


.red-button {

    display: inline-block;

    margin-top: 20px;

    padding: 18px 30px;

    background: var(--red);

    color: var(--white);

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: all 0.25s ease;

}


.red-button:hover {

    background: var(--black);

    transform: translateY(-4px);

}


/* ==========================================
   STRONGMAN STATEMENT
========================================== */

.strongman-statement {

    min-height: 500px;

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--red);

    color: var(--white);

}


.statement-number {

    color: var(--black);

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 5px;

    margin-bottom: 60px;

}


.strongman-statement h3 {

    font-size: clamp(50px, 6vw, 80px);

    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -4px;

}


.strongman-statement h3 span {

    color: var(--black);

}


/* ==========================================
   PHILOSOPHY
========================================== */

.philosophy-section {

    padding: 140px 20px;

    background: var(--white);

}


.philosophy-content {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}


.philosophy-content h2 {

    font-size: clamp(42px, 6vw, 75px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -3px;

    margin-bottom: 35px;

}


.philosophy-content h2 span {

    color: var(--red);

}


.philosophy-content p {

    max-width: 750px;

    margin: 0 auto 20px;

    color: #666;

    font-size: 17px;

    line-height: 1.8;

}


/* ==========================================
   QUOTE
========================================== */

.quote-section {

    padding: 130px 20px;

    background: #080808;

    color: var(--white);

}


.big-quote {

    max-width: 1000px;

    margin: auto;

    text-align: center;

}


.quote-symbol {

    display: block;

    color: var(--red);

    font-size: 120px;

    line-height: 0.6;

    margin-bottom: 35px;

}


.big-quote h2 {

    font-size: clamp(35px, 5vw, 65px);

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -2px;

}


.big-quote h2 span {

    color: var(--red);

}


.big-quote p {

    margin-top: 35px;

    color: #777;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* ==========================================
   CTA
========================================== */

.about-cta {

    padding: 140px 20px;

    background: var(--red);

    color: var(--white);

    text-align: center;

}


.about-cta .section-eyebrow {

    color: var(--black);

}


.about-cta h2 {

    max-width: 900px;

    margin: auto;

    font-size: clamp(50px, 7vw, 85px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -4px;

}


.about-cta h2 span {

    display: block;

    color: var(--black);

}


.about-cta p:not(.section-eyebrow) {

    max-width: 650px;

    margin: 30px auto;

    font-size: 17px;

    line-height: 1.7;

}


.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


.cta-primary,

.cta-secondary {

    padding: 18px 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: all 0.25s ease;

}


.cta-primary {

    background: var(--black);

    color: var(--white);

}


.cta-primary:hover {

    background: #222;

    transform: translateY(-4px);

}


.cta-secondary {

    border: 2px solid var(--black);

    color: var(--black);

}


.cta-secondary:hover {

    background: var(--white);

    border-color: var(--white);

    transform: translateY(-4px);

}


/* ==========================================
   FOOTER
========================================== */

.about-footer {

    padding-top: 60px;

    background: #000;

    color: var(--white);

}


.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding-bottom: 50px;

}


.footer-brand h3 {

    font-size: 24px;

    font-weight: 900;

}


.footer-brand h3 span {

    color: var(--red);

}


.footer-brand p {

    margin-top: 10px;

    color: #777;

    font-size: 14px;

}


.footer-links {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

}


.footer-links a {

    color: #888;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


.footer-links a:hover {

    color: var(--red);

}


.footer-bottom {

    padding: 25px;

    border-top: 1px solid #222;

    text-align: center;

}


.footer-bottom p {

    color: #555;

    font-size: 12px;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {


    .story-grid,

    .strongman-grid {

        grid-template-columns: 1fr;

    }


    .mission-grid {

        grid-template-columns: 1fr;

    }


    .josh-image-wrapper {

        max-width: 650px;

        margin: auto;

    }


}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {


    .header-container {

        min-height: auto;

        padding: 15px 0;

        flex-direction: column;

    }


    .site-logo {

        height: 70px;

    }


    .main-navigation {

        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 18px;

    }


    .main-navigation a {

        font-size: 11px;

    }


    .about-hero {

        min-height: 550px;

    }


    .about-hero h1 {

        letter-spacing: -3px;

    }


    .josh-story,

    .lrm-mission,

    .strongman-section,

    .philosophy-section,

    .quote-section {

        padding: 85px 20px;

    }


    .strongman-statement {

        min-height: 400px;

    }


    .footer-content {

        flex-direction: column;

        align-items: flex-start;

    }


}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 500px) {


    .about-container {

        width: 92%;

    }


    .josh-image-placeholder {

        min-height: 400px;

    }


    .josh-image-placeholder span {

        font-size: 65px;

    }


    .strongman-statement {

        padding: 40px 30px;

    }


    .cta-primary,

    .cta-secondary {

        width: 100%;

        text-align: center;

    }


    .footer-links {

        gap: 15px;

    }

}