:root {
    --gold: #966e18;
    --gold-dark: #6f4f0f;
    --gold-light: #b98921;
    --peach: #f8eee7;
    --peach-deep: #f1dfd2;
    --ivory: #fffaf5;
    --ink: #392815;
    --muted: #766858;
    --line: rgba(150, 110, 24, .22);
    --container: 1240px;
    --header-height: 154px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--peach);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
main { min-height: 60vh; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--peach);
    transition: opacity .35s ease, visibility .35s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { color: var(--gold); font: 600 38px/1 "Cormorant Garamond", serif; letter-spacing: .12em; }
.loader-logo {
    width: 130px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .loader-logo {
        width: 95px;
    }
}
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 0 var(--line);
}
.header-gold-bar { background: var(--gold); color: #fff; }
.header-top-bar { min-height: 34px; }
.header-top-inner {
    width: min(calc(100% - 64px), var(--container));
    min-height: 34px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.header-top-inner p { margin: 0; }
.header-top-right { justify-self: end; }
.header-main { background: #fff; }
.nav-shell {
    width: min(calc(100% - 64px), var(--container));
    min-height: 82px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-wordmark { display: flex; flex-direction: column; align-items: center; color: var(--gold); }
.brand-wordmark strong { font: 600 27px/1 "Cormorant Garamond", serif; letter-spacing: .09em; white-space: nowrap; }
.brand-wordmark small { margin-top: 7px; font-size: 8px; font-weight: 600; letter-spacing: .28em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.main-nav a { position: relative; padding: 31px 0; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-social-actions { justify-self: end; display: flex; gap: 8px; }
.nav-social-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); transition: .2s ease; }
.nav-social-icon:hover { background: var(--gold); color: #fff; }
.header-bottom-bar { min-height: 38px; }
.header-category-links { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: clamp(30px, 5vw, 76px); }
.header-category-links a { font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 7px 0; background: var(--ink); transition: .25s ease; }
.menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.eyebrow { margin: 0; color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 28px; border: 1px solid var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: .25s ease; }
.button-gold { background: var(--gold); color: #fff; }
.button-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.button-ghost { background: transparent; color: var(--gold); }
.button-ghost:hover { background: var(--gold); color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; background: var(--peach); }
.hero-media { position: absolute; inset: 0 0 0 auto; width: 72%; }
.hero-media img { height: 100%; object-fit: cover; object-position: 68% center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--peach) 0%, rgba(248,238,231,.96) 10%, rgba(248,238,231,.65) 24%, rgba(248,238,231,0) 48%); }
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 64px), var(--container)); margin: auto; padding: 78px 0; }
.hero-content > * { max-width: 610px; }
.hero h1 { margin: 15px 0 18px; color: var(--ink); font: 600 clamp(58px, 6.2vw, 92px)/.88 "Cormorant Garamond", serif; letter-spacing: -.04em; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--gold); font-weight: 500; }
.hero h2 { margin: 0 0 25px; color: var(--gold); font: 600 clamp(23px, 2.1vw, 32px)/1.15 "Cormorant Garamond", serif; }
.hero-copy { margin: 0 0 32px; max-width: 535px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.section { padding: 92px 32px; }
.section-light { background: var(--peach); }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading h2 { margin: 14px 0 16px; font: 600 clamp(48px, 5vw, 70px)/.95 "Cormorant Garamond", serif; }
.section-heading p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.collection-grid { width: min(100%, var(--container)); margin: auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.collection-card { min-width: 0; background: var(--ivory); border: 1px solid var(--line); }
.collection-image { display: block; overflow: hidden; aspect-ratio: 4 / 5; background: var(--peach-deep); }
.collection-image img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.collection-image:hover img { transform: scale(1.035); }
.collection-card::before, .collection-card::after, .card-shade { display: none !important; content: none !important; }
.collection-copy { position: static; padding: 22px 18px 24px; text-align: center; background: var(--ivory); }
.collection-copy span { display: block; min-height: 24px; color: var(--gold); font-size: 8px; font-weight: 600; line-height: 1.5; letter-spacing: .16em; text-transform: uppercase; }
.collection-copy h3 { margin: 7px 0 13px; font: 600 clamp(24px, 2.2vw, 34px)/1 "Cormorant Garamond", serif; }
.collection-copy a { color: var(--gold); font-size: 8px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }

.story-section, .visit-section { padding: 64px max(32px, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 64px; }
.story-section { background: var(--gold); color: #fff; }
.story-image, .visit-media { height: 470px; padding: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,.3); }
.story-image img, .visit-media img { height: 100%; object-fit: cover; }
.story-copy { padding: 10px 0; }
.story-copy .eyebrow { color: #ffefbb; }
.story-copy h2 { margin: 14px 0 0; font: 600 clamp(48px, 5vw, 72px)/.95 "Cormorant Garamond", serif; }
.gold-line { width: 48px; height: 1px; margin: 25px 0; background: #ffefbb; }
.story-copy > p:not(.eyebrow) { max-width: 580px; margin: 0; color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 12px; margin-top: 24px; color: #ffefbb; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.selected-section { padding-bottom: 100px; }
.product-grid { width: min(100%, var(--container)); margin: auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.product-card { min-width: 0; }
.product-image { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; background: var(--peach-deep); }
.product-image img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-action { position: absolute; right: 16px; bottom: 16px; left: 16px; min-height: 42px; display: flex; align-items: center; justify-content: center; background: rgba(30,20,10,.82); color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transition: background .25s ease; }
.product-image:hover .product-action { background: var(--gold); }
.product-info { padding: 17px 4px 10px; text-align: center; }
.product-info h3 { margin: 0; font: 600 23px/1.1 "Cormorant Garamond", serif; }
.product-info p { margin: 7px 0 0; color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.visit-section { grid-template-areas: "copy media"; background: linear-gradient(135deg, var(--peach), var(--peach-deep)); }
.visit-media { grid-area: media; border-color: var(--line); background: var(--peach-deep); }
.visit-overlay { display: none; }
.visit-content { grid-area: copy; max-width: 590px; }
.visit-content h3 { margin: 0 0 18px; font: 600 clamp(48px, 5vw, 70px)/.95 "Cormorant Garamond", serif; }
.visit-content > p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.visit-content .hero-actions { margin-top: 28px; }

.catalog-hero, .simple-hero { padding: 95px 32px 80px; background: var(--peach); text-align: center; }
.catalog-hero::before, .catalog-hero::after, .simple-hero::before, .simple-hero::after,
.collections-hero-overlay { display: none !important; content: none !important; }
.catalog-hero h1, .simple-hero h1 { margin: 14px 0 18px; color: var(--ink); font: 600 clamp(58px, 7vw, 92px)/.9 "Cormorant Garamond", serif; }
.catalog-hero > p:last-child, .simple-hero > div > p:not(.eyebrow) { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 15px; line-height: 1.75; }
.catalog-section { padding: 60px 32px 100px; background: var(--peach); }
.catalog-filters { width: min(100%, 840px); margin: 0 auto 50px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.catalog-filters a { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid var(--line); background: rgba(255,255,255,.35); color: var(--gold-dark); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.catalog-filters a:hover, .catalog-filters a.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.simple-hero { min-height: 520px; display: grid; place-items: center; }
.simple-hero > div { width: min(100%, 820px); }
.simple-hero .hero-actions { margin-top: 30px; justify-content: center; }

.product-detail { padding: 90px max(32px, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); align-items: center; gap: 70px; background: var(--peach); }
.product-detail-image { overflow: hidden; background: var(--peach-deep); }
.product-detail-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.product-detail-copy h1 { margin: 14px 0 8px; font: 600 clamp(52px, 5vw, 76px)/.92 "Cormorant Garamond", serif; }
.detail-purity { color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.product-detail-copy > p:not(.eyebrow):not(.detail-purity) { color: var(--muted); font-size: 15px; line-height: 1.8; }
.product-detail dl { margin: 28px 0 30px; border-top: 1px solid var(--line); }
.product-detail dl div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.product-detail dt { color: var(--gold); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.product-detail dd { margin: 0; font-size: 13px; }

.site-footer { padding: 72px 32px 24px; background: var(--gold); color: #fff; }
.footer-grid { width: min(100%, var(--container)); margin: auto; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; }
.brand-footer img { width: 58px; height: 58px; }
.brand-footer span { display: flex; flex-direction: column; }
.brand-footer strong { font: 600 22px/1 "Cormorant Garamond", serif; letter-spacing: .08em; }
.brand-footer small { margin-top: 6px; font-size: 7px; letter-spacing: .22em; }
.footer-brand > p { max-width: 360px; margin: 22px 0 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.75; }
.footer-grid h3 { margin: 0 0 20px; color: #ffefbb; font: 600 23px/1 "Cormorant Garamond", serif; }
.footer-grid > div > a, .footer-grid > div > p { display: block; margin: 0 0 11px; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.65; }
.footer-grid > div > a:hover { color: #fff; }
.footer-bottom { width: min(100%, var(--container)); margin: 50px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.65); font-size: 10px; }
.footer-bottom div { display: flex; gap: 22px; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #20c96b; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.18); font-size: 29px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    :root { --header-height: 82px; }
    .header-top-bar, .header-bottom-bar { display: none; }
    .nav-shell { width: calc(100% - 36px); min-height: 82px; grid-template-columns: 1fr auto; gap: 12px; }
    .nav-social-actions { display: none; }
    .menu-toggle { display: block; justify-self: end; }
    .main-nav { position: fixed; top: 82px; right: 0; bottom: 0; left: 0; z-index: 1001; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0; padding: 50px 24px; background: var(--peach); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s ease; }
    .main-nav.open { transform: translateX(0); visibility: visible; }
    .main-nav a { width: min(100%, 420px); padding: 18px; border-bottom: 1px solid var(--line); text-align: center; font: 600 28px/1 "Cormorant Garamond", serif; text-transform: none; }
    .main-nav a::after { display: none; }
    .hero { min-height: 690px; }
    .hero-media { width: 100%; opacity: .42; }
    .hero-media::after { background: linear-gradient(90deg, var(--peach) 0%, rgba(248,238,231,.82) 52%, rgba(248,238,231,.35) 100%); }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .brand { gap: 9px; }
    .brand img { width: 54px; height: 54px; }
    .brand-wordmark strong { font-size: 22px; letter-spacing: .06em; }
    .brand-wordmark small { margin-top: 5px; font-size: 6.5px; }
    .hero { min-height: 0; display: block; }
    .hero-media { inset: 0; width: 100%; opacity: .55; }
    .hero-media img { object-position: 64% center; }
    .hero-media::after { background: linear-gradient(180deg, rgba(248,238,231,.28), var(--peach) 88%); }
    .hero-content { width: calc(100% - 34px); padding: 42px 0 54px; }
    .hero h1 { margin-top: 12px; font-size: clamp(48px, 14.5vw, 64px); line-height: .9; }
    .hero h2 { max-width: 330px; font-size: 24px; }
    .hero-copy { max-width: 100%; font-size: 13px; line-height: 1.7; }
    .hero-actions { flex-wrap: nowrap; }
    .hero-actions .button { flex: 1; min-width: 0; padding: 0 10px; font-size: 8px; }
    .section { padding: 56px 12px; }
    .section-heading { margin-bottom: 30px; padding: 0 10px; }
    .section-heading h2 { font-size: 43px; }
    .section-heading p:last-child { font-size: 14px; }
    .collection-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
    .collection-image { aspect-ratio: 3 / 4; }
    .collection-copy { padding: 10px 3px 12px; }
    .collection-copy span { display: none; }
    .collection-copy h3 { min-height: 28px; margin: 0 0 7px; font-size: 13px; line-height: 1.05; }
    .collection-copy a { display: none; }
    .story-section, .visit-section { grid-template-columns: 1fr; gap: 28px; padding: 42px 17px; }
    .story-image, .visit-media { height: 320px; padding: 6px; }
    .story-copy h2 { font-size: 48px; }
    .story-copy > p:not(.eyebrow) { font-size: 14px; }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .product-action { display: none !important; }
    .product-image { aspect-ratio: 4 / 5; }
    .product-info { padding: 10px 2px 14px; }
    .product-info h3 { font-size: 14px; line-height: 1.1; }
    .product-info p { margin-top: 5px; font-size: 7px; }
    .visit-section { grid-template-areas: "copy" "media"; }
    .visit-content h3 { font-size: 46px; }
    .catalog-hero, .simple-hero { padding: 58px 18px 48px; }
    .catalog-hero h1, .simple-hero h1 { font-size: 54px; }
    .catalog-section { padding: 32px 12px 65px; }
    .catalog-filters { margin-bottom: 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .catalog-filters a { min-width: 0; min-height: 40px; padding: 0 8px; font-size: 7px; }
    .catalog-filters a:first-child { grid-column: 1 / -1; }
    .simple-hero { min-height: 440px; }
    .product-detail { padding: 48px 17px 62px; grid-template-columns: 1fr; gap: 38px; }
    .product-detail-copy h1 { font-size: 52px; }
    .site-footer { padding: 50px 20px 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { margin-top: 38px; flex-direction: column; }
    .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (max-width: 390px) {
    .brand-wordmark strong { font-size: 19px; }
    .brand-wordmark small { font-size: 6px; }
    .nav-shell { width: calc(100% - 22px); }
    .hero-actions { flex-direction: column; }
    .collection-copy h3 { font-size: 11px; }
    .product-info h3 { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   FINAL RESPONSIVE LAYOUT — 2026-08-02
   Wider desktop hero/showroom + mobile horizontal card swipes
   ========================================================= */

/* Fill more of large desktop screens without changing other sections. */
@media (min-width: 1051px) {
    .hero-content {
        width: min(calc(100% - 80px), 1680px);
        max-width: none;
    }

    .hero-media {
        width: 70%;
    }

    .visit-section {
        padding: 64px clamp(32px, 4vw, 76px);
        grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
        gap: clamp(44px, 5vw, 92px);
    }

    .visit-media {
        height: clamp(500px, 34vw, 650px);
    }

    .visit-content {
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 720px) {
    /* One mobile card at a time, with a glimpse of the next card. */
    .collection-grid,
    .selected-section .product-grid {
        display: flex;
        grid-template-columns: none;
        flex-flow: row nowrap;
        align-items: flex-start;
        width: 100%;
        max-width: none;
        gap: 12px;
        margin: 0;
        padding: 0 4px 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4px;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
    }

    .collection-grid::-webkit-scrollbar,
    .selected-section .product-grid::-webkit-scrollbar {
        display: none;
    }

    .collection-grid .collection-card,
    .selected-section .product-grid .product-card {
        flex: 0 0 86%;
        width: 86%;
        min-width: 86%;
        max-width: 86%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .collection-image,
    .selected-section .product-image {
        aspect-ratio: 4 / 5;
    }

    /* Restore readable card typography for the larger swipe cards. */
    .collection-copy {
        padding: 14px 10px 16px;
    }

    .collection-copy h3 {
        min-height: 0;
        margin: 0;
        font-size: 27px;
        line-height: 1;
    }

    .selected-section .product-info {
        padding: 12px 4px 16px;
    }

    .selected-section .product-info h3 {
        font-size: 22px;
        line-height: 1.08;
    }

    .selected-section .product-info p {
        margin-top: 6px;
        font-size: 8px;
    }

    /* Compact showroom heading on phones. */
    .visit-content h3 {
        font-size: 35px;
        line-height: 1;
    }
}

@media (max-width: 390px) {
    .collection-grid .collection-card,
    .selected-section .product-grid .product-card {
        flex-basis: 88%;
        width: 88%;
        min-width: 88%;
        max-width: 88%;
    }

    .visit-content h3 {
        font-size: 32px;
    }
}


/* =========================================================
   LIVE RATE + GOOGLE REVIEWS + GOLD BARS + COMPACT FOOTER
   2026-08-02
   ========================================================= */

/* Gold bars promotional section */
.gold-bars-section {
    padding: 72px 32px;
    background: #0d0b08;
    color: #fff;
}

.gold-bars-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr);
    align-items: center;
    gap: clamp(36px, 5vw, 78px);
}

.gold-bars-intro {
    max-width: 430px;
}

.gold-bars-intro .eyebrow {
    color: #e6c76d;
}

.gold-bars-intro h2 {
    margin: 14px 0 18px;
    color: #f6db87;
    font: 600 clamp(48px, 5vw, 76px)/.92 "Cormorant Garamond", serif;
}

.gold-bars-intro > p:not(.eyebrow) {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.75;
}

.gold-bars-button {
    margin-top: 26px;
    border-color: #c89b2b;
    background: #c89b2b;
    color: #111;
}

.gold-bars-button:hover {
    border-color: #f0ca65;
    background: #f0ca65;
}

.gold-bars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gold-bar-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(232, 199, 109, .2);
    background: #17130d;
    transition: transform .3s ease, border-color .3s ease;
}

.gold-bar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 199, 109, .62);
}

.gold-bar-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #1b160d;
}

.gold-bar-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.gold-bar-card:hover img { transform: scale(1.035); }

.gold-bar-copy {
    padding: 16px 14px 18px;
}

.gold-bar-copy h3 {
    margin: 0;
    color: #fff5d3;
    font: 600 24px/1.05 "Cormorant Garamond", serif;
}

.gold-bar-copy p {
    margin: 8px 0 0;
    color: #d6b95d;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gold-bar-copy span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.6);
    font-size: 10px;
}

/* Fixed Google reviews tab */
.floating-google-reviews {
    position: fixed;
    left: 0;
    top: 52%;
    z-index: 880;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px 8px 9px;
    border-radius: 0 12px 12px 0;
    background: #fff;
    color: #312517;
    box-shadow: 0 10px 28px rgba(38, 27, 12, .2);
    transform: translateY(-50%);
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-google-reviews:hover {
    transform: translateY(-50%) translateX(3px);
    box-shadow: 0 14px 34px rgba(38, 27, 12, .27);
}

.google-review-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #4285f4;
    border: 1px solid rgba(0,0,0,.09);
    font-size: 20px;
}

.google-review-copy { display: flex; flex-direction: column; }
.google-review-copy strong { font-size: 11px; line-height: 1.1; }
.google-review-copy strong::after { content: " ★★★★★"; color: #f4b400; font-size: 9px; }
.google-review-copy small { margin-top: 4px; color: #766858; font-size: 8px; white-space: nowrap; }

/* Live gold rate fixed widget */
.gold-rate-widget {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 910;
}

.gold-rate-trigger {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px 9px 13px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    background: #966e18;
    color: #fff;
    box-shadow: 0 12px 30px rgba(80, 53, 7, .28);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.gold-rate-trigger:hover {
    background: #7e5a12;
    transform: translateY(-2px);
}

.gold-rate-trigger > i { font-size: 18px; }

.gold-rate-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #74f59d;
    box-shadow: 0 0 0 5px rgba(116,245,157,.14);
}

.gold-rate-trigger-copy { display: flex; flex-direction: column; align-items: flex-start; }
.gold-rate-trigger-copy strong { font-size: 11px; line-height: 1.15; }
.gold-rate-trigger-copy small { margin-top: 3px; color: rgba(255,255,255,.78); font-size: 8px; }

.gold-rate-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(340px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(150,110,24,.28);
    border-radius: 15px;
    background: #fffaf5;
    color: #392815;
    box-shadow: 0 22px 60px rgba(38, 27, 12, .28);
}

.gold-rate-panel[hidden] { display: none; }

.gold-rate-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px 14px;
    background: #966e18;
    color: #fff;
}

.gold-rate-panel-head p { margin: 0; color: #ffeab4; font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.gold-rate-panel-head h2 { margin: 6px 0 0; font: 600 25px/1 "Cormorant Garamond", serif; }
.gold-rate-close { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: transparent; color: #fff; font-size: 23px; line-height: 1; cursor: pointer; }

.gold-rate-list { padding: 8px 18px; }
.gold-rate-row { display: grid; grid-template-columns: 1fr auto auto; align-items: baseline; gap: 8px; padding: 11px 0; border-bottom: 1px solid rgba(150,110,24,.15); }
.gold-rate-row:last-child { border-bottom: 0; }
.gold-rate-row span { color: #966e18; font-size: 11px; font-weight: 700; }
.gold-rate-row strong { font: 600 25px/1 "Cormorant Garamond", serif; }
.gold-rate-row small { color: #766858; font-size: 8px; }
.gold-rate-status { margin: 12px 0; color: #766858; font-size: 12px; line-height: 1.6; }
.gold-rate-meta { display: flex; flex-direction: column; gap: 5px; padding: 12px 18px 16px; border-top: 1px solid rgba(150,110,24,.15); color: #766858; font-size: 8px; }
.gold-rate-meta a { color: #966e18; font-weight: 600; }
.gold-rate-widget.is-stale .gold-rate-live-dot { background: #f3c857; box-shadow: 0 0 0 5px rgba(243,200,87,.15); }
.gold-rate-widget.has-error .gold-rate-live-dot { background: #e07a68; box-shadow: 0 0 0 5px rgba(224,122,104,.14); }

/* Extra-compact footer with a larger brand mark */
.site-footer {
    padding: 30px 32px 12px;
}

.footer-grid {
    grid-template-columns: 1.45fr .72fr 1fr .9fr;
    gap: 30px;
    align-items: start;
}

.brand-footer {
    gap: 15px;
    margin-bottom: 8px;
}

.brand-footer img {
    width: 78px;
    height: 78px;
}

.brand-footer strong {
    font-size: 30px;
    letter-spacing: .07em;
}

.brand-footer small {
    margin-top: 7px;
    font-size: 8px;
}

.footer-brand h5 {
    margin: 4px 0 0;
    font-size: 12px;
}

.footer-grid h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-grid > div > a,
.footer-grid > div > p {
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.45;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 10px;
}

@media (max-width: 1050px) {
    .gold-bars-shell { grid-template-columns: 1fr; }
    .gold-bars-intro { max-width: 680px; }
    .gold-bars-grid { grid-template-columns: repeat(4, minmax(210px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none; }
    .gold-bars-grid::-webkit-scrollbar { display: none; }
    .gold-bar-card { scroll-snap-align: start; }
}

@media (max-width: 720px) {
    .gold-bars-section { padding: 52px 17px; }
    .gold-bars-intro h2 { font-size: 48px; }
    .gold-bars-grid { display: flex; flex-flow: row nowrap; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; }
    .gold-bar-card { flex: 0 0 78%; width: 78%; min-width: 78%; scroll-snap-align: start; }

    .floating-google-reviews {
        top: auto;
        bottom: 18px;
        left: 14px;
        width: 48px;
        min-height: 48px;
        padding: 4px;
        border-radius: 50%;
        transform: none;
    }
    .floating-google-reviews:hover { transform: scale(1.04); }
    .google-review-icon { width: 40px; height: 40px; }
    .google-review-copy { display: none; }

    .gold-rate-widget { right: 16px; bottom: 82px; }
    .gold-rate-trigger { width: 54px; height: 54px; min-height: 54px; justify-content: center; padding: 0; }
    .gold-rate-trigger-copy { display: none; }
    .gold-rate-trigger > i { font-size: 19px; }
    .gold-rate-live-dot { position: absolute; top: 8px; right: 7px; width: 7px; height: 7px; box-shadow: none; }
    .gold-rate-panel { position: fixed; right: 16px; bottom: 146px; width: calc(100vw - 32px); max-width: 350px; }

    .site-footer { padding: 26px 18px 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
    .footer-brand { grid-column: 1 / -1; }
    .brand-footer img { width: 66px; height: 66px; }
    .brand-footer strong { font-size: 27px; }
    .footer-bottom { margin-top: 16px; padding-top: 9px; gap: 8px; }
}
/* Move Google Reviews badge to bottom-left */
.floating-google-reviews {
    top: auto !important;
    bottom: 24px;
    left: 16px;
    transform: none !important;
}

.floating-google-reviews:hover {
    transform: translateX(4px) !important;
}
/* Full-width gold separators connecting adjacent sections */
.gold-bars-section {
    position: relative;
    width: 100%;
    margin: 0;

    border-top: 30px solid #966E18;
    border-bottom: 30px solid #966E18;

    box-shadow:
        inset 0 2px 0 #D7B763,
        inset 0 -2px 0 #D7B763;

    background: #080705;
}

.gold-bars-section::before {
    content: none !important;
}
@media (max-width: 720px) {
    .gold-bars-section {
        border-top-width: 7px;
        border-bottom-width: 7px;
    }
}
/* =========================================================
   Header logo left, navigation centre, icons right
   ========================================================= */

.header-main .nav-shell {
    width: calc(100% - 80px);
    max-width: none;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(300px, 1fr)
        auto
        minmax(300px, 1fr);

    align-items: center;
    gap: 30px;
}

/* Logo and business name — left */
.header-main .brand {
    justify-self: start;
    margin: 0;
}

/* Navigation — centre */
.header-main .main-nav {
    justify-self: center;
}

/* Social media icons — right */
.header-main .nav-social-actions {
    justify-self: end;
    margin: 0;
}
.header-main .brand small {
    margin-top: 6px;

    color: #966e18 !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.30em;
    text-transform: uppercase;
}
@media (max-width: 1050px) {
    .header-main .nav-shell {
        width: calc(100% - 36px);
        grid-template-columns: 1fr auto;
    }

    .header-main .brand strong {
        font-size: 24px;
    }

    .header-main .brand small {
        font-size: 9px;
        letter-spacing: 0.24em;
    }

    .header-main .brand img {
        width: 48px;
        height: 48px;
    }
}
