/* ==========================================
   HOSS & BARB SUPPLY CO.
   EST. 2026
========================================== */

:root {
    --cream: #efe3c5;
    --light-cream: #f7efd9;
    --paper: #e6d3a8;
    --ink: #161817;
    --red: #a43625;
    --dark-red: #7d251b;
    --blue: #173d50;
    --light-blue: #547f91;
    --gold: #c8a555;
    --border: #25231f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
}


/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement {
    min-height: 38px;
    padding: 10px 4vw;

    background: var(--red);
    color: var(--light-cream);

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

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.announcement-center {
    text-align: center;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
    min-height: 125px;
    padding: 20px 6vw;

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

    background: var(--light-cream);

    border-bottom: 4px solid var(--ink);
}

.brand-name {
    color: var(--ink);
    text-decoration: none;

    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: .85;
    letter-spacing: 1px;
}

.brand-sub {
    margin-top: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 7px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 25px;
}

nav a {
    color: var(--ink);
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

nav a:hover {
    color: var(--red);
}


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

.hero {
    min-height: 690px;
    padding: 70px 25px;

    display: grid;
    place-items: center;

    text-align: center;
    color: var(--light-cream);

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        var(--blue);

    background-size: 13px 13px;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 24px;

    border: 3px solid var(--light-cream);

    opacity: .9;

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    inset: 34px;

    border: 1px dashed rgba(247,239,217,.55);

    pointer-events: none;
}

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

    width: 100%;
    max-width: 1100px;
}


/* PRIMARY LOGO */

.hero-logo-wrap {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto 10px;
}

.hero-logo {
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;

    margin: 0 auto;

    filter:
        drop-shadow(
            8px 8px 0 rgba(0,0,0,.22)
        );
}


/* OLD HERO TEXT RULES - KEPT FOR COMPATIBILITY */

.hero h1 {
    margin: 20px 0 0;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: clamp(80px, 13vw, 170px);
    line-height: .75;
    letter-spacing: 2px;

    text-shadow:
        5px 5px 0 rgba(0,0,0,.25);
}

.hero h1 span {
    color: var(--red);
}

.hero-supply {
    margin-top: 25px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(20px, 3vw, 35px);
    font-weight: 900;
    letter-spacing: 12px;
}


/* HERO TEXT */

.hero-rule {
    width: 140px;
    height: 5px;

    margin: 18px auto 24px;

    background: var(--red);
}

.hero h2 {
    margin: 0;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: clamp(38px, 6vw, 70px);
    line-height: .95;
}

.hero h2 span {
    color: var(--gold);
}

.hero p {
    max-width: 680px;

    margin: 28px auto 0;

    font-size: 18px;
    line-height: 1.65;
}

.hero-buttons {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


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

.button {
    display: inline-block;

    padding: 15px 27px;

    border: 3px solid var(--ink);

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;

    cursor: pointer;

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

    transition:
        transform .12s ease,
        box-shadow .12s ease;
}

.button:hover {
    transform: translate(3px, 3px);

    box-shadow: 2px 2px 0 var(--ink);
}

.button-red {
    background: var(--red);
    color: var(--light-cream);
}

.button-light {
    background: var(--light-cream);
    color: var(--ink);
}


/* ==========================================
   MOTTO STRIP
========================================== */

.motto-strip {
    padding: 20px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;

    color: var(--light-cream);
    background: var(--ink);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}


/* ==========================================
   GENERAL SECTIONS
========================================== */

.section {
    max-width: 1250px;

    margin: auto;

    padding: 100px 30px;
}

.section-heading {
    max-width: 730px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin: 12px 0;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: clamp(48px, 7vw, 80px);
    line-height: .9;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.6;
}

.small-label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.dark-label {
    color: var(--red);
}


/* ==========================================
   SHOP / PRODUCTS
========================================== */

.shop-section {
    position: relative;
}

.product-grid {
    display: grid;

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

    gap: 25px;
}

.product-card {
    background: var(--light-cream);

    border: 3px solid var(--ink);

    box-shadow:
        7px 7px 0 rgba(22,24,23,.18);
}

.product-image {
    min-height: 270px;

    border-bottom:
        3px solid var(--ink);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: var(--light-cream);
}

.red-product {
    background: var(--red);
}

.blue-product {
    background: var(--blue);
}

.tan-product {
    background: #b09662;
}

.black-product {
    background: var(--ink);
}

.product-big {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 80px;
    line-height: .8;

    text-shadow:
        4px 4px 0 rgba(0,0,0,.35);
}

.product-small {
    margin-top: 12px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 5px;
}

.hat-shape {
    padding: 22px 28px;

    border: 5px solid var(--light-cream);

    border-radius: 45% 45% 10px 10px;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 50px;
}

.sticker-text {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 52px;
    line-height: .85;

    text-shadow:
        4px 4px rgba(0,0,0,.25);
}

.notice-text {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 44px;
    line-height: .88;

    color: var(--gold);
}

.product-content {
    padding: 22px;
}

.product-category {
    color: var(--red);

    font-family: Arial, Helvetica, sans-serif;

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

.product-content h3 {
    margin: 9px 0;

    font-size: 23px;
}

.product-content p {
    min-height: 80px;

    line-height: 1.5;
}

.product-bottom {
    padding-top: 15px;

    border-top:
        1px solid rgba(22,24,23,.3);

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

.product-bottom strong {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;
}

.coming {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;

    color: var(--red);
}


/* ==========================================
   COMING SOON OVERLAY
========================================== */

.shop-coming-soon {
    position: absolute;

    inset: 0;

    z-index: 50;

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

    padding: 30px;

    background:
        rgba(22, 24, 23, .82);
}

.coming-soon-stamp {
    width: min(700px, 90%);

    padding: 40px 25px;

    text-align: center;

    color: var(--light-cream);

    background: var(--red);

    border: 4px solid var(--light-cream);

    outline:
        2px dashed var(--light-cream);

    outline-offset: -12px;

    box-shadow:
        10px 10px 0 var(--ink);

    transform: rotate(-1deg);
}

.coming-soon-stamp span {
    display: block;

    margin-bottom: 12px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
}

.coming-soon-stamp strong {
    display: block;

    font-family: Impact, "Arial Black", sans-serif;

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

    line-height: .9;
}

.coming-soon-stamp p {
    margin: 22px 0;

    font-size: 19px;
    line-height: 1.5;
}

.coming-soon-stamp small {
    font-family: Arial, Helvetica, sans-serif;

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


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

.brand-art-section {
    padding: 90px 6vw;

    display: grid;

    grid-template-columns:
        .65fr 1.35fr;

    align-items: center;

    gap: 55px;

    color: var(--light-cream);

    background: var(--ink);
}

.brand-art-copy h2 {
    margin: 15px 0 25px;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size:
        clamp(45px, 6vw, 75px);

    line-height: .9;
}

.brand-art-copy p {
    font-size: 17px;
    line-height: 1.65;
}

.brand-art-frame {
    padding: 12px;

    background: var(--light-cream);

    border: 4px solid var(--light-cream);

    transform: rotate(1deg);

    box-shadow:
        10px 10px 0 rgba(255,255,255,.1);
}

.brand-art-frame img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==========================================
   STORY
========================================== */

.story-section {
    padding: 105px 6vw;

    background: var(--paper);
}

.story-inner {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 75px;

    align-items: center;
}

.story-copy h2 {
    margin: 15px 0 25px;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size:
        clamp(50px, 7vw, 80px);

    line-height: .9;
}

.story-copy p {
    font-size: 18px;
    line-height: 1.7;
}

.story-signature {
    margin-top: 30px;

    color: var(--red);

    font-family: Georgia, serif;

    font-size: 38px;
    font-style: italic;
    font-weight: 900;
}

.company-policy {
    padding: 20px;

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

    outline: 2px solid var(--blue);

    outline-offset: -12px;

    background: var(--light-cream);

    text-align: center;

    transform: rotate(2deg);
}

.policy-top {
    padding: 15px;

    border-bottom: 3px solid var(--blue);

    color: var(--red);

    font-family: Arial, Helvetica, sans-serif;

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

.company-policy blockquote {
    margin: 35px 10px;

    font-family: Georgia, serif;

    font-size:
        clamp(28px, 4vw, 44px);

    font-style: italic;
    font-weight: 900;

    line-height: 1.15;
}

.policy-bottom {
    padding: 15px;

    border-top: 3px solid var(--blue);

    color: var(--blue);

    font-family: Arial, Helvetica, sans-serif;

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

    line-height: 1.7;
}


/* ==========================================
   OFFICIAL NOTICES
========================================== */

.notices-section {
    padding: 100px 6vw;

    color: var(--light-cream);

    background: var(--blue);
}

.light-heading {
    color: var(--light-cream);
}

.notice-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

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

    gap: 25px;
}

.notice-card {
    padding: 30px;

    border:
        3px solid var(--light-cream);

    background:
        rgba(0,0,0,.12);
}

.notice-number {
    color: var(--gold);

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 55px;
}

.notice-card h3 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size: 30px;
    line-height: .95;
}

.notice-card p {
    line-height: 1.6;
}


/* ==========================================
   BIG QUOTE
========================================== */

.big-quote {
    padding: 85px 20px;

    text-align: center;

    color: var(--light-cream);

    background: var(--red);
}

.stars {
    margin-bottom: 15px;

    color: var(--gold);

    letter-spacing: 15px;
}

.big-quote blockquote {
    margin: 0;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size:
        clamp(45px, 7vw, 90px);

    line-height: 1;
}

.quote-credit {
    margin-top: 20px;

    font-family: Arial, Helvetica, sans-serif;

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


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

.contact-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    align-items: start;
}

.contact-copy h2 {
    margin: 15px 0;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

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

    line-height: .9;
}

.contact-copy p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-form {
    padding: 30px;

    background: var(--paper);

    border: 3px solid var(--ink);

    box-shadow:
        7px 7px 0 rgba(22,24,23,.18);
}

.contact-form label {
    display: block;

    margin-bottom: 20px;

    font-family: Arial, Helvetica, sans-serif;

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

.contact-form input,
.contact-form textarea {
    display: block;

    width: 100%;

    margin-top: 8px;

    padding: 14px;

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

    background: var(--light-cream);

    font-family: Georgia, serif;

    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

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

    font-weight: bold;
}


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

footer {
    padding: 65px 6vw 30px;

    text-align: center;

    color: var(--light-cream);

    background: var(--ink);
}

.footer-brand {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

    font-size:
        clamp(45px, 7vw, 75px);

    line-height: .8;
}

.footer-brand span {
    display: block;

    margin-top: 14px;

    color: var(--red);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    letter-spacing: 8px;
}

.footer-tagline {
    max-width: 600px;

    margin: 35px auto;

    font-family: Georgia, serif;

    font-size: 18px;
    font-style: italic;
}

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

    border-top:
        1px solid rgba(247,239,217,.2);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-family: Arial, Helvetica, sans-serif;

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


/* ==========================================
   TABLETS
========================================== */

@media (max-width: 1000px) {

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .brand-art-section {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 760px) {

    .announcement {
        justify-content: center;
        text-align: center;
    }

    .announcement span:not(.announcement-center) {
        display: none;
    }

    .site-header {
        flex-direction: column;

        text-align: center;

        gap: 22px;
    }

    .brand-name {
        align-items: center;
    }

    nav {
        justify-content: center;

        gap: 14px;
    }

    .hero {
        min-height: 610px;

        padding: 60px 25px;
    }

    .hero::before {
        inset: 12px;
    }

    .hero::after {
        inset: 19px;
    }

    .hero-logo-wrap {
        max-width: 650px;
    }

    .hero-supply {
        letter-spacing: 7px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .story-inner {
        grid-template-columns: 1fr;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .shop-coming-soon {
        padding: 20px;
    }

    .coming-soon-stamp {
        width: 95%;

        padding: 35px 18px;
    }

}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .hero {
        padding:
            50px 18px;
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero-supply {
        font-size: 17px;

        letter-spacing: 5px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-logo {
        max-width: 100%;
    }

    .section {
        padding: 75px 20px;
    }

    .brand-art-section,
    .story-section,
    .notices-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .coming-soon-stamp strong {
        font-size: 52px;
    }

    .coming-soon-stamp p {
        font-size: 16px;
    }

}
.form-success {
    margin-top: 25px;
    padding: 20px;

    background: var(--blue);
    color: var(--light-cream);

    border: 3px solid var(--ink);

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

    text-align: center;
}

.form-success strong {
    display: block;

    font-family: Impact, "Arial Black", sans-serif;

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

.form-success span {
    display: block;

    margin-top: 8px;

    font-size: 15px;
}
