/*
Theme Name: Chatter Agencija
Theme URI: https://chatteragencija.com
Author: Chatter Agencija
Description: Premium dark theme za Chatter Agenciju
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: chatter
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #111318;
  --bg-card:   #1c2030;
  --bg-card2:  #232839;
  --bg-light:  #1a1f2e;
  --border:    rgba(255,255,255,0.10);
  --border-m:  rgba(255,255,255,0.16);
  --gold:      #e8a435;
  --gold-light:#f5bc5a;
  --gold-bg:   rgba(232,164,53,0.12);
  --gold-bdr:  rgba(232,164,53,0.25);
  --white:     #f2eeea;
  --muted:     rgba(242,238,234,0.60);
  --faint:     rgba(242,238,234,0.30);
  --font-h:    'Syne', sans-serif;
  --font-b:    'Instrument Sans', sans-serif;
  --radius:    6px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section       { padding: 96px 0; }
.section--sm   { padding: 64px 0; }

/* ── Typography ── */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.h-xl {
  font-family: var(--font-h);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.035em;
}
.h-lg {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.h-md {
  font-family: var(--font-h);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.018em;
}

.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0f0e0c;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-m);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Scroll animation ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.on { opacity: 1; transform: none; }

/* Fallback ako JS ne radi */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .3s;
}
.nav.stuck {
  background: rgba(17,19,24,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-bdr) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: #0f0e0c !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

/* ════════════════════════════════
   MOBILE MENU
════════════════════════════════ */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-card);
  z-index: 99;
  padding: 90px 28px 32px;
  flex-direction: column;
  gap: 4px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mob-menu a:hover { color: var(--gold); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  padding: 130px 0 72px;
  position: relative;
  overflow: hidden;
}

/* subtle grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0, black 30%, transparent 80%);
  pointer-events: none;
}

/* gold glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,164,53,.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp .7s .1s both;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero__title {
  font-family: var(--font-h);
  font-size: clamp(30px, 6.5vw, 76px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 26px;
  animation: fadeUp .7s .22s both;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp .7s .34s both;
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .7s .46s both;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  animation: fadeUp .7s .58s both;
}
.hero__stat-val {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.hero__stat-lbl {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: .09em;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════
   TICKER
════════════════════════════════ */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  animation: roll 28s linear infinite;
}
.ticker__item {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1a1200;
  padding: 0 36px;
}
.ticker__sep { color: rgba(0,0,0,.3); }
@keyframes roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* feature list */
.feat-list { display: flex; flex-direction: column; }
.feat-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.feat-item:first-child { padding-top: 0; }
.feat-icon {
  width: 42px; height: 42px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.feat-title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about__text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
.team { background: var(--bg); }
.team__head {
  text-align: center;
  margin-bottom: 56px;
}
.team__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.tcard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.tcard:hover {
  border-color: var(--gold-bdr);
  transform: translateY(-3px);
}
.tcard:hover::after { transform: scaleX(1); }

.tcard__num {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--gold);
  opacity: .22;
  line-height: 1;
  margin-bottom: 6px;
}
.tcard__role {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.tcard__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tcard__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.team__bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.team__bar-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.team__bar-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
.tstat {
  text-align: center;
}
.tstat__val {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gold);
}
.tstat__lbl {
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 2px;
}

/* ════════════════════════════════
   JOIN / WHO WE LOOK FOR
════════════════════════════════ */
.join {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.join__head { text-align: center; margin-bottom: 56px; }

.join__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.jcard:hover {
  border-color: var(--gold-bdr);
  transform: translateY(-3px);
}

.jcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
  width: fit-content;
}
.jcard__title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.jcard__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.jcard__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  flex: 1;
}
.jcard__list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.jcard__list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 3px;
}
.jcard .btn { width: 100%; justify-content: center; }

/* ════════════════════════════════
   VALUES
════════════════════════════════ */
.values { background: var(--bg); }
.values__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

.vlist { display: flex; flex-direction: column; }
.vitem {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .25s;
  cursor: default;
}
.vitem:last-child { border-bottom: none; padding-bottom: 0; }
.vitem:first-child { padding-top: 0; }
.vitem:hover { padding-left: 10px; }
.vitem__n {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  opacity: .5;
  width: 28px;
  flex-shrink: 0;
}
.vitem__name {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.vquote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
}
.vquote__mark {
  font-family: var(--font-h);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  top: 8px; left: 40px;
  pointer-events: none;
}
.vquote__text {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.015em;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
}
.vquote__src {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ════════════════════════════════
   BLOG PREVIEW (homepage)
════════════════════════════════ */
.blog-prev {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-prev__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-prev__all {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: gap .2s;
}
.blog-prev__all:hover { gap: 13px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-grid .blog-card:first-child {
  grid-column: span 2;
}

/* ── blog card ── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.blog-card:hover {
  border-color: var(--gold-bdr);
  transform: translateY(-3px);
}
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-card2);
  overflow: hidden;
  position: relative;
}
.blog-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -.04em;
}
.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card__date {
  font-size: 12px;
  color: var(--faint);
}
.blog-card__title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--white);
  transition: color .2s;
}
.blog-card--sm .blog-card__title { font-size: 15px; }
.blog-card:hover .blog-card__title { color: var(--gold); }
.blog-card__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.blog-card--sm .blog-card__excerpt { display: none; }

/* ════════════════════════════════
   BLOG ARCHIVE PAGE
════════════════════════════════ */
.blog-page { padding-top: 130px; min-height: 70vh; }
.blog-page__hero {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.blog-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 64px 0;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 64px;
}
.page-numbers {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0f0e0c;
}

/* ════════════════════════════════
   SINGLE POST
════════════════════════════════ */
.post-page { padding-top: 130px; }
.post-page__top { padding: 64px 0 48px; }
.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--faint);
}
.post-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  max-width: 860px;
}

.post-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 52px 0 96px;
}
.post-content p {
  font-size: 17px;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 24px;
}
.post-content h2 {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 48px 0 16px;
  color: var(--white);
}
.post-content h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--white);
}
.post-content ul, .post-content ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.post-content li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 6px;
  list-style: disc;
}
.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 0 16px 26px;
  margin: 36px 0;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.post-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 36px 0;
}
.post-nav {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0 80px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ════════════════════════════════
   CONTACT CTA
════════════════════════════════ */
.cta {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 110%, rgba(232,164,53,.07), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.cta__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta__loc {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cta__loc svg { display: inline; vertical-align: middle; margin-right: 5px; }

/* telegram/wa buttons */
.btn-tg {
  background: var(--gold);
  color: #0f0e0c;
  padding: 14px 32px;
  font-size: 14px;
}
.btn-tg:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-wa {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-m);
  padding: 14px 32px;
  font-size: 14px;
}
.btn-wa:hover { border-color: rgba(255,255,255,.35); transform: translateY(-2px); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 14px;
  color: var(--faint);
  line-height: 1.65;
  max-width: 220px;
}
.footer__col-title {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  font-size: 14px;
  color: var(--faint);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 13px;
  color: var(--faint);
}
.footer__copy span { color: var(--gold); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid    { grid-template-columns: 1fr; gap: 48px; }
  .team__cards    { grid-template-columns: 1fr 1fr; }
  .team__bar      { grid-template-columns: 1fr; }
  .team__bar-stats{ justify-content: flex-start; }
  .values__grid   { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid      { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:first-child { grid-column: span 2; }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section   { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 110px 0 52px; }
  .hero__stats { gap: 28px; }
  .hero__title { font-size: clamp(26px, 8.5vw, 44px); }

  .team__cards  { grid-template-columns: 1fr; }
  .join__grid   { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:first-child { grid-column: span 1; }
  .blog-all-grid { grid-template-columns: 1fr; }

  .blog-prev__head { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
