@charset "UTF-8";
/* * ===============================================================
 * Google Fontsの読み込み
 * CSSの最も早い段階で、この@import文を記述してください。
 * ===============================================================
 */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Noto+Sans+JP:wght@400;500&family=Shippori+Mincho:wght@700&display=swap");
/*
 * ===============================================================
 * Design System: "QUIET REBELLION"
 * 静かなる情熱を表現するための設計図
 * ===============================================================
 */
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 1rem;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #111111;
  padding: 0;
  margin: 0;
  background-color: #1a0d0d;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.section {
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(5px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

a {
  color: #FFFF00;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  opacity: 0.8;
}

#particle-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

#firefly-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

@-webkit-keyframes molten-glow {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff9900, 0 0 20px #ff9900, 0 0 25px #ff5e00, 0 0 30px #ff4500, 0 0 40px #ff3300;
  }
  50% {
    text-shadow: 0 0 7px #fff, 0 0 12px #fff, 0 0 20px #ffaa00, 0 0 25px #ffaa00, 0 0 30px #ff6a00, 0 0 35px #ff5a00, 0 0 45px #ff4500;
  }
  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff9900, 0 0 20px #ff9900, 0 0 25px #ff5e00, 0 0 30px #ff4500, 0 0 40px #ff3300;
  }
}

@keyframes molten-glow {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff9900, 0 0 20px #ff9900, 0 0 25px #ff5e00, 0 0 30px #ff4500, 0 0 40px #ff3300;
  }
  50% {
    text-shadow: 0 0 7px #fff, 0 0 12px #fff, 0 0 20px #ffaa00, 0 0 25px #ffaa00, 0 0 30px #ff6a00, 0 0 35px #ff5a00, 0 0 45px #ff4500;
  }
  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff9900, 0 0 20px #ff9900, 0 0 25px #ff5e00, 0 0 30px #ff4500, 0 0 40px #ff3300;
  }
}
.hero {
  height: 100vh;
  position: relative;
  color: #FFFFFF;
  padding: 2rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  width: 1200px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__headline {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  -webkit-animation: molten-glow 2.5s infinite linear;
          animation: molten-glow 2.5s infinite linear;
}

.hero__subtitle {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.1em;
  margin-top: 2rem;
  color: #FFFAF0;
  text-shadow: 0 0 15px rgba(255, 150, 0, 0.9);
}

.key-metric-section {
  background-color: #0a0a0a;
  text-align: center;
  padding: 6rem 1.5rem;
}

.key-metric__value {
  font-family: "Roboto", sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  display: block;
  background: linear-gradient(45deg, #fca311, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-filter: drop-shadow(0 0 15px rgba(252, 163, 17, 0.4));
          filter: drop-shadow(0 0 15px rgba(252, 163, 17, 0.4));
}

.key-metric__label, .key-metric__caption {
  color: #a0a0a0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.key-metric__caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.digest__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .digest__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.digest__image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.digest__image-wrapper .digest__image-bg {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e63946, #fca311);
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.digest__image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
.digest__image-wrapper:hover .digest__image-bg {
  -webkit-transform: translate(12px, 12px) rotate(3deg);
          transform: translate(12px, 12px) rotate(3deg);
}
.digest__image-wrapper:hover img {
  -webkit-transform: translate(-12px, -12px) rotate(-2deg);
          transform: translate(-12px, -12px) rotate(-2deg);
}

.digest-section {
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
}

.digest-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  -webkit-filter: brightness(0.4);
          filter: brightness(0.4);
}

.digest-content {
  max-width: 650px;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .digest-content {
    margin-left: 0;
    max-width: 100%;
  }
}

.digest__label {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  color: #D4AF37;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.digest__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.digest__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #AAAAAA;
  margin-bottom: 2.5rem;
}

.digest-content .anim-element {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.digest__text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.activities-section {
  background-color: #0a0a0a;
  padding: 6rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 4rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#fca311), color-stop(#e63946), to(#ffcc00));
  background: linear-gradient(90deg, #fca311, #e63946, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.activity-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.activity-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.activity-card:hover .activity-card__image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.activity-card:hover .activity-card__icon {
  color: #fca311;
}
.activity-card:hover .activity-card__title {
  color: #fca311;
}

.activity-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.activity-card__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.activity-card__overlay {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  width: 100%;
  padding: 2.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#0a0a0a));
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
}

.activity-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.activity-card__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.activity-card__description {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0b0;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 200;
  pointer-events: none;
}

.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .header__nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav li a {
    font-family: "Cormorant Garamond", "Shippori Mincho", serif;
    font-size: 0.9rem;
    font-weight: 100;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: 200;
  }
  .header__nav li a:hover {
    color: #D4AF37;
  }
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__nav ul {
    list-style: none;
    text-align: center;
  }
  .header__nav li {
    margin: 2rem 0;
  }
  .header__nav a {
    font-family: "Cormorant Garamond", "Shippori Mincho", serif;
    font-size: 2rem;
    color: #FFFFFF;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.header__logo-icon {
  height: 45px;
  width: auto;
}
.header__logo-text {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 1.2rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .header__logo {
    display: none;
  }
}

.header__logo-container {
  display: none;
}
@media (min-width: 768px) {
  .header__logo-container {
    display: block;
    padding: 0 2rem;
  }
}

.hamburger-button {
  display: none;
}
@media (max-width: 767px) {
  .hamburger-button {
    display: block;
    z-index: 10002;
  }
}

.hamburger-button {
  z-index: 130;
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
@media (min-width: 768px) {
  .hamburger-button {
    display: none;
  }
}
.hamburger-button__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger-button__line:nth-child(1) {
  top: 8px;
}
.hamburger-button__line:nth-child(2) {
  top: 19px;
}
.hamburger-button__line:nth-child(3) {
  bottom: 8px;
}
.hamburger-button.is-active .hamburger-button__line:nth-child(1) {
  top: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger-button.is-active .hamburger-button__line:nth-child(2) {
  opacity: 0;
}
.hamburger-button.is-active .hamburger-button__line:nth-child(3) {
  bottom: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer {
  padding: 5rem 0 2rem;
  background-color: #1E1E1E;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer__brand {
    margin-bottom: 2rem;
  }
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer__social a {
  display: inline-block;
  margin: 0 0.75rem;
}
.footer__social a svg {
  width: 24px;
  height: 24px;
  fill: #AAAAAA;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer__social a:hover svg {
  fill: #D4AF37;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 3rem;
}
.footer__nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer__nav a:hover {
  color: #D4AF37;
}
@media (max-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #AAAAAA;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-top: 80px;
  padding-bottom: 6rem;
  background-color: transparent;
  color: #fff;
}

.thanks-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 80px - 150px);
  text-align: center;
  padding: 4rem 1.5rem;
}
.thanks-section .section-title {
  background: -webkit-gradient(linear, left top, right top, from(#fca311), color-stop(#e63946), to(#ffcc00));
  background: linear-gradient(90deg, #fca311, #e63946, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.thanks-content {
  max-width: 600px;
  margin: 2rem auto;
  line-height: 1.8;
  font-size: 1.1rem;
}
.thanks-content p {
  margin-bottom: 1.5rem;
}

.thanks-actions {
  margin-top: 2.5rem;
}

@keyframes molten-glow {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff9900, 0 0 20px #ff9900, 0 0 25px #ff5e00, 0 0 30px #ff4500, 0 0 40px #ff3300;
  }
  50% {
    text-shadow: 0 0 7px #fff, 0 0 12px #fff, 0 0 20px #ffaa00, 0 0 25px #ffaa00, 0 0 30px #ff6a00, 0 0 35px #ff5a00, 0 0 45px #ff4500;
  }
  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff9900, 0 0 20px #ff9900, 0 0 25px #ff5e00, 0 0 30px #ff4500, 0 0 40px #ff3300;
  }
}
.hero {
  height: 100vh;
  position: relative;
  color: #FFFFFF;
  padding: 2rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  width: 1200px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__headline {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  -webkit-animation: molten-glow 2.5s infinite linear;
          animation: molten-glow 2.5s infinite linear;
}

.hero__subtitle {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.1em;
  margin-top: 2rem;
  color: #FFFAF0;
  text-shadow: 0 0 15px rgba(255, 150, 0, 0.9);
}

@-webkit-keyframes ticker-scroll {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes ticker-scroll {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.news-section {
  padding: 10px 0;
  color: #111111;
  overflow: hidden;
  background-color: rgba(255, 214, 0, 0.9);
}

.news-ticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.news-ticker__track {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: ticker-scroll 40s linear infinite;
          animation: ticker-scroll 40s linear infinite;
}
.news-ticker span {
  padding: 0 2rem;
}
.news-ticker span::after {
  content: "•";
  margin-left: 4rem;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 4rem;
}
.news-item img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
  border-radius: 50%;
}
.news-item a {
  color: #111111;
  text-decoration: none;
}

.works-section {
  background-color: transparent;
  margin: 30px 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
    gap: 1rem;
  }
}

.works-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.works-card--large {
  grid-row: 1/3;
}
@media (max-width: 768px) {
  .works-card--large {
    grid-row: auto;
  }
}
.works-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #FFFFFF;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
.works-card__overlay h3 {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.works-card__overlay p {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  max-width: 400px;
}
.works-card:hover .works-card__overlay h3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works-card:hover .works-card__overlay p {
  opacity: 1;
}

.digest-section {
  position: relative;
  background-color: transparent;
}

.digest-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.digest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 70vh;
}
@media (max-width: 768px) {
  .digest-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .digest-grid__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 768px) {
  .digest-grid__image-placeholder {
    display: none;
  }
}

.works-page-section .section-title--subsection {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 3rem;
  background: -webkit-gradient(linear, left top, right top, from(#fca311), color-stop(#e63946), to(#ffcc00));
  background: linear-gradient(90deg, #fca311, #e63946, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: #111111;
}

.influence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.influence-card {
  position: relative;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.influence-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.influence-card__value {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  color: #fca311;
  display: block;
  line-height: 1.2;
}
.influence-card__label {
  color: #a0a0a0;
}
.influence-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: underline;
}
.influence-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.influence-card:hover.youtube:hover {
  border-color: #FF0000;
}
.influence-card:hover.youtube:hover .influence-card__icon {
  color: #FF0000;
}
.influence-card:hover.tiktok:hover {
  border-color: #00f2ea;
  -webkit-box-shadow: 0 0 20px #ff0050, 0 0 20px #00f2ea;
          box-shadow: 0 0 20px #ff0050, 0 0 20px #00f2ea;
}
.influence-card:hover.tiktok:hover .influence-card__icon {
  color: #fff;
}
.influence-card:hover.instagram:hover {
  border-color: #E4405F;
}
.influence-card:hover.instagram:hover .influence-card__icon {
  color: #E4405F;
}

.works-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.work-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.work-card__image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.work-card__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.work-card:hover .work-card__image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.work-card__content {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.work-card__badge {
  display: inline-block;
  background-color: #fca311;
  color: #111;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.work-card__title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.work-card__description {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 1rem;
}

.influence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0 6rem;
}

.influence-card {
  background-color: #1E1E1E;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .works-gallery {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.works-gallery .work-item:nth-child(even) {
  margin-top: 15vh;
}

.work-item {
  position: relative;
}
.work-item__image {
  padding-bottom: 125%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.work-item__content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.work-item__content h3 {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 2rem;
}

.profile-section .page-title {
  text-align: center;
  margin-bottom: 64px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .profile-grid {
    gap: 24px;
  }
}
.profile-grid__image {
  grid-column: 2/span 4;
}
.profile-grid__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .profile-grid__image {
    grid-column: 1/-1;
    margin-bottom: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.profile-grid__text {
  grid-column: 7/span 5;
}
.profile-grid__text h2 {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.profile-grid__text .profile__subtitle {
  color: #888888;
  margin-bottom: 24px;
}
.profile-grid__text .profile__details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-grid__text .profile__details li {
  margin-bottom: 8px;
  color: #EAEAEA;
}
.profile-grid__text .profile__details li strong {
  color: #888888;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .profile-grid__text {
    grid-column: 1/-1;
    text-align: center;
  }
}

.identities-section .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.identity-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
.identity-feature:not(:last-child) {
  margin-bottom: 120px;
}
.identity-feature__image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.identity-feature__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.identity-feature img {
  width: 100%;
  border-radius: 8px;
}
.identity-feature__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin-bottom: 16px;
}
.identity-feature__title {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.identity-feature ul {
  padding-left: 20px;
}
.identity-feature ul li {
  margin-bottom: 8px;
}
.identity-feature--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .identity-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .identity-feature--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .identity-feature:not(:last-child) {
    margin-bottom: 80px;
  }
}

.history-section {
  background-color: #1F1F1F;
}
.history-section .section-title {
  text-align: center;
  margin-bottom: 64px;
}

.history-timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.history-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background-color: rgba(234, 234, 234, 0.15);
}
.history-timeline__item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 40px;
}
.history-timeline__item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: #D4AF37;
  border-radius: 50%;
  border: 2px solid #141414;
}
.history-timeline__item:last-child {
  padding-bottom: 0;
}
.history-timeline__item strong {
  color: #D4AF37;
  margin-right: 8px;
}

.contact-section {
  padding: 6rem 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info .page-title {
  text-align: left;
}
.contact-info .section-briefing {
  margin: 1.5rem 0;
  text-align: left;
}

.contact-info__social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}
.contact-info__social p {
  color: #a0a0a0;
  margin-bottom: 1rem;
}
.contact-info__social a {
  margin-right: 1.5rem;
  font-size: 1.8rem;
  color: #fff;
}
.contact-info__social a:hover {
  color: #fca311;
}

.contact-form-wrapper {
  background-color: #1a1a1a;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #333;
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #fff;
}
label .required {
  color: #e63946;
  margin-left: 0.25rem;
}

input[type=text],
input[type=email],
textarea,
select {
  width: 100%;
  padding: 1rem;
  background-color: #111;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #fca311;
  -webkit-box-shadow: 0 0 15px rgba(252, 163, 17, 0.3);
          box-shadow: 0 0 15px rgba(252, 163, 17, 0.3);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  color: #fca311;
}
.select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-group--submit {
  text-align: right;
  margin-top: 2rem;
}
.form-group--submit .btn {
  width: 100%;
}
@media (min-width: 600px) {
  .form-group--submit .btn {
    width: auto;
  }
}

.company-profile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.company-profile__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-filter: brightness(0.4);
          filter: brightness(0.4);
  z-index: 1;
}

.company-profile__content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .company-profile__content {
    padding: 2rem;
  }
}

.company-profile__name {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.company-profile__details {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem 2rem;
}
.company-profile__details dt {
  font-weight: 700;
  color: #AAAAAA;
}
.company-profile__details dd ul {
  list-style: circle;
}
.company-profile__details dd ul li {
  margin-bottom: 0.5rem;
}
.company-profile__details dd a {
  color: #D4AF37;
  word-break: break-all;
}

.anim-element {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}