:root {
  --bg: #eaf5ff;
  --text: #17324f;
  --blue: #2f69b4;
  --deep-blue: #123f75;
  --soft-blue: #d7ebff;
  --red: #c9253e;
  --white: #ffffff;
  --border: rgba(42, 91, 151, 0.18);
  --shadow: 0 12px 35px rgba(15, 57, 104, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #f9fdff 0%, rgba(249, 253, 255, 0.5) 45%, transparent 70%),
    radial-gradient(circle at 90% 12%, #d7ebff 0%, rgba(215, 235, 255, 0.4) 35%, transparent 65%),
    linear-gradient(160deg, #eef7ff 0%, #e2f1ff 55%, #d4ebff 100%);
  min-height: 100vh;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  width: 300px;
  height: 300px;
  left: -60px;
  top: 90px;
  background: rgba(80, 150, 220, 0.35);
}

.ambient-two {
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: 80px;
  background: rgba(201, 37, 62, 0.2);
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(241, 248, 255, 0.85);
  border-bottom: 1px solid rgba(42, 91, 151, 0.12);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.festival-logo {
  display: inline-flex;
  width: clamp(140px, 16vw, 220px);
}

.festival-logo img {
  width: 100%;
  height: auto;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--deep-blue);
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(110deg, var(--red), #db3950);
  box-shadow: 0 10px 22px rgba(201, 37, 62, 0.26);
}

.btn-secondary {
  color: var(--deep-blue);
  background: var(--white);
  border: 1px solid var(--border);
}

.btn-small {
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
  padding: 34px 0 10px;
}

.hero-content,
.hero-side {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: rise 0.65s ease both;
}

.hero-content {
  padding: 30px;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-blue);
}

h1 {
  margin-top: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(30px, 5.4vw, 56px);
  letter-spacing: 0.02em;
}

.hero-text {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(110deg, rgba(47, 105, 180, 0.12), rgba(201, 37, 62, 0.08));
  font-size: 13px;
  font-weight: 700;
}

.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero-side img {
  width: min(100%, 310px);
  height: auto;
}

.section {
  padding: 46px 0 0;
}

.section h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 4.2vw, 34px);
  margin-bottom: 20px;
}

.cards {
  display: grid;
  gap: 14px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  animation: rise 0.65s ease both;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  margin: 8px 0;
  line-height: 1.45;
}

.card ul {
  margin: 0;
  padding-left: 20px;
}

.card li {
  margin-bottom: 8px;
  line-height: 1.42;
}

.compact h3 {
  font-size: 18px;
}

.small {
  margin-top: 10px;
  font-size: 13px;
  color: #4c6384;
}

.accent-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(224, 240, 255, 0.95));
}

.poster-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.poster-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.poster-card {
  display: block;
  text-decoration: none;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.poster-card:hover {
  transform: translateY(-2px);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 0.7;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.poster-card span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  text-align: center;
}

.service-banner-wrap {
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.service-banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 44px rgba(16, 55, 100, 0.2);
  padding: 26px 24px;
  color: #fff;
  background:
    linear-gradient(120deg, #0f4885 0%, #1e67b3 45%, #c9253e 100%);
}

.service-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  top: -140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.service-badge {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  opacity: 0.95;
}

.service-title {
  position: relative;
  z-index: 1;
  margin: 6px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 4.2vw, 44px);
  color: #fff;
}

.service-phone {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0.01em;
}

.service-phone:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer {
  margin-top: 22px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(42, 91, 151, 0.14);
  background: rgba(236, 246, 255, 0.92);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-row img {
  width: min(240px, 35vw);
  height: auto;
}

.footer-row p {
  margin: 0;
  text-align: right;
  font-size: 14px;
}

a {
  color: #1d5aa2;
}

a:hover {
  color: #c9253e;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header-button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .poster-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-banner::after {
    width: 250px;
    height: 250px;
    right: -90px;
    top: -100px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .festival-logo {
    width: 170px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
  }

  .hero-content {
    padding: 22px;
  }

  .service-banner-wrap {
    margin-top: 30px;
  }

  .service-banner {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .poster-grid,
  .poster-grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-row p {
    text-align: left;
  }
}
