/* Cantus Laudis — лендинг. Фирменный монохром + шрифт TT Drugs. */

@font-face {
  font-family: "TT Drugs";
  src: url("assets/fonts/TTDrugs-Thin.ttf") format("truetype");
  font-weight: 200; font-display: swap;
}
@font-face {
  font-family: "TT Drugs";
  src: url("assets/fonts/TTDrugs-Light.ttf") format("truetype");
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: "TT Drugs";
  src: url("assets/fonts/TTDrugs-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "TT Drugs";
  src: url("assets/fonts/TTDrugs-Bold.ttf") format("truetype");
  font-weight: 700; font-display: swap;
}

:root {
  --bg: #0d0d0d;
  --bg-2: #131313;
  --fg: #f1f1f1;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.14);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "TT Drugs", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.kicker {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(13,13,13,.55), rgba(13,13,13,.78) 55%, var(--bg)),
              url("assets/hero.jpg") center/cover no-repeat;
}
.hero__inner { padding: 40px 24px; }
.hero__logo { width: min(440px, 78vw); height: auto; }
.hero__sub {
  margin-top: 26px;
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #d9d9d9;
}
.hero__line {
  margin: 28px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
}
.scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--muted); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  animation: float 2.4s ease-in-out infinite;
}
.scroll:hover { color: #fff; }
@keyframes float { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,7px)} }

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 110px 0; }
.section-title {
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
  margin: 14px 0 28px;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about__text p { color: #cfcfcf; font-size: 17px; margin-bottom: 18px; }
.about__text p.en { color: var(--muted); font-size: 15px; font-style: normal; }
.about__img {
  width: 100%; height: 460px; object-fit: cover;
  filter: grayscale(0.25);
  border: 1px solid var(--line);
}

/* facts strip */
.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.fact { padding: 40px 28px; text-align: center; border-left: 1px solid var(--line); }
.fact:first-child { border-left: none; }
.fact__num { font-weight: 300; font-size: 34px; }
.fact__label { color: var(--muted); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; }

/* conductor */
.conductor { background: var(--bg-2); }
.conductor__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.conductor__img {
  width: 100%; height: 480px; object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.25);
  border: 1px solid var(--line);
}
.conductor__text p { color: #cfcfcf; font-size: 17px; margin-top: 18px; }

/* ── SOCIAL ───────────────────────────────────────── */
.social { text-align: center; }
.links {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 30px;
  min-width: 230px; justify-content: center;
  border: 1px solid var(--line);
  color: var(--fg); text-decoration: none;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 14px;
  transition: background .25s, border-color .25s, transform .25s;
}
.btn:hover { background: #fff; color: #0d0d0d; border-color: #fff; transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.contact { margin-top: 40px; color: var(--muted); font-size: 15px; }
.contact a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line); }

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 820px) {
  section { padding: 76px 0; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__img { height: 320px; order: -1; }
  .conductor__grid { grid-template-columns: 1fr; gap: 36px; }
  .conductor__img { height: 340px; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-left: none; border-top: 1px solid var(--line); }
  .fact:first-child { border-top: none; }
  .btn { min-width: 100%; }
}
