:root {
    color-scheme: light;
    font-family: Arial, sans-serif;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #000;
}

img {
    max-width: 100%;
}

.site-header {
    border-bottom: 1px solid rgba(227, 192, 139, 0.24);
    background: #242923;
    color: #fff;
}

.site-header__inner {
    display: flex;
    width: min(100%, 75rem);
    min-height: 5.75rem;
    margin: 0 auto;
    padding: 0.625rem clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.875rem;
    color: #fff;
    text-decoration: none;
}

.site-logo {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 auto;
}

.site-title {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.015em;
    line-height: 1.15;
    white-space: nowrap;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.site-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: #f2f0eb;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 150ms ease;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 2px;
    background: #c58b3a;
    content: "";
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 150ms ease, transform 150ms ease;
}

.site-navigation a:hover {
    color: #e3c08b;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-brand:focus-visible,
.site-navigation a:focus-visible {
    outline: 3px solid #e3c08b;
    outline-offset: 3px;
}

.site-brand:hover .site-title {
    color: #e3c08b;
}

.site-main {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.site-main--home {
    max-width: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-main--products,
.site-main--about {
    max-width: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #eeeae2;
    box-shadow: none;
    text-align: left;
}

.home-hero {
    position: relative;
    display: grid;
    min-height: clamp(31rem, 62vw, 43rem);
    isolation: isolate;
    overflow: hidden;
    background: #20251f url("/media/images/photo_2026-08-21_16-38-36.jpg") center / cover no-repeat;
    color: #fff;
    text-align: left;
}

.home-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 25, 21, 0.94) 0%, rgba(20, 25, 21, 0.82) 42%, rgba(20, 25, 21, 0.26) 75%, rgba(20, 25, 21, 0.12) 100%);
    content: "";
}

.home-hero__content {
    align-self: center;
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.home-hero__eyebrow {
    margin: 0 0 1rem;
    color: #e3c08b;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 1.02;
    text-wrap: balance;
}

.home-hero__summary {
    max-width: 39rem;
    margin: 1.5rem 0 0;
    color: #f0f1ec;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border: 2px solid transparent;
    border-radius: 3px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button--primary {
    background: #c58b3a;
    color: #171b17;
}

.button--primary:hover {
    background: #dba752;
}

.button--secondary {
    border-color: rgba(255, 255, 255, 0.78);
    color: #fff;
}

.button--secondary:hover {
    border-color: #fff;
    background: #fff;
    color: #20251f;
}

.button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.page-content {
    min-width: 0;
    padding-bottom: 2rem;
}

.home-overview {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    background: #eeeae2;
    color: #252923;
    text-align: left;
}

.home-overview__inner {
    display: grid;
    width: min(100%, 75rem);
    margin: 0 auto;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.45fr);
}

.home-overview__content {
    max-width: 34rem;
}

.home-overview__eyebrow {
    margin: 0 0 0.75rem;
    color: #6e4a20;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-overview h2 {
    margin: 0;
    color: #20251f;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    text-wrap: balance;
}

.home-overview__body {
    margin-top: 1.5rem;
    color: #444940;
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-overview__body > :first-child {
    margin-top: 0;
}

.home-overview__body > :last-child {
    margin-bottom: 0;
}

.home-overview__body a {
    color: #684419;
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.home-overview__body a:hover {
    color: #3f2910;
}

.home-overview__body a:focus-visible {
    outline: 3px solid #9b6628;
    outline-offset: 3px;
}

.home-gallery {
    display: grid;
    min-width: 0;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-gallery__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #d6d0c5;
    box-shadow: 0 1rem 2.5rem rgba(35, 39, 33, 0.14);
}

.home-gallery__item:first-child {
    grid-column: 1 / -1;
}

.home-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-gallery__item:first-child img {
    aspect-ratio: 16 / 8;
}

.image-reel {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.image-reel img {
    width: auto;
    height: 200px;
}

.products-page {
    color: #252923;
}

.about-page {
    color: #252923;
}

.products-header {
    border-bottom: 3px solid #9b6628;
    background: #30362f;
    color: #fff;
}

.products-header__inner {
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5.25rem) clamp(1.5rem, 5vw, 4rem);
}

.products-header__eyebrow,
.products-overview__eyebrow {
    margin: 0 0 0.75rem;
    color: #e3c08b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.products-header h1 {
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.05;
    text-wrap: balance;
}

.products-overview {
    display: grid;
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 5rem);
    grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.35fr);
}

.products-overview__content {
    max-width: 35rem;
}

.products-overview__eyebrow {
    color: #6e4a20;
}

.products-overview h2 {
    margin: 0;
    color: #20251f;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    text-wrap: balance;
}

.products-overview__body {
    margin-top: 1.5rem;
    color: #444940;
    font-size: 1.05rem;
    line-height: 1.75;
}

.products-overview__body > :first-child,
.products-overview__body > :first-child > :first-child {
    margin-top: 0;
}

.products-overview__body > :last-child,
.products-overview__body > :last-child > :last-child {
    margin-bottom: 0;
}

.products-overview__body a {
    color: #684419;
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.products-overview__body a:hover {
    color: #3f2910;
}

.products-overview__body a:focus-visible,
.products-overview__action:focus-visible {
    outline: 3px solid #9b6628;
    outline-offset: 3px;
}

.products-overview__action {
    width: auto;
    margin-top: 1.75rem;
}

.products-gallery {
    display: grid;
    min-width: 0;
    gap: 0.875rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-gallery__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #d6d0c5;
    box-shadow: 0 1rem 2.5rem rgba(35, 39, 33, 0.14);
}

.products-gallery__item:first-child {
    grid-column: 1 / -1;
}

.products-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.products-gallery__item:first-child img {
    aspect-ratio: 16 / 8;
}

.about-header {
    border-bottom: 3px solid #9b6628;
    background: #30362f;
    color: #fff;
}

.about-header__inner {
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5.25rem) clamp(1.5rem, 5vw, 4rem);
}

.about-header__eyebrow,
.about-overview__eyebrow {
    margin: 0 0 0.75rem;
    color: #e3c08b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-header h1 {
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.05;
    text-wrap: balance;
}

.about-overview {
    display: grid;
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6.5rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.72fr);
}

.about-overview__content {
    max-width: 39rem;
}

.about-overview__eyebrow {
    color: #6e4a20;
}

.about-overview h2 {
    margin: 0;
    color: #20251f;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    text-wrap: balance;
}

.about-overview__body {
    margin-top: 1.5rem;
    color: #444940;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-overview__body > :first-child,
.about-overview__body > :first-child > :first-child {
    margin-top: 0;
}

.about-overview__body > :last-child,
.about-overview__body > :last-child > :last-child {
    margin-bottom: 0;
}

.about-overview__body a {
    color: #684419;
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.about-overview__body a:hover {
    color: #3f2910;
}

.about-overview__body a:focus-visible {
    outline: 3px solid #9b6628;
    outline-offset: 3px;
}

.about-gallery {
    position: relative;
    min-width: 0;
    padding: 0 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
}

.about-gallery__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #d6d0c5;
    box-shadow: 0 1rem 2.5rem rgba(35, 39, 33, 0.18);
}

.about-gallery img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.site-footer {
    width: 100%;
    border-top: 3px solid #9b6628;
    background: #242923;
    color: #d7d8d3;
}

.site-footer__inner {
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: 1.75rem clamp(1.5rem, 5vw, 4rem) 1.25rem;
}

.site-footer__primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.site-footer__copyright {
    margin: 0;
    color: #d7d8d3;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: nowrap;
}

.site-footer__navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem clamp(1rem, 2.5vw, 1.75rem);
}

.site-footer__navigation a {
    color: #e5e3dd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 150ms ease;
}

.site-footer__navigation a:hover {
    color: #e3c08b;
}

.site-footer__navigation a:focus-visible,
.site-footer__content a:focus-visible {
    outline: 3px solid #e3c08b;
    outline-offset: 3px;
}

.site-footer__content {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(227, 192, 139, 0.2);
    color: #bfc1bb;
    font-size: 0.8rem;
    line-height: 1.6;
}

.site-footer__content > :first-child {
    margin-top: 0;
}

.site-footer__content > :last-child {
    margin-bottom: 0;
}

.site-footer__content a {
    color: #e3c08b;
    text-decoration-color: rgba(227, 192, 139, 0.55);
    text-underline-offset: 0.2em;
}

.site-footer__content a:hover {
    color: #fff;
    text-decoration-color: currentColor;
}

@media (max-width: 700px) {
    .site-header__inner {
        min-height: 0;
        padding: 0.625rem 1rem 0;
        flex-direction: column;
        gap: 0.375rem;
    }

    .site-brand {
        gap: 0.625rem;
    }

    .site-logo {
        width: 3.5rem;
        height: 3.5rem;
    }

    .site-title {
        font-size: clamp(1rem, 5vw, 1.25rem);
    }

    .site-navigation {
        width: 100%;
        justify-content: center;
        gap: clamp(0.75rem, 5vw, 1.5rem);
    }

    .site-navigation a {
        min-height: 2.75rem;
        font-size: clamp(0.7rem, 3vw, 0.8rem);
        letter-spacing: 0.045em;
    }

    .site-main {
        width: auto;
        margin: 1rem;
        padding: 1.25rem;
    }

    .site-main--home {
        width: auto;
        margin: 0;
        padding: 0;
    }

    .site-main--products {
        width: auto;
        margin: 0;
        padding: 0;
    }

    .site-main--about {
        width: auto;
        margin: 0;
        padding: 0;
    }

    .home-hero {
        min-height: 34rem;
        background-position: 35% center;
    }

    .home-hero::before {
        background: linear-gradient(90deg, rgba(20, 25, 21, 0.94) 0%, rgba(20, 25, 21, 0.82) 72%, rgba(20, 25, 21, 0.54) 100%);
    }

    .home-hero__content {
        padding: 4rem 1.25rem;
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .home-overview {
        padding: 3.5rem 1.25rem;
    }

    .home-overview__inner {
        gap: 2.5rem;
        grid-template-columns: minmax(0, 1fr);
    }

    .home-overview__content {
        max-width: 40rem;
    }

    .home-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-gallery__item:first-child {
        grid-column: auto;
    }

    .home-gallery img,
    .home-gallery__item:first-child img {
        aspect-ratio: 4 / 3;
    }

    .image-reel img {
        max-height: 200px;
        height: auto;
    }

    .products-header__inner {
        padding: 2.75rem 1.25rem;
    }

    .products-overview {
        padding: 3.5rem 1.25rem;
        gap: 2.5rem;
        grid-template-columns: minmax(0, 1fr);
    }

    .products-overview__content {
        max-width: 40rem;
    }

    .products-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .products-gallery__item:first-child {
        grid-column: auto;
    }

    .products-gallery img,
    .products-gallery__item:first-child img {
        aspect-ratio: 4 / 3;
    }

    .about-header__inner {
        padding: 2.75rem 1.25rem;
    }

    .about-overview {
        padding: 3.5rem 1.25rem;
        align-items: start;
        gap: 2.75rem;
        grid-template-columns: minmax(0, 1fr);
    }

    .about-overview__content {
        max-width: 40rem;
    }

    .about-gallery {
        width: min(100%, 28rem);
        margin: 0 auto;
        padding: 0 0 1.25rem 1.25rem;
    }

    .site-footer__inner {
        padding: 1.5rem 1.25rem 1.125rem;
    }

    .site-footer__primary {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__navigation {
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem 1.25rem;
    }

    .site-footer__navigation a {
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
    }
}
