@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

@font-face {
  font-family: "Butler";
  src: url("fonts/Butler_Ultra_Light.woff") format("woff");
  font-style: normal;
  font-weight: 250;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #020204;
  --black-soft: #08070b;
  --panel: rgba(12, 10, 17, 0.78);
  --text: #f7f1ff;
  --muted: #aaa0b7;
  --line: rgba(247, 241, 255, 0.15);
  --pink: #ff2d95;
  --violet: #8a43ff;
  --heading-gradient: linear-gradient(115deg, #ff2d95 0%, #ff72c2 42%, #8a43ff 100%);
  --radius: 8px;
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(255, 45, 149, 0.14), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(138, 67, 255, 0.14), transparent 28%);
  background-size: 100% 4px, auto, auto;
  mix-blend-mode: screen;
}

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

img,
video,
iframe {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-logo {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 35;
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  transition: filter 220ms ease, opacity 220ms ease;
}

.site-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: logo-breathe 3.8s ease-in-out infinite;
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-logo:hover,
.site-logo:focus-visible {
  filter: drop-shadow(0 0 22px rgba(255, 45, 149, 0.42));
  outline: none;
}

.site-logo:hover img,
.site-logo:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.14);
}

.site-logo:active,
.button:active,
.donate-button:active,
.arrow-button:active,
.video-card:active {
  transform: translateY(1px);
}

.slide {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  scroll-snap-align: start;
  scroll-margin-top: 0;
  background: var(--black);
}

.hero-slide,
.project-slide,
.booking-slide {
  display: grid;
}

.hero-slide {
  place-items: center;
}

.project-slide {
  place-items: center;
}

.hero-video,
.section-image {
  position: absolute;
  inset: -9% 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}

.hero-video {
  filter: saturate(1.1) contrast(1.04) brightness(0.72);
}

.hero-tint,
.section-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 4, 0.9), rgba(2, 2, 4, 0.32) 52%, rgba(2, 2, 4, 0.75)),
    linear-gradient(0deg, rgba(2, 2, 4, 0.78), rgba(2, 2, 4, 0.18) 55%, rgba(2, 2, 4, 0.36));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 118px 34px 74px;
  text-align: center;
  will-change: transform;
}

.kicker {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 24px;
  font-weight: 200;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Butler", "Times New Roman", serif;
  font-size: 6.1rem;
  line-height: 0.92;
  color: var(--text);
}

h2 {
  font-family: "Butler", "Times New Roman", serif;
  font-size: 4.9rem;
  line-height: 0.92;
  color: transparent;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button,
.donate-button,
.youtube-channel-button {
  min-width: 280px;
  min-height: 70px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 38px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  color: white;
  font-weight: 600;
  font-size: 1.04rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 20px 64px rgba(255, 45, 149, 0.18);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, opacity 260ms ease, background 260ms ease;
}

.button::after,
.donate-button::after,
.youtube-channel-button::after {
  content: "";
  position: absolute;
  inset: -58% -44%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 26%, rgba(255, 210, 237, 0.78) 43%, rgba(255, 45, 149, 0.58) 54%, transparent 74%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  transition: transform 2600ms cubic-bezier(0.19, 0.72, 0.18, 1);
}

.button:hover,
.button:focus-visible,
.donate-button:hover,
.donate-button:focus-visible,
.youtube-channel-button:hover,
.youtube-channel-button:focus-visible {
  box-shadow: 0 24px 74px rgba(138, 67, 255, 0.26);
  transform: none;
  outline: none;
}

.button:hover::after,
.button:focus-visible::after,
.donate-button:hover::after,
.donate-button:focus-visible::after,
.youtube-channel-button:hover::after,
.youtube-channel-button:focus-visible::after {
  transform: translateX(120%);
}

.button-ghost {
  border-color: rgba(247, 241, 255, 0.34);
  background: rgba(2, 2, 4, 0.08);
  box-shadow: none;
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 45, 149, 0.7);
  background: rgba(255, 45, 149, 0.08);
  box-shadow: 0 24px 74px rgba(255, 45, 149, 0.2);
}

.videos-slide {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 88px 28px 58px;
}

.hero-content .kicker {
  position: relative;
  top: -18px;
  margin-top: -4px;
  margin-bottom: 34px;
}

.meta-line {
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.videos-slide .meta-line {
  color: var(--text);
}

.slide-heading {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  will-change: transform;
}

.slide-heading h2 {
  max-width: 760px;
  margin-bottom: 4px;
  font-family: "Butler", "Times New Roman", serif;
  font-size: 4.9rem;
  line-height: 0.92;
  font-weight: 200;
}

.youtube-channel-button {
  display: flex;
  width: max-content;
  z-index: 2;
  gap: 10px;
  margin: 26px auto 0;
}

.youtube-channel-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.youtube-channel-button .youtube-icon rect {
  fill: rgba(255, 255, 255, 0.94);
}

.youtube-channel-button .youtube-icon path {
  fill: var(--pink);
}

.video-stage {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin: 0 auto;
  will-change: transform;
}

.videos-image {
  filter: saturate(1.02) contrast(1.05) brightness(0.54);
}

.videos-shade {
  background:
    linear-gradient(0deg, rgba(2, 2, 4, 0.9), rgba(2, 2, 4, 0.52), rgba(2, 2, 4, 0.82)),
    radial-gradient(circle at 50% 28%, rgba(255, 45, 149, 0.16), transparent 32%);
}

.carousel-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.arrow-button {
  width: 44px;
  height: 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 241, 255, 0.04);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.arrow-button::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
}

.arrow-next::before {
  left: 13px;
  transform: rotate(225deg);
}

.arrow-button:hover,
.arrow-button:focus-visible {
  border-color: rgba(247, 241, 255, 0.44);
  background: rgba(247, 241, 255, 0.1);
  outline: none;
}

.arrow-button:disabled {
  opacity: 0.28;
  cursor: default;
}

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

.video-card {
  aspect-ratio: 16 / 9;
  min-height: 0;
  position: relative;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-soft);
  cursor: pointer;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
  transition: transform 360ms ease, filter 360ms ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(2, 2, 4, 0.94), rgba(2, 2, 4, 0.22) 66%),
    radial-gradient(circle at 18% 8%, rgba(255, 45, 149, 0.22), transparent 34%);
}

.video-card:hover,
.video-card:focus-visible,
.video-card.is-active {
  border-color: rgba(255, 45, 149, 0.62);
  box-shadow: 0 20px 70px rgba(138, 67, 255, 0.16);
  transform: translateY(-4px);
  outline: none;
}

.video-card:hover::before,
.video-card:focus-visible::before,
.video-card.is-active::before {
  filter: saturate(1.25) contrast(1.08);
  transform: scale(1.08);
}

.video-card h3 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.video-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.center-copy {
  position: relative;
  z-index: 2;
  width: min(830px, 100%);
  margin: 0 auto;
  padding: 84px 28px;
  text-align: center;
  will-change: transform;
}

.center-copy p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  color: rgba(247, 241, 255, 0.76);
}

.project-image {
  opacity: 0;
  filter: saturate(1.04) contrast(1.08) brightness(0.62);
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.project-image-1 {
  animation-name: project-photo-one;
}

.project-image-2 {
  animation-name: project-photo-two;
}

.project-image-3 {
  animation-name: project-photo-three;
}

.project-shade {
  background:
    linear-gradient(90deg, rgba(2, 2, 4, 0.78), rgba(2, 2, 4, 0.36), rgba(2, 2, 4, 0.66)),
    linear-gradient(0deg, rgba(2, 2, 4, 0.66), rgba(2, 2, 4, 0.16) 52%, rgba(2, 2, 4, 0.44));
}

.project-copy {
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.72);
}

.project-copy h2 {
  font-size: 4.2rem;
  background-image: linear-gradient(115deg, #ff1493 0%, #ff68c3 42%, #a855ff 100%);
}

.project-copy p {
  color: rgba(255, 255, 255, 0.97);
}

.project-gallery {
  width: min(360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.project-gallery button {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-gallery button:hover,
.project-gallery button:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery button:nth-child(2) img {
  transform: scale(1.28);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 32px;
}

.image-lightbox.is-open {
  display: grid;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 2, 4, 0.92);
  cursor: zoom-out;
}

.lightbox-image {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1500px);
  max-height: 88svh;
  object-fit: contain;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 9px;
  width: 22px;
  height: 1px;
  background: #fff;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  opacity: 0.65;
  outline: none;
}

.donate-button {
  width: auto;
  min-height: 70px;
  font-size: 1.04rem;
}

.booking-slide {
  align-items: center;
}

.booking-image {
  object-position: center 82%;
  filter: saturate(1.03) contrast(1.05) brightness(0.56);
}

.booking-shade {
  background:
    linear-gradient(90deg, rgba(2, 2, 4, 0.72), rgba(2, 2, 4, 0.46), rgba(2, 2, 4, 0.66)),
    radial-gradient(circle at 68% 30%, rgba(138, 67, 255, 0.22), transparent 34%);
}

.booking-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 78px 24px 140px;
  will-change: transform;
}

.info-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(247, 241, 255, 0.14);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(2, 2, 4, 0.42);
  backdrop-filter: blur(10px);
}

.info-panel h2 {
  font-size: 4.2rem;
}

.info-panel p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(247, 241, 255, 0.78);
  text-align: left;
}

.info-panel .button,
.info-panel .donate-button {
  width: 50%;
  min-width: 240px;
  max-width: 320px;
  align-self: flex-start;
  margin-top: auto;
}

.donation-progress {
  width: 100%;
  margin: 4px 0 28px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  color: rgba(247, 241, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.progress-track {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 241, 255, 0.12);
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10%;
  min-width: 16px;
  border-radius: inherit;
  background: var(--heading-gradient);
  box-shadow: 0 0 22px rgba(255, 45, 149, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  animation: progress-grow 1800ms 420ms cubic-bezier(0.16, 0.78, 0.22, 1) forwards;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 30px;
  border-top: 1px solid rgba(247, 241, 255, 0.1);
  background: var(--black);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 500;
  scroll-snap-align: end;
  scroll-snap-stop: always;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer a {
  color: var(--pink);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ff72c2;
  outline: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, 0.82);
  backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100svh - 44px);
  overflow: auto;
  border: 1px solid rgba(247, 241, 255, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(138, 67, 255, 0.28), transparent 34%),
    rgba(10, 9, 14, 0.96);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.5);
}

.modal-panel h2 {
  margin-bottom: 22px;
  font-size: 2.4rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247, 241, 255, 0.18);
  border-radius: 50%;
  background: rgba(247, 241, 255, 0.04);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 15px;
  height: 2px;
  background: var(--text);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(247, 241, 255, 0.42);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(247, 241, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(2, 2, 4, 0.78);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

input {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(170, 160, 183, 0.66);
}

input:focus,
textarea:focus {
  border-color: rgba(255, 45, 149, 0.72);
  background: rgba(2, 2, 4, 0.92);
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: #ff77bd;
  font-size: 0.86rem;
}

.form-error.is-success {
  color: #f7f1ff;
}

@media (max-width: 980px) {
  html {
    scroll-snap-type: none;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .slide-heading {
    display: block;
  }

  .slide-heading h2 {
    font-size: 3.5rem;
  }

  .video-carousel {
    grid-template-columns: 1fr;
  }

  .booking-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-logo {
    top: 16px;
    left: 16px;
    width: 58px;
    height: 58px;
  }

  .site-logo img {
    width: 58px;
    height: 58px;
  }

  .hero-content,
  .booking-content,
  .videos-slide {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-content .kicker {
    font-size: 0.74rem;
  }

  .center-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .project-gallery {
    width: min(300px, 100%);
    gap: 6px;
  }

  .image-lightbox {
    padding: 18px;
  }

  .button,
  .donate-button,
  .youtube-channel-button {
    width: 100%;
  }

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

  .site-footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@keyframes progress-grow {
  to {
    transform: scaleX(1);
  }
}

@keyframes project-photo-one {
  0%,
  27% {
    opacity: 1;
  }

  36%,
  91% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes project-photo-two {
  0%,
  27% {
    opacity: 0;
  }

  36%,
  60% {
    opacity: 1;
  }

  69%,
  100% {
    opacity: 0;
  }
}

@keyframes project-photo-three {
  0%,
  60% {
    opacity: 0;
  }

  69%,
  91% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.13);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
