:root {
    --bg: #5f0808;
    --bg-dark: #330505;
    --panel: #fffaf4;
    --text: #221817;
    --muted: #6d5a57;
    --line: #e2d8d0;
    --accent: #b11618;
    --accent-dark: #7f0d0f;
    --gold: #f5c84b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--panel);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.sr-only {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.site-header {
    align-items: center;
    background: rgba(51, 5, 5, 0.96);
    color: #fff;
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr auto;
    padding: 14px clamp(18px, 4vw, 48px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    display: inline-flex;
    text-decoration: none;
}

.brand-logo {
    height: auto;
    width: min(250px, 52vw);
}

.site-nav {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.site-nav a {
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    padding: 8px 10px;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.search {
    display: flex;
    gap: 6px;
}

.search input {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    font: inherit;
    min-height: 38px;
    min-width: 160px;
    padding: 7px 9px;
}

.search button,
.button {
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    min-height: 38px;
    padding: 8px 12px;
    text-decoration: none;
}

.search button,
.button.primary {
    background: var(--accent);
    color: #fff;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.nav-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: none;
    height: 40px;
    padding: 8px;
    width: 44px;
}

.nav-toggle span:not(.sr-only) {
    background: #fff;
    display: block;
    height: 2px;
    margin: 5px 0;
}

.hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(26, 3, 3, 0.88), rgba(26, 3, 3, 0.45)),
        url("assets/img/RON_7422.JPG") center / cover;
    color: #fff;
    display: grid;
    min-height: 72vh;
    padding: clamp(56px, 10vw, 112px) clamp(18px, 5vw, 72px);
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 10px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
    margin-bottom: 20px;
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo img {
    height: auto;
    width: min(560px, 90vw);
}

h2 {
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.05;
    margin-bottom: 18px;
}

h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.lead {
    font-size: clamp(19px, 2.6vw, 26px);
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.section {
    padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-inner {
    margin: 0 auto;
    max-width: 1180px;
}

.split,
.contact-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
}

.intro,
.conditions {
    background: var(--bg);
    color: #fff;
}

.intro p:not(.eyebrow),
.conditions p {
    font-size: 20px;
}

.feature-grid,
.category-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.feature img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    margin-bottom: 16px;
    object-fit: cover;
    width: 100%;
}

.feature p,
.section-heading p,
.text-stack {
    color: var(--muted);
}

.section-heading {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr minmax(260px, 420px);
    margin-bottom: 28px;
}

.offer {
    background: #f3ece4;
}

.category {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    overflow: hidden;
    text-decoration: none;
}

.category img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.category span {
    display: block;
    font-weight: 700;
    padding: 13px 14px 15px;
}

.category:hover,
.category:focus {
    border-color: var(--accent);
    outline: none;
}

.contact {
    background: var(--bg-dark);
    color: #fff;
}

.contact address,
.hours {
    font-style: normal;
    font-size: 18px;
}

.contact a {
    color: var(--gold);
}

.site-footer {
    align-items: center;
    background: #1e0303;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    padding: 20px clamp(18px, 5vw, 72px);
}

.site-footer a {
    color: var(--gold);
}

.search-hero {
    background:
        linear-gradient(90deg, rgba(26, 3, 3, 0.9), rgba(26, 3, 3, 0.58)),
        url("assets/img/RON_7422.JPG") center / cover;
    color: #fff;
    padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.search-hero h1 {
    font-size: clamp(40px, 7vw, 78px);
    margin-bottom: 22px;
}

.search-large {
    display: flex;
    gap: 10px;
    max-width: 760px;
}

.search-large input {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    flex: 1;
    font: inherit;
    min-height: 48px;
    min-width: 0;
    padding: 10px 12px;
}

.search-large button {
    background: var(--accent);
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    min-height: 48px;
    padding: 10px 16px;
}

.quick-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.quick-searches a {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    padding: 7px 11px;
    text-decoration: none;
}

.quick-searches a:hover,
.quick-searches a:focus {
    background: rgba(255, 255, 255, 0.22);
    outline: none;
}

.search-results {
    background: #f3ece4;
}

.results-heading {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.muted {
    color: var(--muted);
}

.notice {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    margin: 0;
    padding: 16px;
}

.product-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    overflow: hidden;
}

.product-image {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #eadfd7;
    color: var(--muted);
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.product-body h3 {
    margin: 0;
}

.product-body h3 a {
    color: var(--text);
    text-decoration: none;
}

.product-body h3 a:hover,
.product-body h3 a:focus {
    color: var(--accent);
    outline: none;
}

.product-body p {
    color: var(--muted);
    margin: 0;
}

.product-category {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-price {
    color: var(--accent-dark);
    font-size: 20px;
}

.article-hero {
    background:
        linear-gradient(90deg, rgba(26, 3, 3, 0.9), rgba(26, 3, 3, 0.58)),
        url("assets/img/RON_7422.JPG") center / cover;
    color: #fff;
    padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.article-hero h1 {
    font-size: clamp(34px, 6vw, 72px);
    max-width: 980px;
}

.back-link {
    color: var(--gold);
    display: inline-block;
    margin-bottom: 20px;
}

.article-price {
    color: var(--gold);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin: 0;
}

.article-detail {
    background: #f3ece4;
}

.article-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.gallery {
    display: grid;
    gap: 16px;
}

.gallery-item,
.gallery-empty {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    height: auto;
    width: 100%;
}

.gallery-empty {
    color: var(--muted);
    padding: 22px;
}

.article-copy {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    position: sticky;
    top: 96px;
}

.article-copy h2 {
    font-size: 28px;
}

.article-copy p {
    color: var(--muted);
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav,
    .search {
        display: none;
        grid-column: 1 / -1;
    }

    .site-header.nav-open .site-nav,
    .site-header.nav-open .search {
        display: flex;
    }

    .site-header.nav-open .site-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .search input {
        min-width: 0;
        width: 100%;
    }

    .split,
    .contact-grid,
    .section-heading,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-copy {
        position: static;
    }
}

@media (max-width: 560px) {
    .site-header.nav-open .search,
    .hero-actions,
    .search-large {
        flex-direction: column;
    }

    .search button,
    .button,
    .search-large button {
        text-align: center;
        width: 100%;
    }

    .hero {
        min-height: 66vh;
    }
}
