/* ===================== BLOG SHARED STYLES ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; border-radius: 0 !important; cursor: none; }

html { scroll-behavior: smooth; background: #FFFFFF; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; height: 0; }

body {
  background: #FFFFFF;
  color: #000000;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; transition: color 0.2s ease; }
button { font-family: inherit; background: none; border: none; cursor: none; }
::selection { background: #F00E0E; color: #FFFFFF; }

/* ===== CURSOR ===== */
#cursor {
  width: 16px;
  height: 16px;
  background: #F00E0E;
  border-radius: 50% !important;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}
#cursor.hover { width: 32px; height: 32px; opacity: 0.6; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 16px 48px; }
.nav-brand {
  font-family: 'Satoshi', sans-serif; font-weight: 900;
  font-size: 14px; letter-spacing: -0.02em; color: #000000;
}
.nav-brand:hover { color: #F00E0E; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: 'Satoshi', sans-serif; font-weight: 500; font-size: 12px;
  color: #000000; letter-spacing: 2px; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: #F00E0E; }

/* ===== UTIL ===== */
.label {
  font-family: 'Satoshi', sans-serif; font-weight: 700;
  font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: #F00E0E;
}

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer span, .footer a {
  font-family: 'Satoshi', sans-serif; font-weight: 400;
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}
.footer a:hover { color: #F00E0E; }

/* ===== BREADCRUMBS ===== */
.crumbs {
  font-family: 'Satoshi', sans-serif; font-weight: 400;
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: rgba(0,0,0,0.4);
  display: flex; gap: 12px; align-items: center;
}
.crumbs a:hover { color: #F00E0E; }
.crumbs .sep { color: rgba(0,0,0,0.2); }

@media (max-width: 1200px) { .nav { padding: 20px 32px; } .nav.scrolled { padding: 14px 32px; } .footer { padding: 28px 32px; } }
@media (max-width: 640px) {
  .nav { padding: 16px 20px; } .nav.scrolled { padding: 12px 20px; }
  .nav-links { gap: 16px; } .nav-links a { font-size: 11px; }
  .footer { padding: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer span, .footer a { font-size: 10px; }
  .crumbs { font-size: 10px; gap: 8px; letter-spacing: 2px; }
}

/* ===== HAMBURGER MENU ===== */
.ham-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}
.ham-btn span { display: block; width: 22px; height: 2px; background: #000000; transition: background 0.3s ease; }
.ham-btn.light-bg span { background: #FFFFFF; }

.ham-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ham-overlay.open { display: flex; animation: hamFadeIn 0.25s ease; }
@keyframes hamFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.ham-close {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #FFFFFF;
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-family: 'Satoshi', sans-serif;
}

.ham-nav { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.ham-nav a {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-transform: none;
  cursor: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.ham-nav a:hover, .ham-nav a.active { color: #F00E0E; }

@media (max-width: 767px) {
  .ham-btn { display: flex; }
  .nav-links { display: none !important; }
}

/* ===== TOUCH CURSOR FIX ===== */
@media (pointer: coarse) {
  * { cursor: auto !important; }
  #cursor { display: none !important; }
}
