/*
    Project: Mascot Collectibles | Homepage
    File: ../css/mc-home.css
*/

@charset "utf-8";

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
}

.site-header .container {
    padding-inline: 24px;
}

.brand-mark {
    width: 36px;
    height: 44px;
    flex: 0 0 auto;
    color: #e7a700;
}

.site-logo span {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.site-logo b {
    color: #e7a700;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.home-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #191815;
    background: #eee9df;
}

.home-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.94) 36%, rgba(247, 244, 237, 0.42) 58%, rgba(247, 244, 237, 0) 76%);
    content: "";
}

.home-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 650px;
    padding: 90px 24px;
    align-items: center;
}

.home-hero-copy {
    width: min(100%, 590px);
}

.home-hero h1 {
    margin-bottom: 24px;
    color: #151411;
    font-size: clamp(3.5rem, 6vw, 5.6rem);
}

.home-hero h1 span {
    color: #b77900;
}

.home-hero .lead {
    color: #4f4b44;
}

.home-hero .btn-outline {
    color: #11110f;
    border-color: #11110f;
}

.hero-proof {
    display: flex;
    margin: 32px 0 0;
    padding: 20px 0 0;
    gap: 24px;
    border-top: 1px solid #d4cec2;
    list-style: none;
}

.hero-proof li {
    position: relative;
    padding-left: 18px;
    color: #625e56;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-proof li::before {
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 8px;
    height: 8px;
    background: #d99700;
    border-radius: 50%;
    content: "";
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.trust-strip {
    padding: 24px;
    background: #ffffff;
    border-top: 1px solid #ded9cf;
    border-bottom: 1px solid #ded9cf;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 4px 26px;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #ded9cf;
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-item svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #c18300;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: #191815;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.trust-item span {
    color: #777269;
    font-size: 0.72rem;
}

/* ==========================================================================
   Featured Schools
   ========================================================================== */

.schools-heading {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: end;
    gap: 60px;
}

.schools-heading p:last-child {
    margin-bottom: 18px;
    color: #6c685f;
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.school-campaign-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ded9cf;
    border-radius: 5px;
    box-shadow: 0 12px 28px rgba(33, 29, 20, 0.07);
}

.school-card-banner {
    position: relative;
    display: flex;
    min-height: 176px;
    padding: 26px;
    align-items: flex-end;
    justify-content: space-between;
    overflow: hidden;
    color: #ffffff;
}

.school-card-banner::before,
.school-card-banner::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.school-card-banner::before {
    top: -80px;
    right: -50px;
    width: 220px;
    height: 220px;
}

.school-card-banner::after {
    top: -36px;
    right: -18px;
    width: 130px;
    height: 130px;
}

.school-card-banner-gold {
    background: linear-gradient(135deg, #151411 0%, #5c4300 100%);
}

.school-card-banner-red {
    background: linear-gradient(135deg, #1b1212 0%, #771f23 100%);
}

.school-card-banner-blue {
    background: linear-gradient(135deg, #11151b 0%, #214a71 100%);
}

.school-card-banner > span {
    position: relative;
    z-index: 1;
    max-width: 150px;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: right;
    text-transform: uppercase;
}

.school-crest {
    position: relative;
    z-index: 1;
    display: grid;
    width: 78px;
    height: 90px;
    place-items: center;
    color: #e7a700;
    background: rgba(10, 10, 8, 0.72);
    border: 3px solid #e7a700;
    clip-path: polygon(50% 0, 100% 14%, 92% 72%, 50% 100%, 8% 72%, 0 14%);
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 800;
}

.school-card-body {
    padding: 24px;
}

.school-card-body h3 {
    margin: 14px 0 10px;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.school-card-body p {
    min-height: 78px;
    color: #6c685f;
    font-size: 0.88rem;
}

.school-card-meta {
    display: flex;
    margin: 20px 0;
    padding-top: 14px;
    justify-content: space-between;
    gap: 16px;
    color: #777269;
    border-top: 1px solid #e5e0d7;
    font-size: 0.75rem;
}

.school-card-meta strong {
    color: #a76e00;
}

.schools-band {
    margin-top: 32px;
}

.schools-band strong,
.schools-band span {
    display: block;
}

.schools-band strong {
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.schools-band span {
    color: #c5c0b6;
    font-size: 0.85rem;
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    counter-reset: steps;
}

.step {
    position: relative;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #ded9cf;
    border-radius: 5px;
    counter-increment: steps;
}

.step::before {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #11110f;
    background: #e7a700;
    border-radius: 50%;
    content: counter(steps);
    font-size: 0.8rem;
    font-weight: 800;
}

.step-visual {
    display: grid;
    min-height: 190px;
    margin: -24px -24px 24px;
    place-items: center;
    background: linear-gradient(145deg, #f0ede6 0%, #ddd5c7 100%);
    border-bottom: 1px solid #d8d2c7;
}

.step-visual svg {
    width: 94px;
    height: 94px;
    fill: none;
    stroke: #9a6900;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.step h3 {
    margin-bottom: 8px;
    text-transform: uppercase;
}

.step p {
    margin-bottom: 0;
    color: #6c685f;
    font-size: 0.9rem;
}

/* ==========================================================================
   Impact
   ========================================================================== */

.impact-section {
    position: relative;
    overflow: hidden;
}

.impact-section::after {
    position: absolute;
    right: -160px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(231, 167, 0, 0.15);
    border-radius: 50%;
    content: "";
}

.impact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
}

.impact-copy .lead {
    color: #c5c0b6;
}

.impact-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #3a3832;
    border: 1px solid #3a3832;
}

.impact-feature {
    min-height: 170px;
    padding: 28px;
    background: #1c1b18;
}

.impact-feature strong {
    display: block;
    margin-bottom: 10px;
    color: #e7a700;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.impact-feature p {
    margin: 0;
    color: #bdb8ae;
    font-size: 0.85rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 80px;
    align-items: start;
}

.faq-list {
    border-top: 1px solid #d9d4c9;
}

.faq-list details {
    padding: 20px 0;
    border-bottom: 1px solid #d9d4c9;
}

.faq-list summary {
    position: relative;
    padding-right: 36px;
    color: #191815;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    list-style: none;
    text-transform: uppercase;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    color: #b77900;
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 650px;
    margin: 12px 0 0;
    color: #6c685f;
    font-size: 0.9rem;
}

/* ==========================================================================
   Campaign Call to Action
   ========================================================================== */

.campaign-cta {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    color: #ffffff;
    background: #151411;
}

.campaign-cta::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 10, 0.98) 0%, rgba(12, 12, 10, 0.88) 42%, rgba(12, 12, 10, 0.28) 72%, rgba(12, 12, 10, 0.08) 100%);
    content: "";
}

.campaign-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.campaign-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 430px;
    padding: 72px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.campaign-cta-content h2,
.campaign-cta-content p {
    max-width: 560px;
}

.campaign-cta-content p:not(.eyebrow) {
    color: #d7d2c8;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-brand p {
    max-width: 270px;
    margin: 20px 0 0;
    color: #9f9a91;
    font-size: 0.82rem;
}

.site-footer .footer-links li {
    color: #9f9a91;
    font-size: 0.82rem;
}
