/* ============================================================
   Морские Штучки — Типографика
   ============================================================ */

/* Google Fonts подключаются в _Layout.cshtml через <link> */

body {
  font-family: var(--ms-font-body);
  color: var(--ms-text);
  line-height: 1.72;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Заголовки === */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ms-font-heading);
  color: var(--ms-ocean-dark);
  line-height: 1.3;
  font-weight: 700;
}

.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
  font-family: var(--ms-font-heading);
  font-weight: 800;
}

/* === Ссылки === */
a {
  color: var(--ms-ocean-light);
  transition: color var(--ms-transition);
  text-decoration-skip-ink: auto;
}

a:hover {
  color: var(--ms-seafoam);
}

/* === Lead текст === */
.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ms-text-muted);
  line-height: 1.8;
}

/* === Бренд — «Морские Штучки» === */
.ms-brand-text {
  font-family: var(--ms-font-display);
  letter-spacing: 0.06em;
}

/* === Заголовок раздела с декоративной линией === */
.ms-section-title {
  font-family: var(--ms-font-heading);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--ms-ocean-dark);
  position: relative;
  padding-bottom: 0.85rem;
  margin-bottom: 2rem;
}

.ms-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--ms-seafoam), var(--ms-ocean-light));
  border-radius: 2px;
}

.ms-section-title.ms-centered::after {
  left: 50%;
  transform: translateX(-50%);
}

/* === Мелкий надзаголовок === */
.ms-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ms-seafoam);
  margin-bottom: 0.5rem;
}

/* === Блок цитаты (глобально) === */
blockquote.ms-quote {
  border-left: 4px solid var(--ms-seafoam);
  margin-left: 0;
  padding: 1rem 1.5rem;
  font-style: italic;
  color: var(--ms-text-muted);
  background: var(--ms-sand);
  border-radius: 0 var(--ms-r-sm) var(--ms-r-sm) 0;
}

/* === Responsive === */
@media (max-width: 576px) {
  .lead {
    font-size: 1.05rem;
  }

  .ms-section-title {
    font-size: 1.6rem;
  }
}
