        /* ========== Reset & Base ========== */
        *, *::before, *::after {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      html {
          scroll-behavior: smooth;
          font-size: 16px;
      }

      body {
        font-family: "MiSans", sans-serif;
        font-weight: 400;

          color: #1a1a1a;
          background: #fff;
          overflow-x: hidden;
          -webkit-font-smoothing: antialiased;
      }

      *{
        font-family: "MiSans", sans-serif;
        font-weight: 400;
      }

      a {
          text-decoration: none;
          color: inherit;
          cursor: pointer;
      }

      ul {
          list-style: none;
      }

      img {
          max-width: 100%;
          display: block;
      }

      /* ========== Typography ========== */
      .font-serif {
        font-family: "MiSans", sans-serif;
      }

      .font-sans {
        font-family: "MiSans", sans-serif;
      }

      /* ========== Header Navigation ========== */
      .header {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 1000;
          padding: 0 60px;
          height: 80px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .header--transparent {
          background: transparent;
      }

      .header--solid {
          background: rgba(255, 255, 255, 0.5);
          backdrop-filter: blur(5px);
          /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
      }

      .header--transparent .header__logo,
      .header--transparent .nav__link {
          color: #fff;
      }

      .header--solid .header__logo,
      .header--solid .nav__link {
          color: #000;
      }

      .header__logo {
          display: flex;
          align-items: center;
          transition: opacity 0.3s ease;
      }

      .header__logo img {
          height: 50px;
          width: auto;
          object-fit: contain;
      }

      .nav {
          display: flex;
          align-items: center;
          gap: 40px;
      }

      .nav__link {
        font-family: "MiSans", sans-serif;
          font-size: 13px;
          font-weight: 400;
          letter-spacing: 2px;
          text-transform: uppercase;
          transition: color 0.5s ease, opacity 0.3s ease;
          position: relative;
          padding: 4px 0;
      }

      .nav__link::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 1px;
          background: currentColor;
          transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .nav__link:hover::after {
          width: 100%;
      }

      .nav__link:hover {
          opacity: 0.7;
      }

      .lang-toggle {
          display: flex;
          align-items: center;
          gap: 8px;
          margin-left: 20px;
          padding-left: 20px;
          border-left: 1px solid rgba(255, 255, 255, 0.3);
      }

      .header--solid .lang-toggle {
          border-left-color: rgba(0, 0, 0, 0.15);
      }

      .lang-toggle__btn {
        font-family: "MiSans", sans-serif;
          font-size: 12px;
          font-weight: 400;
          letter-spacing: 1px;
          color: inherit;
          background: transparent;
          border: none;
          cursor: pointer;
          padding: 4px 8px;
          transition: all 0.3s ease;
          opacity: 1;
      }

      .lang-toggle__btn.active {
          opacity: 1;
          font-weight: 500;
      }

      .lang-toggle__btn:hover {
          opacity: 1;
      }

      .header__menu-btn {
          display: none;
          width: 32px;
          height: 24px;
          position: relative;
          cursor: pointer;
          z-index: 1001;
      }

      .header__menu-btn span {
          display: block;
          width: 100%;
          height: 2px;
          background: #fff;
          position: absolute;
          left: 0;
          transition: all 0.3s ease;
      }

      .header--solid .header__menu-btn span {
          background: #1a1a1a;
      }

      .header__menu-btn span:nth-child(1) { top: 0; }
      .header__menu-btn span:nth-child(2) { top: 10px; }
      .header__menu-btn span:nth-child(3) { top: 20px; }

      .header__menu-btn.active span:nth-child(1) {
          top: 10px;
          transform: rotate(45deg);
      }

      .header__menu-btn.active span:nth-child(2) {
          opacity: 0;
      }

      .header__menu-btn.active span:nth-child(3) {
          top: 10px;
          transform: rotate(-45deg);
      }

      /* ========== Mobile Menu ========== */
      .mobile-menu {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100vh;
          background: #0a0a0a;
          z-index: 999;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 30px;
          opacity: 0;
          visibility: hidden;
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .mobile-menu.active {
          opacity: 1;
          visibility: visible;
      }

      .mobile-menu__link {
        font-family: "MiSans", sans-serif;
          font-size: 24px;
          color: #fff;
          letter-spacing: 4px;
          text-transform: uppercase;
          transition: opacity 0.3s ease;
      }

      .mobile-menu__link:hover {
          opacity: 0.6;
      }

      /* ========== Hero Video Section ========== */
      .hero {
          position: relative;
          width: 100%;
          height: 100vh;
          overflow: hidden;
      }

      .hero__video {
          position: absolute;
          top: 50%;
          left: 50%;
          min-width: 100%;
          min-height: 100%;
          width: auto;
          height: auto;
          transform: translate(-50%, -50%);
          object-fit: cover;
      }

      .hero__overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(
              to bottom,
              rgba(0, 0, 0, 0.3) 0%,
              rgba(0, 0, 0, 0.1) 40%,
              rgba(0, 0, 0, 0.4) 100%
          );
      }

      .hero__content {
          position: absolute;
          bottom: 120px;
          left: 60px;
          z-index: 10;
      }

      .hero__subtitle {
        font-family: "MiSans", sans-serif;
          font-size: 12px;
          font-weight: 300;
          letter-spacing: 6px;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 20px;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s ease 0.5s forwards;
      }

      .hero__title {
        font-family: "MiSans", sans-serif;
          font-size: 30px;
          font-weight: 500;
          color: #fff;
          letter-spacing: 4px;
          line-height: 1.1;
          margin-bottom: 30px;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s ease 0.8s forwards;
      }

      .hero__title em {
          font-style: italic;
          font-weight: 400;
      }

      .hero__cta {
          display: inline-flex;
          align-items: center;
          gap: 12px;
          font-family: "MiSans", sans-serif;
          font-size: 13px;
          font-weight: 400;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #fff;
          padding: 16px 40px;
          border: 1px solid rgba(255, 255, 255, 0.4);
          transition: all 0.4s ease;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s ease 1.1s forwards;
      }

      .hero__cta:hover {
          background: #fff;
          color: #1a1a1a;
          border-color: #fff;
      }

      .hero__cta-arrow {
          width: 20px;
          height: 1px;
          background: currentColor;
          position: relative;
          transition: width 0.3s ease;
      }

      .hero__cta-arrow::after {
          content: '';
          position: absolute;
          right: 0;
          top: -3px;
          width: 8px;
          height: 8px;
          border-right: 1px solid currentColor;
          border-top: 1px solid currentColor;
          transform: rotate(45deg);
      }

      .hero__cta:hover .hero__cta-arrow {
          width: 30px;
      }

      .hero__scroll-indicator {
          position: absolute;
          bottom: 40px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 10;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 8px;
          opacity: 0;
          animation: fadeIn 1s ease 1.5s forwards;
      }

      .hero__scroll-text {
        font-family: "MiSans", sans-serif;
          font-size: 10px;
          letter-spacing: 4px;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.5);
      }

      .hero__scroll-line {
          width: 1px;
          height: 40px;
          background: rgba(255, 255, 255, 0.3);
          position: relative;
          overflow: hidden;
      }

      .hero__scroll-line::after {
          content: '';
          position: absolute;
          top: -100%;
          left: 0;
          width: 100%;
          height: 100%;
          background: #fff;
          animation: scrollLine 2s ease infinite;
      }

      /* ========== Section Common ========== */
      .section {
          padding: 120px 60px;
      }

      .section--dark {
          background: #0a0a0a;
          color: #fff;
      }

      .section--light {
          background: #f8f6f3;
          color: #1a1a1a;
      }

      .section--white {
          background: #fff;
          color: #1a1a1a;
      }

      .section__header {
          margin-bottom: 80px;
      }

      .section__label {
        font-family: "MiSans", sans-serif;
          font-size: 11px;
          font-weight: 300;
          letter-spacing: 6px;
          text-transform: uppercase;
          opacity: 0.5;
          margin-bottom: 20px;
      }

      .section__title {
        font-family: "MiSans", sans-serif;
          font-size: 48px;
          font-weight: 500;
          letter-spacing: 2px;
          line-height: 1.2;
      }

      .section__title em {
          font-style: italic;
      }

      .section__divider {
          width: 60px;
          height: 1px; 
          background: currentColor;
          opacity: 0.3;
          margin-top: 30px;
      }

      /* ========== Brand Story Section ========== */
      .brand-story {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 80px;
          align-items: center;
      }

      .brand-story__image {
          position: relative;
          overflow: hidden;
          aspect-ratio: 3/4;
      }

      .brand-story__image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .brand-story__image:hover img {
          transform: scale(1.03);
      }

      .brand-story__text {
          padding: 40px 0;
      }

      .brand-story__quote {
        font-family: "MiSans", sans-serif;
          font-size: 28px;
          font-weight: 400;
          line-height: 1.6;
          margin-bottom: 40px;
          font-style: italic;
      }

      .brand-story__desc {
        font-family: "MiSans", sans-serif;
          font-size: 15px;
          font-weight: 300;
          line-height: 2;
          opacity: 0.7;
          margin-bottom: 40px;
      }

      .brand-story__link {
          display: inline-flex;
          align-items: center;
          gap: 12px;
          font-family: "MiSans", sans-serif;
          font-size: 13px;
          font-weight: 400;
          letter-spacing: 3px;
          text-transform: uppercase;
          transition: opacity 0.3s ease;
      }

      .brand-story__link:hover {
          opacity: 0.6;
      }

      .brand-story__link-arrow {
          width: 30px;
          height: 1px;
          background: currentColor;
          position: relative;
      }

      .brand-story__link-arrow::after {
          content: '';
          position: absolute;
          right: 0;
          top: -3px;
          width: 8px;
          height: 8px;
          border-right: 1px solid currentColor;
          border-top: 1px solid currentColor;
          transform: rotate(45deg);
      }

      /* ========== Product Collection ========== */
      .collection-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
      }

      .collection-item {
          position: relative;
          overflow: hidden;
          /* aspect-ratio: 3/4; */
          cursor: pointer;
      }

      .collection-item__image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .collection-item:hover .collection-item__image {
          transform: scale(1.05);
      }

      .collection-item__overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          padding: 40px 30px;
          background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
          transition: opacity 0.4s ease;
      }

      .collection-item__name {
        font-family: "MiSans", sans-serif;
          font-size: 22px;
          font-weight: 500;
          color: #fff;
          letter-spacing: 2px;
          margin-bottom: 8px;
      }

      .collection-item__category {
        font-family: "MiSans", sans-serif;
          font-size: 11px;
          font-weight: 300;
          letter-spacing: 4px;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.6);
      }

      /* ========== Fashion Show Section ========== */
      .fashion-show {
          position: relative;
          height: 80vh;
          overflow: hidden;
      }

      .fashion-show__bg {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .fashion-show__overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
      }

      .fashion-show__content {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          z-index: 10;
      }

      .fashion-show__year {
        font-family: "MiSans", sans-serif;
          font-size: 12px;
          font-weight: 300;
          letter-spacing: 8px;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.5);
          margin-bottom: 30px;
      }

      .fashion-show__title {
        font-family: "MiSans", sans-serif;
          font-size: 56px;
          font-weight: 500;
          color: #fff;
          letter-spacing: 4px;
          line-height: 1.2;
          margin-bottom: 20px;
      }

      .fashion-show__title em {
          font-style: italic;
      }

      .fashion-show__subtitle {
        font-family: "MiSans", sans-serif;
          font-size: 14px;
          font-weight: 300;
          letter-spacing: 4px;
          color: rgba(255, 255, 255, 0.6);
          margin-bottom: 50px;
      }

      .fashion-show__cta {
          display: inline-flex;
          align-items: center;
          gap: 12px;
          font-family: "MiSans", sans-serif;
          font-size: 13px;
          font-weight: 400;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #fff;
          padding: 16px 40px;
          border: 1px solid rgba(255, 255, 255, 0.4);
          transition: all 0.4s ease;
      }

      .fashion-show__cta:hover {
          background: #fff;
          color: #1a1a1a;
          border-color: #fff;
      }

      /* ========== Lookbook Section ========== */
      .lookbook {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 4px;
      }

      .lookbook__item {
          position: relative;
          overflow: hidden;
          aspect-ratio: 1/1;
          cursor: pointer;
      }

      .lookbook__item--tall {
          grid-row: span 2;
          aspect-ratio: auto;
      }

      .lookbook__item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
      }

      .lookbook__item:hover img {
          transform: scale(1.03);
          filter: brightness(0.9);
      }

      .lookbook__item__overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(0, 0, 0, 0);
          transition: background 0.4s ease;
      }

      .lookbook__item:hover .lookbook__item__overlay {
          background: rgba(0, 0, 0, 0.2);
      }

      .lookbook__item__text {
        font-family: "MiSans", sans-serif;
          font-size: 24px;
          color: #fff;
          letter-spacing: 4px;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.4s ease;
      }

      .lookbook__item:hover .lookbook__item__text {
          opacity: 1;
          transform: translateY(0);
      }

      /* ========== Philosophy Section ========== */
      .philosophy {
          max-width: 800px;
          margin: 0 auto;
          text-align: center;
      }

      .philosophy__text {
        font-family: "MiSans", sans-serif;
          font-size: 32px;
          font-weight: 400;
          line-height: 1.8;
          font-style: italic;
      }

      .philosophy__author {
        font-family: "MiSans", sans-serif;
          font-size: 12px;
          font-weight: 300;
          letter-spacing: 4px;
          text-transform: uppercase;
          margin-top: 40px;
          opacity: 0.5;
      }

      /* ========== Newsletter Section ========== */
      .newsletter {
          display: flex;
          align-items: center;
          justify-content: space-between;
          max-width: 1200px;
          margin: 0 auto;
      }

      .newsletter__title {
        font-family: "MiSans", sans-serif;
          font-size: 32px;
          font-weight: 500;
          letter-spacing: 2px;
      }

      .newsletter__form {
          display: flex;
          gap: 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      }

      .newsletter__input {
          background: transparent;
          border: none;
          outline: none;
          font-family: "MiSans", sans-serif;
          font-size: 14px;
          font-weight: 300;
          letter-spacing: 2px;
          color: #fff;
          padding: 12px 0;
          width: 300px;
      }

      .newsletter__input::placeholder {
          color: rgba(255, 255, 255, 0.4);
      }

      .newsletter__btn {
          background: transparent;
          border: none;
          outline: none;
          font-family: "MiSans", sans-serif;
          font-size: 12px;
          font-weight: 400;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #fff;
          padding: 12px 20px;
          cursor: pointer;
          transition: opacity 0.3s ease;
      }

      .newsletter__btn:hover {
          opacity: 0.6;
      }

      /* ========== Footer ========== */
      .footer {
          background: #0a0a0a;
          color: #fff;
          padding: 80px 60px 40px;
      }

      .footer__top {
          display: grid;
          grid-template-columns:  1fr 1fr 1fr 1fr 1fr 2fr;
          gap: 60px;
          margin-bottom: 60px;
      }

      .footer__brand-name {
          font-family: "MiSans", sans-serif;
          font-size: 24px;
          font-weight: 600;
          letter-spacing: 6px;
          text-transform: uppercase;
          margin-bottom: 20px;
      }

      .footer__brand-desc {
          font-family: "MiSans", sans-serif;
          font-size: 13px;
          font-weight: 300;
          line-height: 1.8;
          opacity: 0.5;
          max-width: 300px;
      }

      .footer__col-title {
          font-family: "MiSans", sans-serif;
          font-size: 11px;
          font-weight: 500;
          letter-spacing: 4px;
          text-transform: uppercase;
          margin-bottom: 24px;
          opacity: 0.7;
      }

      .footer__col-link {
          font-family: "MiSans", sans-serif;
          font-size: 13px;
          font-weight: 300;
          line-height: 2;
          opacity: 0.5;
          transition: opacity 0.3s ease;
      }

      .footer__col-link:hover {
          opacity: 1;
      }

      .footer__social {
          display: flex;
          gap: 20px;
          margin-top: 20px;
      }

      .footer__social-link {
          width: 36px;
          height: 36px;
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          transition: all 0.3s ease;
      }

      .footer__social-link:hover {
          background: #fff;
          color: #0a0a0a;
          border-color: #fff;
      }

      .footer__bottom {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-top: 40px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer__copyright {
          font-family: "MiSans", sans-serif;
          font-size: 11px;
          font-weight: 300;
          letter-spacing: 2px;
          opacity: 0.4;
      }

      .footer__back-top {
          font-family: "MiSans", sans-serif;
          font-size: 11px;
          font-weight: 400;
          letter-spacing: 3px;
          text-transform: uppercase;
          opacity: 0.5;
          cursor: pointer;
          transition: opacity 0.3s ease;
          display: flex;
          align-items: center;
          gap: 8px;
      }

      .footer__back-top:hover {
          opacity: 1;
      }

      /* ========== Animations ========== */
      @keyframes fadeInUp {
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      @keyframes fadeIn {
          to {
              opacity: 1;
          }
      }

      @keyframes scrollLine {
          0% {
              top: -100%;
          }
          100% {
              top: 100%;
          }
      }

      /* Scroll reveal animation */
      .reveal {
          opacity: 0;
          transform: translateY(40px);
          transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .reveal.visible {
          opacity: 1;
          transform: translateY(0);
      }

      .reveal-delay-1 { transition-delay: 0.1s; }
      .reveal-delay-2 { transition-delay: 0.2s; }
      .reveal-delay-3 { transition-delay: 0.3s; }
      .reveal-delay-4 { transition-delay: 0.4s; }

      /* ========== Responsive ========== */
      @media (max-width: 1024px) {
          .section {
              padding: 80px 40px;
          }

          .header {
              padding: 0 40px;
          }

          .hero__content {
              left: 40px;
              bottom: 100px;
          }

          .hero__title {
              font-size: 48px;
          }

          .brand-story {
              gap: 40px;
          }

          .collection-grid {
              grid-template-columns: repeat(2, 1fr);
          }

          .fashion-show__title {
              font-size: 40px;
          }

          .footer__top {
              grid-template-columns: 1fr 1fr;
              gap: 40px;
          }
      }

      @media (max-width: 768px) {
          .section {
              padding: 60px 24px;
          }

          .header {
              padding: 0 24px;
              height: 60px;
          }

          .nav {
              display: none;
          }

          .lang-toggle {
              display: none;
          }

          .header__menu-btn {
              display: block;
          }

          .hero__content {
              left: 24px;
              bottom: 80px;
          }

          .hero__title {
              font-size: 36px;
          }

          .hero__subtitle {
              font-size: 10px;
          }

          .brand-story {
              grid-template-columns: 1fr;
              gap: 40px;
          }

          .brand-story__quote {
              font-size: 22px;
          }

          .collection-grid {
              grid-template-columns: 1fr 1fr;
              gap: 12px;
          }

          .fashion-show {
              height: 60vh;
          }

          .fashion-show__title {
              font-size: 32px;
          }

          .lookbook {
              grid-template-columns: 1fr 1fr;
          }

          .lookbook__item--tall {
              grid-row: span 1;
              aspect-ratio: 1/1;
          }

          .section__title {
              font-size: 32px;
          }

          .philosophy__text {
              font-size: 22px;
          }

          .newsletter {
              flex-direction: column;
              gap: 30px;
              text-align: center;
          }

          .newsletter__form {
              width: 100%;
              max-width: 400px;
          }

          .newsletter__input {
              width: 100%;
          }

          .footer {
              padding: 60px 24px 30px;
          }

          .footer__top {
              grid-template-columns: 1fr;
              gap: 30px;
          }

          .footer__bottom {
              flex-direction: column;
              gap: 20px;
          }
      }

      /* ========== Video Play Button ========== */
      .play-btn {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 80px;
          height: 80px;
          border: 2px solid rgba(255, 255, 255, 0.6);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.4s ease;
          z-index: 10;
      }

      .play-btn:hover {
          background: rgba(255, 255, 255, 0.2);
          border-color: #fff;
          transform: translate(-50%, -50%) scale(1.1);
      }

      .play-btn__icon {
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 12px 0 12px 20px;
          border-color: transparent transparent transparent #fff;
          margin-left: 4px;
      }

      /* ========== Loading Screen ========== */
      .loading-screen {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #0a0a0a;
          z-index: 9999;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: opacity 0.8s ease, visibility 0.8s ease;
      } 

      .loading-screen.hidden {
          opacity: 0;
          visibility: hidden;
      }

      .loading-screen__text {
          font-family: "MiSans", sans-serif;
          font-size: 32px;
          font-weight: 600;
          letter-spacing: 10px;
          text-transform: uppercase;
          color: #fff;
          animation: loadingPulse 1.5s ease infinite;
      }

      /* 4. 定义呼吸动画关键帧 */
@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05); /* 轻微放大 */
        opacity: 0.8;           /* 轻微变透明 */
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


      @keyframes loadingPulse {
          0%, 100% { opacity: 0.3; }
          50% { opacity: 1; }
      }

      /* ========== Cursor Custom ========== */
      .custom-cursor {
          width: 20px;
          height: 20px;
          border: 1px solid rgba(255, 255, 255, 0.5);
          border-radius: 50%;
          position: fixed;
          pointer-events: none;
          z-index: 9998;
          transition: transform 0.15s ease, border-color 0.3s ease;
          mix-blend-mode: difference;
      }

      .custom-cursor.hover {
          transform: scale(2);
          border-color: #fff;
      }






/* ========== fashionshow_lst ========== */

.show_container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .show_section {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: flex-start;
  }

  .text-block {
    flex: 1;
    min-width: 0; /* 防止文字溢出 */
  }

  .show_image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .show_year {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.2rem;
  }

  .show_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
  }

  .subshow_title {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.2rem;
  }

  .show_content {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
  }

  .show_content p {
    margin-bottom: 0.8rem;
  }

  .show_image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  /* 分隔线 */
  .divider {
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 3rem 0;
  }

  /* 响应式：移动端堆叠 */
  @media (max-width: 768px) {
    .show_section {
      flex-direction: column;
      gap: 2rem;
    }

    .show_year {
      font-size: 2.8rem;
    }

    .show_title, .subshow_title {
      font-size: 1rem;
    }

    .show_content {
      font-size: 0.9rem;
    }

    .show_image-block img {
      max-width: 100%;
    }
  }

  /* 为第二张图加一点顶部留白（视觉对齐） */
  .show_section:nth-child(2) .show_image-block {
    margin-top: 0.5rem;
  }



