:root {
  --bg: #efefef;
  --text: #111111;
  --accent: #2a0037;
  --accent-2: #d114c7;
  --white: #ffffff;
  --muted: #6b6b6b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 26px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: rgba(42, 0, 55, 0.14);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(239, 239, 239, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

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

/* Socials */

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.social:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--accent-2);
}

/* Burger */

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span,
.burger::before,
.burger::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background: var(--text);
  border-radius: 999px;
  transition: 0.25s ease;
}

.site-header.active .burger span {
  opacity: 0;
}

.site-header.active .burger::before {
  transform: translateY(9px) rotate(45deg);
}

.site-header.active .burger::after {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero */

.hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(58px, 8.5vw, 118px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-role {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #353535;
}

.hero-phone {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  margin-bottom: 28px;
  display: inline-block;
  transition: 0.2s ease;
}

.hero-phone:hover {
  color: var(--accent-2);
}

.hero-desc {
  max-width: 620px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

/* Hero image */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 560px;
  justify-self: end;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(135deg, #dedede 0%, #f5f5f5 100%);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 560px;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 18px;
  max-width: 280px;
  box-shadow: var(--shadow);
}

.hero-badge span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-badge small {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}

/* Cards */

.about-grid,
.formats-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.dark-card {
  background: var(--accent);
  color: var(--white);
}

.card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card p {
  font-size: 17px;
  opacity: 0.94;
  margin-bottom: 16px;
}

.card p:last-child {
  margin-bottom: 0;
}

/* Chips */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.chip {
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 600;
  font-size: 14px;
}

.card:not(.dark-card) .chip {
  background: #f0f0f0;
  border-color: #e4e4e4;
}

/* Direction */

.direction {
  padding: 84px 0;
  text-align: center;
}

.direction-title {
  max-width: 980px;
  margin: 0 auto 28px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.direction-icon {
  font-size: 100px;
  color: var(--accent-2);
  line-height: 1;
}

/* Facts */

.facts-section {
  padding-top: 20px;
}

.facts-list {
  display: grid;
  gap: 16px;
}

.fact-item {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.fact-item:hover {
  transform: translateY(-2px);
}

.fact-question {
  font-weight: 700;
  font-size: 20px;
}

.fact-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #f1f1f1;
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.fact-answer {
  display: none;
  padding-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.fact-item.active .fact-answer {
  display: block;
}

.fact-item.active .fact-toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

/* CTA */

.cta {
  padding: 110px 0;
  text-align: center;
}

.cta-box {
  background: var(--white);
  border-radius: 34px;
  padding: 64px 24px;
  box-shadow: var(--shadow);
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
  margin-bottom: 30px;
  display: inline-block;
  transition: 0.2s ease;
}

.cta-phone:hover {
  color: var(--accent-2);
}

/* Contacts */

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-row {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.contact-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.contact-value {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  transition: 0.2s ease;
  word-break: break-word;
}

.contact-value:hover {
  color: var(--accent-2);
}

/* Form */

.form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  background: #fbfbfb;
  outline: none;
  transition: 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--accent-2);
  background: #ffffff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */

.site-footer {
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

/* Animation */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Adaptive */

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .formats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 520px;
    min-height: 620px;
    justify-self: center;
  }

  .hero-visual img {
    height: 620px;
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  .nav,
  .header-socials {
    display: none;
  }

  .burger {
    display: block;
  }

  .site-header.active .nav {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    background: rgba(255, 255, 255, 0.96);
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header.active .header-socials {
    display: flex;
    position: absolute;
    top: calc(92px + 174px);
    left: 16px;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px 18px 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .section,
  .direction,
  .cta {
    padding: 56px 0;
  }

  .card,
  .cta-box {
    padding: 24px;
  }

  .hero-actions {
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 82px;
  }

  .site-header.active .nav {
    top: 82px;
  }

  .site-header.active .header-socials {
    top: calc(82px + 174px);
  }

  .logo {
    font-size: 20px;
  }

  .hero-title {
    font-size: clamp(52px, 16vw, 84px);
  }

  .hero-role,
  .hero-phone {
    font-size: clamp(30px, 9vw, 50px);
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-visual {
    max-width: 100%;
    min-height: 430px;
    border-radius: 26px;
  }

  .hero-visual img {
    height: 430px;
    min-height: 430px;
    object-position: center top;
  }

  .hero-badge {
    left: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .fact-question {
    font-size: 17px;
  }

  .fact-item {
    padding: 18px;
  }

  .cta-phone {
    font-size: 34px;
  }
}