/* =====================================================
   Noble Impact Club — сайт-визитка
   ===================================================== */

/* --- Переменные --- */
:root {
  --gold-light:  #D9C08C;
  --gold-mid:    #C7AE7A;
  --gold-dark:   #9A814E;
  --gold-text:   #ECE9DD;
  --green-bg:    #1B3829;
  --text-dim:    #ECE9DD;
}

/* --- Сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-bg);
  background-image: url('../img/back.jpg');
  background-size: cover;
  background-position: center;
  font-family: 'Manrope', sans-serif;
  color: var(--gold-text);
}

/* --- Карточка-центр --- */
.page {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 760px;
  width: 100%;
}

/* --- Логотип --- */
.logo-wrap {
  width: 100%;
  max-width: 640px;
}

.logo-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Слоганы --- */
.taglines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.taglines p {
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0;
  color: var(--gold-text);
}

.taglines strong {
  font-weight: 800;
  font-style: normal;
  color: var(--gold-light);
}

/* --- Мета-блок --- */
.meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.founded {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0;
}

.email {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 700;
  color: var(--gold-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.email:hover {
  border-bottom-color: var(--gold-mid);
}

/* --- Адаптив --- */
@media (max-width: 480px) {
  .card { gap: 36px; }
  .taglines { gap: 12px; }
}
