/* =============================================
   SIREH — Cultural Heritage Armenia
   style.css — Main stylesheet
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #C41A1A;
  --red-dark:   #9E1515;
  --red-light:  #E05050;
  --red-faint:  #FDF1F0;
  --red-border: #F0C4C0;

  --stone:      #F5F1EC;
  --stone-mid:  #E8E2DA;
  --stone-dark: #C5B9A8;

  --ink:        #1A1714;
  --ink-70:     rgba(26,23,20,0.70);
  --ink-40:     rgba(26,23,20,0.40);
  --ink-15:     rgba(26,23,20,0.10);

  --white:      #FFFFFF;

  --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Outfit', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 4px rgba(26,23,20,0.08);
  --shadow-md:  0 4px 20px rgba(26,23,20,0.12);
  --shadow-lg:  0 12px 40px rgba(26,23,20,0.16);

  --header-h:   64px;
  --max-w:      1100px;
  --content-w:  760px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.divider {
  height: 1px;
  background: var(--ink-15);
  margin: 3rem 0;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,26,26,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--stone-mid);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-15);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-70);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--stone); }
.nav-link.nav-cta {
  background: var(--red);
  color: var(--white);
  font-weight: 500;
  margin-left: 0.5rem;
}
.nav-link.nav-cta:hover { background: var(--red-dark); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.22s;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--ink-15);
  padding: 1rem 2rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--ink-70);
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-15);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--red); }

/* ---- PAGE SYSTEM ---- */
.page {
  display: none;
  min-height: 100vh;
  padding-top: var(--header-h);
  animation: pg-in 0.28s ease both;
}
.page.active { display: block; }

@keyframes pg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ---- SECTIONS ---- */
.section {
  padding: 5rem 0;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,26,26,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 70%, rgba(196,26,26,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #1A1714 0%, #2C1F1A 50%, #1A1714 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.75rem;
  max-width: 800px;
}
.hero-title em {
  font-style: italic;
  color: #E8B89A;
}

.hero-br { display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll .ti { font-size: 14px; animation: bounce 2s ease infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* ---- WHY SECTION ---- */
.section-why { background: var(--stone); }

.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin-top: 0.25rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--stone-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--red-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-size: 20px;
}

.pillar-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.pillar-card p { font-size: 14px; color: var(--ink-70); line-height: 1.6; }

/* ---- FEATURED SECTION ---- */
.section-featured { background: var(--white); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-text .eyebrow { margin-bottom: 0.5rem; }

.featured-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
  line-height: 1.25;
}
.featured-text p { font-size: 15px; color: var(--ink-70); line-height: 1.7; }

.featured-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.featured-visual {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, #2C1F1A 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 60% 40%, rgba(196,26,26,0.4) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(200,165,138,0.15) 0%, transparent 50%);
}
.featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.featured-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.visual-tag {
  display: inline-block;
  background: rgba(196,26,26,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.visual-tag-2 {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-left: 0.5rem;
}

.visual-map-dot {
  width: 12px;
  height: 12px;
  background: var(--red-light);
  border-radius: 50%;
  margin: 1.5rem auto 0.5rem;
  box-shadow: 0 0 0 6px rgba(224,80,80,0.25), 0 0 0 12px rgba(224,80,80,0.1);
}

.visual-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- NUMBERS ---- */
.section-numbers { background: var(--ink); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--ink);
  gap: 0.5rem;
}

.number-val {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.number-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 140px;
  line-height: 1.4;
}

/* ---- CTA BAND ---- */
.section-cta-band { background: var(--stone); padding: 4rem 0; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  border: 1px solid var(--stone-mid);
  box-shadow: var(--shadow-sm);
}

.cta-band-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.cta-band-text p { font-size: 14px; color: var(--ink-70); max-width: 480px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,26,26,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(196,26,26,0.10) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--red-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; }

/* ---- CONTENT COLUMNS ---- */
.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.content-h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.content-col p { font-size: 15px; color: var(--ink-70); line-height: 1.7; }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  background: var(--red-faint);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.quote-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
}

/* ---- STATS GRID ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--stone);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.stat-lbl { font-size: 12px; color: var(--ink-40); line-height: 1.4; }

/* ---- VALUES LIST ---- */
.values-list { margin-bottom: 0; }

.value-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink-15);
}
.value-item:last-child { border-bottom: none; }

.value-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-faint);
  border: 1px solid var(--red-border);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.value-text { font-size: 14px; color: var(--ink-70); line-height: 1.55; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.highlight-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.highlight-box p { font-size: 15px; color: var(--ink-70); line-height: 1.7; }

/* ---- PILLARS NUMBERED ---- */
.pillars-numbered { display: flex; flex-direction: column; gap: 0; }

.pillar-num-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--ink-15);
}
.pillar-num-item:last-child { border-bottom: none; }

.pillar-num-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pillar-num-body h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pillar-num-body p { font-size: 14px; color: var(--ink-70); line-height: 1.65; }

/* ---- CARD GRID ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.info-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid var(--stone-mid);
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.info-card-icon {
  font-size: 22px;
  color: var(--red);
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.info-card p { font-size: 13px; color: var(--ink-70); line-height: 1.5; }

/* ---- PROJECT CARDS ---- */
.project-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--stone-mid);
}
.project-card--featured {
  background: var(--white);
  border-color: var(--red-border);
  box-shadow: var(--shadow-sm);
}

.project-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.project-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
}

.project-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--red);
  color: var(--white);
}

.project-card p { font-size: 14px; color: var(--ink-70); line-height: 1.7; }
.project-card strong { color: var(--ink); }

/* ---- TIMELINE ---- */
.timeline { display: flex; flex-direction: column; }

.tl-item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ink-15);
}
.tl-item:last-child { border-bottom: none; }

.tl-date {
  flex-shrink: 0;
  width: 42px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.tl-text { font-size: 14px; color: var(--ink-70); line-height: 1.55; }

/* ---- TAG CLOUD ---- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tag-chip {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-70);
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  border-radius: 20px;
  padding: 6px 14px;
}

/* ---- DOCS LIST ---- */
.docs-list { display: flex; flex-direction: column; gap: 0; }

.doc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink-15);
  cursor: pointer;
  transition: background 0.15s;
}
.doc-item:last-child { border-bottom: none; }
.doc-item:hover .doc-icon, .doc-item:hover .doc-dl { color: var(--red); }

.doc-icon { font-size: 20px; color: var(--ink-40); flex-shrink: 0; }

.doc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.doc-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.doc-name { font-size: 14px; color: var(--ink); }

.doc-dl { font-size: 18px; color: var(--ink-40); flex-shrink: 0; transition: color 0.15s; }

/* ---- CONTACT ---- */
.contact-block {
  background: var(--stone);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--stone-mid);
}

.contact-block h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.contact-full-name {
  font-size: 13px;
  color: var(--ink-40);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  color: var(--ink-70);
  transition: color 0.15s;
  width: fit-content;
}
.contact-link:hover { color: var(--red); }
.contact-link .ti { font-size: 18px; }

/* ---- PARTNERS ---- */
.partners-block { }

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.partner-name {
  font-size: 14px;
  color: var(--ink-70);
  font-weight: 500;
}
.partner-sep {
  color: var(--stone-dark);
  font-size: 18px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-brand .logo-mark { width: 30px; height: 30px; font-size: 17px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.5; margin-top: 0.25rem; }
.footer-brand .site-logo { margin-bottom: 0.25rem; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-nav a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer-contact a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-eu {
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-visual { aspect-ratio: 16/7; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }

  .site-nav { display: none; }
  .burger { display: flex; }

  .hero { padding: 3rem 1.25rem; min-height: auto; padding-top: 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-scroll { display: none; }

  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero h1 { font-size: 2rem; }

  .pillars-grid { grid-template-columns: 1fr; gap: 1rem; }
  .featured-grid { grid-template-columns: 1fr; gap: 2rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-cols { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: 1fr; }

  .cta-band { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }

  .contact-block { padding: 1.75rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .pillar-num-item { gap: 1rem; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-title { font-size: 1.75rem; }
  .partners-row { flex-direction: column; gap: 0.25rem; }
  .partner-sep { display: none; }
}

/* ---- LOADING SCREEN ---- */
.loading-screen {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-40);
  font-size: 15px;
  padding-top: var(--header-h);
}
