:root{
  /* Pulled to match your logo vibe */
  --bg:#05070c;            /* true near-black */
  --bg2:#070b14;           /* deep navy */
  --card:rgba(10,14,24,.78);
  --border:rgba(255,255,255,.10);

  --text:#f4f1ea;          /* warm off-white */
  --muted:rgba(244,241,234,.70);

  --gold:#c7a35a;          /* logo gold */
  --gold2:#e3d1a5;         /* soft gold highlight */
  --silver:#cfd3d8;        /* silver */

  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

/* Header background inspired by your diagonal logo lighting */
.header{
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(199,163,90,.12), transparent 62%),
    radial-gradient(860px 520px at 88% 26%, rgba(227,209,165,.10), transparent 64%),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 45%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  border-bottom:1px solid var(--border);
}

/* Nav */
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{
  height:44px;width:auto;
  border-radius:12px;
  box-shadow:0 18px 50px rgba(0,0,0,.55);
  outline:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
}
.menu{display:flex;gap:18px;align-items:center}
.menu a{color:rgba(244,241,234,.84);font-size:14px}
.menu a:hover{color:var(--text)}

.burger{
  display:none;background:transparent;border:0;cursor:pointer;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--border);
}
.burger span{display:block;height:2px;width:18px;background:var(--text);margin:5px auto;border-radius:2px}

/* Hero */
.hero{
  display:grid;grid-template-columns:1.15fr .85fr;gap:26px;
  padding:30px 0 56px;
}
.eyebrow{
  display:inline-flex;gap:10px;align-items:center;
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(244,241,234,.72);
  margin-bottom:14px;
}
h1{font-size:44px;line-height:1.07;margin:0 0 14px}
.subhead{font-weight:700;color:rgba(244,241,234,.78);font-size:.55em}
.accent{color:var(--gold)}
.lead{color:rgba(244,241,234,.76);font-size:16px;line-height:1.65;margin:0 0 18px}

.cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 14px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#141418;font-weight:850;border:0;cursor:pointer;
  box-shadow:0 14px 40px rgba(199,163,90,.16);
}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{
  background:transparent;color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;font-weight:750;
}
.btn-small{padding:10px 12px;border-radius:12px}
.btn-full{width:100%}

.trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.chip{
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--border);
  color:rgba(244,241,234,.82);
  font-size:12px;background:rgba(255,255,255,.03);
}

/* Mini strip */
.mini-strip{
  margin-top:16px;
  margin-bottom:64px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
}
.mini-item{
  padding:12px 12px;border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
}
.mini-label{font-size:12px;color:var(--muted)}
.mini-value{font-weight:850;margin-top:4px}

/* Price panel */
.price-panel{
  margin-top:18px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(12,18,30,.82), rgba(8,12,20,.72));
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.price-panel-head{
  display:flex;justify-content:space-between;align-items:flex-start;gap:12px;
}
.price-title{font-weight:900;letter-spacing:.01em}
.price-sub{font-size:13px;margin-top:4px;max-width:380px}
.price-status{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:rgba(244,241,234,.82);
}
.price-grid{
  margin-top:14px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
}
.price-card{
  padding:14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(140deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
}
.price-card-top{display:flex;gap:10px;align-items:center}
.price-icon{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  font-weight:900;font-size:13px;
  background:rgba(199,163,90,.16);
  color:var(--gold);
  border:1px solid rgba(199,163,90,.35);
}
.price-icon.silver{
  background:rgba(207,211,216,.16);
  color:var(--silver);
  border-color:rgba(207,211,216,.35);
}
.price-label{font-size:12px;color:var(--muted);letter-spacing:.12em;text-transform:uppercase}
.price-value{font-size:24px;font-weight:900;margin-top:10px}
.price-unit{font-size:12px;margin-top:2px}
.price-updated{margin-top:12px;font-size:12px}

.hero-foot{padding-bottom:34px}

/* Right panel */
.panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panel-top{padding:18px 18px 10px}
.panel-title{font-weight:900;letter-spacing:.01em}
.panel-sub{margin-top:6px;color:var(--muted);font-size:13px;line-height:1.5}
.panel-note{
  padding:14px 18px 18px;
  color:rgba(244,241,234,.80);
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

/* Form */
.form{padding:0 18px 18px}
label{display:block;font-size:12px;color:rgba(244,241,234,.82);margin-bottom:10px}
input,textarea{
  width:100%;margin-top:6px;
  padding:12px 12px;border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);outline:none;
}
input:focus,textarea:focus{border-color:rgba(199,163,90,.55)}
.tiny{font-size:12px}
.muted{color:var(--muted)}

/* Sections */
.section{padding:70px 0}
.section.alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border)
}
.section-head{max-width:760px}
h2{font-size:28px;margin:0 0 10px}

/* Tiles */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}
.tile{
  padding:18px;border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(10,14,24,.55);
}
.tile-kicker{
  display:inline-block;
  font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(244,241,234,.60);
  border:1px solid rgba(255,255,255,.10);
  padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.02);
}
.tile h3{margin:12px 0 6px}
.tile p{margin:0;color:rgba(244,241,234,.74);line-height:1.6}

/* Steps */
.steps{display:grid;gap:12px;margin-top:18px}
.step{
  display:flex;gap:12px;align-items:flex-start;
  padding:16px;border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(10,14,24,.55);
}
.step-num{
  width:34px;height:34px;border-radius:12px;
  background:rgba(199,163,90,.14);
  border:1px solid rgba(199,163,90,.32);
  display:grid;place-items:center;
  font-weight:950;color:var(--gold);
}
.step h3{margin:0 0 6px}
.step p{margin:0;color:rgba(244,241,234,.74);line-height:1.6}

/* Notice */
.notice{
  margin-top:18px;
  padding:14px;border-radius:var(--radius);
  border:1px dashed rgba(199,163,90,.42);
  background:rgba(199,163,90,.08);
  color:rgba(244,241,234,.86);
}

/* About */
.about{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.about-card{
  padding:18px;border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(10,14,24,.55);
}
.about-card h3{margin:0 0 8px}
.about-card p{margin:0;color:rgba(244,241,234,.74);line-height:1.6}

/* Contact */
.contact{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.contact-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.contact-card{
  padding:14px;border-radius:var(--radius);
  border:1px solid var(--border);background:rgba(10,14,24,.55);
}
.cc-title{font-size:12px;color:var(--muted)}
.cc-value{font-weight:950;margin-top:6px}
.contact-panel{
  padding:18px;border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(10,14,24,.65);
  box-shadow:var(--shadow);
}
.contact-panel-title{font-weight:900;margin-bottom:6px}
.business-details{
  margin-top:14px;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.business-name{font-weight:900}
.business-meta{color:var(--muted);font-size:13px;margin-top:6px}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:rgba(244,241,234,.74);
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.footer-inner{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer-links{display:flex;gap:12px}
.footer-links a{color:rgba(244,241,234,.74)}
.footer-links a:hover{color:var(--text)}

/* Mobile */
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  h1{font-size:38px}
  .grid3{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr}
  .mini-strip{grid-template-columns:1fr}
  .price-grid{grid-template-columns:1fr}

  .menu{display:none}
  .burger{display:inline-block}
  .menu.open{
    display:flex;flex-direction:column;align-items:flex-start;
    position:absolute;right:18px;top:78px;
    background:rgba(10,14,24,.92);
    border:1px solid var(--border);
    border-radius:16px;padding:12px;
    width:min(260px, calc(100% - 36px));
  }
}

/* =============================
   Spot price cards (SEK per gram)
   ============================= */
.metal-prices{
  min-width: 0;
}

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

.spot-card{
  background: rgba(9,13,20,.62);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.spot-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.spot-title{
  font-weight:800;
  letter-spacing:.12em;
  font-size:11px;
  color: rgba(244,241,234,.84);
}

.spot-unit{
  font-size:11px;
  color: rgba(244,241,234,.7);
}

.spot-price{
  font-size:30px;
  font-weight:900;
  line-height:1;
  margin-top:6px;
  color:#fff;
}

.spot-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:10px 0;
}

.spot-row label{
  font-size:12px;
  color: rgba(244,241,234,.75);
}

.spot-row select,
.spot-row input{
  width: 110px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(244,241,234,.92);
  outline: none;
}

.spot-row input{
  width: 92px;
  text-align:center;
}

.spot-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:10px;
  margin-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
  color: rgba(244,241,234,.82);
}

.spot-foot b{
  color:#fff;
}

.spot-note{
  margin-top:10px;
  font-size:11px;
  color: rgba(244,241,234,.62);
}

.spot-gold{
  border-color: rgba(199,163,90,.35);
  box-shadow: 0 18px 50px rgba(199,163,90,.10), 0 16px 40px rgba(0,0,0,.35);
}

.spot-silver{
  border-color: rgba(210,214,220,.22);
  box-shadow: 0 18px 50px rgba(210,214,220,.06), 0 16px 40px rgba(0,0,0,.35);
}

@media (max-width: 980px){
  .spot-grid{ grid-template-columns:1fr; }
  .spot-row select,
  .spot-row input{ width: 48%; }
}
  .grid3{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr}
  .mini-strip{grid-template-columns:1fr}

  .menu{display:none}
  .burger{display:inline-block}
  .menu.open{
    display:flex;flex-direction:column;align-items:flex-start;
    position:absolute;right:18px;top:78px;
    background:rgba(10,14,24,.92);
    border:1px solid var(--border);
    border-radius:16px;padding:12px;
    width:min(260px, calc(100% - 36px));
  }
}


/* --- Spot price cards (SEK per gram) --- */
.metal-prices{min-width:0}
.spot-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.spot-card{
  background:rgba(9,13,20,.62);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:14px 14px 12px;
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}

.spot-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}
.spot-title{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}
.spot-unit{
  font-size:12px;
  color:rgba(255,255,255,.55);
}
.spot-value{
  font-size:34px;
  font-weight:800;
  line-height:1.05;
  margin:2px 0 12px;
}
.spot-controls{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 10px;
  align-items:end;
  margin-bottom:10px;
}
.spot-controls select,
.spot-controls input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  color:rgba(255,255,255,.92);
  outline:none;
}
.spot-controls input::placeholder{color:rgba(255,255,255,.35)}
.spot-label{
  font-size:12px;
  color:rgba(255,255,255,.6);
  display:block;
  margin:0 0 6px;
}
.spot-est{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding-top:10px;
  border-top:1px dashed rgba(255,255,255,.12);
}
.spot-est strong{font-size:16px}

.spot-gold{
  border-color:rgba(214,175,106,.35);
  box-shadow:0 18px 50px rgba(214,175,106,.08), 0 16px 40px rgba(0,0,0,.35);
}
.spot-silver{
  border-color:rgba(170,184,201,.30);
  box-shadow:0 18px 50px rgba(170,184,201,.06), 0 16px 40px rgba(0,0,0,.35);
}

@media (max-width: 980px){
  .below-grid{grid-template-columns:1fr}
  .spot-grid{grid-template-columns:1fr}
  .spot-controls{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .spot-controls{grid-template-columns:1fr}
}
.footer { padding: 42px 0 18px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-title { font-weight: 700; letter-spacing: .08em; font-size: 12px; opacity: .9; margin-bottom: 12px; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { opacity: .85; text-decoration: none; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06); display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }

