
@font-face {
    font-family: "Old London Alternate";
    src: url(OldLondonAlternate.ttf);
}

@font-face {
    font-family: "Linux Libertine Display";
    src: url(LinLibertine_DRah.ttf);
}

@font-face {
    font-family: "Catrinity Regular";
    src: url(Catrinity.otf);
}

:root {
    --bg: #f5e1bc;
    --surface: #f9ecd2;
    --surface-strong: #fff7e6;
    --brand-blue: #0e5cc8;
    --brand-blue-deep: #073f92;
    --muted-blue: #4f6fa8;
    --accent-green: #7d9206;
    --warm-border: #d9bd84;
    --soft-border: rgba(14, 92, 200, 0.18);
    --shadow: 0 18px 42px rgba(78, 55, 18, 0.14);
    --content-width: min(1500px, 94vw);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    background-image: linear-gradient(180deg, #fff0d2 0, var(--bg) 420px, #f1d8aa 100%);
    color: var(--brand-blue);
}

a {
    color: var(--brand-blue-deep);
}

a:hover {
    color: var(--brand-blue);
}

.home-link {
    display: block;
    text-align: center;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.latest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 5.25rem;
    padding: 0.65rem 1.05rem;
    background: var(--surface-strong);
    border: 1px solid var(--soft-border);
    border-radius: 6px;
    text-decoration: none;
    color: var(--brand-blue-deep);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(14, 92, 200, 0.08);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.latest-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(14, 92, 200, 0.38);
    box-shadow: 0 3px 7px rgba(14, 92, 200, 0.12);
}

.button-style {
    appearance: none;
    border: 1px solid var(--soft-border);
    background: rgba(255, 247, 230, 0.72);
    padding: 0.65rem 1.05rem;
    color: var(--brand-blue-deep);
    font: inherit;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(14, 92, 200, 0.08);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.h2-button {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.button-style:hover {
    transform: translateY(-1px);
    border-color: rgba(14, 92, 200, 0.38);
    box-shadow: 0 3px 7px rgba(14, 92, 200, 0.12);
}

.site-header {
    position: relative;
    overflow: hidden;
    padding: 1rem 5% 2rem;
    border-bottom: 1px solid var(--warm-border);
    background:
        linear-gradient(180deg, rgba(255, 247, 230, 0.9), rgba(249, 236, 210, 0.72)),
        var(--surface);
    font-family: "Old London Alternate";
    text-align: center;
}

.site-header::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 0;
    left: 8%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0.65;
}

.site-actions {
    position: absolute;
    top: 1rem;
    right: max(3vw, calc((100vw - 1500px) / 2));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin: 0;
}

.brand-lockup {
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    width: min(920px, 100%);
    margin: 0 auto;
}

.crest {
    width: 230px;
    max-width: 58vw;
    height: auto;
    filter: drop-shadow(0 12px 16px rgba(74, 49, 14, 0.18));
}

.head {
    margin: 0;
    color: var(--brand-blue-deep);
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0;
    text-wrap: balance;
}

.headRunic {
    font-family: "Catrinity Regular";
}

.even {
    background: #7d9206;
    height: 500px;
    margin: auto
}

.odd {
}

.image1 { grid-area: image1; }
.text2 { grid-area: text2; }
.text1 { grid-area: text1; }
.image2 { grid-area: image2; }

.content {
    width: var(--content-width);
    margin: 0 auto;
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 2rem;
    align-items: center;
    padding: 3rem 0 2.25rem;
}

.intro-copy {
    position: relative;
    padding: 1.5rem 0 1.5rem 1.25rem;
    border-left: 4px solid var(--accent-green);
}

.intro-copy h2,
.section-heading h1,
.info-section h2 {
    margin: 0 0 0.85rem;
    color: var(--brand-blue-deep);
    font-family: "Old London Alternate";
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.intro-copy h2 {
    font-size: 2.6rem;
}

.intro-copy p,
.info-section p,
.product-card p {
    line-height: 1.55;
}

.intro-copy p {
    margin: 0;
    max-width: 62ch;
}

.intro-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--warm-border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.intro-media img {
    display: block;
    width: 100%;
    height: auto;
}

.product-section,
.info-section {
    width: var(--content-width);
    margin: 0 auto;
}

.product-section {
    padding: 1rem 0 2.75rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 0.9rem;
    border-bottom: 1px solid var(--soft-border);
    margin-bottom: 1.25rem;
}

.section-heading h1 {
    font-size: 2.9rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 1.2rem;
}

.product-card {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    min-height: 100%;
    padding: 0.95rem;
    border: 1px solid var(--soft-border);
    border-radius: 8px;
    background: rgba(255, 247, 230, 0.66);
    box-shadow: 0 10px 28px rgba(78, 55, 18, 0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 146, 6, 0.42);
    box-shadow: 0 16px 34px rgba(78, 55, 18, 0.15);
}

.product-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.25;
    object-fit: contain;
}

.product-card p {
    margin: 0;
    color: var(--brand-blue-deep);
    font-size: 1.05rem;
}

.info-section {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--soft-border);
}

.info-section h2 {
    font-size: 2.5rem;
}

.info-section p {
    margin: 0 0 1rem;
}

.info-section a {
    font-weight: 700;
}

main {
    font-family: "Linux Libertine Display";
    font-size: 1.2rem;
}

footer {
    width: 100%;
    font-family: "Linux Libertine Display";
    padding: 2rem 5%;
    text-align: center;
    font-size: 1rem;
    color: var(--muted-blue);
    background: rgba(255, 247, 230, 0.7);
    border-top: 1px solid var(--warm-border);
}

.footer-inner {
    width: min(900px, 100%);
    margin: 0 auto;
}

footer p {
    margin: 0.25rem 0;
}

footer a {
    font-weight: 700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .site-header {
        padding: 1rem 6% 1.75rem;
    }

    .site-actions {
        position: static;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .crest {
        width: 180px;
    }

    .head {
        font-size: 3.1rem;
    }

    main {
        font-size: 1.08rem;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-top: 2rem;
    }

    .intro-copy {
        padding: 0.5rem 0 0.5rem 1rem;
    }

    .intro-copy h2,
    .info-section h2 {
        font-size: 2.1rem;
    }

    .section-heading h1 {
        font-size: 2.3rem;
    }

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

@media (min-width: 1120px) {
    .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1600px) {
    :root {
        --content-width: min(1760px, 96vw);
    }

    .site-header {
        padding-bottom: 2.6rem;
    }

    .site-actions {
        right: max(2vw, calc((100vw - 1760px) / 2));
    }

    .crest {
        width: 280px;
    }

    .head {
        font-size: 5.1rem;
    }

    main {
        font-size: 1.28rem;
    }

    .intro-section {
        gap: 3rem;
        padding: 3.6rem 0 3rem;
    }

    .products {
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.15rem;
    }
}
