/* Base Styles */
@font-face {
    font-family: 'Pathway Gothic One';
    src: url('../fonts/pathway-gothic-one-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/titillium-web-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/titillium-web-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --flame: #D6401A;
    --flame-deep: #B23414;
    --flame-ink: #A02E10;
    --flame-light: #F08A5F;
    --asphalt: #1A1D22;
    --asphalt-deep: #14161A;
    --concrete: #EEF1F3;
    --chrome: #AEB6BE;
    --card: #FFFFFF;
    
    --text-on-dark: #FFFFFF;
    --text-on-concrete: #1A1D22;
    --concrete-border: #1A1D22;
}

@media (prefers-color-scheme: dark) {
    :root {
        --concrete: #22252B;
        --text-on-concrete: #E6E9EC;
        --concrete-border: #E6E9EC;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    background-color: var(--asphalt);
    color: var(--text-on-dark);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .pathway-caps {
    font-family: 'Pathway Gothic One', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
}

h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.flame-text { color: var(--flame); }
.flame-light-text { color: var(--flame-light); }
.flame-ink-text { color: var(--flame-ink); }
.chrome-text { color: var(--chrome); }
.small-caps { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.italic { font-style: italic; }
.weight-600 { font-weight: 600; }
.text-center { text-align: center; }

.lane-dash-light { border-top: 2px dashed #FFFFFF; margin: 2rem 0; width: 100%; }
.lane-dash-dark { border-top: 2px dashed var(--concrete-border); margin: 2rem 0; width: 100%; }

.btn {
    display: inline-block;
    background-color: var(--flame-deep);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: var(--flame);
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
    display: block;
    width: 100%;
}

/* Sections */
.bg-asphalt { background-color: var(--asphalt); color: var(--text-on-dark); }
.bg-concrete { background-color: var(--concrete); color: var(--text-on-concrete); }
.bg-white { background-color: var(--card); color: #1A1D22; }
.section-padding { padding: 5rem 0; }
@media (max-width: 768px) {
    .section-padding { padding: 3rem 0; }
}

/* Ribbon */
.ribbon {
    background-color: var(--card);
    color: #1A1D22;
    padding: 0.5rem 20px;
    font-size: 0.875rem;
    position: relative;
    z-index: 100;
}
.ribbon-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.ribbon-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ribbon-links a {
    text-decoration: underline;
    font-weight: 600;
}
#dismiss-ribbon {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    color: #1A1D22;
}

/* Masthead */
.masthead {
    background-color: var(--asphalt-deep);
    padding: 1rem 0;
}
.masthead-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-title {
    color: var(--flame);
    font-family: 'Pathway Gothic One', sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1;
}
.logo-sub {
    color: var(--chrome);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 0.25rem;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.desktop-nav a {
    font-weight: 600;
}
.desktop-nav a.btn {
    font-weight: 600;
}
.mobile-nav {
    display: none;
    position: relative;
}
.mobile-nav summary {
    list-style: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-nav summary::-webkit-details-marker {
    display: none;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    position: relative;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--asphalt-deep);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 50;
}

@media (max-width: 767px) {
    .desktop-nav { display: none; }
    .mobile-nav { display: block; }
}

/* Mobile Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--asphalt-deep);
    padding: 10px;
    z-index: 90;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 767px) {
    .mobile-call-bar { display: block; }
    body { padding-bottom: 70px; }
}

/* Footer */
.site-footer {
    background-color: var(--asphalt-deep);
    padding: 3rem 0;
    color: var(--chrome);
    font-size: 0.875rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-logo {
    color: var(--flame);
    font-family: 'Pathway Gothic One', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.footer-left p { margin: 0; }
.footer-right { text-align: right; }
.footer-phone {
    color: var(--flame-light);
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.footer-right a { color: var(--chrome); }
@media (max-width: 767px) {
    .footer-right { text-align: left; }
}

/* Placard */
.placard {
    background-color: var(--card);
    border: 3px solid var(--asphalt);
    border-radius: 2px;
    transform: rotate(-3deg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    max-width: 340px;
    color: #1A1D22;
}
.placard .rule {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #5A6067;
    margin-bottom: 0.5rem;
}
.placard .title {
    font-family: 'Pathway Gothic One', sans-serif;
    text-transform: uppercase;
    font-size: 1.75rem;
    line-height: 1;
    margin: 0;
}

/* Common form */
form.mock-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
form.mock-form label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
}
form.mock-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D6DADF;
    border-radius: 4px;
    font-family: inherit;
    background-color: #F8F9FA;
}
.form-note {
    font-size: 0.75rem;
    color: #5A6067;
    margin-top: 0.5rem;
}
/* Hero */
.hero {
    position: relative;
    background-image: url('../img/hero-night-haul.jpg');
    background-size: cover;
    background-position: center;
    min-height: 732px;
    display: flex;
    align-items: center;
}
.hero-scrim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(26,29,34,0.95) 0%, rgba(26,29,34,0.7) 40%, rgba(26,29,34,0) 100%);
}
@media (max-width: 767px) {
    .hero-scrim {
        background: linear-gradient(to bottom, rgba(26,29,34,0.95) 0%, rgba(26,29,34,0.7) 50%, rgba(26,29,34,0) 100%);
    }
    .hero { min-height: 600px; align-items: flex-start; padding-top: 4rem; }
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}
.hero .kicker {
    color: var(--flame-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.hero h1 {
    margin-bottom: 1rem;
}
.hero .sub {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
.hero .ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.hero .trust-line {
    color: var(--chrome);
    font-size: 0.875rem;
}
.hero .trust-line a { text-decoration: underline; }
.hero-placard-wrapper {
    position: absolute;
    bottom: -40px;
    right: 10%;
    z-index: 20;
}
@media (max-width: 1023px) {
    .hero-placard-wrapper {
        position: static;
        margin-top: 3rem;
    }
}
@media (max-width: 767px) {
    .hero-placard-wrapper {
        display: none;
    }
    .mobile-placard-section {
        background-color: var(--asphalt);
        padding: 2rem 20px;
        display: flex;
        justify-content: center;
    }
}
.desktop-placard-only { display: block; }
.mobile-placard-only { display: none; }
@media (max-width: 767px) {
    .desktop-placard-only { display: none; }
    .mobile-placard-only { display: flex; justify-content: center; background: var(--asphalt); padding: 2rem 0; }
}

/* Program Hero */
.program-hero {
    background-color: var(--asphalt);
    padding: 5rem 0;
}
.program-hero .kicker {
    color: var(--flame-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.program-hero h1 { margin-bottom: 1.5rem; }
.program-hero .sub {
    font-size: 1.125rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

/* Band Image */
.band-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.band-text {
    flex: 1;
}
.band-img {
    flex: 1;
}
.band-img img {
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.band-img-caption {
    font-size: 0.875rem;
    color: var(--chrome);
}
@media (max-width: 767px) {
    .band-content { flex-direction: column; gap: 2rem; }
}
.reverse-band { flex-direction: row-reverse; }
@media (max-width: 767px) {
    .reverse-band { flex-direction: column; }
}

/* Quotes */
.quote-block {
    font-style: italic;
    color: #D6DADF;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.flame-ink-quote {
    color: var(--flame-ink);
}

/* Shift Pattern Diagram */
.shift-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.shift-pattern-wrapper {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
}
.shift-pattern {
    position: relative;
    width: 200px;
    height: 240px;
}
.shift-rail {
    position: absolute;
    width: 8px;
    background-color: #C6CCD2;
    border-radius: 4px;
    top: 20px;
    bottom: 20px;
}
.shift-rail.left { left: 36px; }
.shift-rail.middle { left: 96px; }
.shift-rail.right { left: 156px; }
.shift-crossbar {
    position: absolute;
    height: 8px;
    background-color: #C6CCD2;
    border-radius: 4px;
    top: 116px;
    left: 36px;
    width: 128px;
}
.shift-knob {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--flame-deep);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 2;
}
.shift-knob.knob-cdl {
    background-color: var(--asphalt);
}
.knob-1 { top: 0; left: 12px; }
.knob-2 { bottom: 0; left: 12px; }
.knob-3 { top: 0; left: 72px; }
.knob-4 { bottom: 0; left: 72px; }
.knob-cdl { top: 0; left: 132px; font-size: 1.25rem; }

.shift-content {
    flex: 1;
}
.shift-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26,29,34,0.1);
}
.shift-step:last-child { border-bottom: none; }
@media (prefers-color-scheme: dark) {
    .shift-step { border-bottom: 1px solid rgba(230,233,236,0.1); }
}
.step-num {
    flex: 0 0 30px;
    font-family: 'Pathway Gothic One', sans-serif;
    color: var(--flame-ink);
    font-size: 1.5rem;
}
.step-text {
    flex: 1;
}
.step-title {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
    .shift-grid { flex-direction: column; gap: 2rem; }
    .shift-pattern-wrapper { flex: none; width: 100%; }
}

/* Columns */
.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.col-item {
    border-left: 2px solid rgba(26,29,34,0.1);
    padding-left: 1rem;
}
@media (prefers-color-scheme: dark) {
    .col-item { border-left: 2px solid rgba(230,233,236,0.1); }
}
.col-item-num {
    font-family: 'Pathway Gothic One', sans-serif;
    color: var(--flame-ink);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.col-item-title {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
    .three-cols { grid-template-columns: 1fr; }
}
.note-line {
    font-size: 0.875rem;
    color: #5A6067;
}

/* Locations */
.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.loc-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 4px;
}
.loc-card.bg-asphalt {
    background-color: var(--asphalt);
    color: var(--text-on-dark);
}
.loc-title {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.loc-card.bg-asphalt .loc-title {
    color: var(--flame-light);
}
@media (max-width: 767px) {
    .location-cards { grid-template-columns: 1fr; }
}

/* Ask form layout */
.ask-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ask-form-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 4px;
}
@media (max-width: 767px) {
    .ask-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Photo band */
.photo-band {
    width: 100%;
}
.photo-band img {
    width: 100%;
    height: auto;
}
.photo-caption {
    padding: 1rem 20px;
    font-size: 0.875rem;
    color: var(--chrome);
    text-align: center;
}
