/* Плейбек-театр «Дважды» — стили заглушки.
   Правьте переменные ниже: цвета, ширина колонки, радиусы. */

:root {
  --bg: #1b1418;
  --bg-alt: #241a20;
  --surface: #2d2029;
  --text: #f4ece7;
  --muted: #c3ada6;
  --accent: #e0a06a;
  --accent-soft: rgba(224, 160, 106, 0.14);
  --line: rgba(244, 236, 231, 0.12);
  --radius: 14px;
  --width: 62rem;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-title: Georgia, "Times New Roman", "PT Serif", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  width: 100%;
  max-width: var(--width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.6rem, 9vw, 4.75rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration-color: rgba(224, 160, 106, 0.4); }
a:hover { text-decoration-color: currentColor; }

/* Шапка */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(27, 20, 24, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-title);
  font-size: 1rem;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-title);
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-name small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

.nav a:hover { color: var(--text); }

/* Первый экран */

.hero {
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(2.5rem, 7vw, 5rem);
  background:
    radial-gradient(60rem 26rem at 15% -10%, var(--accent-soft), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--text);
}

.notice {
  display: inline-block;
  max-width: 38rem;
  margin: 0.5rem 0 1.5rem;
  padding: 0.7rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 0; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #241a20;
  font-weight: 600;
  text-decoration: none;
}

.btn-ghost { background: transparent; color: var(--accent); }
.btn:hover { filter: brightness(1.05); }

/* Секции */

.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section p { max-width: 44rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facts dd { margin: 0.35rem 0 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card h3 { margin-top: 0; }
.card p { margin-bottom: 0.6rem; }

.meta {
  margin: 0;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts { list-style: none; padding: 0; margin: 1.5rem 0 1rem; }

.contacts li {
  display: flex;
  gap: 0.9rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.contacts span {
  min-width: 6rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hint { color: var(--muted); font-size: 0.9rem; }

/* Подвал */

.site-footer {
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p { margin: 0.2rem 0; }

@media (max-width: 34rem) {
  body { font-size: 16px; }
  .header-inner { justify-content: center; }
  .contacts li { flex-direction: column; gap: 0.15rem; }
}
