/* =====================================================
   SCORGT – Corporate Stylesheet
   Palette: #D4AF37 (Gold) · #0A0A0A (Black) · #1C1C1C (Surface)
   Fonts: local Playfair Display + Montserrat (no CDN)
   ===================================================== */

:root {
  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --gold-dark:   #A8861A;
  --black:       #0A0A0A;
  --surface:     #141414;
  --surface2:    #1C1C1C;
  --surface3:    #252525;
  --border:      #2E2E2E;
  --text:        #E8E8E8;
  --text-muted:  #888888;
  --white:       #FFFFFF;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.2);
  --font-display: 'Playfair', Georgia, 'Times New Roman', serif;
  --font-body:    'Montserrat', 'Segoe UI', Tahoma, sans-serif;
  --nav-h:       64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; color: var(--text); }

.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); font-size: 0.85rem; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 40px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.navbar .container { height: 100%; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.logo-icon { width: 32px; height: 32px; }
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; padding: 6px 12px; border-radius: var(--radius); transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.875rem; padding: 7px 16px; border-radius: var(--radius); cursor: pointer; transition: all .2s; font-family: var(--font-body); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all .3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .25s; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); color: var(--black); box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.btn-secondary { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--surface3); color: var(--text); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; background: var(--surface2); }

/* ── Badge ── */
.badge { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }
.badge-gold { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.badge-dark { background: var(--surface3); color: var(--text-muted); }
.badge-sponsored { background: rgba(212,175,55,0.08); color: var(--gold-dark); font-size: 0.68rem; border: 1px solid rgba(212,175,55,0.15); }

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 64px) 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { color: var(--text-muted); font-size: 0.95rem; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.ad-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted); letter-spacing: .05em;
  text-transform: uppercase;
  min-height: 240px;
}

/* ── Featured Banner ── */
.featured-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.featured-banner .fb-label { font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.featured-banner .fb-title { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.featured-banner .fb-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Article layout ── */
.article-wrap { padding: calc(var(--nav-h) + 40px) 0 64px; }
.article-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-body h2 { margin: 32px 0 12px; }
.article-body h3 { margin: 24px 0 10px; color: var(--gold); }
.article-body p { color: var(--text-muted); }
.article-body ul { margin: 12px 0 16px 20px; }
.article-body ul li { list-style: disc; color: var(--text-muted); margin-bottom: 6px; font-size: 0.9rem; }
.article-body ul li::marker { color: var(--gold); }
.article-eyebrow { font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.article-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
.article-meta a { color: var(--gold); }

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--surface2); }
.sidebar-card-body { padding: 14px 16px; }
.sidebar-card-body .sc-label { font-size: 0.7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.sidebar-card-body .sc-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin: 4px 0; }
.sidebar-card-body .sc-desc { font-size: 0.78rem; color: var(--text-muted); }
.sidebar-ad { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); height: 120px; display:flex; align-items:center; justify-content:center; color: var(--text-muted); font-size:0.75rem; letter-spacing:.06em; text-transform:uppercase; }

/* ── Contact ── */
.contact-wrap { padding: calc(var(--nav-h) + 40px) 0 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 280px; gap: 64px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form-control {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  color: var(--text); font-family: var(--font-body); font-size: 0.875rem;
  transition: border-color .2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }

.contact-info h4 { font-size: 1rem; margin-bottom: 20px; color: var(--white); }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-info-item .ci-icon { font-size: 1rem; margin-top: 2px; }
.contact-info-item .ci-text { font-size: 0.875rem; color: var(--text-muted); }
.contact-info-item .ci-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }

/* ── Footer ── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-bottom: 40px; }
.footer-col h5 { font-size: 0.85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem; transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--gold); font-size: 0.78rem; }

/* ── Legal / Privacy ── */
.legal-wrap { padding: calc(var(--nav-h) + 40px) 0 64px; }
.legal-wrap h1 { margin-bottom: 12px; }
.legal-wrap .intro { color: var(--text-muted); max-width: 700px; margin-bottom: 40px; }
.legal-grid { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: start; }
.legal-content h2 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--gold); }
.legal-content p { font-size: 0.9rem; color: var(--text-muted); }
.legal-sidebar .ls-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.legal-sidebar .ls-block h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 12px; }
.legal-sidebar .ls-block ul li { margin-bottom: 6px; }
.legal-sidebar .ls-block ul li a { font-size: 0.83rem; color: var(--text-muted); }
.legal-sidebar .ls-block ul li a:hover { color: var(--gold); }

/* ── Notification / Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--surface2); border-top: 1px solid var(--border);
  padding: 16px 24px; z-index: 2000;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }
.cookie-banner .cb-actions { display: flex; gap: 10px; }

/* ── Page-specific: Legal/Trust ── */
.trust-banner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 40px;
}
.trust-banner p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .ad-block { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; width: 100%; background: var(--surface); padding: 16px 24px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .featured-banner { flex-direction: column; align-items: flex-start; }
}

/* ── SVG Logo inline ── */
.logo-svg { width: 28px; height: 28px; }
