/* ============================================================
   ROOT COLOR SYSTEM — Replicates globals.css exactly
   ============================================================ */
:root {
    --black:        #000000;
    --near-black:   #0D0D0D;
    --dark:         #111111;
    --card:         #1A1A1A;
    --card-2:       #202020;
    --mid:          #2A2A2A;
    --border:       rgba(255,255,255,0.09);

    --gold:         #C9A84C;   /* primary CTA / accent */
    --gold-bright:  #E2BF6A;
    --gold-dark:    #9A7A2E;
    --gold-bg:      rgba(201,168,76,0.10);
    --gold-bg2:     rgba(201,168,76,0.06);
    --gold-border:  rgba(201,168,76,0.30);
    --gold-border2: rgba(201,168,76,0.15);

    --white:        #FFFFFF;
    --t2:           #F0F0F0;
    --t3:           #D6D6D6;
    --t4:           #B0B0B0;

    --head:         'Montserrat', sans-serif;
    --body:         'Lato', sans-serif;

    --rad-sm:       2px;
    --rad:          6px;
    --rad-md:       10px;
    --rad-lg:       16px;

    --site-max:     1440px;
    --content:      1200px;
    --narrow:       860px;
    --pad-x:        clamp(16px, 4vw, 56px);
    --section-py:   clamp(40px, 7vw, 90px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    background-color: var(--black);
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for mobile sticky footer */
    position: relative;
}

/* Subtle radial background warmth */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201,168,76,0.02) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid overlay */
body::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 80%);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wrap-content {
    width: 100%;
    max-width: var(--content);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    position: relative;
    z-index: 10;
}

.wrap-narrow {
    width: 100%;
    max-width: var(--narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    position: relative;
    z-index: 10;
}

section {
    padding: var(--section-py) 0;
    border-bottom: 1px solid var(--border);
}

.bg-dark { background: var(--dark); }
.bg-card { background: var(--card); }

/* ============================================================
   TYPE SCALE
   ============================================================ */
.label {
    font-family: var(--head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gold);
}

.label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.label-row::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.label-row.center {
    justify-content: center;
}
.label-row.center::before { display: none; }

h1, .h1 {
    font-family: var(--head);
    font-size: clamp(36px, 5.2vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--white);
}

h2, .h2 {
    font-family: var(--head);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--white);
    margin-bottom: 18px;
}

h3, .h3 {
    font-family: var(--head);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 8px;
}

.body-lg {
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--t2);
}

.body-sm {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--t3);
}

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }

.gold-rule {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 18px 0 26px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS & ACTIONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--rad-sm);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: #000000;
    border: 2px solid var(--gold);
    padding: 16px 36px;
}

.btn-primary:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn-primary.pulse-btn {
    animation: cta-pulse 2.5s infinite;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(201, 168, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 16px 36px;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg { padding: 20px 48px; font-size: 13px; }
.btn-sm { padding: 10px 22px; font-size: 11px; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    font-family: var(--head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.18s;
}

.phone-link:hover {
    color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    background: var(--black);
    padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 8vw, 90px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

.hero-h1 .line-gold {
    color: var(--gold);
    display: block;
}

.hero-subtext {
    max-width: 620px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 52px;
}

/* Stats bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--gold-border);
    border-radius: var(--rad-sm);
    overflow: hidden;
    background: rgba(201, 168, 76, 0.05);
    max-width: 620px;
}

.hstat {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid var(--gold-border);
}

.hstat:last-child { border-right: none; }

.hstat-n {
    font-family: var(--head);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.hstat-l {
    font-family: var(--head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t4);
}

/* Trust panel (desktop right side) */
.hero-trust-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold-dark);
    border-radius: 0 var(--rad-md) var(--rad-md) 0;
    transition: all 0.22s ease;
}

.trust-item:hover {
    border-left-color: var(--gold);
    background: var(--card-2);
    transform: translateX(4px);
}

.trust-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--rad);
    background: var(--gold-bg);
    border: 1px solid var(--gold-border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-copy strong {
    display: block;
    font-family: var(--head);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.trust-copy span {
    font-size: 13px;
    color: var(--t3);
    font-weight: 300;
}

@media (min-width: 1060px) {
    .hero-grid { grid-template-columns: 1fr 400px; }
}

/* ============================================================
   DAILY METALS LIVE WIDGET
   ============================================================ */
.metals-section {
    background: var(--dark);
    padding: var(--section-py) 0;
}

.section-head {
    margin-bottom: 40px;
}

.section-head.center {
    text-align: center;
}

.metals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.metal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad-md);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metal-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border);
    background: var(--card-2);
    box-shadow: 0 12px 30px -15px rgba(201, 168, 76, 0.3);
}

.metal-name {
    font-family: var(--head);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.metal-price-oz {
    font-family: var(--head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.metal-price-g {
    font-size: 15px;
    color: var(--t3);
    font-weight: 300;
}

.metals-footer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--t4);
    text-align: right;
    font-style: italic;
}

/* Shimmer Loading State */
.shimmer {
    background: linear-gradient(90deg, 
        var(--card) 25%, 
        rgba(255, 255, 255, 0.03) 50%, 
        var(--card) 75%
    );
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    height: 160px;
}

@keyframes loading-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   B2B VALUE PROPOSITIONS (Grid of service cards)
   ============================================================ */
.buy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.buy-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad-md);
    padding: 36px 30px;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.buy-card:hover {
    border-color: var(--gold-border);
    background: var(--card-2);
    transform: translateY(-4px);
}

.buy-card-ico {
    width: 56px;
    height: 56px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border2);
    border-radius: var(--rad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.buy-card p {
    font-size: 16px;
    color: var(--t3);
    line-height: 1.65;
    margin-top: 8px;
    font-weight: 300;
}

@media (min-width: 640px) {
    .buy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .buy-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FLORIDA INTERVAULT & HQ
   ============================================================ */
.loc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.loc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.loc-card-bar {
    padding: 16px 28px;
    font-family: var(--head);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.loc-card-bar.vault {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 1px solid var(--border);
    color: var(--gold);
}

.loc-card-bar.hq {
    background: linear-gradient(90deg, var(--gold-dark) 0%, #3f2d08 100%);
    border-bottom: 1px solid var(--gold-border);
    color: #000000;
}

.loc-body {
    padding: 36px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.loc-name {
    font-family: var(--head);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.loc-sub {
    font-family: var(--head);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.loc-detail-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.loc-ico {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.4;
}

.loc-text {
    font-size: 16px;
    color: var(--t2);
    font-weight: 300;
}

.loc-text strong {
    color: var(--white);
    font-weight: 700;
}

.loc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    margin-bottom: 28px;
}

.loc-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.loc-btns {
    display: flex;
    gap: 12px;
}

.loc-btns .btn {
    flex: 1;
}

@media (min-width: 900px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-wrap {
    max-width: var(--narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-question {
    font-family: var(--head);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 16px;
    color: var(--t3);
    line-height: 1.65;
    font-weight: 300;
}

/* ============================================================
   FINAL CALL TO ACTION
   ============================================================ */
.final-cta {
    background: radial-gradient(circle at center, #1b160b 0%, var(--black) 100%);
    text-align: center;
    padding: var(--section-py) 0;
}

.final-cta-h2 {
    font-size: clamp(30px, 4.5vw, 56px);
    margin-bottom: 24px;
}

.final-cta-p {
    max-width: 680px;
    margin: 0 auto 40px;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
    padding: 48px 0;
    background: #050505;
    font-size: 14px;
    color: var(--t4);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-copy {
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--t3);
    text-decoration: none;
    transition: color 0.18s;
}

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

/* ============================================================
   MOBILE STICKY CTA FOOTER BAR
   ============================================================ */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--gold-border);
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    z-index: 800;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.sticky-mobile-bar .btn {
    width: 100%;
    max-width: 480px;
    justify-content: center;
}

@media (min-width: 768px) {
    .sticky-mobile-bar { display: none; }
    body { padding-bottom: 0; }
}

/* ============================================================
   B2B SITE DIRECTORY SITEMAP
   ============================================================ */
.sitemap-section {
    background: #080808;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.sitemap-col h4 {
    font-family: var(--head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.sitemap-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sitemap-links a {
    font-size: 14px;
    color: var(--t3);
    text-decoration: none;
    transition: all 0.18s ease;
}

.sitemap-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

