/* ==========================================================
   FIC FURY — INFORMATION PAGES
   Shared stylesheet:
   About / Contact / Privacy / Terms
========================================================== */

:root {
    --red: #e53935;
    --red-dark: #b71c1c;
    --yellow: #ffd43b;
    --black: #111111;
    --black-soft: #1b1b1b;
    --white: #fffdf5;
    --cream: #fff8e7;
    --gray: #6c6c6c;
    --light-gray: #e9e5da;

    --font-display: "Bangers", cursive;
    --font-body: "Inter", sans-serif;

    --border: 3px solid var(--black);
    --shadow: 7px 7px 0 var(--black);
}


/* ==========================================================
   RESET
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}


/* ==========================================================
   NAVBAR
========================================================== */

.info-navbar {
    position: fixed;

    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 248, 231, 0.96);

    border-bottom: 2px solid var(--black);

    backdrop-filter: blur(10px);

    transition: box-shadow 0.2s ease;
}

.info-navbar.scrolled {
    box-shadow: 0 5px 0 var(--black);
}


/* ==========================================================
   BRAND
========================================================== */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    background: var(--red);
    color: white;

    border: 2px solid var(--black);

    font-family: var(--font-display);
    font-size: 27px;

    transform: rotate(-4deg);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 27px;
    letter-spacing: 1px;
}


/* ==========================================================
   NAVIGATION
========================================================== */

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    position: relative;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 3px;

    background: var(--red);

    transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-login {
    font-size: 12px;
    font-weight: 800;
}


/* ==========================================================
   BUTTONS
========================================================== */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    padding: 15px 23px;

    background: var(--yellow);

    border: var(--border);

    box-shadow: 5px 5px 0 var(--black);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translate(4px, 4px);
    box-shadow: 1px 1px 0 var(--black);
}

.btn-primary {
    background: var(--red);
    color: white;
}

.btn-small {
    padding: 10px 17px;
}

.btn-large {
    padding: 18px 28px;
}


/* ==========================================================
   MOBILE NAV
========================================================== */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    background: var(--yellow);

    border: 2px solid var(--black);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--black);
}

.mobile-nav {
    display: none;
}


/* ==========================================================
   PAGE HERO
========================================================== */

.page-hero {
    position: relative;

    min-height: 500px;

    padding: 170px 7vw 90px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--red);

    color: white;
}

.page-hero.compact {
    min-height: 430px;
}

.page-hero-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.14;

    background-image:
        radial-gradient(
            white 1.5px,
            transparent 1.5px
        );

    background-size: 10px 10px;
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.page-hero .eyebrow {
    color: var(--yellow);
}

.page-hero h1 {
    max-width: 900px;

    font-family: var(--font-display);

    font-size: clamp(70px, 9vw, 135px);

    line-height: 0.82;

    letter-spacing: 1px;
}

.page-hero h1 span {
    display: block;

    color: var(--yellow);

    -webkit-text-stroke: 2px var(--black);
}

.page-hero p {
    max-width: 650px;

    margin-top: 30px;

    color: rgba(255,255,255,0.85);

    font-size: 17px;
    line-height: 1.7;
}

.policy-date {
    display: inline-block;

    margin-top: 25px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.hero-stamp {
    position: absolute;

    right: 8vw;
    bottom: 60px;

    width: 150px;
    height: 150px;

    display: grid;
    place-items: center;

    border: 5px solid var(--black);

    background: var(--yellow);
    color: var(--black);

    border-radius: 50%;

    box-shadow: 8px 8px 0 var(--black);

    font-family: var(--font-display);
    font-size: 38px;
    line-height: 0.8;

    text-align: center;

    transform: rotate(9deg);
}


/* ==========================================================
   CONTENT SECTION
========================================================== */

.content-section {
    padding: 110px 7vw;
}

.content-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.content-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.section-number {
    display: block;

    margin-bottom: 15px;

    color: var(--red);

    font-family: var(--font-display);
    font-size: 38px;
}

.content-heading h2 {
    font-family: var(--font-display);

    font-size: clamp(48px, 5vw, 75px);

    line-height: 0.9;
}

.content-heading h2 span {
    display: block;
    color: var(--red);
}

.content-text {
    color: #444;

    font-size: 15px;
    line-height: 1.9;
}

.content-text p + p {
    margin-top: 25px;
}

.content-text .lead {
    color: var(--black);

    font-size: 21px;
    font-weight: 500;

    line-height: 1.7;
}


/* ==========================================================
   DARK SECTION
========================================================== */

.dark-section {
    position: relative;

    padding: 130px 7vw;

    background: var(--black);

    color: white;

    overflow: hidden;
}

.dark-section::after {
    content: "FURY";

    position: absolute;

    right: -20px;
    bottom: -100px;

    font-family: var(--font-display);
    font-size: 30vw;

    color: rgba(255,255,255,0.025);

    pointer-events: none;
}

.dark-section-inner {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;
}

.dark-section .yellow {
    color: var(--yellow);
}

.dark-section h2 {
    max-width: 900px;

    font-family: var(--font-display);

    font-size: clamp(65px, 9vw, 130px);

    line-height: 0.82;
}

.dark-section h2 span {
    color: var(--yellow);
}

.dark-section p {
    max-width: 650px;

    margin-top: 35px;

    color: #aaa;

    line-height: 1.8;
}


/* ==========================================================
   FEATURE LIST
========================================================== */

.feature-list {
    margin-top: 35px;

    border-top: 2px solid var(--black);
}

.feature-item {
    padding: 22px 0;

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 25px;

    border-bottom: 2px solid var(--light-gray);
}

.feature-item strong {
    color: var(--red);

    font-size: 11px;
    letter-spacing: 1.5px;
}

.feature-item span {
    color: var(--gray);

    font-size: 13px;
}


/* ==========================================================
   SIMPLE CTA
========================================================== */

.simple-cta {
    padding: 90px 7vw;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    background: var(--yellow);

    border-top: 3px solid var(--black);
}

.simple-cta h2 {
    font-family: var(--font-display);

    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.85;
}

.simple-cta h2 span {
    display: block;
    color: var(--red);
}


/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-section {
    padding: 110px 7vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h2 {
    max-width: 600px;

    font-family: var(--font-display);

    font-size: clamp(55px, 6vw, 90px);

    line-height: 0.88;
}

.contact-info h2 span {
    display: block;
    color: var(--red);
}

.contact-info > p {
    max-width: 550px;

    margin-top: 30px;

    color: var(--gray);

    line-height: 1.8;
}

.contact-cards {
    margin-top: 45px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    padding: 20px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    border: 2px solid var(--black);

    background: white;

    box-shadow: 4px 4px 0 var(--black);
}

.contact-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--yellow);

    border: 2px solid var(--black);

    font-family: var(--font-display);
    font-size: 23px;
}

.contact-card strong {
    display: block;

    font-size: 10px;
    letter-spacing: 1px;
}

.contact-card p {
    margin-top: 5px;

    color: var(--gray);

    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-form-wrapper {
    align-self: start;
}

.contact-form {
    padding: 35px;

    background: white;

    border: var(--border);

    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;

    padding-bottom: 25px;

    border-bottom: 2px solid var(--black);
}

.form-header span {
    display: block;

    margin-bottom: 7px;

    color: var(--red);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.form-header strong {
    font-family: var(--font-display);
    font-size: 38px;
}

.contact-form label {
    display: block;

    margin-top: 20px;
    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 14px;

    border: 2px solid var(--black);

    background: var(--cream);

    outline: none;

    font-size: 13px;

    transition: box-shadow 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 4px 4px 0 var(--yellow);
}

.contact-form button {
    margin-top: 25px;
}

.form-message {
    margin-top: 15px;

    font-size: 12px;
    font-weight: 700;
}


/* ==========================================================
   POLICY PAGES
========================================================== */

.policy-section {
    max-width: 1250px;

    margin: 0 auto;

    padding: 100px 7vw;

    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 90px;
}

.policy-sidebar {
    position: sticky;

    top: 115px;

    align-self: start;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.policy-sidebar > span {
    margin-bottom: 10px;

    color: var(--red);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.policy-sidebar a {
    color: var(--gray);

    font-size: 11px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.policy-sidebar a:hover {
    color: var(--red);
}

.policy-content {
    max-width: 800px;
}

.policy-block {
    padding-bottom: 65px;

    margin-bottom: 65px;

    border-bottom: 2px solid var(--light-gray);
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-number {
    display: block;

    margin-bottom: 12px;

    color: var(--red);

    font-family: var(--font-display);
    font-size: 35px;
}

.policy-block h2 {
    margin-bottom: 25px;

    font-family: var(--font-display);

    font-size: 42px;

    line-height: 1;
}

.policy-block p {
    margin-bottom: 20px;

    color: #555;

    font-size: 14px;
    line-height: 1.9;
}

.policy-block ul {
    margin: 25px 0;

    padding-left: 25px;
}

.policy-block li {
    margin-bottom: 14px;

    color: #555;

    font-size: 14px;
    line-height: 1.7;
}

.policy-block li::marker {
    color: var(--red);
}


/* ==========================================================
   FOOTER
========================================================== */

.footer {
    padding: 70px 7vw 25px;

    background: var(--black);

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;

    color: #999;

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 10px;

    color: var(--yellow);

    font-size: 10px;
    letter-spacing: 2px;
}

.footer-column a {
    color: #aaa;

    font-size: 12px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid #333;

    color: #666;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 15px;
    }

    .mobile-nav {
        position: fixed;

        z-index: 999;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 30px;

        flex-direction: column;
        gap: 20px;

        background: var(--cream);

        border-bottom: 3px solid var(--black);
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav > a {
        font-size: 14px;
        font-weight: 800;
    }

    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .content-grid {
        gap: 50px;
    }

    .contact-section {
        gap: 40px;
    }

}


@media (max-width: 750px) {

    .info-navbar {
        padding: 0 5vw;
    }

    .nav-actions {
        display: none;
    }

    .brand-text {
        font-size: 23px;
    }

    .page-hero {
        min-height: 500px;

        padding: 140px 5vw 70px;
    }

    .page-hero.compact {
        min-height: 420px;
    }

    .page-hero h1 {
        font-size: 70px;
    }

    .hero-stamp {
        display: none;
    }

    .content-section {
        padding: 80px 5vw;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-heading {
        position: static;
    }

    .dark-section {
        padding: 90px 5vw;
    }

    .dark-section h2 {
        font-size: 70px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .simple-cta {
        padding: 70px 5vw;

        flex-direction: column;
        align-items: flex-start;
    }

    .contact-section {
        padding: 80px 5vw;

        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .policy-section {
        padding: 70px 5vw;

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .policy-sidebar {
        position: static;

        padding-bottom: 25px;

        border-bottom: 2px solid var(--black);
    }

    .policy-sidebar a {
        display: inline-block;

        margin-right: 15px;
    }

    .policy-block h2 {
        font-size: 38px;
    }

    .footer {
        padding: 60px 5vw 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
.site-logo {
    display: block;
    width: 145px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 750px) {
    .site-logo {
        width: 120px;
    }
}