/* Кто врёт? Мафия — Saint Petersburg landing */
:root {
  --bg: #050508;
  --bg-elevated: #0c0c10;
  --red: #c8102e;
  --red-glow: rgba(200, 16, 46, 0.45);
  --gold-1: #c9a227;
  --gold-2: #f4e4a6;
  --gold-3: #8b6914;
  --text: #e8e6e3;
  --text-muted: #9a9590;
  --border: rgba(255, 255, 255, 0.08);
  --font-display: "Bebas Neue", "Impact", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(5, 5, 8, 0.95), rgba(5, 5, 8, 0.65), transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header-inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-1);
  text-transform: none;
  margin-top: 2px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  display: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--gold-1);
}

.socials {
  display: flex;
  gap: 0.4rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.socials a:hover {
  color: var(--gold-1);
  border-color: var(--gold-3);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.socials a.social-link--max {
  width: auto;
  min-width: 40px;
  padding: 0 10px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.social-max-text {
  line-height: 1;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .phone-link {
    display: inline;
  }

  .menu-toggle {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5, 5, 8, 0.97);
  padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(145deg, var(--gold-2) 0%, var(--gold-1) 45%, var(--gold-3) 100%);
  color: #1a1204;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--red);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.45);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--red-glow), transparent 55%),
    linear-gradient(to top, var(--bg) 0%, transparent 38%),
    linear-gradient(to right, rgba(5, 5, 8, 0.88) 0%, rgba(5, 5, 8, 0.35) 52%, transparent 78%);
  z-index: 1;
}

/* Hero: анимированные карточки ролей (декор) */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.fx-card {
  position: absolute;
  width: 4.5rem;
  height: 6.6rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: linear-gradient(155deg, rgba(18, 14, 10, 0.92) 0%, rgba(6, 5, 8, 0.88) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 0 28px rgba(200, 16, 46, 0.12);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.05;
  color: var(--gold-1);
  text-transform: uppercase;
  transform: rotate(var(--fx-r, 0deg));
  animation: fx-float 5.5s ease-in-out infinite;
  animation-delay: var(--fx-d, 0s);
  backdrop-filter: blur(4px);
}

.fx-card--mafia {
  top: 14%;
  right: 6%;
  color: #ffb4b4;
  border-color: rgba(200, 16, 46, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 32px rgba(200, 16, 46, 0.2);
}

.fx-card--don {
  top: 22%;
  right: 22%;
  width: 4rem;
  height: 5.85rem;
  font-size: 0.88rem;
}

.fx-card--sheriff {
  top: 42%;
  right: 8%;
  width: 4.1rem;
  height: 6rem;
  font-size: 0.78rem;
  color: #c8dcff;
  border-color: rgba(140, 170, 220, 0.45);
}

.fx-card--town {
  top: 16%;
  right: 36%;
  width: 3.85rem;
  height: 5.7rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

@keyframes fx-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--fx-r, 0deg));
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(calc(var(--fx-r, 0deg) + 4deg));
  }
}

@keyframes fx-float-tight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--fx-r, 0deg));
  }
  50% {
    transform: translate3d(0, -6px, 0) rotate(calc(var(--fx-r, 0deg) + 2deg));
  }
}

@media (max-width: 699px) {
  .fx-card--town {
    display: none;
  }

  .fx-card {
    width: 3.6rem;
    height: 5.25rem;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-card {
    animation: none !important;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  isolation: isolate;
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.hero-pretitle {
  display: inline-block;
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--red);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
  text-transform: none;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
  max-width: 52rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow);
}

.hero-lead {
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-price-highlight {
  display: block;
  margin-top: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.hero-price-highlight strong {
  color: var(--gold-1);
  font-size: 1.2em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 52rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(12, 12, 18, 0.82) 0%, rgba(6, 6, 10, 0.75) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

@media (min-width: 720px) {
  .hero-strip {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.1rem 1.35rem;
  }
}

.hero-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.35rem 0;
}

@media (min-width: 720px) {
  .hero-strip-item {
    padding: 0;
  }
}

.hero-strip-mark {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #1a1204;
  background: linear-gradient(145deg, var(--gold-2), var(--gold-1) 55%, var(--gold-3));
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.25);
}

.hero-strip-mark--geo {
  background: rgba(200, 16, 46, 0.2);
  color: var(--gold-1);
  border: 1px solid rgba(200, 16, 46, 0.45);
}

.hero-strip-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hero-strip-title {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero-strip-sub {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero-strip-divider {
  width: 100%;
  height: 1px;
  margin: 0.15rem 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
}

@media (min-width: 720px) {
  .hero-strip-divider {
    width: 1px;
    height: auto;
    min-height: 3.25rem;
    margin: 0 0.65rem;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.14), transparent);
  }
}

/* Trust cards inside hero */
.hero-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 52rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(12, 12, 18, 0.82) 0%, rgba(6, 6, 10, 0.75) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

@media (min-width: 720px) {
  .hero-trust {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
}

@media (min-width: 720px) {
  .hero-trust-item {
    padding: 1.1rem 1.25rem;
  }
}

.hero-trust-mark {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #1a1204;
  background: linear-gradient(145deg, var(--gold-2), var(--gold-1) 55%, var(--gold-3));
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.25);
}

.hero-trust-mark--people {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-1);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.hero-trust-mark--loft {
  background: rgba(200, 16, 46, 0.12);
  color: var(--gold-1);
  border: 1px solid rgba(200, 16, 46, 0.4);
}

.stars {
  color: var(--gold-1);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

/* Section common */
section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0 0 2.5rem;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head .section-title {
  margin-bottom: 0;
}

.section-head--gold .section-label {
  color: var(--gold-1);
}

.section-head--gold .section-title {
  padding-left: 1rem;
  border-left: 4px solid var(--gold-1);
  box-decoration-break: clone;
}

.section-head--red .section-label {
  color: var(--red);
}

.section-head--red .section-title {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(200, 16, 46, 0.45);
  display: inline-block;
  max-width: 100%;
}

/* «Почему мы» — золото, «редакторский» ряд */
.section-why {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #040406 0%, #0a0a10 42%, #07070b 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-why .features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .section-why .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-why .feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    min-height: 0;
    align-items: stretch;
  }

  .section-why .feature-card img {
    height: 100%;
    min-height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .section-why .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-why .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Features cards */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features:not(.section-why) .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  min-height: 320px;
}

.section-why .feature-card {
  border-color: rgba(201, 162, 39, 0.15);
  background: linear-gradient(125deg, rgba(18, 16, 12, 0.95) 0%, #0c0c12 55%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.section-why .feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-1), var(--gold-2));
  opacity: 0.85;
  z-index: 3;
  pointer-events: none;
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.5s, filter 0.3s;
}

.section-why .feature-card img {
  filter: brightness(0.55) saturate(0.85);
}

.feature-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.8);
}

.section-why .feature-card:hover img {
  filter: brightness(0.72) saturate(0.95);
}

.feature-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.section-why .feature-card-body {
  padding: 1.5rem 1.5rem 1.65rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.section-why .feature-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--gold-2);
  letter-spacing: 0.06em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.feature-card-body {
  position: relative;
  z-index: 2;
}

/* Mafia intro section */
.mafia-intro {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a080f 50%, var(--bg) 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.mafia-intro-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .mafia-intro-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.mafia-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--text);
}

.mafia-intro-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 0 0.85rem;
  max-width: 38rem;
}

.mafia-intro-tagline {
  font-weight: 700;
  font-size: 1rem !important;
  color: var(--gold-1) !important;
  margin-top: 1.5rem !important;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

.mafia-intro-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.mafia-intro-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.92) contrast(1.05) saturate(0.85);
  transition: transform 0.6s, filter 0.3s;
}

.mafia-intro-visual:hover img {
  transform: scale(1.02);
  filter: brightness(1) contrast(1.05) saturate(0.9);
}

/* Studio gallery */
.studio-gallery {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.35), var(--bg));
}

.studio-gallery .section-title {
  margin-bottom: 0.85rem;
}

.studio-gallery-lead {
  margin: 0 0 1.85rem;
  max-width: 42rem;
  color: var(--text-muted);
}

.studio-slider {
  position: relative;
}

.studio-slider__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
}

.studio-slider__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.studio-shot {
  margin: 0;
  flex: 0 0 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.studio-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(0.95) contrast(1.02);
}

.studio-shot:hover img {
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.studio-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(5, 5, 8, 0.76);
  color: var(--gold-2);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.studio-slider__nav:hover {
  background: rgba(12, 12, 16, 0.95);
}

.studio-slider__nav--prev {
  left: 0.85rem;
}

.studio-slider__nav--next {
  right: 0.85rem;
}

.studio-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.studio-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.studio-slider__dot.is-active {
  background: var(--gold-1);
}

/* Occasions strip (внутри features section) */
.occasions-strip {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.occasions-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin: 0 0 1.25rem;
}

.occasions-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .occasions-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.occasion-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 16, 46, 0.22);
  background: rgba(200, 16, 46, 0.05);
}

.occasion-item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.occasion-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.occasions-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Contacts */
.contacts {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.contacts-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contacts-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: stretch;
  }
}

.contacts-list {
  margin: 0;
}

.contacts-row {
  margin-bottom: 1.35rem;
}

.contacts-row:last-child {
  margin-bottom: 0;
}

.contacts-row dt {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.35rem;
}

.contacts-row dd {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.contacts-row a {
  color: var(--text);
  text-decoration: none;
}

.contacts-row a:hover {
  color: var(--gold-1);
}

.contacts-note {
  color: var(--text-muted);
  font-size: 0.92em;
}

.contacts-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  width: 100%;
  min-height: 440px;
}

.contacts-map iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 440px !important;
  min-height: 300px;
  border: 0;
}

/* Pricing */
.pricing {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #060608 0%, var(--bg) 100%);
}

.pricing-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pricing-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
}

.pricing-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.pricing-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.58) contrast(1.08);
}

.pricing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.2), transparent 45%);
  pointer-events: none;
}

.pricing-copy .section-label {
  color: var(--gold-1);
}

.pricing-title {
  margin-bottom: 1.25rem;
}

.price-hero {
  margin-bottom: 1.75rem;
}

.price-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(165deg, var(--gold-2) 0%, var(--gold-1) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(201, 162, 39, 0.25));
}

.price-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-includes {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-includes li:last-child {
  border-bottom: none;
}

.price-includes li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-size: 0.55rem;
  color: var(--gold-1);
  opacity: 0.9;
}

.price-minimum {
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: linear-gradient(145deg, rgba(24, 20, 14, 0.9), rgba(10, 8, 12, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.price-min-label {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-min-value {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  letter-spacing: 0.04em;
  color: var(--text);
}

.price-min-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-cta {
  margin-top: 0.25rem;
}

/* Reviews */
.reviews {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.reviews .section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.8vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: none;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}

.review-card .stars {
  margin-bottom: 0.75rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.review-card cite {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-muted);
}

.reviews-cta {
  margin-top: 2.25rem;
  text-align: center;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-panel {
  max-height: 320px;
}

.faq-panel p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Lead request form */
.lead-request {
  padding: 4rem 0 3.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), var(--bg-elevated));
}

.lead-request .section-title {
  margin-bottom: 0.75rem;
}

.lead-request-lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.mafia-lead-form {
  max-width: 640px;
}

.mafia-form-grid {
  display: grid;
  gap: 1rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mafia-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mafia-field--full {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.mafia-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mafia-field input,
.mafia-field textarea {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mafia-field input::placeholder,
.mafia-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}

.mafia-field input:focus,
.mafia-field textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.mafia-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.mafia-form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.mafia-form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1 1 12rem;
}

.mafia-form-status--ok {
  color: #7bc96f;
}

.mafia-form-status--error {
  color: #e88;
}

.mafia-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.mafia-consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--gold-1);
  cursor: pointer;
}

.mafia-consent label {
  cursor: pointer;
}

.mafia-consent a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mafia-consent a:hover {
  color: var(--gold-2);
}

.lead-request-inner {
  max-width: 40rem;
}

.lead-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

.lead-request-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lead-request-note a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-request-note a:hover {
  color: var(--gold-2);
}

/* Lead modal */
.lead-modal {
  padding: 0;
  border: none;
  max-width: calc(100vw - 1.5rem);
  width: min(520px, 100%);
  background: transparent;
  color: var(--text);
}

.lead-modal::backdrop {
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(5px);
}

.lead-modal__inner {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, var(--bg-elevated), var(--bg));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  max-height: min(90vh, 720px);
  overflow-y: auto;
}

.lead-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.lead-modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.lead-modal__title {
  margin: 0 2.25rem 0.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold-2);
}

.lead-modal__pretitle {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-modal__lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.lead-modal__tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: #2aabee;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.lead-modal__tg-btn:hover {
  background: #2298d6;
}

.lead-modal__divider {
  position: relative;
  margin: 0 0 1rem;
  text-align: center;
  color: #7a7670;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-modal__divider::before,
.lead-modal__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.lead-modal__divider::before {
  left: 0;
}

.lead-modal__divider::after {
  right: 0;
}

.lead-modal .mafia-form-grid {
  grid-template-columns: 1fr;
}

.lead-modal .section-label {
  margin-bottom: 0.35rem;
}

.lead-modal__alt {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.88rem;
}

.lead-modal__alt a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-modal__alt a:hover {
  color: var(--gold-2);
}

body.lead-modal-open {
  overflow: hidden;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-band-alt {
  margin: 0;
  font-size: 0.88rem;
}

.cta-band-alt a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-band-alt a:hover {
  color: var(--gold-2);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.25), transparent 60%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border-top: 1px solid var(--border);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  gap: 1rem 2rem;
  align-items: start;
}

.footer-legal p {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-offer {
  margin-top: 0.65rem !important;
  margin-bottom: 0 !important;
}

.footer-credit {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: right;
  justify-self: end;
}

.footer-credit a {
  color: var(--gold-1);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.45);
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold-3);
}

.footer-docs {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
}

.footer-docs a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-docs a:hover {
  color: var(--gold-2);
}

.footer-privacy {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-privacy a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-privacy a:hover {
  color: var(--gold-2);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(430px, calc(100vw - 2rem));
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  padding: 0.9rem 0.9rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(8, 8, 12, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner__close {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  border: 0;
  background: transparent;
  color: #8f8a84;
  font-size: 1.4rem;
  line-height: 1;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
}

.cookie-banner__close:hover {
  color: #fff;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding-right: 1.2rem;
}

.cookie-banner a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--gold-2);
}

.cookie-banner__btn {
  width: 100%;
  padding: 0.55rem 0.95rem;
  font-size: 0.67rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .footer-inner {
    text-align: center;
  }

  .footer-credit {
    text-align: center;
    justify-self: center;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: min(420px, calc(100vw - 1.5rem));
  }
}

.faq-panel a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-panel a:hover {
  color: var(--gold-2);
}

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   MOBILE — общие правки (≤ 767px)
   ============================================= */
@media (max-width: 767px) {
  /* Скролл-отступ под фиксированный хедер */
  html {
    scroll-padding-top: calc(var(--header-h) + 1rem);
  }

  /* Уменьшаем отступы секций */
  section {
    padding: 3rem 0;
  }

  .section-why {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mafia-intro {
    padding: 3rem 0;
  }

  /* Hero: используем dvh чтобы адресная строка не обрезала */
  .hero {
    min-height: 100dvh;
    min-height: 100vh; /* fallback */
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 2rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Убираем br в lead-тексте — на мобиле сам переносится */
  .hero-lead br {
    display: none;
  }

  /* Кнопки CTA — в столбик */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    text-align: center;
    justify-content: center;
  }

  /* fx-карточки: правый верх — уровень строки с «жизни» (буква и), не слева */
  .fx-card--sheriff {
    display: none;
  }

  .fx-card--mafia,
  .fx-card--don {
    left: auto !important;
  }

  .fx-card--mafia {
    top: 10%;
    right: 3%;
    width: 2.75rem;
    height: 4rem;
    font-size: 0.56rem;
  }

  .fx-card--don {
    top: 16%;
    right: 11%;
    width: 2.55rem;
    height: 3.75rem;
    font-size: 0.52rem;
  }

  .fx-card--mafia,
  .fx-card--don {
    animation-name: fx-float-tight;
  }

  /* hero-trust: чуть меньше padding */
  .hero-trust-item {
    padding: 0.8rem 1rem;
  }

  .hero-strip-title {
    font-size: 0.88rem;
  }

  .hero-strip-sub {
    font-size: 0.78rem;
  }

  /* Mafia intro: ограничиваем высоту фото */
  .mafia-intro-inner {
    gap: 2rem;
  }

  .mafia-intro-visual img {
    max-height: 70vw;
    width: 100%;
    object-fit: cover;
    object-position: center 62%;
  }

  .mafia-intro-title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 1rem;
  }

  .studio-gallery {
    padding: 3rem 0;
  }

  .studio-slider__nav {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.45rem;
  }

  .studio-slider__nav--prev {
    left: 0.5rem;
  }

  .studio-slider__nav--next {
    right: 0.5rem;
  }

  /* Уменьшаем section-title на мобиле */
  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1.75rem;
  }

  /* Feature cards */
  .feature-card img {
    height: 200px;
  }

  /* Occasions */
  .occasions-strip {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  /* Pricing: скрываем картинку — всё внимание на цену */
  .pricing-visual {
    display: none;
  }

  .contacts-map {
    min-height: 360px;
  }

  .contacts-map iframe {
    height: min(400px, 58vw) !important;
    min-height: 280px;
  }

  /* Reviews */
  .reviews .section-title {
    font-size: clamp(1.4rem, 5.5vw, 1.95rem);
    margin-bottom: 1.5rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .reviews-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .lead-request {
    padding: 3rem 0 2.5rem;
  }

  .lead-request-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-request-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mafia-form-grid {
    grid-template-columns: 1fr;
  }

  .mafia-form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA band */
  .cta-band {
    padding: 3rem 1.25rem;
  }

  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  /* FAQ */
  .faq-item button {
    font-size: 0.95rem;
    padding: 1rem 0;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0;
  }
}

/* =============================================
   ОЧЕНЬ МАЛЕНЬКИЕ (≤ 380px) — iPhone SE и т.п.
   ============================================= */
@media (max-width: 380px) {
  :root {
    --header-h: 64px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-trust-mark {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .btn {
    padding: 0.9rem 1.35rem;
    font-size: 0.75rem;
  }

  .mafia-intro-visual img {
    max-height: 80vw;
    object-position: center 65%;
  }
}
