/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #cccccc;
  --gray2: #D9D9D9;
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

section {
  padding-bottom: 0 !important;
  scroll-margin-top: 102px;
}

body {
  font-family: 'League Spartan', sans-serif;
  color: var(--black);
  overflow-x: clip;
  position: relative;
  background: var(--black);
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.width-limiter {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  background: var(--gray);
  overflow-x: clip;
}

/* ─── Nav ─── */
nav {
  height: 102px;
  background: var(--black);
  color: var(--gray);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
}

nav>a {
  display: flex;
  align-self: stretch;
}

nav img {
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  object-position: center;
  object-fit: cover;
  background: var(--gray);
  padding: 0.25rem;
}

nav ul {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  list-style: none;
}

nav ul li {
  display: flex;
  transition: transform 0.3s ease;
}

nav ul li:hover {
  transform: translateY(-2px);
}

nav ul li a {
  display: flex;
  align-items: center;
  padding-block: 0.75rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

nav ul li a.active,
nav ul li a:hover {
  border-bottom-color: var(--gray);
}

/* ─── Hero ─── */
.hero {
  background: var(--gray);
  overflow: hidden;
  text-align: center;
  margin-bottom: -3.5rem;
  margin-top: 0;
}

.hero h1 {
  font-weight: 800;
  font-size: 12rem;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ─── Demo Reel (Home) ─── */
.demo-reel {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem 8rem;
}

.demo-reel video,
.demo-reel .reel-placeholder {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
}

.demo-reel .reel-placeholder {
  background: #111;
  border: 2px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--gray2);
}

.demo-reel .reel-placeholder .play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-reel .reel-placeholder .play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 32px;
  border-color: transparent transparent transparent var(--gray2);
  margin-left: 6px;
}

.demo-reel .reel-placeholder p {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
}

/* ─── Who ─── */
.who {
  background: black;
  color: white;
  display: flex;
}

.who .who-image {
  margin-inline: 2rem;
  margin-block: 3rem;
  flex-shrink: 0;
}

.who .who-image img {
  background: #cccccc;
  width: 400px;
  object-position: center;
  object-fit: cover;
}

.who .who-text {
  margin-block: 3rem;
  font-size: 28px;
  color: var(--gray2);
  padding-right: 1rem;
}

@media (min-width: 1300px) {
  .who .who-text {
    font-size: 40px;
  }
}

.who .who-text h2 {
  text-align: center;
}

.who .who-text p {
  color: var(--gray2);
}

/* ─── Shared titles ─── */
.title {
  position: relative;
  font-size: 4.75rem;
  font-weight: 600;
  margin-top: 4rem;
  text-transform: uppercase;
  color: var(--gray2);
  background-color: var(--black);
  padding-inline: 2rem;
  padding-top: 1rem;
  width: fit-content;
  text-wrap: balance;
}

.title-simple {
  font-size: 4.75rem;
  font-weight: 600;
  margin-top: 4rem;
  color: var(--gray2);
  background-color: var(--black);
  padding-inline: 2rem;
  padding-top: 1rem;
  width: fit-content;
}

/* ─── Character Design ─── */
.char-design {
  position: relative;
}

.char-design::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: url('bg.png') no-repeat center;
  background-size: cover;
}

.char-design blockquote {
  position: relative;
  font-size: 2rem;
  color: var(--black);
  margin-top: 1rem;
  padding-left: 4rem;
  width: 39rem;
  text-wrap: balance;
}

.char-design p {
  position: relative;
  font-size: 1.5rem;
  width: 37rem;
  text-align: right;
}

.char-design #image1 {
  width: 50%;
  height: auto;
}

.char-design #image2 {
  position: absolute;
  top: 0;
  right: -200px;
  width: calc(200px + min(50%, 845px));
  height: auto;
}

.char-design #image3 {
  width: 100%;
  height: auto;
}

.char-design .imagerow {
  display: flex;
  position: relative;
}

.char-design .imagerow #image4 {
  flex: 40;
}

.char-design .imagerow #image5 {
  flex: 60;
}

.char-design .characters {
  position: relative;
  background: var(--gray);
}

.char-design #overlap1 {
  margin-left: -5%;
  width: 700px;
  height: 800px;
}

.char-design #overlap2 {
  width: auto;
  height: 800px;
  position: absolute;
  left: 25%;
  top: 0;
  bottom: 0;
}

.char-design #overlap3 {
  width: auto;
  height: 800px;
  position: absolute;
  left: 45%;
  top: 0;
  bottom: 0;
}

.char-design #overlap4 {
  width: auto;
  height: 800px;
  position: absolute;
  left: 75%;
  top: 0;
  bottom: 0;
}

/* ─── Environment ─── */
#environment {
  background: var(--gray);
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--gray);
  margin-top: -3.5rem;
  position: relative;
  padding-bottom: 4rem;
}

.testimonials>img {
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  width: calc(100% - 80% + 8rem);
  z-index: 20;
}

.testimonials .block {
  display: flex;
  gap: 3rem;
  width: 80%;
  background: var(--black);
  color: var(--gray);
  padding-right: 4rem;
  padding-block: 1rem;
  margin-top: 5rem;
  font-weight: 600;
  font-size: min(4rem, 3.5vw);
  line-height: 1.2em;
  padding-left: 18rem;
  position: relative;
  height: 12rem;
}

.testimonials .block::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 1rem;
  height: 10rem;
  width: 10rem;
  background-color: var(--gray);
  background-image: url('Testimonial.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23rem;
}

/* ─── Rates ─── */
.rates {
  background: var(--gray);
  position: relative;
}

.rates .img-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 1200px;
  width: 50%;
  display: flex;
  justify-content: center;
}

.rates .img-container>img {
  height: 1200px;
  width: auto;
  z-index: 0;
}

.rates .grid {
  display: grid;
  position: relative;
  z-index: 10;
  grid-template-columns: 30% 1fr;
  padding: 4rem 0;
  height: 1200px;
  grid-template-rows: 3rem 1fr 1fr 1fr 1.25fr;
  margin-right: 3rem;
  margin-left: 20%;
}

.rates .grid h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 4rem;
  margin-left: 2rem;
}

.rates .grid>div:has(p) {
  align-content: end;
  text-align: end;
  font-size: 3rem;
  font-weight: 600;
}

.rates .grid .bb {
  border-bottom: solid 0.5rem black;
}

.rates .grid .bl {
  border-left: solid 0.5rem black;
}

.rates .grid>.bl:last-child {
  text-align: start;
  padding-left: 2rem;
}

/* ─── FAQs ─── */
#faqs {
  margin-top: -4rem;
  background: var(--black);
  padding-bottom: 3rem;
}

#faqs details {
  font-weight: 500;
  color: var(--gray);
  font-size: 3rem;
  margin-left: 3rem;
  margin-block: 3rem;
}

#faqs details:last-child {
  padding-bottom: 3rem;
}

#faqs details div {
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-left: 7rem;
}

/* ─── Contact ─── */
#contact {
  background: var(--black);
  margin-top: -3.5rem;
  padding-block: 2rem;
}

#contact .details {
  display: flex;
  justify-content: space-between;
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--gray);
  flex-wrap: wrap;
  margin-inline: 2rem;
  margin-top: 4rem;
}

/* ─── Socials ─── */
#socials {
  padding-block: 2rem;
  background: var(--black);
}

#socials .socials-list {
  display: flex;
  gap: 2rem;
  margin-left: 2rem;
  margin-bottom: 4rem;
  color: var(--gray);
  font-size: 2rem;
}

#socials .socials-list a {
  transition: all 0.3s ease;
}

#socials .socials-list a:hover {
  transform: translateY(-2px);
}