/* ── SITE BANNER ── */
.site-banner {
  background: linear-gradient(90deg, #7a2c00 0%, #c44a00 50%, #7a2c00 100%);
  color: rgba(255,237,210,.85);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-align: center;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  border-bottom: 1px solid rgba(255,117,32,.3);
}
.site-banner .material-icons-round { font-size: .9rem; color: #ffb830; }
.site-banner a {
  color: #ffb830;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-flex; align-items: center; gap: 3px;
  transition: opacity .15s;
}
.site-banner a:hover { opacity: .8; }
.site-banner a .material-icons-round { font-size: .8rem; }
.banner-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,237,210,.5);
  cursor: pointer; display: flex; align-items: center; padding: 4px;
  transition: color .15s;
}
.banner-close:hover { color: rgba(255,237,210,.9); }
.banner-close .material-icons-round { font-size: 1rem; }
.site-banner.hidden { display: none; }

/* ── HEADER & NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(14,8,3,.97) 0%, rgba(10,5,2,.94) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,117,32,.08) 15%,
    rgba(255,117,32,.4) 50%,
    rgba(255,117,32,.08) 85%,
    transparent 100%);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-left { display: flex; align-items: center; gap: 2px; }
.nav-left a {
  position: relative;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(245,237,224,.4);
  transition: color .18s, background .18s;
  letter-spacing: .01em;
}
.nav-left a:hover { color: rgba(245,237,224,.9); background: rgba(255,117,32,.08); }
.nav-left a.active {
  color: var(--teal);
  background: rgba(255,117,32,.1);
}
.nav-left a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 20%; right: 20%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 8px rgba(255,117,32,.7);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo-name {
  background: linear-gradient(90deg, #f5ede0 0%, rgba(245,237,224,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo:hover .nav-logo-name {
  background: linear-gradient(90deg, #fff 0%, #ffb830 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.nav-logo-dot {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #ff7520 0%, #c44a00 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(255,117,32,.45), 0 2px 8px rgba(0,0,0,.4);
  transition: box-shadow .2s, transform .2s;
}
.nav-logo:hover .nav-logo-dot {
  box-shadow: 0 0 28px rgba(255,117,32,.65), 0 4px 12px rgba(0,0,0,.3);
  transform: rotate(-6deg) scale(1.08);
}
.nav-logo-dot span { font-size: .92rem; color: #0c0704; }

.nav-right { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }

/* ── Language switcher ── */
.nav-lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,117,32,.08);
  border: 1px solid rgba(255,117,32,.2);
  border-radius: 8px; padding: 3px;
}
.nav-lang-switch a {
  padding: 4px 9px; border-radius: 6px;
  font-size: .72rem; font-weight: 700;
  color: rgba(245,237,224,.45);
  transition: all .15s; text-decoration: none;
}
.nav-lang-switch a:hover { color: rgba(245,237,224,.8); }
.nav-lang-switch a.active {
  background: rgba(255,117,32,.2);
  color: #ff7520;
}
.nav-mobile-lang {
  display: flex; gap: 8px; padding: 8px 12px;
  border-top: 1px solid rgba(255,117,32,.1);
}
.nav-mobile-lang a {
  font-size: .78rem; font-weight: 700;
  color: rgba(245,237,224,.45); text-decoration: none;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,117,32,.06);
  border: 1px solid rgba(255,117,32,.15);
}
.nav-mobile-lang a.active { color: #ff7520; background: rgba(255,117,32,.15); }

.btn-post {
  background: linear-gradient(135deg, #ff7520, #c44a00);
  color: #f5ede0;
  border: none;
  border-radius: 8px;
  padding: 7px 15px;
  font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: 4px;
  transition: all .18s;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(255,117,32,.25);
  text-decoration: none;
}
.btn-post:hover { opacity: .88; box-shadow: 0 0 22px rgba(255,117,32,.45); transform: translateY(-1px); }
.btn-post span { font-size: .9rem; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: linear-gradient(135deg, #ff7520, #c44a00);
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(255,117,32,.4);
  transition: box-shadow .2s, transform .15s;
}
.nav-hamburger:hover { box-shadow: 0 0 22px rgba(255,117,32,.65); transform: scale(1.05); }
.nav-hamburger span { font-size: 1.3rem; display: block; }

/* ── MOBILE NAV ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 16px 16px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem; font-weight: 500;
  color: rgba(245,237,224,.5);
  transition: color .15s, background .15s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--teal); background: rgba(255,117,32,.1); }
.nav-mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, #ff7520, #c44a00) !important;
  color: #f5ede0 !important;
  font-weight: 700 !important;
  text-align: center;
  box-shadow: 0 0 14px rgba(255,117,32,.25);
}

/* ── FOOTER ── */
footer {
  background: #0e0804;
  border-top: none;
  position: relative;
}

/* Animated orange top line */
.footer-glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7520, #ffb830, #ff7520, transparent);
  background-size: 300% 100%;
  animation: footer-line 5s linear infinite;
}
@keyframes footer-line {
  0%   { background-position: 100%; }
  100% { background-position: -100%; }
}

.footer-main {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 24px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 56px;
}

/* Brand col */
.f-logo { margin-bottom: 14px; }
.f-logo-img { height: 40px; width: auto; display: block; opacity: .9; transition: opacity .2s; }
.f-logo-img:hover { opacity: 1; }
.f-desc { font-size: .8rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }

.f-stats {
  display: inline-flex; align-items: center;
  background: rgba(255,117,32,.07);
  border: 1px solid rgba(255,117,32,.14);
  border-radius: 10px;
  padding: 10px 16px;
}
.f-stat { text-align: center; padding: 0 12px; }
.f-stat strong { display: block; font-size: 1rem; font-weight: 800; color: #ff7520; letter-spacing: -.02em; }
.f-stat span   { display: block; font-size: .62rem; color: var(--muted); margin-top: 1px; text-transform: uppercase; letter-spacing: .05em; }
.f-stat-div    { width: 1px; height: 28px; background: rgba(255,117,32,.15); }

/* Nav col */
.f-col h5 {
  font-size: .62rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,117,32,.5);
  margin-bottom: 14px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.f-col ul a {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--muted2);
  padding: 5px 8px; border-radius: 7px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.f-col ul a .material-icons-round { font-size: .85rem; color: rgba(255,117,32,.4); transition: color .15s; }
.f-col ul a:hover { background: rgba(255,117,32,.07); color: var(--white); }
.f-col ul a:hover .material-icons-round { color: #ff7520; }

/* ── Footer quick form ── */
.f-quick-form { display: flex; flex-direction: column; gap: 6px; }
.f-quick-form input,
.f-quick-form textarea {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 8px 11px;
  font-family: inherit; font-size: .78rem;
  color: var(--white); outline: none;
  transition: border-color .15s;
  width: 100%; resize: none;
}
.f-quick-form input::placeholder,
.f-quick-form textarea::placeholder { color: var(--muted); }
.f-quick-form input:focus,
.f-quick-form textarea:focus { border-color: var(--teal); }
.f-quick-form button {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, #ff7520, #c44a00);
  color: #f5ede0; border: none; border-radius: 8px;
  padding: 8px 14px; font-family: inherit;
  font-size: .78rem; font-weight: 700; cursor: pointer;
  transition: opacity .15s; align-self: flex-start;
}
.f-quick-form button:hover { opacity: .88; }
.f-quick-form button .material-icons-round { font-size: .9rem; }

.f-msg {
  padding: 10px 13px;
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
  animation: f-msg-in .3s ease;
}
@keyframes f-msg-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.f-msg-ok  { background: rgba(255,117,32,.12); border: 1px solid rgba(255,117,32,.4); color: #ff7520; }
.f-msg-err { background: rgba(220,60,60,.12); border: 1px solid rgba(220,60,60,.25); color: #f87171; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,117,32,.08);
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .73rem; color: var(--muted);
}
.f-bottom-right a { color: rgba(255,117,32,.4); font-size: .73rem; text-decoration: none; transition: color .15s; }
.f-bottom-right a:hover { color: #ff7520; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-logo { justify-content: flex-start; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  header { position: fixed; top: 0; left: 0; right: 0; width: 100%; }
  body { padding-top: 62px; }
  .nav { grid-template-columns: auto 1fr; }
  .nav-hamburger { justify-self: end; width: 44px; }
}
@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .site-banner { font-size: .7rem; padding: 8px 40px 8px 16px; }

  /* ── Footer mobile ── */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 20px 20px;
  }
  .f-brand { padding-bottom: 22px; border-bottom: 1px solid rgba(255,117,32,.1); margin-bottom: 22px; }
  .f-logo-img { height: 32px; }
  .f-desc { font-size: .78rem; margin-bottom: 14px; }
  .f-stats { padding: 10px 14px; display: flex; width: 100%; }
  .f-stat { flex: 1; padding: 0 8px; }
  .f-stat strong { font-size: .9rem; }
  .f-stat span { font-size: .58rem; }
  .f-stat-div { height: 24px; }

  .f-col { padding-bottom: 18px; border-bottom: 1px solid rgba(255,117,32,.08); margin-bottom: 18px; }
  .f-col:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .f-col h5 { margin-bottom: 10px; }
  .f-col ul { flex-direction: row; flex-wrap: wrap; gap: 2px; }
  .f-col ul a { padding: 5px 10px; font-size: .78rem; }
  .f-col ul a .material-icons-round { display: none; }

  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 14px 20px; }
  .f-bottom-right { display: none; }
}
