* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.site-header {
    background: #050505;
    border-bottom: 2px solid #d71920;
}

.header-inner {
    width: min(1200px, 92%);
    height: 100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    display: block;
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.main-nav a:hover {
    color: #d71920;
}

.main-nav a.active {
    color: #d71920;
}

/* -------------------------
   Hero
-------------------------- */

.hero {
    min-height: 680px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.95) 25%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0) 100%
        ),
        url('../images/hero-desktop.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.hero-content {
    width: min(570px, 50%);
}

.hero-title {
    margin: 0 0 24px;
}

.hero-wordmark {
    display: block;
    width: min(385px, 100%);
    height: auto;
}

.hero-tagline {
    border-top: 1px solid #d71920;
    border-bottom: 1px solid #d71920;

    padding: 15px 0;
    margin-bottom: 24px;

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
}

.hero-tagline span {
    color: #d71920;
}

.hero-description {
    max-width: 520px;
    margin: 0 0 30px;

    font-size: 1.2rem;
    line-height: 1.6;
    color: #e5e5e5;
}

.hero-social {
    display: flex;
    gap: 18px;
}

.hero-social a {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #d71920;
    border-radius: 50%;

    color: #fff;
    font-weight: 700;
    text-decoration: none;

    transition: 0.2s ease;
}

.hero-social a:hover {
    background: #d71920;
}
	
.hero-social svg {
	width: 28px;
	height: 28px;
	fill: #fff;
}
	
.hero-social .icon-cutout {
	fill: #000;
}

.hero-social a:hover svg {
	fill: #fff;
}
	
.hero-social a:hover .icon-cutout {
	fill: #d71920;
}

/* -------------------------
   Content Pillars
-------------------------- */

.content-pillars {
    padding: 90px 0;
    background: #080808;
}

.pillars-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 16px;

    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-heading h2::after {
    content: "";
    display: block;

    width: 70px;
    height: 2px;
    margin: 16px auto 0;

    background: #d71920;
}

.section-heading p {
    margin: 0;

    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    min-height: 230px;
    padding: 36px 32px;

    background: #0d0d0d;
    border: 1px solid #252525;
    border-top: 3px solid #d71920;
}

.pillar-card h3 {
    margin: 0 0 18px;

    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pillar-card p {
    margin: 0;

    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.7;
}

/* -------------------------
   Page Intro
-------------------------- */

.page-intro {
    padding: 70px 0 55px;
    background: #080808;
    text-align: center;
}

.page-intro-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.page-intro h1 {
    margin: 0 0 16px;

    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-intro h1::after {
    content: "";
    display: block;

    width: 70px;
    height: 2px;
    margin: 16px auto 0;

    background: #d71920;
}

.page-intro p {
    margin: 0;

    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* -------------------------
   Video Library
-------------------------- */

.video-library {
    padding: 60px 0 90px;
    background: #000;
}

/* -------------------------
   Latest Videos
-------------------------- */

.latest-videos {
    padding: 65px 0;
    background: #000;
}

.videos-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    display: block;

    background: #0d0d0d;
    border: 1px solid #252525;
    border-top: 3px solid #d71920;

    color: #fff;
    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: #d71920;
}

.video-thumbnail {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    background: #111;
    overflow: hidden;
}

.video-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: rgba(215, 25, 32, 0.9);
    border-radius: 50%;

    color: #fff;
    font-size: 1.35rem;

    padding-left: 4px;
}

.video-card-content {
    padding: 24px;
}

.video-card-content h3 {
    margin: 0 0 20px;

    font-size: 1.25rem;
    line-height: 1.4;
}

.video-watch {
    color: #d71920;

    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* -------------------------
   About
-------------------------- */

.about-content {
    padding: 70px 0 90px;
    background: #000;
}

.about-inner {
    width: min(850px, 92%);
    margin: 0 auto;
}

.about-section {
    padding: 0 0 55px;
    margin: 0 0 55px;

    border-bottom: 1px solid #252525;
}

.about-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.about-section h2 {
    margin: 0 0 24px;

    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.25;
}

.about-section h2::after {
    content: "";
    display: block;

    width: 50px;
    height: 2px;
    margin-top: 14px;

    background: #d71920;
}

.about-section p {
    margin: 0 0 20px;

    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-lead {
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: 700;
}

.about-philosophy {
    padding: 38px;
    background: #0d0d0d;
    border: 1px solid #252525;
    border-top: 3px solid #d71920;
}

.about-closing {
    margin-top: 30px !important;

    color: #fff !important;
    font-size: 1.25rem !important;
    font-weight: 700;
}

/* -------------------------
   Contact
-------------------------- */

.contact-content {
    padding: 70px 0 90px;
    background: #000;
}

.contact-inner {
    width: min(700px, 92%);
    margin: 0 auto;
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-heading h2::after {
    content: "";
    display: block;

    width: 50px;
    height: 2px;
    margin-top: 14px;

    background: #d71920;
}

.contact-heading p {
    margin: 0;

    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-group {
    display: grid;
    gap: 9px;
}

.form-group label {
    color: #fff;

    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    background: #0d0d0d;
    border: 1px solid #333;

    color: #fff;
    font: inherit;

    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d71920;
}

.contact-submit {
    justify-self: start;

    padding: 15px 24px;

    background: #d71920;
    border: 2px solid #d71920;

    color: #fff;

    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;

    cursor: pointer;

    transition: 0.2s ease;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-submit:hover {
    background: transparent;
}

/* -------------------------
   Footer
-------------------------- */

.site-footer {
    background: #050505;
    border-top: 2px solid #d71920;
}

.footer-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 45px 0 25px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0;

    color: #cfcfcf;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;

    margin: 30px 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;

    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-nav a:hover {
    color: #d71920;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #252525;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #777;
    font-size: 0.8rem;
}

/* -------------------------
   Mobile
-------------------------- */

/* -------------------------
   Mobile Menu Toggle
-------------------------- */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;

    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;

    background: #fff;
    transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
	/* Header */

    .header-inner {
        width: 88%;
        height: 90px;
    }

    .site-logo img {
        width: 72px;
        height: 72px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 101;
    }

    .main-nav {
        display: none;

        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;

        background: #050505;
        border-bottom: 2px solid #d71920;

        flex-direction: column;
        gap: 0;

        z-index: 100;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 18px 6%;

        text-align: center;
        border-bottom: 1px solid #222;
    }
	
    .hero {
        min-height: 0;

        background-image: url('../images/hero-mobile.png');
        background-size: 100% auto;
        background-position: center bottom;
        background-repeat: no-repeat;

        align-items: flex-start;

        padding: 55px 0 72vw;
    }

    .hero-inner {
        width: 88%;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-wordmark {
		width: min(330px, 100%);
		margin: 0 auto;
	}

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.14em;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 1rem;
    }
	
	.hero-social {
		justify-content: center;
	}
	
	/* Content Pillars */

    .content-pillars {
        padding: 65px 0;
    }

    .pillars-inner {
        width: 88%;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading p {
        font-size: 1rem;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pillar-card {
        min-height: 0;
        padding: 28px 24px;
    }
	
	/* Page Intro */

    .page-intro {
        padding: 50px 0 40px;
    }

    .page-intro-inner {
        width: 88%;
    }

    .page-intro p {
        font-size: 1rem;
    }

    /* Video Library */

    .video-library {
        padding: 40px 0 65px;
    }
	
	/* Latest Videos */

    .latest-videos {
        padding: 50px 0;
    }

    .videos-inner {
        width: 88%;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .video-card-content {
        padding: 22px 24px;
    }
	
	/* About */

    .about-content {
        padding: 50px 0 65px;
    }

    .about-inner {
        width: 88%;
    }

    .about-section {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .about-section p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-lead {
        font-size: 1.1rem !important;
    }

    .about-philosophy {
        padding: 24px 20px;
    }

    .about-closing {
        font-size: 1.15rem !important;
    }
	
	/* Contact */

    .contact-content {
        padding: 50px 0 65px;
    }

    .contact-inner {
        width: 88%;
    }

    .contact-heading {
        margin-bottom: 32px;
    }

    .contact-heading p {
        font-size: 1rem;
    }

    .contact-submit {
        width: 100%;
    }
		
	/* Footer */

    .footer-inner {
        width: 88%;
        padding-top: 38px;
    }

    .footer-nav {
        gap: 20px;
        flex-wrap: wrap;
    }
}