:root {
  --bg: #07090c;
  --bg-soft: #10161d;
  --surface: rgba(16, 22, 29, 0.72);
  --surface-strong: rgba(10, 14, 20, 0.92);
  --text: #f6f3ea;
  --text-dim: #d0ccc2;
  --line: rgba(224, 184, 101, 0.28);
  --accent: #e0b865;
  --accent-warm: #d97a43;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --header-height: 68px;
  --scroll-offset: 104px;
  --grain-opacity: 0.08;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background-color: var(--bg);
  background-image: url("images/site-bg-placeholder.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
}

section[id] {
  scroll-margin-top: var(--scroll-offset);
}

body {
  padding-top: var(--header-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.56));
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--grain-opacity);
  background-image:
    repeating-radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 75% 72%, rgba(0, 0, 0, 0.28) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 2px, rgba(0, 0, 0, 0.08) 2px 4px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  mix-blend-mode: soft-light;
  animation: grainShift 9s steps(8, end) infinite;
}

header,
section,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(760px, calc(100vw - 16px));
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 14, 20, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}

.site-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

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

.site-nav a.is-active {
  color: var(--accent);
}

.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(224, 184, 101, 0.16);
  outline: 2px solid rgba(224, 184, 101, 0.95);
  outline-offset: 2px;
}

section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 84px 0;
  text-align: center;
}

.hero {
  min-height: 100vh;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 10vh 20px;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 14px;
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.hero-actions {
  margin-top: 2px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(8, 12, 17, 0.34), rgba(8, 12, 17, 0.85));
}

.hero-logo,
.hero-subtitle {
  position: relative;
  z-index: 3;
}

.hero-logo {
  width: min(75vw, 780px);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.65rem, 5.5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--text);
  text-shadow: 0 0 18px rgba(224, 184, 101, 0.12);
}

.hero-subtitle {
  max-width: 760px;
  font-size: clamp(0.98rem, 1.1vw + 0.72rem, 1.25rem);
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

.feed-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  letter-spacing: 0.08em;
  margin-bottom: 26px;
  color: var(--accent);
  text-shadow: 0 0 26px rgba(224, 184, 101, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  background: rgba(20, 24, 30, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  margin-bottom: 36px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(224, 184, 101, 0.2), 0 0 18px rgba(217, 122, 67, 0.14);
  border-color: rgba(224, 184, 101, 0.62);
}

.btn-primary {
  border-color: rgba(224, 184, 101, 0.62);
  background: rgba(45, 31, 18, 0.9);
  box-shadow: 0 12px 32px rgba(224, 184, 101, 0.2), 0 0 24px rgba(217, 122, 67, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-upload {
  border-color: rgba(224, 184, 101, 0.7);
  background: rgba(50, 31, 14, 0.94);
  box-shadow: 0 14px 34px rgba(217, 122, 67, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-upload:hover {
  border-color: rgba(224, 184, 101, 0.95);
  box-shadow: 0 16px 40px rgba(217, 122, 67, 0.28), 0 0 18px rgba(224, 184, 101, 0.22);
}

.btn-secondary {
  background: rgba(16, 22, 29, 0.9);
  margin-left: 10px;
}

.back-to-top-wrap {
  width: min(1120px, 92vw);
  margin: 8px auto 18px;
  text-align: center;
}

.back-to-top {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 19, 25, 0.9);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  --parallax-offset: 0px;
  transform: translate3d(0, calc(var(--parallax-offset) + 8px), 0);
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.back-to-top:hover {
  transform: translate3d(0, calc(var(--parallax-offset) - 2px), 0);
  border-color: rgba(224, 184, 101, 0.62);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, var(--parallax-offset), 0);
}

.elfsight-wrapper,
.soundcloud-player-wrapper,
.submit-set,
.team-member {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.instagram-feed,
.soundcloud {
  padding-top: 88px;
}

.trust-proof,
.curation-process,
.faq-section {
  padding-top: 72px;
  padding-bottom: 28px;
}

.trust-intro {
  max-width: 720px;
  margin: 0 auto 22px;
  color: var(--text-dim);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.trust-stat {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(16, 22, 29, 0.74);
  padding: 18px 14px;
}

.trust-number {
  font-family: "Bebas Neue", Impact, sans-serif;
  color: var(--accent);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
}

.trust-label {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 0.93rem;
}

.trust-as-seen {
  color: var(--text-dim);
  margin-bottom: 22px;
}

.artist-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.artist-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(13, 18, 24, 0.82);
  box-shadow: var(--shadow);
  text-align: left;
}

.trust-stat,
.artist-card,
.process-card,
.faq-item,
.about-story,
.team-member,
.submit-set {
  position: relative;
  overflow: hidden;
}

.trust-stat::after,
.artist-card::after,
.process-card::after,
.faq-item::after,
.about-story::after,
.team-member::after,
.submit-set::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 4px
    ),
    repeating-radial-gradient(
      circle at 30% 30%,
      rgba(0, 0, 0, 0.26) 0 1px,
      transparent 1px 3px
    );
  background-size: 90px 90px, 120px 120px;
  mix-blend-mode: soft-light;
}

.artist-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.artist-card-body {
  padding: 12px 12px 13px;
}

.artist-card-body h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.artist-card-meta {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.artist-card-body p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.35;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 22, 29, 0.72);
  text-align: left;
  padding: 16px 16px 14px;
}

.process-card h3,
.faq-item h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-card ul {
  padding-left: 18px;
  color: var(--text-dim);
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
}

.instagram-feed {
  padding-bottom: 56px;
}

.soundcloud {
  padding-top: 96px;
  padding-bottom: 86px;
}

.instagram-feed .feed-title {
  color: var(--accent);
}

.soundcloud .feed-title {
  color: var(--accent);
  text-shadow: 0 0 26px rgba(224, 184, 101, 0.16);
}

.elfsight-wrapper {
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(6px);
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.soundcloud-player-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.soundcloud-mask {
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.96));
}

.about-us {
  position: relative;
  display: grid;
  gap: 34px;
  padding-top: 88px;
  padding-bottom: 104px;
  overflow: hidden;
  isolation: isolate;
}

.about-story {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(22, 24, 28, 0.82), rgba(15, 17, 21, 0.8)),
    radial-gradient(circle at 12% 14%, rgba(224, 184, 101, 0.1), transparent 48%);
  box-shadow: var(--shadow);
  text-align: left;
  padding: 24px clamp(18px, 3vw, 30px);
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.about-story h3 {
  color: var(--text);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  margin-bottom: 10px;
}

.about-story p {
  color: var(--text-dim);
  margin-bottom: 10px;
  font-size: 0.96rem;
  text-align: justify;
  text-justify: inter-word;
}

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

.section-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
  --parallax-offset: 0px;
  will-change: transform;
  z-index: -1;
}

.section-glow-a {
  width: 280px;
  height: 280px;
  top: 14%;
  left: -80px;
  background: radial-gradient(circle, rgba(224, 184, 101, 0.24), rgba(224, 184, 101, 0));
  transform: translate3d(0, var(--parallax-offset), 0);
}

.section-glow-b {
  width: 300px;
  height: 300px;
  right: -85px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(217, 122, 67, 0.22), rgba(217, 122, 67, 0));
  transform: translate3d(0, var(--parallax-offset), 0);
}

.team-member {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px;
  min-height: 360px;
  text-align: left;
  background:
    linear-gradient(140deg, rgba(22, 24, 28, 0.78), rgba(15, 17, 21, 0.78)),
    radial-gradient(circle at 85% 10%, rgba(224, 184, 101, 0.08), transparent 44%);
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.about-us .team-member::after {
  z-index: 0;
}

.about-us .team-member > * {
  position: relative;
  z-index: 1;
}

.team-member img.team-img {
  width: min(46vw, 560px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: rgba(7, 9, 12, 0.62);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.team-text {
  color: var(--text-dim);
  display: grid;
  gap: 10px;
}

.team-name {
  font-family: "Bebas Neue", Impact, sans-serif;
  color: var(--accent);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: 0.05em;
  line-height: 1;
}

.team-text p {
  text-align: justify;
  text-justify: inter-word;
}

.team-text.text-align-right .team-name,
.team-text.text-align-right p {
  text-align: right;
}

.team-text.text-align-right p {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: right;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.team-img.left {
  order: 0;
}

.team-text.right {
  order: 1;
}

.team-img.right {
  order: 1;
}

.team-text.left {
  order: 0;
}

.submit-set {
  margin: 46px auto 76px;
  width: min(860px, 92vw);
  padding: 48px clamp(20px, 4vw, 46px);
  background:
    linear-gradient(150deg, rgba(15, 17, 21, 0.95), rgba(19, 21, 25, 0.93)),
    radial-gradient(circle at 8% 12%, rgba(224, 184, 101, 0.08), transparent 40%);
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.submit-description {
  max-width: 680px;
  margin: 0 auto 20px;
  color: var(--text-dim);
}

.submit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.submit-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(24, 21, 17, 0.78), rgba(15, 14, 12, 0.78));
  padding: 16px 14px;
  text-align: left;
}

.submit-step:nth-child(1) {
  border-color: rgba(224, 184, 101, 0.44);
}

.submit-step:nth-child(2) {
  border-color: rgba(217, 122, 67, 0.36);
}

.submit-step:nth-child(3) {
  border-color: rgba(224, 184, 101, 0.3);
}

.step-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.submit-step h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.submit-list {
  max-width: 700px;
  margin: 0;
  text-align: left;
  color: var(--text-dim);
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-size: 0.93rem;
}

.submit-trust-note {
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  margin: 0 auto 16px;
}

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

.faq-item p {
  color: var(--text-dim);
  font-size: 0.93rem;
}

.footer {
  margin-top: 80px;
  padding: 28px 20px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.16), rgba(8, 9, 12, 0.96));
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow-x: auto;
  margin-top: 8px;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.footer-row a {
  color: rgba(246, 243, 234, 0.52);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 0.72rem;
  transition: color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
  opacity: 0.86;
}

.footer-row a:visited {
  color: rgba(246, 243, 234, 0.52);
}

.footer-row a:hover {
  color: rgba(246, 243, 234, 0.8);
  opacity: 1;
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(224, 184, 101, 0.95);
  outline-offset: 3px;
  border-radius: 10px;
}

.copyright {
  color: rgba(246, 243, 234, 0.56);
  font-size: 0.85rem;
  margin-top: 0;
  margin-bottom: 4px;
  text-align: center;
}

.last-updated {
  color: rgba(246, 243, 234, 0.62);
  font-size: 0.83rem;
  flex-shrink: 0;
}

.legal-page {
  min-height: 100vh;
  padding: 90px 0 60px;
}

.legal-shell {
  width: min(880px, 92vw);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 42px);
}

.legal-shell .feed-title {
  margin-bottom: 16px;
}

.legal-intro {
  color: var(--text-dim);
  margin-bottom: 26px;
}

.legal-block {
  margin-bottom: 24px;
}

.legal-block h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  margin-bottom: 8px;
}

.legal-block p {
  color: var(--text-dim);
  margin-bottom: 10px;
}

.legal-block a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.legal-back {
  margin-top: 14px;
}

.reveal,
.reveal-img {
  opacity: 0;
  transform: translateY(50px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.05s;
}

.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 960px) {
  .site-nav {
    justify-content: flex-start;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 10px;
  }

  .site-nav a {
    flex: 0 0 auto;
    scroll-snap-align: center;
    white-space: nowrap;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  section {
    padding: 76px 0;
  }

  .submit-steps {
    grid-template-columns: 1fr;
  }

  .trust-stats,
  .artist-cards,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .team-member,
  .team-member:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .about-us {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .about-us .team-member {
    width: 100%;
    margin-inline: auto;
  }

  .team-member img.team-img {
    width: min(86vw, 420px);
  }

  .team-text,
  .text-align-left,
  .text-align-right {
    text-align: center;
  }

  .about-story {
    text-align: center;
  }

  .team-text {
    gap: 8px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 76px;
    --scroll-offset: 112px;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    top: 8px;
    left: 6px;
    right: 6px;
    width: auto;
    transform: none;
  }

  .site-nav {
    gap: 6px;
    padding: 7px 8px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 8px;
  }

  .site-nav a {
    font-size: 0.74rem;
    padding: 7px 10px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 12vh;
    background-attachment: scroll;
  }

  .hero-logo {
    width: min(92vw, 620px);
  }

  .feed-title {
    margin-bottom: 20px;
  }

  .soundcloud-player-wrapper iframe {
    height: 460px;
  }

  .submit-set {
    padding: 36px 18px;
  }

  .btn {
    width: min(100%, 320px);
  }

  .btn-secondary {
    margin-left: 0;
  }

  .footer-row {
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-top: 6px;
    padding: 0 4px 2px;
  }

  .footer-row a {
    font-size: 0.66rem;
    letter-spacing: 0.01em;
  }

  .copyright {
    font-size: 0.78rem;
  }

  .back-to-top {
    font-size: 0.78rem;
    padding: 9px 12px;
  }

  .about-story p {
    text-align: justify;
    text-align-last: center;
    text-justify: inter-word;
    hyphens: auto;
  }

  .about-us .team-text p,
  .about-us .team-text.text-align-right p {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    hyphens: auto;
  }

  .about-us .team-text.text-align-left .team-name,
  .about-us .team-text.text-align-left p {
    text-align: justify;
    text-align-last: center;
  }

  .about-us .team-text.text-align-right .team-name,
  .about-us .team-text.text-align-right p {
    text-align: justify;
    text-align-last: center;
  }

  .about-us .team-name,
  .about-story h3 {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-img,
  .btn {
    transition: none;
    transform: none;
  }

  .hero-content,
  .elfsight-wrapper,
  .soundcloud-player-wrapper,
  .team-member,
  .submit-set,
  .section-glow,
  .back-to-top {
    transform: none;
  }

  body::after {
    animation: none;
  }
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1.5%, 1%);
  }
  50% {
    transform: translate(1%, -1.5%);
  }
  75% {
    transform: translate(1.5%, 0.8%);
  }
  100% {
    transform: translate(0, 0);
  }
}
