/* ═══════════════════════════════════════════════════════════
   TWINS BULLION — DESKTOP STYLESHEET
   Brand colors from logo — Navy #191A2E · Gold #C89C3D · Blue #1C2747 · Gray #888888
   Logo: wide landscape with cross icon
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --navy:        #191A2E;
  --navy-mid:    #232540;
  --navy-light:  #1A5AAA;
  --gold:        #C89C3D;
  --gold-mid:    #D4AA50;
  --gold-light:  #E0BD6A;
  --gold-pale:   #FAF4E4;
  --gold-border: #DEC07A;
  --blue:        #1C2747;
  --blue-light:  #2A3A65;
  --white:       #FFFFFF;
  --off-white:   #F5F1E8;
  --light-gray:  #EDE9DF;
  --border:      #DDD8CC;
  --text:        #191A2E;
  --text-mid:    #3A3B50;
  --text-muted:  #888888;
  --text-light:  #AAAAAA;
  --green:       #2E7D32;
  --red:         #C62828;
  --orange:      #E65100;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --ticker-h:  42px;
  --infobar-h: 36px;
  --header-h:  96px;
  --nav-h:     50px;
  --total-h:   calc(var(--ticker-h) + var(--infobar-h) + var(--header-h) + var(--nav-h));

  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --max-w:     1280px;
  --px:        2rem;
  --t:         0.22s ease;

  --shadow-sm: 0 1px 4px rgba(25,26,46,0.07);
  --shadow-md: 0 4px 16px rgba(25,26,46,0.10);
  --shadow-lg: 0 8px 32px rgba(25,26,46,0.12);
  --shadow-gold: 0 4px 20px rgba(200,156,61,0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--gold-mid); border-radius: 3px; }

/* ─── LAYOUT ─────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ─── TICKER BAR ─────────────────────────────────── */
#top-ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: var(--navy); height: var(--ticker-h);
  border-bottom: 2px solid var(--gold-mid);
  display: flex; align-items: center; overflow: hidden;
}
.ticker-label {
  flex-shrink: 0; padding: 0 1.1rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  border-right: 1px solid rgba(255,255,255,0.12); white-space: nowrap;
  height: 100%; display: flex; align-items: center;
}
.ticker-track { flex: 1; overflow: hidden; height: 100%; }
.ticker-scroll {
  display: flex; align-items: center; height: 100%;
  white-space: nowrap; animation: tickerMove 55s linear infinite;
}
.ticker-cell {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0 1.75rem; height: 100;
  font-size: 0.79rem; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ticker-metal { color: rgba(255,255,255,0.65); }
.ticker-price-val { color: var(--gold-light); font-weight: 700; font-size: 0.84rem; }
.ticker-change { font-size: 0.72rem; }
.ticker-change.up   { color: #4ADE80; }
.ticker-change.down { color: #F87171; }
.ticker-sep { color: rgba(255,255,255,0.18); padding: 0 0.4rem; flex-shrink: 0; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── INFO BAR ────────────────────────────────────── */
#info-bar {
  position: fixed; top: var(--ticker-h); left: 0; right: 0; z-index: 1090;
  background: var(--off-white); height: var(--infobar-h);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.info-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-muted);
}
.info-inner a { color: var(--navy); font-weight: 600; transition: color var(--t); }
.info-inner a:hover { color: var(--gold); }

/* ─── SITE HEADER ────────────────────────────────── */
#site-header {
  position: fixed;
  top: calc(var(--ticker-h) + var(--infobar-h));
  left: 0; right: 0; z-index: 1080;
  background: var(--white); height: var(--header-h);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo img { height: 72px; width: auto; }
.header-right { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.header-phone-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.header-phone { font-size: 1.25rem; font-weight: 700; color: var(--navy); transition: color var(--t); font-family: var(--font-display); }
.header-phone:hover { color: var(--gold); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border-radius: var(--radius); transition: var(--t);
  box-shadow: var(--shadow-gold); white-space: nowrap;
}
.btn-primary:hover { background: var(--navy); box-shadow: none; transform: translateY(-1px); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border-radius: var(--radius); transition: var(--t); white-space: nowrap;
}
.btn-navy:hover { background: var(--gold); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--navy);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border-radius: var(--radius); border: 1.5px solid var(--navy); transition: var(--t);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

/* ─── NAV BAR ─────────────────────────────────────── */
#nav-bar {
  position: fixed;
  top: calc(var(--ticker-h) + var(--infobar-h) + var(--header-h));
  left: 0; right: 0; z-index: 1070;
  background: var(--blue); height: var(--nav-h);
  border-bottom: 3px solid var(--gold);
}
.nav-inner { height: 100%; display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; height: 100%; gap: 0; }
.nav-links li { height: 100%; position: relative; }
.nav-links li a {
  display: flex; align-items: center; height: 100%; padding: 0 1.1rem;
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); transition: var(--t);
  border-bottom: 3px solid transparent; margin-bottom: -3px;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--gold-light); border-bottom-color: var(--gold-light); background: rgba(255,255,255,0.04); }
.nav-links li.nav-cta a {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700; border-radius: var(--radius); margin: 0.5rem 0.5rem;
  height: calc(100% - 1rem); border-bottom: none !important; padding: 0 1.2rem;
}
.nav-links li.nav-cta a:hover { background: var(--gold-light); }
.nav-mobile { display: none; }

/* ─── PAGE OFFSET ─────────────────────────────────── */
.page-offset { padding-top: var(--total-h); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 5rem var(--px) 4.5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(28,39,71,0.15), transparent);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,156,61,0.15); border: 1px solid rgba(200,156,61,0.4);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800;
  color: var(--white); line-height: 1.1; margin-bottom: 1rem;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 500px; margin-bottom: 2.25rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem 2rem;
  border-radius: var(--radius); transition: var(--t); box-shadow: var(--shadow-gold);
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem 2rem;
  border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,0.45); transition: var(--t);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.75); }
.trust-item .ti { font-size: 1rem; }
/* Hero right side — spot prices */
.hero-spot-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.5rem; min-width: 220px; flex-shrink: 0;
  backdrop-filter: blur(10px);
}
.hsc-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; text-align: center; }
.hsc-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hsc-row:last-child { border-bottom: none; }
.hsc-metal { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.4rem; }
.hsc-price { font-size: 0.9rem; font-weight: 700; color: var(--gold-light); font-variant-numeric: tabular-nums; }

/* ─── SPOT PRICE BAND ─────────────────────────────── */
.spot-band { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.1rem var(--px); }
.spot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.spot-card { background: var(--white); padding: 1rem 1.25rem; text-align: center; transition: var(--t); }
.spot-card:hover { background: var(--gold-pale); }
.spot-icon { font-size: 1.5rem; margin-bottom: 0.25rem; display: block; }
.spot-name { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.spot-price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 0.25rem 0; font-variant-numeric: tabular-nums; }
.spot-chg { font-size: 0.72rem; font-weight: 600; }
.spot-chg.up { color: var(--green); } .spot-chg.down { color: var(--red); }
.spot-unit { font-size: 0.6rem; color: var(--text-light); margin-top: 0.15rem; }

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: 5rem var(--px); }
.section.tinted { background: var(--off-white); }
.section.dark { background: var(--navy); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; text-align: center; }
.section-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 0.6rem; line-height: 1.2; }
.section-title.on-dark { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--text-muted); text-align: center; max-width: 520px; margin: 0 auto 2.75rem; }
.gold-rule { width: 52px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0.65rem auto 2.25rem; border-radius: 2px; }

/* ─── HOW IT WORKS ────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 2.2rem; left: calc(16.66% + 0.875rem); right: calc(16.66% + 0.875rem); height: 2px; background: linear-gradient(90deg, var(--gold-border), var(--gold), var(--gold-border)); z-index: 0; }
.step-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.4rem; text-align: center; position: relative; z-index: 1; transition: var(--t); box-shadow: var(--shadow-sm); }
.step-box:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.step-num { width: 48px; height: 48px; background: var(--navy); color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border: 3px solid var(--gold-border); box-shadow: 0 0 0 4px var(--white); }
.step-icon { font-size: 2rem; margin-bottom: 0.85rem; display: block; }
.step-box h3 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.55rem; }
.step-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── BUY TILES ───────────────────────────────────── */
.buy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.buy-tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem 1.25rem; text-align: center; transition: var(--t); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.buy-tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: var(--t); }
.buy-tile:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.buy-tile:hover::after { transform: scaleX(1); }
.buy-tile-icon { font-size: 2.2rem; margin-bottom: 0.85rem; display: block; }
.buy-tile h3 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.45rem; }
.buy-tile p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ─── ITEMS PAGE ──────────────────────────────────── */
.items-page { background: var(--off-white); }
.items-toolbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem var(--px); display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  position: sticky; top: var(--total-h); z-index: 100; box-shadow: var(--shadow-sm);
}
.items-filters { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.filter-select, .filter-search {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.5rem 0.85rem;
  font-size: 0.82rem; font-weight: 500; color: var(--text); outline: none; transition: var(--t);
}
.filter-select:focus, .filter-search:focus { border-color: var(--gold); background: var(--white); }
.filter-search { min-width: 200px; }
.items-count { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding: 2rem var(--px); max-width: var(--max-w); margin: 0 auto; }
.item-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--t); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.item-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-border); transform: translateY(-3px); }
.item-card-img { aspect-ratio: 1; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.item-card-img img { width: 100%; height: 100%; object-fit: cover; }
.item-status-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 100px; color: var(--white);
}
.status-available   { background: var(--green); }
.status-sold        { background: var(--red); }
.status-pending     { background: var(--orange); }
.status-hold        { background: var(--blue); }
.status-consignment { background: #7B1FA2; }
.item-card-body { padding: 1.1rem 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.item-metal-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.item-title { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.35; }
.item-details { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; margin-bottom: 0.85rem; }
.item-detail { font-size: 0.77rem; color: var(--text-muted); display: flex; justify-content: space-between; }
.item-detail strong { color: var(--text-mid); }
.item-price { font-size: 1.15rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); margin-bottom: 0.75rem; }
.item-actions { display: flex; gap: 0.5rem; }
.item-actions .btn-navy, .item-actions .btn-outline { flex: 1; justify-content: center; font-size: 0.75rem; padding: 0.5rem 0.75rem; }
/* Items page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 3rem var(--px); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent); }
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.page-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.5rem; }
.page-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.6rem; }
.page-sub { font-size: 1rem; color: rgba(255,255,255,0.7); }
/* What we buy */
.wbuy-category { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }
.wbuy-hdr { display: flex; align-items: center; gap: 0.85rem; padding: 1rem 1.4rem; background: linear-gradient(90deg, var(--navy), var(--blue)); border-bottom: 2px solid var(--gold); }
.wbuy-icon { font-size: 1.4rem; }
.wbuy-hdr h2 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.wbuy-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.wbuy-item { padding: 0.72rem 1.4rem; font-size: 0.86rem; color: var(--text-mid); border-bottom: 1px solid var(--light-gray); transition: var(--t); display: flex; align-items: center; gap: 0.45rem; }
.wbuy-item:hover { background: var(--gold-pale); color: var(--navy); padding-left: 1.85rem; }
.wbuy-item::before { content: '▪'; color: var(--gold); font-size: 0.62rem; flex-shrink: 0; }
/* CTA section */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 5rem var(--px); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(200,156,61,0.025) 0, rgba(200,156,61,0.025) 1px, transparent 1px, transparent 30px); }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 2.25rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); transition: var(--t); }
.testi-box:hover { box-shadow: var(--shadow-md); border-color: var(--gold-border); }
.testi-q { font-family: var(--font-display); font-size: 3.5rem; line-height: 0.8; color: var(--gold-border); margin-bottom: 0.65rem; }
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testi-box blockquote { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 1.1rem; }
.testi-author { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.testi-loc { font-size: 0.72rem; color: var(--text-muted); }
/* Forms */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem; box-shadow: var(--shadow-md); }
.form-row { display: flex; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea { background: var(--off-white); border: 1.5px solid var(--border); color: var(--text); font-size: 0.92rem; padding: 0.72rem 1rem; border-radius: var(--radius); outline: none; transition: var(--t); width: 100%; min-height: 46px; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(200,156,61,0.12); }
.form-section-hdr { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.1rem; }
.upload-zone { border: 2px dashed var(--gold-border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; cursor: pointer; transition: var(--t); background: var(--gold-pale); }
.upload-zone:hover { border-color: var(--gold); background: #F7EDD5; }
.upload-zone p { font-size: 0.86rem; color: var(--text-muted); }
.upload-zone strong { color: var(--gold); }
.upload-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem; }
.preview-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; border: 2px solid var(--gold-border); }
.form-disclaimer { background: #FFF8F8; border: 1px solid #FFCDD2; border-left: 4px solid var(--red); color: #B71C1C; font-size: 0.82rem; padding: 0.85rem 1rem; border-radius: var(--radius); line-height: 1.6; }
.form-msg { padding: 0.85rem; border-radius: var(--radius); font-size: 0.88rem; text-align: center; margin-top: 0.5rem; }
.form-msg.success { background: #E8F5E9; border: 1px solid #A5D6A7; color: #1B5E20; }
.form-msg.error   { background: #FFEBEE; border: 1px solid #FFCDD2; color: var(--red); }
.btn-submit { width: 100%; background: var(--navy); color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.95rem; border-radius: var(--radius); border: none; cursor: pointer; transition: var(--t); margin-top: 0.4rem; }
.btn-submit:hover { background: var(--gold); }
/* Sell form info pills */
.info-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; margin-bottom: 1.75rem; }
.info-pill { background: var(--gold-pale); border: 1px solid var(--gold-border); color: var(--navy); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.3rem 0.85rem; border-radius: 100px; }
/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-bottom: 3rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem 1.25rem; text-align: center; box-shadow: var(--shadow-sm); transition: var(--t); border-top: 3px solid var(--gold); }
.contact-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.contact-icon { font-size: 1.9rem; margin-bottom: 0.65rem; display: block; }
.contact-card h3 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.35rem; }
.contact-card p { font-size: 0.84rem; color: var(--text-muted); }
/* About */
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.75rem 0; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; text-align: center; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.35rem; font-weight: 600; }
/* Footer */
footer { background: var(--navy); border-top: 3px solid var(--gold); padding: 3.5rem var(--px) 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: start; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.09); margin-bottom: 0; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; }
.footer-nav-cols { display: flex; gap: 2.5rem; }
.footer-nav-col h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 0.75rem; }
.footer-nav-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.58); padding: 0.25rem 0; transition: var(--t); }
.footer-nav-col a:hover { color: var(--gold-light); }
.footer-contact-block { text-align: right; }
.footer-contact-block .phone { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); font-weight: 700; display: block; margin-bottom: 0.25rem; }
.footer-contact-block .phone:hover { color: var(--gold-light); }
.footer-contact-block p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-social { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 0.9rem; }
.social-btn { padding: 0.35rem 0.75rem; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); font-size: 0.72rem; color: rgba(255,255,255,0.55); transition: var(--t); }
.social-btn:hover { border-color: var(--gold-mid); color: var(--gold-light); }
.footer-bottom { padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Mobile hidden by default on desktop */
@media (min-width: 901px) {
  .hamburger { display: none !important; }
  .nav-mobile { display: none !important; }
}
/* Tablet */
@media (max-width: 900px) {
  :root { --header-h: 76px; --nav-h: 0px; --infobar-h: 0px; }
  #nav-bar, #info-bar { display: none; }
  .hamburger { display: flex !important; flex-direction: column; gap: 5px; }
  .header-cta-btn { display: none; }
  .buy-grid, .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-contact-block { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .footer-nav-cols { flex-wrap: wrap; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-spot-card { display: none; }
  .form-row { flex-direction: column; }
  .items-grid { grid-template-columns: 1fr 1fr; }
  .wbuy-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .buy-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .spot-grid { grid-template-columns: 1fr 1fr; }
  .wbuy-list { grid-template-columns: 1fr; }
}
/* Nav mobile drawer */
.nav-mobile { display: none; position: fixed; top: calc(var(--ticker-h) + var(--header-h)); left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 1060; overflow-y: auto; padding: 1rem 0; flex-direction: column; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.9rem 1.5rem; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--t); }
.nav-mobile a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }
