:root {
    --bg: #181311;
    --bg-elevated: rgba(32, 24, 21, 0.9);
    --bg-soft: rgba(50, 38, 31, 0.7);
    --panel: rgba(34, 27, 23, 0.88);
    --panel-strong: rgba(24, 18, 15, 0.96);
    --line: rgba(207, 177, 128, 0.18);
    --text: #f5ecd9;
    --text-muted: #d2c3ad;
    --text-soft: #b39f84;
    --gold: #cda45d;
    --bronze: #9f6c39;
    --ember: #8a3f2b;
    --forest: #385240;
    --red: #6e2f29;
    --charcoal: #2a2522;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shell: min(1180px, calc(100vw - 2rem));
    --font-heading: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top, rgba(165, 108, 59, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(79, 104, 76, 0.16), transparent 30%),
        linear-gradient(180deg, #221915 0%, #171210 38%, #120f0d 100%);
}

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

button,
input,
select {
    font: inherit;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 18px 18px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: var(--gold);
    color: #20140f;
    z-index: 50;
}

.skip-link:focus {
    top: 1rem;
}

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

.site-main {
    padding-bottom: 5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(20, 16, 14, 0.96), rgba(20, 16, 14, 0.68));
    border-bottom: 1px solid var(--line);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.brand-lockup__crest {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(205, 164, 93, 0.3), rgba(111, 48, 41, 0.75)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    border: 1px solid rgba(205, 164, 93, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-lockup__crest span {
    position: absolute;
    width: 1.35rem;
    height: 1px;
    background: rgba(245, 236, 217, 0.8);
}

.brand-lockup__crest span:nth-child(2) {
    transform: rotate(60deg);
}

.brand-lockup__crest span:nth-child(3) {
    transform: rotate(-60deg);
}

.brand-lockup__copy {
    display: grid;
    gap: 0.2rem;
}

.brand-lockup__title,
.footer-card h2,
.section-heading h2,
.hero__copy h1 {
    font-family: var(--font-heading);
}

.brand-lockup__title {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.brand-lockup__subtitle {
    color: var(--text-soft);
    font-size: 0.86rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.site-nav__link,
.locale-switcher__link,
.pagination__link {
    padding: 0.72rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav__link:hover,
.locale-switcher__link:hover,
.pagination__link:hover {
    transform: translateY(-1px);
    border-color: rgba(205, 164, 93, 0.35);
}

.site-nav__link.is-active,
.locale-switcher__link.is-active,
.pagination__link.is-active {
    background: linear-gradient(135deg, rgba(205, 164, 93, 0.22), rgba(111, 48, 41, 0.22));
    border-color: rgba(205, 164, 93, 0.42);
}

.locale-switcher {
    display: grid;
    gap: 0.45rem;
    justify-items: end;
}

.locale-switcher__label,
.eyebrow,
.category-card__badge,
.product-card__category,
.event-card__status {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
}

.locale-switcher__label,
.eyebrow {
    color: var(--gold);
}

.locale-switcher__options {
    display: flex;
    gap: 0.45rem;
}

.hero,
.store-hero,
.content-section {
    position: relative;
}

.hero {
    padding: 4.5rem 0 2.75rem;
}

.store-hero,
.content-section {
    padding: 1.5rem 0 0;
}

.hero__grid,
.split-grid,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.hero__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}

.hero__copy,
.hero__visual,
.panel-card,
.footer-card,
.category-card,
.feature-card,
.event-card,
.product-card,
.catalog-controls,
.empty-state {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
        var(--panel);
    box-shadow: var(--shadow);
}

.hero__copy,
.hero__visual,
.panel-card,
.footer-card,
.catalog-controls,
.empty-state {
    padding: 1.6rem;
}

.hero__copy h1 {
    font-size: clamp(3rem, 6vw, 5.35rem);
    line-height: 0.94;
    margin: 0 0 1rem;
}

.hero__subtitle,
.section-heading__subtitle {
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 0.75rem;
    max-width: 46rem;
}

.hero__body,
.section-heading__body,
.panel-card p,
.feature-card p,
.event-card p,
.product-card p,
.footer-card p,
.category-card p,
.catalog-meta__hint {
    color: var(--text-muted);
    line-height: 1.7;
}

.button-row,
.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
}

.button--primary {
    background: linear-gradient(135deg, var(--gold), #e0c287);
    color: #24160d;
}

.button--secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(205, 164, 93, 0.26);
}

.button--full {
    width: 100%;
}

.chip-list,
.footer-hours,
.hours-list,
.contact-stack,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.chip-list li,
.status-pill {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 164, 93, 0.24);
    background: rgba(205, 164, 93, 0.08);
    color: var(--text);
}

.hero__visual {
    display: grid;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(205, 164, 93, 0.18), transparent 38%),
        radial-gradient(circle at bottom left, rgba(79, 104, 76, 0.16), transparent 34%),
        var(--panel-strong);
}

.banner-panel {
    position: relative;
    min-height: 15rem;
    border-radius: calc(var(--radius-lg) - 8px);
    border: 1px solid rgba(205, 164, 93, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        linear-gradient(135deg, rgba(70, 40, 32, 0.92), rgba(27, 22, 20, 0.96));
    overflow: hidden;
}

.banner-panel__card {
    position: absolute;
    width: 10rem;
    aspect-ratio: 2 / 3;
    border-radius: 1.4rem;
    border: 1px solid rgba(245, 236, 217, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.banner-panel__card--rear {
    left: 10%;
    top: 18%;
    transform: rotate(-11deg);
    background: linear-gradient(135deg, rgba(56, 82, 64, 0.9), rgba(18, 29, 24, 0.95));
}

.banner-panel__card--center {
    left: calc(50% - 5rem);
    top: 8%;
    background: linear-gradient(135deg, rgba(155, 79, 55, 0.9), rgba(40, 20, 17, 0.96));
}

.banner-panel__card--front {
    right: 10%;
    top: 18%;
    transform: rotate(11deg);
    background: linear-gradient(135deg, rgba(136, 105, 54, 0.9), rgba(43, 31, 17, 0.96));
}

.stat-grid,
.callout-list,
.category-grid,
.feature-grid,
.event-grid,
.product-grid {
    display: grid;
    gap: 1rem;
}

.stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.callout-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(205, 164, 93, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.stat-card__value {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.callout-card h2,
.feature-card h3,
.event-card h3,
.product-card h3,
.panel-card h2,
.footer-card h3 {
    margin-top: 0;
    font-family: var(--font-heading);
}

.content-section--muted {
    padding-top: 2rem;
}

.section-heading {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.35rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.feature-card,
.event-card,
.product-card {
    padding: 1.3rem;
}

.category-card__icon,
.feature-card__icon {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(205, 164, 93, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
}

.category-card--ember .category-card__icon {
    color: #e49d78;
}

.category-card--forest .category-card__icon {
    color: #b8d2a7;
}

.category-card--gold .category-card__icon {
    color: #eacb7d;
}

.category-card--red .category-card__icon {
    color: #db8f86;
}

.category-card--charcoal .category-card__icon {
    color: #d7c5af;
}

.text-link {
    display: inline-flex;
    margin-top: 0.6rem;
    color: var(--gold);
}

.feature-grid,
.event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.status-pill {
    display: inline-flex;
    margin: 0.2rem 0 1rem;
}

.hours-list li,
.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(207, 177, 128, 0.12);
}

.hours-list li:last-child,
.footer-hours li:last-child {
    border-bottom: 0;
}

.contact-stack,
.footer-contact {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-stack dt,
.footer-contact dt {
    margin-bottom: 0.25rem;
    color: var(--gold);
}

.catalog-controls {
    align-items: end;
    justify-content: space-between;
}

.field {
    display: grid;
    gap: 0.45rem;
    min-width: min(100%, 14rem);
    flex: 1 1 0;
}

.field span {
    color: var(--text-soft);
}

.field input,
.field select {
    min-height: 3.1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(205, 164, 93, 0.18);
    color: var(--text);
    background: rgba(15, 12, 10, 0.7);
}

.catalog-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 1rem 0 1.3rem;
}

.catalog-meta__count {
    margin: 0;
    color: var(--gold);
}

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

.product-card {
    display: grid;
    gap: 1rem;
}

.product-card__media {
    position: relative;
    min-height: 12rem;
    border-radius: calc(var(--radius-md) - 2px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.media-theme-ember {
    background: linear-gradient(145deg, rgba(144, 66, 43, 0.95), rgba(42, 20, 16, 0.98));
}

.media-theme-forest {
    background: linear-gradient(145deg, rgba(61, 90, 66, 0.95), rgba(18, 28, 22, 0.98));
}

.media-theme-gold {
    background: linear-gradient(145deg, rgba(164, 124, 58, 0.95), rgba(45, 30, 17, 0.98));
}

.media-theme-red {
    background: linear-gradient(145deg, rgba(126, 47, 40, 0.95), rgba(35, 17, 16, 0.98));
}

.media-theme-charcoal {
    background: linear-gradient(145deg, rgba(59, 52, 47, 0.95), rgba(20, 18, 16, 0.98));
}

.product-card__shine {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%);
}

.product-card__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(20, 14, 12, 0.72);
    border: 1px solid rgba(245, 236, 217, 0.12);
}

.product-card__body {
    display: grid;
    gap: 0.7rem;
}

.product-card__category {
    color: var(--gold);
    margin: 0;
}

.product-card__body h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

.product-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.product-card__price {
    font-size: 1.25rem;
    color: var(--text);
}

.product-card__compare {
    color: var(--text-soft);
    text-decoration: line-through;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.pagination__link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.empty-state {
    text-align: center;
}

.site-footer {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(14, 11, 10, 0.1), rgba(14, 11, 10, 0.55));
}

.footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
}

.footer-card__headline {
    color: var(--text);
    font-size: 1.15rem;
}

.footer-nav {
    display: grid;
    gap: 0.75rem;
}

.footer-nav a:hover,
.contact-stack a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-meta {
    padding-top: 1rem;
    color: var(--text-soft);
}

@media (max-width: 1080px) {
    .hero__grid,
    .split-grid,
    .footer-grid,
    .category-grid,
    .feature-grid,
    .event-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-shell {
        flex-wrap: wrap;
    }

    .site-nav,
    .locale-switcher {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .hero {
        padding-top: 3rem;
    }

    .hero__grid,
    .split-grid,
    .category-grid,
    .feature-grid,
    .event-grid,
    .product-grid,
    .footer-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .catalog-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .field {
        min-width: 100%;
    }

    .brand-lockup {
        width: 100%;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .locale-switcher {
        justify-items: start;
    }

    .hours-list li,
    .footer-hours li {
        flex-direction: column;
        align-items: flex-start;
    }
}
