@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Armenian:wght@400;700&family=Noto+Sans+Armenian:wght@400;500&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --surface:      #111111;
  --surface-2:    #161616;
  --border:       #1f1f1f;
  --border-hover: #2e2e2e;
  --text:         #f0f0eb;
  --muted:        #888882;
  --accent:       #00b37e;
  --accent-hover: #00d494;
  --accent-dim:   rgba(0,179,126,0.08);

  --header-h: 64px;
  --section-pad: 120px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
hr.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  padding: 14px 28px;
  border: 1px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text);
  flex-shrink: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.header-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.header-nav a:hover,
.header-nav a.active { color: var(--text); }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lang-switcher a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.lang-switcher a:hover { color: var(--text); }
.lang-switcher a.active { color: var(--accent); }
.lang-sep {
  color: var(--border-hover);
  font-size: 10px;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-socials a {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.2s ease;
}
.header-socials a:hover { color: var(--accent); }
.header-socials svg { width: 20px; height: 20px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px 40px;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  margin-bottom: 24px;
}
.mobile-menu ul li { border-top: 1px solid var(--border); }
.mobile-menu ul a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: var(--text);
  font-family: var(--font-serif);
}
.mobile-menu-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-left {}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mockup */
.hero-mockup-wrap {
  display: flex;
  justify-content: center;
}
.journal-mockup {
  /* REPLACE: реальная обложка журнала */
  width: 300px;
  height: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  transition: border-color 0.2s ease;
}
.journal-mockup:hover { border-color: var(--accent); }
.mockup-brand {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.mockup-center {
  text-align: center;
}
.mockup-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
}
.mockup-qdate {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.mockup-footer {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mockup-topics {
  margin-top: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mockup-topics li {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-sans);
  opacity: 0.7;
}
.mockup-topics li::before {
  content: '— ';
  color: var(--accent);
  opacity: 0.6;
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
#stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about { padding: var(--section-pad) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}
.about-quote-block {
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: -32px;
  display: block;
}
.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text);
}
.principles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.principle {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}
.principle-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}
.principle-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── MAGAZINE ───────────────────────────────────────────────── */
#magazine { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
#magazine .section-h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 56px;
}
.rubrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.rubric-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: default;
}
.rubric-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.rubric-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.rubric-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.rubric-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── ISSUE ──────────────────────────────────────────────────── */
#issue { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
.issue-inner {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 80px;
  align-items: start;
}
.issue-mockup-wrap {
  display: flex;
  justify-content: center;
}
.issue-mockup-wrap .journal-mockup {
  width: 360px;
  height: 500px;
  padding: 28px;
}
.issue-mockup-wrap .mockup-num { font-size: 96px; }

.issue-right {}
.issue-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.issue-h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.issue-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.toc {
  list-style: none;
  margin-bottom: 40px;
}
.toc li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  font-size: 14px;
}
.toc li:last-child { border-bottom: 1px solid var(--border); }
.toc-num {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
  width: 20px;
}
.toc-name { color: var(--text); }

.issue-pricing {
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.price-block {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  min-width: 160px;
  flex: 1;
  max-width: 220px;
}
.price-block-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.price-block.preorder {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.price-block.preorder .price-block-label { color: var(--accent); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  display: block;
}
.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ─── AUDIENCE ───────────────────────────────────────────────── */
#audience { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
#audience .section-h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 56px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.audience-card {
  background: var(--surface);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.audience-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.audience-letter {
  position: absolute;
  bottom: -8px; right: 12px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.audience-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.audience-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.audience-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── PLATFORMS ──────────────────────────────────────────────── */
#platforms { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
#platforms .section-h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 56px;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.platform-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.platform-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.platform-icon {
  color: var(--muted);
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.platform-card:hover .platform-icon { color: var(--accent); }
.platform-icon svg { width: 32px; height: 32px; }
.platform-name {
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.platform-sub {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.platform-formats {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA FINAL ──────────────────────────────────────────────── */
#cta {
  background: var(--accent);
  padding: var(--section-pad) 0;
  text-align: center;
}
.cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0a;
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}
.cta-h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-sub {
  font-size: 18px;
  color: #0a0a0a;
  opacity: 0.75;
  margin-bottom: 40px;
}
.btn-cta-dark {
  background: #0a0a0a;
  color: var(--accent);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #0a0a0a;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-cta-dark:hover { background: #111; color: var(--accent-hover); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 12px;
  display: block;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-city {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--text); }
.footer-social-col {}
.footer-social-col .col-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-social-link:hover { color: var(--accent); }
.footer-social-link svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ─── JOURNAL COVER PLACEHOLDER ────────────────────────────── */
.cover-placeholder {
  /* REPLACE: реальная обложка журнала */
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
}
.cover-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* REPLACE: set display:block when image is added */
}
.cover-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.cover-ph-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.cover-ph-center {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cover-ph-num {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}
.cover-ph-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.cover-ph-lines {
  position: absolute;
  bottom: 28%;
  left: 24px; right: 24px;
  height: 1px;
  background: var(--border-hover);
}
.cover-ph-footer {
  position: relative;
  z-index: 1;
}
.cover-ph-edition {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.cover-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cover-topics li {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.65;
}
.cover-topics li::before {
  content: '— ';
  color: var(--accent);
  opacity: 0.6;
}
.cover-replace-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10,10,10,0.7);
  border: 1px dashed var(--border-hover);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.6;
}

/* ─── TEAM ───────────────────────────────────────────────────── */
#team { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
#team .section-h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 12px;
}
.team-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 560px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-photo {
  /* REPLACE: реальное фото участника команды */
  width: 120px;
  height: 120px;
  border-radius: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-initial {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.team-card:hover .team-photo { border-color: var(--accent); }
.team-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── PARTNERS ───────────────────────────────────────────────── */
#partners { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
#partners .section-h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 16px;
}
.partners-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.partners-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}
.partner-type-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.partner-type-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.partner-type-num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.partner-type-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.partner-type-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.partners-cta-block {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.partners-hint {
  font-size: 13px;
  color: var(--muted);
}

/* ─── ARMENIAN TYPOGRAPHY (:lang(hy)) ───────────────────────── */
/* Armenian script runs ~20% wider than Latin/Cyrillic at equal
   font-size. Noto Serif/Sans Armenian are used for correct glyph
   rendering. All size reductions preserve visual hierarchy.      */

:lang(hy) {
  --font-serif: 'Noto Serif Armenian', 'Playfair Display', Georgia, serif;
  --font-sans:  'Noto Sans Armenian', 'Inter', system-ui, sans-serif;
  line-height: 1.9;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Hero title: 72 → 54px to prevent line overflow */
:lang(hy) .hero-title {
  font-size: 54px;
  line-height: 1.22;
}

/* Sub-heading: 18 → 16px */
:lang(hy) .hero-sub { font-size: 16px; }

/* Section H2 headings: 42 → 34px */
:lang(hy) #magazine .section-h2,
:lang(hy) #audience .section-h2,
:lang(hy) #platforms .section-h2,
:lang(hy) #team .section-h2,
:lang(hy) #partners .section-h2 { font-size: 34px; }

/* Issue & about headings */
:lang(hy) .issue-h2    { font-size: 34px; line-height: 1.3; }
:lang(hy) .about-quote { font-size: 20px; line-height: 1.7; }

/* CTA block */
:lang(hy) .cta-h2 { font-size: 38px; }
:lang(hy) .cta-sub { font-size: 16px; }

/* Stats: number stays large, label smaller */
:lang(hy) .stat-label { font-size: 11px; letter-spacing: 0.06em; }

/* Rubric cards: tighter text */
:lang(hy) .rubric-text,
:lang(hy) .audience-text,
:lang(hy) .platform-formats,
:lang(hy) .partner-type-text { font-size: 13px; line-height: 1.75; }

/* Principle text */
:lang(hy) .principle-text { font-size: 13px; line-height: 1.75; }

/* TOC items */
:lang(hy) .toc-name { font-size: 13px; }

/* Issue desc & partners desc */
:lang(hy) .issue-desc,
:lang(hy) .partners-desc { font-size: 15px; }

/* Team sub */
:lang(hy) .team-sub { font-size: 15px; }

/* Footer */
:lang(hy) .footer-tagline { font-size: 13px; }
:lang(hy) .footer-bottom  { font-size: 11px; }

/* Nav items: Armenian words can be long */
:lang(hy) .header-nav { gap: 20px; }
:lang(hy) .header-nav a { font-size: 13px; }

/* Mobile Armenian adjustments */
@media (max-width: 768px) {
  :lang(hy) .hero-title { font-size: 36px; }
  :lang(hy) .issue-h2,
  :lang(hy) .cta-h2,
  :lang(hy) #magazine .section-h2,
  :lang(hy) #audience .section-h2,
  :lang(hy) #platforms .section-h2,
  :lang(hy) #team .section-h2,
  :lang(hy) #partners .section-h2 { font-size: 26px; }
  :lang(hy) .about-quote { font-size: 17px; }
}

@media (max-width: 480px) {
  :lang(hy) .hero-title { font-size: 30px; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .rubrics-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .issue-inner { gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .partners-types { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; --section-pad: 60px; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .header-nav,
  .header-right .btn,
  .header-right .header-socials { display: none; }
  .lang-switcher { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-title { font-size: 48px; }
  .hero-sub { font-size: 16px; }
  .hero-mockup-wrap .journal-mockup { width: 260px; height: 364px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 24px 16px; border: 1px solid var(--border); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .rubrics-grid { grid-template-columns: 1fr; }
  .issue-inner { grid-template-columns: 1fr; }
  .issue-mockup-wrap { margin-bottom: 0; }
  .issue-mockup-wrap .journal-mockup { width: 280px; height: 390px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; gap: 40px; }
  .cta-h2 { font-size: 36px; }
  #magazine .section-h2,
  #audience .section-h2,
  #platforms .section-h2,
  #team .section-h2,
  #partners .section-h2,
  .issue-h2 { font-size: 32px; }
  .about-quote { font-size: 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .partners-types { grid-template-columns: 1fr; }
  .issue-pricing { flex-direction: column; gap: 12px; }
  .price-block { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .issue-pricing { flex-direction: column; gap: 16px; }
  .cta-h2 { font-size: 28px; }
  .cta-sub { font-size: 16px; }
}
