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

body {
  font-family: Outfit, sans-serif;
  background-color: #ffb181;
  color: #e1e1e1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden
}

::selection {
  background: #ffb181;
  color: #111
}

::-moz-selection {
  background: #ffb181;
  color: #111
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #e1e1e1 !important;
  text-shadow: 1px 1px 1px #000
}

.navbar {
  width: 100%;
  background: transparent;
  padding: .5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: none;
  transform: translateY(0);
  transition: transform .35s, background .35s, box-shadow .35s
}

.navbar.scrolled {
  background: rgba(0, 0, 0, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .5)
}

.navbar.nav-hidden {
  transform: translateY(-100%)
}

.logo img {
  height: 40px;
  transition: transform .3s;
  cursor: pointer;
  display: block
}

.logo img:hover {
  transform: scale(1.1)
}

.logo img.clicked {
  transform: scale(1.5)
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem
}

.dropbtn,
nav a {
  color: #e1e1e1;
  text-shadow: 1px 1px 2px #000;
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .8rem;
  background: 0 0;
  border: none;
  cursor: pointer;
  font-family: Outfit, sans-serif;
  transition: transform .3s, color .3s
}

.dropbtn:hover,
nav a:hover {
  color: #ffb181;
  transform: scale(1.05)
}

.dropdown {
  position: relative
}

.dropbtn {
  position: relative;
  padding-right: 26px
}

.dropbtn::before,
.dropbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 2px;
  background: #ffb181;
  border-radius: 1px;
  transition: transform .3s ease
}

.dropbtn::before {
  right: 11px;
  transform-origin: right center;
  transform: translateY(-50%) rotate(33deg)
}

.dropbtn::after {
  right: 3px;
  transform-origin: left center;
  transform: translateY(-50%) rotate(-33deg)
}

.dropdown:hover .dropbtn::before {
  transform: translateY(-50%) rotate(-33deg)
}

.dropdown:hover .dropbtn::after {
  transform: translateY(-50%) rotate(33deg)
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  min-width: 210px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(.97);
  transform-origin: top center;
  transition: opacity .2s ease, transform .2s ease, visibility .2s
}

.dropdown-content a {
  display: block;
  padding: 11px 18px;
  color: #e1e1e1;
  text-shadow: 1px 1px 2px #000;
  text-decoration: none;
  transition: background .18s ease, color .18s ease
}

.dropdown-content a:hover {
  background-color: #222;
  color: #ffb181
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -12px
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem
}

:root {
  --gfm-peach: #ffb181;
  --gfm-peach-deep: #ff9657;
  --gfm-green: #00bf63;
  --gfm-glow: #9affc4;
  --gfm-ink: #0a0a0a;
  --gfm-card: #0e0e0e;
  --gfm-line: rgba(0, 0, 0, .12)
}

.cine-intro {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  transition: opacity .7s
}

.cine-intro.hide {
  opacity: 0;
  pointer-events: none
}

.cine-intro-msg {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .7)
}

body.cine-loading {
  overflow: hidden;
  height: 100%
}

@keyframes cineGrad {

  0%,
  100% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes cinePulse {

  0%,
  100% {
    transform: scale(.85)
  }

  50% {
    transform: scale(1)
  }
}

.cine {
  background: #000 !important;
  color: #e8e8e8
}

.cine-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.cine-hero-bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  background-size: cover;
  background-position: center
}

.cine-hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1
}

.cine-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 900px
}

.cine-hero-logo {
  width: auto;
  height: clamp(90px, 16vh, 150px);
  max-width: 70vw;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, .35));
  margin-bottom: 1.5rem
}

.cine-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  color: #fff !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .7)
}

.cine-hero .sub {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 300;
  color: #cfcfcf
}

.cine-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem
}

.cine-cue span {
  width: 1px;
  height: 30px;
  background: linear-gradient(#fff, transparent);
  animation: 2s ease-in-out infinite cineCue
}

@keyframes cineCue {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.cine-band {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.4rem, 5vw, 3rem)
}

.cine-panel {
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 3.4rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5)
}

.cine-eyebrow {
  font-size: .62rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gfm-peach);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem
}

.cine-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gfm-peach)
}

.cine-lede {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #fff
}

.cine-lede b {
  font-weight: 700;
  color: var(--gfm-peach)
}

.cine-copy {
  margin-top: 1.4rem;
  max-width: 64ch;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #cfcfcf;
  font-weight: 300
}

.cine-copy a {
  color: var(--gfm-peach);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s
}

.cine-copy a:hover {
  border-bottom-color: var(--gfm-peach)
}

.cine-h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  margin: 2.6rem 0 .6rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .7rem
}

.cine-h2::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gfm-peach);
  border-radius: 2px
}

.cine-pill {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #15100c;
  background: var(--gfm-peach);
  padding: .34rem .8rem;
  border-radius: 30px;
  font-weight: 700;
  text-shadow: none
}

.cine-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem
}

.cine-tile {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  transition: transform .3s, box-shadow .3s
}

.cine-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4)
}

.cine-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  color: #fff
}

.cine-tile p {
  font-size: .95rem;
  line-height: 1.65;
  color: #b3b3b3;
  font-weight: 300;
  margin: 0
}

/* ===== Featured rotator ===== */
.feat-rotator {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden
}

.feat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.feat-slide.active {
  opacity: 1
}

.feat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0
}

.feat-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .85))
}

.feat-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1.5rem
}

.feat-inner .tag {
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gfm-peach);
  margin-bottom: 1rem
}

.feat-inner h2 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .8rem
}

.feat-inner p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #e7e7e7;
  font-weight: 300;
  margin: 0 0 1.6rem
}

.feat-inner .btn {
  display: inline-block;
  text-decoration: none;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: .85rem 1.7rem;
  border-radius: 30px;
  transition: .3s
}

.feat-inner .btn:hover {
  background: var(--gfm-peach);
  border-color: var(--gfm-peach);
  color: #15100c
}

.feat-next,
.feat-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .3s
}

.feat-next:hover,
.feat-prev:hover {
  background: rgba(0, 0, 0, .75)
}

.feat-prev {
  left: 1.5rem
}

.feat-next {
  right: 1.5rem
}

.feat-dots { display: none }

/* ===== Rotator controls: pause + circular-progress dots ===== */
.feat-controls {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .6rem;
  white-space: nowrap;
  background: rgba(30, 30, 30, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .4rem .8rem;
  border-radius: 20px
}

.feat-pause {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color .2s
}

.feat-pause:hover {
  color: var(--gfm-peach)
}

.feat-nav-dots {
  display: flex;
  align-items: center;
  gap: .5rem
}

.feat-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  flex-shrink: 0
}

/* fill driven by JS inline style via requestAnimationFrame */

/* ===== end rotator controls ===== */

.cine-green {
  background: var(--gfm-ink) !important;
  color: #e8e8e8
}

.cine-green .navbar {
  background: rgba(10, 10, 10, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px)
}

.cine-foot {
  background: #111;
  color: #9a9a9a;
  padding: 1.8rem clamp(1.4rem, 5vw, 3rem);
  font-size: .82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, .2)
}

.cine-foot .foot-left {
  color: #9a9a9a
}

.cine-foot .foot-left a {
  color: var(--gfm-peach);
  text-decoration: none
}

.cine-foot .foot-right {
  display: flex;
  gap: 1.6rem
}

.cine-foot .foot-right a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color .25s
}

.cine-foot .foot-right a:hover {
  color: var(--gfm-peach)
}

@media(max-width:560px) {
  .cine-foot {
    flex-direction: column;
    text-align: center
  }

  .cine-foot .foot-right {
    justify-content: center
  }
}

.reveal.io {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s, transform .7s
}

.reveal.io.in {
  opacity: 1;
  transform: none
}

/* ===== Hamburger + Mobile Nav ===== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  z-index: 51
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e1e1e1;
  border-radius: 1px;
  transition: transform .3s, opacity .3s, width .3s
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0 }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .97);
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s
}

.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all
}

.nav-mobile-menu > a {
  color: #e1e1e1;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s;
  font-family: Outfit, sans-serif
}

.nav-mobile-menu > a:hover { color: #ffb181 }

.mobile-dropdown { display: flex; flex-direction: column }

.mobile-dropbtn {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #e1e1e1;
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: .85rem 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: color .2s
}

.mobile-dropbtn:hover { color: #ffb181 }

.mobile-arrow { transition: transform .25s; font-style: normal }
.mobile-dropdown.open .mobile-arrow { transform: rotate(90deg) }

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.mobile-dropdown.open .mobile-dropdown-content { display: flex }

.mobile-dropdown-content a {
  color: #a0a0a0;
  text-decoration: none;
  font-family: Outfit, sans-serif;
  font-size: .95rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .2s
}

.mobile-dropdown-content a:last-child { border-bottom: none }
.mobile-dropdown-content a:hover { color: #ffb181 }

.mobile-divider {
  height: 1px;
  background: rgba(255, 255, 255, .18);
  margin: .6rem 0
}

@media (max-width: 768px) {
  .nav-center,
  .nav-right { display: none }
  .nav-hamburger { display: flex }
}

/* ===== end hamburger ===== */

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important
  }
}

body.loading {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%
}

.cine-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(120deg, #111, #222, #111);
  background-size: 400% 400%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: 1.5s ease-in-out infinite gradientMotion
}

.cine-intro .logo-mask {
  width: 150px;
  transform-origin: center 45%;
  pointer-events: none;
  opacity: 1
}

.cine-intro .loading-text {
  position: absolute;
  bottom: 30%;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 2px
}

@keyframes gradientMotion {

  0%,
  100% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.fade-to-black {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #000;
  opacity: 0;
  pointer-events: none
}

html.snap {
  scroll-snap-type: none
}

html.snap .cine-band,
html.snap .cine-foot,
html.snap .cine-hero,
html.snap .feat-rotator {
  scroll-snap-align: start
}

.cine-band {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.cine-hero.land-anim .cine-hero-bg {
  background: linear-gradient(120deg, #2a1a12, #5a3520, #1a1a1a, #3a2418, #2a1a12);
  background-size: 400% 400%;
  animation: 14s ease-in-out infinite landGrad
}

@keyframes landGrad {

  0%,
  100% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.cine-hero.land-anim h1 {
  color: #fff !important;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .7)
}