:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #9A7B2F;
  --black: #0A0A0A;
  --charcoal: #141416;
  --dark-gray: #1C1C20;
  --mid-gray: #2A2A30;
  --text-dim: #6B6B78;
  --text-secondary: #9B9BAA;
  --text-primary: #E8E8EC;
  --white: #F5F5F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.nav-logo-icon span {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--gold);
  transform: rotate(-45deg);
  letter-spacing: -1px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-contact {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
}

.nav-contact:hover {
  background: var(--gold);
  color: var(--black);
}

.lang-toggle {
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 9px 11px;
  cursor: pointer;
  margin-left: 14px;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--mid-gray);
  color: var(--white);
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
}

.hamburger:hover { border-color: var(--gold); color: var(--gold); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  padding: 16px 40px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid var(--mid-gray);
  color: var(--white);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.06), transparent),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(74, 124, 138, 0.04), transparent);
}

.hero-bg-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: auto;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  left: 59px;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.15) 30%, rgba(201, 168, 76, 0.15) 70%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-left: 40px;
}

.hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1s 0.3s both;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.5s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 50px;
  font-weight: 300;
  animation: fadeUp 1s 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  animation: fadeUp 1s 0.9s both;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--mid-gray);
  cursor: pointer;
  transition: all 0.4s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HERO RIGHT ── */
.hero-right {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 2;
  animation: fadeLeft 1s 1.1s both;
}

.hero-image {
  width: 260px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 8px 40px rgba(201, 168, 76, 0.15));
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  flex-direction: column;
}

.hero-stat {
  padding: 30px 40px;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 30px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number em {
  color: var(--gold);
  font-size: 24px;
  font-style: normal;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── TICKER BAR ── */
.ticker {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.ticker-item .label {
  color: var(--text-dim);
  font-weight: 400;
}

.ticker-item .value {
  color: var(--white);
  font-weight: 500;
}

.ticker-item .change-up { color: #5AA867; }
.ticker-item .change-down { color: #C45B5B; }

.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
  opacity: 0.5;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section, .section {
  padding: 140px 60px;
  position: relative;
}

.section-header {
  margin-bottom: 80px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  max-width: 700px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.bg-charcoal { background: var(--charcoal); }
.bg-black { background: var(--black); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 24px;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-card {
  position: absolute;
  background: var(--dark-gray);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 36px;
  width: 300px;
}

.about-card:nth-child(1) { top: 0; right: 0; }
.about-card:nth-child(2) { top: 140px; right: 120px; }
.about-card:nth-child(3) { top: 280px; right: 40px; }

.about-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}

.about-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.about-card .card-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: rgba(201, 168, 76, 0.12);
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 20px;
}

/* ── GOALS GRID ── */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.goal-card {
  background: var(--charcoal);
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
}

.goal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}

.goal-card:hover::before { transform: scaleX(1); }
.goal-card:hover { background: var(--dark-gray); }

.goal-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--gold);
  transition: all 0.4s;
}

.goal-card:hover .goal-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.goal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.goal-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 0;
}

.stat-item {
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(10, 10, 10, 0.15);
}

.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.stat-item .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 10px;
}

/* ── NEWS / INSIGHTS ── */
.insights-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2px;
}

.insight-card {
  background: var(--dark-gray);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.insight-card:hover { background: var(--mid-gray); }

.insight-card .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.insight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.insight-card:first-child h3 { font-size: 28px; }

.insight-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.insight-card .date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 20px;
}

.insight-card .card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.06), transparent);
}

/* news list for full news page */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.news-item {
  background: var(--dark-gray);
  padding: 36px 44px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.news-item:hover { background: var(--mid-gray); }

.news-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: top;
}

.news-item:hover::before { transform: scaleY(1); }

.news-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
  min-width: 120px;
  padding-top: 4px;
}

.news-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.news-item:hover .news-body h3 { color: var(--gold); }

.news-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── MEMBERS ── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.member-card {
  background: var(--dark-gray);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s;
  border: 1px solid transparent;
}

.member-card:hover {
  background: var(--mid-gray);
  border-color: rgba(201, 168, 76, 0.15);
}

.member-logo {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
  flex-shrink: 0;
}

.member-placeholder {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.member-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.member-info .member-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── CHAIRMAN ── */
.chairman-section {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 600px;
}

.chairman-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

.chairman-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.chairman-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.chairman-since {
  font-size: 14px;
  color: var(--text-dim);
}

/* ── DOCUMENTS ── */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 36px;
  background: var(--dark-gray);
  transition: all 0.4s;
  color: inherit;
}

.doc-item:hover {
  background: var(--mid-gray);
}

.doc-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.3s;
}

.doc-item:hover .doc-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.doc-info { flex: 1; }

.doc-info h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

.doc-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ── FORMS ── */
.form-section {
  max-width: 560px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group label .req { color: var(--gold); }

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.form-input { min-height: 140px; resize: vertical; }

.form-notice {
  font-size: 13px;
  color: var(--text-dim);
  padding: 16px 20px;
  background: var(--dark-gray);
  border-left: 2px solid var(--gold);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card {
  background: var(--dark-gray);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-card h4 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── REQUISITES ── */
.requisites {
  background: var(--dark-gray);
  padding: 44px;
  margin-top: 60px;
}

.requisites h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 28px;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.req-item .req-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.req-item .req-value {
  font-size: 15px;
  color: var(--text-primary);
}

/* ── PAGE HEADER ── */
.page-hero {
  padding: 160px 60px 80px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
}

.page-hero .section-label { margin-bottom: 16px; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.breadcrumb {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  gap: 4px;
  margin-top: 60px;
}

.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  transition: all 0.3s;
}

.pagination a {
  color: var(--text-dim);
  border: 1px solid var(--mid-gray);
  background: var(--dark-gray);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination span.active {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-dim);
}

.empty-state .empty-icon {
  font-size: 48px;
  opacity: 0.15;
  margin-bottom: 20px;
}

.empty-state p {
  font-size: 16px;
  margin-bottom: 32px;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 20px;
}

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 14px; }

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 160px 60px;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .cta-section { padding: 100px 24px; }
}

@media (max-width: 640px) {
  .cta-section { padding: 60px 16px; }
  .cta-section .section-title { font-size: 24px; }
  .cta-section p { font-size: 14px !important; }
}

/* ── VISITOR NOTICE ── */
.visitor-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark-gray);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 28px;
  z-index: 998;
  max-width: 360px;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visitor-notice.show { transform: translateY(0); }

.visitor-notice p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

.visitor-notice .close-notice {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 18px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translate(30px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
/* ── TABLET ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  section, .section { padding: 80px 24px; }
  .hero { padding: 0 24px; }
  .hero-content { padding-left: 10px; max-width: 600px; }
  .hero-right { display: none; }
  .hero-bg-image { width: 70%; opacity: 0.3; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 400px; }
  .goals-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 40px 24px; }
  .stat-item .number { font-size: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 240px; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 120px 24px 50px; }
  .page-hero h1 { font-size: 36px; }
  footer { padding: 50px 24px 24px; }
  .requisites { padding: 28px; }
  .req-grid { grid-template-columns: 1fr; }
  .doc-item { padding: 20px 24px; }
  .news-item { padding: 28px 24px; }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  nav { padding: 0 16px; height: 64px; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .hamburger { display: block; }
  .nav-logo-img { height: 32px; }
  .nav-logo-text { font-size: 15px; }

  section, .section { padding: 60px 16px; }

  .hero { min-height: 90vh; padding: 0 16px; }
  .hero-content { padding-left: 0; }
  .hero-title { font-size: 36px; margin-bottom: 24px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 32px; }
  .hero-label { font-size: 10px; letter-spacing: 3px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
  .hero-bg-image { width: 90%; opacity: 0.15; }
  .hero-line { left: 15px; }

  .ticker-item { padding: 0 20px; font-size: 11px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 16px; }
  .stat-item .number { font-size: 36px; }
  .stat-item .label { font-size: 10px; letter-spacing: 1px; }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 28px; }
  .section-label { font-size: 10px; letter-spacing: 3px; }

  .goals-grid { grid-template-columns: 1fr; }
  .goal-card { padding: 32px 24px; }
  .goal-card h3 { font-size: 18px; }

  .insights-grid { grid-template-columns: 1fr; gap: 2px; }
  .insight-card { min-height: auto; padding: 32px 24px; }
  .insight-card h3 { font-size: 20px; }
  .insight-card:first-child h3 { font-size: 22px; }

  .members-grid { grid-template-columns: 1fr; }
  .member-card { padding: 20px; }

  .chairman-section { flex-direction: column; text-align: center; gap: 24px; }
  .chairman-photo { width: 80px; height: 80px; }
  .chairman-name { font-size: 20px; }

  .news-list { gap: 2px; }
  .news-item { flex-direction: column; gap: 8px; padding: 24px 20px; }
  .news-date { min-width: auto; }
  .news-body h3 { font-size: 18px; }

  .doc-item { padding: 16px 20px; gap: 14px; }
  .doc-icon { width: 36px; height: 36px; font-size: 9px; }
  .doc-info h4 { font-size: 13px; }

  .contact-cards { gap: 2px; }
  .contact-card { padding: 20px; }
  .contact-card-icon { width: 36px; height: 36px; font-size: 14px; }

  .form-section { max-width: 100%; }
  .form-input { padding: 12px 14px; font-size: 14px; }

  .requisites { padding: 20px; margin-top: 40px; }
  .requisites h3 { font-size: 20px; margin-bottom: 20px; }
  .req-item .req-value { font-size: 13px; }

  .page-hero { padding: 100px 16px 40px; }
  .page-hero h1 { font-size: 28px; }
  .breadcrumb { font-size: 12px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 16px 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .about-visual { display: none; }

  .pagination { flex-wrap: wrap; }
  .pagination a, .pagination span { width: 36px; height: 36px; font-size: 12px; }

  .empty-state { padding: 48px 16px; }

  .btn-primary, .btn-secondary { font-size: 12px; padding: 14px 24px; letter-spacing: 1.5px; }
}
