:root {
    --bg: #080808;
    --paper: #111111;
    --paper-strong: #1a1a1a;
    --paper-tint: #20180d;
    --ink: #f3e7c9;
    --muted: #c8b27a;
    --line: rgba(212, 175, 55, 0.18);
    --coffee: #0d0d0d;
    --copper: #d4af37;
    --sage: #f1d27a;
    --sand: #2b2112;
    --shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.28);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 22%),
        radial-gradient(circle at 85% 12%, rgba(241, 210, 122, 0.1), transparent 20%),
        linear-gradient(180deg, #050505 0%, #111111 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(212, 175, 55, 0.05), transparent 35%),
        linear-gradient(295deg, rgba(241, 210, 122, 0.06), transparent 30%);
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.75rem;
    color: var(--ink);
    font-family: "Fraunces", serif;
    line-height: 1.08;
}

p {
    margin-top: 0;
    color: var(--muted);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container,
.container-fluid,
.row {
    max-width: 100%;
}

#spinner {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 5, 0.96);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#spinner:not(.show) {
    opacity: 0;
    visibility: hidden;
}

.spinner-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 6px solid rgba(212, 175, 55, 0.16);
    border-top-color: var(--copper);
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    background: transparent;
    /* remove page-level header background */
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.header-bar {
    margin: 0 auto 0.8rem;
    width: min(1320px, calc(100% - 24px));
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.95);
    /* solid belt background */
    color: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    padding: 6px;
    /* small padding to make a neat belt */
}

.header-bar__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.7rem 1.2rem;
}

.header-bar__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
}

.header-bar__item i {
    color: var(--sage);
}

.site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    align-items: center;
    gap: 1.2rem;
    padding: 0.6rem 1.25rem;
    /* tighter padding to fit the belt */
    border: none;
    /* remove inner border */
    border-radius: 28px;
    background: transparent;
    /* let the header-bar provide the belt */
    box-shadow: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.site-nav__container {
    flex-grow: 1;
    margin: 0 40px;
    min-width: 0;
}

.site-brand img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    border-radius: 8px;
    object-fit: contain;
    padding: 0;
    /* remove extra internal padding */

    align-self: flex-start !important;
    /* align logo to top of the text */
}

.site-brand strong {
    display: block;
    font-size: 1.28rem;
    font-weight: 800;
}

.site-brand small {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
}

.site-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: transparent;
    /* links sit directly on the belt */
    flex-wrap: wrap;
}

.site-nav__links a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav__links a:hover,
.site-nav__links a.active {
    background: linear-gradient(135deg, #d4af37, #f1d27a);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-main {
    padding-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.24), 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-22deg);
    transition: left 0.65s ease;
}

.btn:hover::after {
    left: 140%;
}

.btn-brand {
    color: #f7e7b2;
    background: linear-gradient(135deg, #050505, #3a2d12);
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: var(--shadow-soft);
}

.btn-brand:hover {
    color: #fff7db;
    background: linear-gradient(135deg, #17110a, #4b3918);
    border-color: rgba(212, 175, 55, 0.48);
}

.btn-outline-brand {
    color: #3a2d12;
    background: #fffdf7;
    border: 1px solid rgba(212, 175, 55, 0.46);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.btn-outline-brand:hover {
    color: #050505;
    background: linear-gradient(135deg, #fff6dc, #f5de99);
    border-color: rgba(212, 175, 55, 0.62);
}

.btn-accent {
    color: #050505;
    background: linear-gradient(135deg, #d4af37, #b8891f);
    border-color: rgba(122, 91, 20, 0.24);
    box-shadow: var(--shadow-soft);
}

.btn-accent:hover {
    color: #050505;
    background: linear-gradient(135deg, #ebc963, #c89628);
    border-color: rgba(122, 91, 20, 0.38);
}

.section-shell {
    padding: 1rem 0;
}

.section-shell-tight {
    padding: 4rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.52rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(241, 210, 122, 0.16));
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.display-title {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.lead-copy {
    max-width: 640px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.home-hero {
    padding: 1rem 0 2rem;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.home-hero__copy {
    position: relative;
    padding: 4.2rem 3rem;
    overflow: hidden;
    border-radius: 0 34px 34px 34px;
    background: linear-gradient(145deg, #050505, #3a2d12);
    box-shadow: var(--shadow);
}

.home-hero__copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(241, 210, 122, 0.12), transparent 24%);
    pointer-events: none;
}

.home-hero__copy::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(4px);
    animation: floatOrb 9s ease-in-out infinite;
}

.home-hero__copy>* {
    position: relative;
    z-index: 1;
}

.home-hero__copy h1,
.home-hero__copy p {
    color: #fff;
}

.home-hero__copy .lead-copy {
    color: rgba(255, 255, 255, 0.78);
}

.home-hero__copy .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #f6e2a4;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-metric {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.hero-metric strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.hero-metric span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-carousel-shell {
    height: 100%;
    padding: 1rem;
    border-radius: 34px 34px 34px 0;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(26, 20, 10, 0.94));
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: var(--shadow-soft);
}

.hero-showcase {
    position: relative;
    overflow: hidden;
    /* responsive height: min 320px, preferred 45vh, max 600px */
    height: clamp(320px, 45vh, 600px);
    border-radius: 28px;
    background: #0d0d0d;
    transform: translateZ(0);
}

.hero-showcase img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ensure whole image is visible */
    object-position: center;
    /* remove panning animation when using contain (keeps image stable) */
}

.hero-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.92));
}

.hero-showcase__overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 2rem;
    animation: riseIn 1s ease both 0.3s;
}

.hero-showcase__overlay h3,
.hero-showcase__overlay p {
    color: #fff;
}

.mini-label {
    display: inline-flex;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.22);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.feature-grid,
.product-grid,
.gallery-grid,
.contact-card-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.product-card,
.surface-card,
.about-visual,
.contact-card,
.info-card,
.sidebar-card,
.detail-card,
.gallery-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #111111, #1a1a1a);
    box-shadow: var(--shadow-soft);
}

.feature-card,
.product-card,
.surface-card,
.contact-card,
.info-card,
.sidebar-card,
.detail-card,
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.product-card:hover,
.surface-card:hover,
.contact-card:hover,
.info-card:hover,
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.38);
}

.feature-card {
    position: relative;
    padding: 1.6rem;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: auto -20px -20px auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(241, 210, 122, 0.18));
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
    height: 100%;
    background: linear-gradient(180deg, #111111, #1a140a);
}

.product-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 24%),
        linear-gradient(180deg, #181818, #251d10);
}

.product-media::after {
    content: "";
    position: absolute;
    inset: auto 14px 14px auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.45);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.06) rotate(-1deg);
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, #34280f, #221909);
}

.product-category {
    display: inline-flex;
    width: fit-content;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #34280f, #c89f2f);
    color: #f6e2a4;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-title {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.06rem;
    font-weight: 800;
    color: #f3e7c9;
}

.product-copy {
    margin: 0;
    font-size: 0.93rem;
    color: #e3cf98;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding-top: 10px;
    border-top: 1px solid rgba(241, 210, 122, 0.28);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.price-label {
    color: var(--copper);
    font-weight: 800;
}

.price-label.text-muted,
.dealer-price.text-muted {
    color: rgba(243, 231, 201, 0.56) !important;
}

.inquiry-row {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
}

.icon-pill {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f1d27a);
    color: #050505;
    border: 1px solid rgba(122, 91, 20, 0.24);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, background 0.25s ease;
}

.icon-pill:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f1d27a, #d4af37);
}

.social-row a,
.icon-pill,
.back-to-top {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}



.social-row a:hover,
.back-to-top:hover {
    transform: translateY(-3px);
}

.split-panel,
.detail-layout,
.info-grid,
.sidebar-layout {
    display: grid;
    gap: 1.8rem;
}

.split-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
}

.surface-card,
.detail-card,
.sidebar-card,
.contact-card,
.info-card {
    padding: 1.7rem;
}

.about-panel {
    position: relative;
    overflow: hidden;
}

.about-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-bottom-left-radius: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(241, 210, 122, 0.12));
}

.about-visual {
    overflow: hidden;
    min-height: 100%;
    border-radius: 34px 0 34px 34px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.media-stack {
    position: relative;
    min-height: 500px;
}

.media-stack-main,
.media-stack-float {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-stack-main {
    inset: 0 4rem 0 0;
    border-radius: 34px;
}

.media-stack-float {
    right: 0;
    bottom: 1.8rem;
    width: 220px;
    height: 220px;
    border-radius: 28px;
    border: 8px solid var(--paper);
}

/* This makes the white box completely invisible */
.media-stack-main {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

/* This keeps your logo fitting perfectly */
.media-stack-main img,
.media-stack-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.list-check {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.list-check span {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 600;
}

.list-check i {
    color: var(--copper);
    margin-top: 0.2rem;
}

.page-hero {
    padding: 2rem 0 2rem;
}

.page-hero-card {
    text-align: center;
}

.page-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 24%),
        radial-gradient(circle at left bottom, rgba(241, 210, 122, 0.12), transparent 24%);
    pointer-events: none;
}

.page-hero-card::after,
.cta-band::after {
    content: "";
    position: absolute;
    inset: auto auto -32px -32px;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(12deg);
}

.page-hero-card>* {
    position: relative;
    z-index: 1;
}

.page-hero-card h1,
.page-hero-card p,
.page-hero-card a,
.page-hero-card li {
    color: #fff;
}

.breadcrumb-clean {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.breadcrumb-clean li+li::before {
    content: "/";
    margin-right: 0.7rem;
}

.sidebar-layout {
    grid-template-columns: 290px minmax(0, 1fr);
}

.filter-list,
.simple-link-list,
.footer-links {
    display: grid;
    gap: 0.7rem;
}

.filter-link,
.simple-link-list a {
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.18);
    background: white;
    font-weight: 700;
    text-decoration: none;
}

.filter-link.active,
.filter-link:hover,
.simple-link-list a:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.36);
    background: white
}

.range-note,
.muted-note {
    font-size: 0.92rem;
    color: var(--muted);
}

.shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pagination-shell {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.pagination-shell a,
.pagination-shell span {
    min-width: 44px;
    height: 44px;
    padding: 0 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: white;
    border: 1px solid;
    font-weight: 800;
    color: black;
}

.pagination-shell .active {
    background: var(--copper);
    color: #fff;
}

.detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.detail-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #000000, #251d10);
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-summary {
    display: grid;
    gap: 1rem;
}

.detail-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.detail-highlight div {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(241, 210, 122, 0.16));
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
    overflow: hidden;
    aspect-ratio: 0.95 / 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card h5,
.info-card h5,
.sidebar-card h5 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-shell {
    position: relative;
    overflow: hidden;
}

.form-shell::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.form-shell:hover::before {
    animation: pulseGlow 2.4s ease-in-out infinite;
}

.form-control,
.form-select,
.form-range {
    border-radius: 16px;
}

.form-control,
.form-select {
    padding: 0.95rem 1rem;
    color: var(--ink);
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.form-control::placeholder {
    color: rgba(243, 231, 201, 0.58);
}

.form-select option {
    background: #111111;
    color: var(--ink);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(212, 175, 55, 0.32);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.14);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 2.2rem;
    border-radius: 34px 34px 0 34px;
    background: linear-gradient(145deg, #050505, #3a2d12);
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 26%),
        radial-gradient(circle at left bottom, rgba(241, 210, 122, 0.12), transparent 26%);
    pointer-events: none;
}

.cta-band>* {
    position: relative;
    z-index: 1;
}

.cta-band h2,
.cta-band p {
    color: #fff;
}

.map-shell {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 22%),
        linear-gradient(180deg, #050505, #1a140a);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
    gap: 1.5rem;
}

.site-brand--footer strong,
.site-footer h6 {
    color: #fff;
}

.site-brand--footer small,
.footer-links a,
.footer-links span,
.footer-note {
    color: rgba(255, 255, 255, 0.72);
}

.site-brand--footer img {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px;
}

.social-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-row a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1000;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #b8891f);
    box-shadow: var(--shadow);
}

.is-reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.is-reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.is-reveal.from-left {
    transform: translateX(-42px) scale(0.98);
}

.is-reveal.from-right {
    transform: translateX(42px) scale(0.98);
}

.is-reveal.from-left.reveal-visible,
.is-reveal.from-right.reveal-visible {
    transform: translateX(0) scale(1);
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-12px, -18px, 0);
    }
}

@keyframes heroPan {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.1) translate3d(-10px, -8px, 0);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@media (max-width: 1199.98px) {

    .site-nav,
    .home-hero__grid,
    .split-panel,
    .sidebar-layout,
    .detail-layout,
    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .product-grid,
    .gallery-grid,
    .contact-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav {
        justify-items: start;
    }

    .site-nav__container {
        width: 100%;
        margin: 0;
    }

    .site-nav__links {
        justify-content: flex-start;
    }

    .hero-showcase {
        height: clamp(360px, 48vh, 520px);
    }

    .media-stack {
        min-height: 420px;
    }
}

@media (max-width: 991.98px) {
    .header-bar {
        display: none;
    }

    .site-header {
        padding-top: 0.75rem;
    }

    .site-main {
        padding-top: 105px;
    }

    .site-nav {
        gap: 0.85rem;
        padding: 0.9rem 1rem;
    }

    .site-nav__links,
    .horizontal-products {
        width: 100%;
        gap: 0.5rem;
    }

    .site-nav__links a,
    .horizontal-products a {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
    }

    .hero-metrics,
    .detail-highlight {
        grid-template-columns: 1fr;
    }

    .home-hero__copy {
        padding: 3rem 2rem;
    }

    .hero-showcase {
        height: clamp(320px, 45vh, 420px);
    }

    .media-stack-main {
        inset: 0;
    }

    .media-stack-float {
        display: none;
    }
}

@media (max-width: 767.98px) {

    .section-shell,
    .section-shell-tight {
        padding: 3rem 0;
    }

    .site-nav {
        gap: 1rem;
        padding: 1rem;
    }

    .site-brand img {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px;
    }

    .site-nav__container {
        margin: 0;
    }

    .site-nav__links,
    .horizontal-products {
        justify-content: stretch;
    }

    .site-nav__links a,
    .horizontal-products a,
    .btn-back {
        width: 100%;
        flex: 1 1 100%;
    }

    .site-brand strong {
        font-size: 1.05rem;
    }

    .site-brand small {
        font-size: 0.82rem;
    }

    .feature-grid,
    .product-grid,
    .gallery-grid,
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .home-hero__copy,
    .hero-carousel-shell,
    .surface-card,
    .page-hero-card,
    .detail-card,
    .sidebar-card,
    .contact-card,
    .info-card,
    .cta-band {
        padding: 1.3rem;
    }

    .hero-actions,
    .product-meta,
    .shop-topbar,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .breadcrumb-clean {
        gap: 0.45rem;
        font-size: 0.84rem;
    }

    .pagination-shell a,
    .pagination-shell span {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
    }

    .hero-showcase {
        height: clamp(280px, 40vh, 360px);
    }

    .page-hero-card,
    .home-hero__copy,
    .hero-carousel-shell,
    .cta-band,
    .about-visual {
        border-radius: 24px;
    }

    .footer-grid>div,
    .info-grid>div,
    .detail-highlight>div {
        min-width: 0;
    }
}

@media (max-width: 575.98px) {

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-main {
        padding-top: 96px;
    }

    .site-nav {
        border-radius: 22px;
    }

    .site-nav__links a {
        padding: 0.75rem 0.85rem;
        font-size: 0.92rem;
    }

    .display-title,
    .page-hero-card h1,
    .detail-summary h2 {
        line-height: 1.15;
    }

    .media-stack {
        min-height: 300px;
    }

    .hero-actions .btn,
    .product-meta>* {
        width: 100%;
    }

    .social-row {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .is-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}