:root {
    --maroon: #6b1029;
    --maroon-deep: #3d0817;
    --gold: #c9a227;
    --gold-light: #e0bb4c;
    --cream: #faf6ef;
    --text: #241a1a;
    --muted: #6e5f5a;
    --border: #e8ddd0;
    --card: #fff;
    --shadow: 0 8px 28px rgba(107,16,41,.08);
    --shadow-hover: 0 18px 42px rgba(107,16,41,.16);
    --max: 1180px;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    line-height: 1.7;
    color: var(--text);
    background: #fff;
}

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

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

/* ---------- NAV ---------- */

nav {
    background: var(--maroon-deep);
    color: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    border-bottom: 2px solid var(--gold);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.brand {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.brand span { color: var(--gold-light); }

.nav-links {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .3px;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,.1);
    color: var(--gold-light);
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
    color: #fff;
    text-align: center;
    padding: 120px 20px 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(201,162,39,.12) 0, transparent 40%),
        radial-gradient(circle at 80% 75%, rgba(201,162,39,.1) 0, transparent 45%);
}

.hero .container { position: relative; }

.eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    line-height: 1.15;
    margin: 0 auto 18px;
    max-width: 900px;
    font-weight: 700;
}

.hero p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.1rem;
    color: rgba(255,255,255,.88);
}

.actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--maroon-deep);
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-size: .88rem;
    box-shadow: 0 10px 20px rgba(201,162,39,.28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(201,162,39,.35);
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: none;
}

.btn.secondary:hover { background: rgba(255,255,255,.1); }

.media-placeholder.hero-video {
    aspect-ratio: 21 / 8;
    max-width: 960px;
    margin: 44px auto 0;
    color: rgba(255,255,255,.85);
    background: repeating-linear-gradient(45deg, rgba(255,255,255,.06), rgba(255,255,255,.06) 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
    border-color: rgba(255,255,255,.3);
    border-radius: 18px;
}

/* ---------- TRUST BADGES ---------- */

.badge-bar {
    background: var(--cream);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.badge-item .ph-icon { font-size: 1.8rem; margin-bottom: 8px; display:block; }

.badge-item strong {
    display: block;
    font-family: var(--serif);
    color: var(--maroon);
    font-size: 1.02rem;
}

.badge-item span {
    color: var(--muted);
    font-size: .84rem;
}

/* ---------- SECTIONS ---------- */

.section { padding: 80px 0; }
.section.alt { background: var(--cream); }

.section h2 {
    margin: 0 0 12px;
    color: var(--maroon);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    text-align: center;
    font-weight: 700;
}

.lead {
    margin: 0 auto 32px;
    color: var(--muted);
    max-width: 780px;
    text-align: center;
}

/* ---------- PRODUCT GRID ---------- */

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

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.product-card .media-placeholder {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
}

.product-info { padding: 20px; text-align: center; }

.product-info h3 {
    font-family: var(--serif);
    color: var(--maroon);
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.product-price {
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: block;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.filter-btn {
    background: #fff;
    border: 1px solid var(--border);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--maroon);
    cursor: pointer;
    font-family: var(--sans);
    transition: background .2s ease, color .2s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--maroon);
    color: #fff;
}

/* ---------- MEDIA PLACEHOLDERS ---------- */

.media-placeholder {
    background: repeating-linear-gradient(45deg, #f3ece5, #f3ece5 10px, #ece2d8 10px, #ece2d8 20px);
    border: 2px dashed var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
    padding: 20px;
    font-size: .86rem;
    font-weight: 600;
}

.media-placeholder .ph-icon { font-size: 1.8rem; margin-bottom: 8px; }

.media-placeholder.photo-round {
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    font-size: .7rem;
}

.media-placeholder.photo-wide { aspect-ratio: 16/10; border-radius: 14px; }

/* ---------- GOLD PRICE CHART ---------- */

.gold-price-box {
    background: var(--maroon-deep);
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    text-align: center;
}

.gold-price-box canvas {
    max-width: 100%;
    margin-top: 20px;
}

.gold-price-note {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin-top: 14px;
}

/* ---------- TESTIMONIALS ---------- */

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 18px;
}

.testimonial-name {
    font-family: var(--serif);
    color: var(--maroon);
    font-weight: 700;
}

.testimonial-loc { color: var(--muted); font-size: .84rem; }

/* ---------- FEATURED / GROUP ---------- */

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

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card h3 { font-family: var(--serif); color: var(--maroon); }

.pill {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fbeee0;
    color: var(--maroon);
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.small-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--maroon);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    transition: background .2s ease;
}

.small-btn:hover { background: var(--gold); color: var(--maroon-deep); }

/* ---------- FAQ ACCORDION ---------- */

.qa {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.qa-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 20px;
    font-weight: 700;
    color: var(--maroon);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
}

.qa-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 400;
    transition: transform .2s ease;
}

.qa.open .qa-question::after { transform: rotate(45deg); }

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
    color: var(--muted);
    padding: 0 20px;
}

.qa.open .qa-answer { padding: 0 20px 18px; }

/* ---------- CONTACT ---------- */

.contact-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.contact-list { display: grid; gap: 12px; margin-top: 18px; }

.contact-list div {
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: start;
}

/* ---------- FOOTER ---------- */

footer {
    background: var(--maroon-deep);
    color: rgba(255,255,255,.82);
    padding: 56px 20px 0;
    margin-top: 50px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: var(--max);
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--serif);
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 14px;
}

.footer-col p, .footer-col div {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.7);
}

.footer-col a {
    display: block;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
    transition: color .2s ease;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    padding: 20px 0;
    font-size: .84rem;
    color: rgba(255,255,255,.55);
}

/* ---------- CHAT WIDGET ---------- */

#wm-chat-bubble {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    z-index: 1300;
    border: none;
    transition: transform .2s ease;
}

#wm-chat-bubble:hover { transform: scale(1.06); }

#wm-chat-window {
    position: fixed;
    bottom: 92px;
    right: 22px;
    width: min(340px, calc(100vw - 40px));
    max-height: 460px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1300;
    font-family: var(--sans);
}

#wm-chat-window.open { display: flex; }

.wm-chat-header {
    background: var(--maroon-deep);
    color: #fff;
    padding: 16px 18px;
    font-weight: 700;
    font-family: var(--serif);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wm-chat-header span.wm-close { cursor: pointer; font-weight: 400; font-size: 1.2rem; font-family: var(--sans); }

#wm-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wm-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: .88rem; line-height: 1.5; }
.wm-msg.bot { background: #fff; border: 1px solid var(--border); align-self: flex-start; color: var(--text); }
.wm-msg.user { background: var(--maroon); color: #fff; align-self: flex-end; }

.wm-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; background: var(--cream); }

.wm-quick-replies button {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .78rem;
    cursor: pointer;
    color: var(--maroon);
    font-family: var(--sans);
    transition: background .2s ease;
}

.wm-quick-replies button:hover { background: #fbeee0; }

.wm-chat-footer {
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    font-size: .76rem;
    color: var(--muted);
    text-align: center;
    background: #fff;
}

/* ---------- ACCESSIBILITY ---------- */

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
    .hero { padding: 90px 20px 76px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}
