:root {
  --font-pri: "Inter", sans-serif;
  --font-title: "Barlow Condensed", sans-serif;
  --font-decor: "IBM Plex Sans", "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pi-8: 0.8rem;
  --pi-10: 1rem;
  --pi-12: 1.2rem;
  --pi-14: 1.4rem;
  --pi-16: 1.6rem;
  --pi-18: 1.8rem;
  --pi-20: 2rem;
  --pi-24: 2.4rem;
  --pi-32: 3.2rem;
  --header-topbar: 3.2rem;
  --header-main: 9.2rem;
  --header-menu: 2.6rem;
  --header-main-fixed: 8rem;
  --header-height: calc(var(--header-topbar) + var(--header-main));
}
@media screen and (max-width: 1200px) {
  :root {
    --header-main: 6.8rem;
    --header-main-fixed: var(--header-main);
    --pi-12: 0.8rem;
    --pi-14: 0.8rem;
    --pi-16: 0.8rem;
    --pi-18: 0.8rem;
    --pi-20: 1rem;
    --pi-24: 1.2rem;
    --pi-32: 1.6rem;
  }
}
:root {
  --z-i-header: 100;
  --radius-circle: 50%;
  --radius-max: 999rem;
  --radius-xl: 2.4rem;
  --radius-l: 1.6rem;
  --radius: 1.2rem;
  --radius-m: 0.8rem;
  --radius-s: 0.4rem;
  --box-shadow-1: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.1);
  --filter-white: brightness(0) invert(1);
  --filter-black: brightness(0) invert(0);
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
}

.sdn-content > * {
  color: #131313;
  line-height: 150%;
}
.sdn-content b,
.sdn-content strong {
  font-weight: 700;
}
.sdn-content em,
.sdn-content i {
  font-style: italic;
}
.sdn-content h1,
.sdn-content h2,
.sdn-content h3,
.sdn-content h4,
.sdn-content h5,
.sdn-content h6 {
  color: #0a0a0a;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.sdn-content h1 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1200px) {
  .sdn-content h1 {
    font-size: clamp(2.1rem, 1.9636rem + 0.3636vw, 2.4rem);
  }
}
.sdn-content h2 {
  font-size: 2.2rem;
}
@media screen and (max-width: 1200px) {
  .sdn-content h2 {
    font-size: clamp(1.9rem, 1.8545rem + 0.1212vw, 2rem);
  }
}
.sdn-content h3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .sdn-content h3 {
    font-size: clamp(1.5rem, 1.4545rem + 0.1212vw, 1.6rem);
  }
}
.sdn-content h4 {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .sdn-content h4 {
    font-size: clamp(1.4rem, 1.3091rem + 0.2424vw, 1.6rem);
  }
}
.sdn-content h5 {
  font-size: 1.4rem;
}
.sdn-content h6 {
  font-size: 1.2rem;
}
.sdn-content p {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sdn-content p {
    font-size: 1.4rem;
  }
}
.sdn-content ul,
.sdn-content ol {
  margin: 1em 0;
  list-style-position: inside;
}
.sdn-content ul ul,
.sdn-content ul ol,
.sdn-content ol ul,
.sdn-content ol ol {
  margin-left: 1em;
}
.sdn-content ul {
  list-style-type: disc;
}
.sdn-content ol {
  list-style-type: decimal;
}
.sdn-content ul ul,
.sdn-content ol ul {
  list-style-type: circle;
}
.sdn-content ol ol,
.sdn-content ul ol {
  list-style-type: lower-latin;
}
.sdn-content img,
.sdn-content iframe {
  height: auto;
  margin: 4rem 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  max-width: 100% !important;
}
@media screen and (max-width: 1200px) {
  .sdn-content img,
  .sdn-content iframe {
    margin: 2.4rem 0;
  }
}
.sdn-content blockquote {
  border: 0;
  quotes: none;
  margin: 2rem 0;
  padding: 2.4rem;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-m);
  background-color: rgba(197, 52, 45, 0.05);
}
.sdn-content blockquote::before {
  top: 0;
  margin: 0;
  left: 2.4rem;
  position: absolute;
  content: "";
  z-index: 0;
  vertical-align: unset;
  width: 12.9rem;
  height: 10.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../../assets/images/icons/icon-quote.svg");
}
.sdn-content blockquote p,
.sdn-content blockquote ul,
.sdn-content blockquote ol {
  z-index: 1;
  position: relative;
}
.sdn-content blockquote p {
  display: block;
}
.sdn-content blockquote p:not(:last-child) {
  margin-bottom: 1.6rem;
}
.sdn-content table {
  width: 100%;
  max-width: 100%;
  margin: 3.2rem 0;
  border-spacing: 0;
  border-radius: var(--radius-m);
  border-collapse: separate;
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1200px) {
  .sdn-content table {
    margin: 2.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .sdn-content table {
    min-width: 70rem;
  }
}
.sdn-content table th,
.sdn-content table td {
  text-align: left;
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.08);
  border-right: 0.1rem solid rgba(0, 0, 0, 0.08);
}
.sdn-content table th:last-child,
.sdn-content table td:last-child {
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .sdn-content table th,
  .sdn-content table td {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.sdn-content table thead th {
  color: white;
  border-bottom: 0;
  font-weight: 600;
  white-space: nowrap;
  background-color: #c5342d;
  border-right-color: rgba(255, 255, 255, 0.24);
}
.sdn-content table thead th:first-child {
  border-top-left-radius: var(--radius-m);
}
.sdn-content table thead th:last-child {
  border-top-right-radius: var(--radius-m);
}
.sdn-content table tbody {
  background-color: white;
}
.sdn-content table tbody tr {
  transition: 0.4s ease-in-out;
}
.sdn-content table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}
.sdn-content table tbody tr:hover {
  background-color: rgba(197, 52, 45, 0.05);
}
.sdn-content table tbody tr:last-child th,
.sdn-content table tbody tr:last-child td {
  border-bottom: 0;
}
.sdn-content table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-m);
}
.sdn-content table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-m);
}
.sdn-content table td {
  background-color: transparent;
}
.sdn-content .sdn-youtube-wrap {
  height: 0;
  position: relative;
  padding-top: 56.25%;
}
.sdn-content .sdn-youtube-wrap iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
}
.sdn-content .sdn-table-wrap,
.sdn-content .table-resp {
  overflow-x: auto;
  margin-bottom: 3rem;
}
.sdn-content .wp-caption-text {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .sdn-content .wp-caption-text {
    font-size: 1.2rem;
  }
}
.sdn-content .wp-caption {
  border: 0;
  padding: 0;
  max-width: 100%;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .sdn-content .wp-caption {
    margin-bottom: 2.4rem;
  }
}
.sdn-content .wp-caption-text {
  padding: 1rem 0;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: center;
  font-style: italic;
  margin: 0 !important;
}
@media screen and (max-width: 576px) {
  .sdn-content .wp-caption-text {
    font-size: 1.2rem;
  }
}
.sdn-content .wp-caption.alignnone {
  margin: 3.2rem 0;
}
@media screen and (max-width: 576px) {
  .sdn-content .wp-caption.alignnone {
    margin: 2.4rem 0;
  }
}
.sdn-content .wp-caption.alignright {
  float: right;
  display: inline;
  margin-bottom: 0;
  margin-left: 1.5rem;
}
.sdn-content .wp-caption.aligncenter {
  margin: 2.4rem auto;
}
.sdn-content .wp-caption.alignleft {
  float: left;
  display: inline;
  margin-bottom: 0;
  margin-right: 1.5rem;
}
.sdn-content .wp-caption img {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.sdn-content a {
  font-weight: 700;
  color: #fe7a15;
  transition: all 0.5s ease;
}
.sdn-content a:hover {
  text-decoration: underline;
  color: #c5342d;
}
.sdn-content li {
  margin: 1em 0;
}
.sdn-content figure {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: auto;
}
.sdn-content figure img {
  margin: 0;
}
.sdn-content figcaption {
  font-style: italic;
  font-size: 0.8em;
  text-align: center;
}
.sdn-content .img-full img {
  width: 100%;
}
.sdn-content img.size-full {
  width: 100%;
}
.sdn-content img.alignnone {
  margin: 3.2rem 0;
}
@media screen and (max-width: 576px) {
  .sdn-content img.alignnone {
    margin: 2.4rem 0;
  }
}
.sdn-content img.aligncenter {
  margin: 3.2rem auto;
}
@media screen and (max-width: 576px) {
  .sdn-content img.aligncenter {
    margin: 2.4rem auto;
  }
}
.sdn-content img.alignright {
  margin-left: auto;
}
.sdn-content img.alignleft {
  margin-right: auto;
}
.sdn-content .gallery-columns {
  gap: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  margin: 3.2rem 0;
}
@media screen and (max-width: 576px) {
  .sdn-content .gallery-columns {
    margin: 2.4rem 0;
  }
}
.sdn-content .gallery-columns img {
  margin: 0;
}
.sdn-content .gallery-columns .gallery-icon {
  width: 100%;
  height: 100%;
}
.sdn-content .gallery-columns .gallery-icon a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sdn-content .gallery-columns-2 .gallery-item {
  width: calc(50% - 0.8rem) !important;
}
.sdn-content .gallery-columns-3 .gallery-item {
  width: calc(33.3333333333% - 1.1rem) !important;
}

ul.page-numbers {
  gap: 0.6rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
ul.page-numbers li {
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 10rem;
}
ul.page-numbers li:has(.current) {
  background-color: #c5342d;
}
ul.page-numbers li:has(.current) a,
ul.page-numbers li:has(.current) span {
  color: white;
}
@media screen and (min-width: 1201px) {
  ul.page-numbers li:not(:has(.disable)):hover {
    background-color: #c5342d;
  }
  ul.page-numbers li:not(:has(.disable)):hover a {
    color: white;
  }
  ul.page-numbers li:not(:has(.disable)):hover img {
    filter: brightness(0) invert(1);
  }
}
ul.page-numbers li .disable {
  pointer-events: none;
}
ul.page-numbers li .prev img {
  transform: rotate(90deg);
}
ul.page-numbers li .next img {
  transform: rotate(-90deg);
}
ul.page-numbers li a,
ul.page-numbers li span {
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: #656565;
  line-height: 150%;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nature {
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  background-color: #f5f5f2;
  min-height: calc(100dvh - var(--header-height));
}

/* Header fixed + opaque: chừa chỗ cho .nature-word / đầu model (tránh bị che như trước). */
.p-home .main {
  padding-top: var(--header-height);
}
@keyframes natureIntroZoom {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes natureIntroLeft {
  from {
    opacity: 0;
    translate: -10rem 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes natureIntroRight {
  from {
    opacity: 0;
    translate: 10rem 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.nature.is-intro .nature-word-img,
.nature.is-intro .nature-model-img {
  animation: natureIntroZoom 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nature.is-intro .nature-title,
.nature.is-intro .nature-tabs {
  animation: natureIntroLeft 1.6s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nature.is-intro .nature-info,
.nature.is-intro .nature-mark,
.nature.is-intro .nature-side {
  animation: natureIntroRight 1.6s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .nature.is-intro .nature-word-img,
  .nature.is-intro .nature-model-img,
  .nature.is-intro .nature-title,
  .nature.is-intro .nature-tabs,
  .nature.is-intro .nature-info,
  .nature.is-intro .nature-mark,
  .nature.is-intro .nature-side {
    animation: none;
  }
}
.nature-inner {
  width: 100%;
  height: 75.8rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .nature-inner {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .nature-word {
    order: 1;
  }
  .nature-panel {
    order: 2;
  }
  .nature-tabs {
    order: 3;
  }
  .nature-title {
    order: 4;
  }
  .nature-info {
    order: 5;
  }
  .nature-mark {
    order: 6;
  }
}
.nature-word {
  left: 50%;
  top: 3.3rem;
  z-index: 1;
  width: 105.2rem;
  height: 25.4rem;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .nature-word {
    top: 0;
    left: auto;
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: relative;
    transform: none;
  }
}
.nature-word-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .nature-word-img {
    height: auto;
  }
}
.nature-panel {
  inset: 0;
  z-index: 2;
  position: absolute;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .nature-panel {
    position: relative;
    inset: auto;
  }
}
.nature-model {
  left: 50%;
  top: 1.9rem;
  height: 72rem;
  position: absolute;
  transform: translateX(calc(-50% - 1.8rem));
}
@media screen and (max-width: 1200px) {
  .nature-model {
    top: auto;
    left: auto;
    height: 55rem;
    position: relative;
    margin: -18rem auto 0;
    transform: none;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 991px) {
  .nature-model {
    height: 45rem;
    margin: -6rem auto 0;
  }
}
.nature-model-img {
  width: auto;
  height: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.nature-side {
  top: 25.4rem;
  left: auto;
  right: 0;
  width: 24.7rem;
  height: 44rem;
  overflow: hidden;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .nature-side {
    display: none;
  }
}
.nature-side-img {
  inset: 0;
  position: absolute;
}
.nature-side-img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.nature-side-video {
  inset: 0;
  position: absolute;
}
.nature-side-video-el {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.nature-title {
  z-index: 3;
  top: 34rem;
  left: 0;
  width: auto;
  max-width: 59.1rem;
  font-weight: 700;
  line-height: 1.23;
  position: absolute;
  color: #131313;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 3.6rem;
}
@media screen and (max-width: 1200px) {
  .nature-title {
    font-size: clamp(2.6rem, 2.3727rem + 0.6061vw, 3.1rem);
  }
}
@media screen and (max-width: 1200px) {
  .nature-title {
    top: auto;
    left: auto;
    width: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 0 var(--container-padding);
    margin-top: 2.4rem;
  }
}
.nature-mark {
  z-index: 3;
  top: 56.3rem;
  left: auto;
  right: 25.9rem;
  width: 4.4rem;
  height: 13.1rem;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .nature-mark {
    display: none;
  }
}
.nature-mark-text {
  width: 13.1rem;
  font-weight: 700;
  line-height: 1.23;
  text-align: center;
  color: #73736f;
  transform: rotate(-90deg);
  font-family: var(--font-title);
  font-size: 3.6rem;
}
@media screen and (max-width: 1200px) {
  .nature-mark-text {
    font-size: clamp(2.6rem, 2.3727rem + 0.6061vw, 3.1rem);
  }
}
.nature-info {
  gap: 2rem;
  z-index: 3;
  display: flex;
  top: 33.5rem;
  width: 30.3rem;
  left: calc(50% + 19.2rem);
  position: absolute;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .nature-info {
    top: auto;
    left: auto;
    width: 100%;
    max-width: 34rem;
    position: relative;
    align-items: center;
    text-align: center;
    margin: 2rem auto 4rem;
  }
}
.nature-desc {
  line-height: 1.72;
  color: #131313;
  font-family: var(--font-mono);
  font-size: 1.4rem;
}
.nature-btn {
  gap: 0.8rem;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.25;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  background-color: #111111;
  font-family: var(--font-title);
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .nature-btn {
    font-size: clamp(1.4rem, 1.3091rem + 0.2424vw, 1.6rem);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .nature-btn:hover, .nature-btn:focus-visible {
    opacity: 0.85;
  }
  .nature-btn:hover .nature-btn-icon, .nature-btn:focus-visible .nature-btn-icon {
    transform: translateX(0.4rem);
  }
}
.nature-btn-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease-in-out;
  filter: var(--filter-white);
}
.nature-tabs {
  gap: 2.4rem;
  z-index: 3;
  display: flex;
  top: 40.4rem;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .nature-tabs {
    top: auto;
    left: auto;
    gap: 1.2rem;
    position: relative;
    justify-content: center;
    margin: 2.4rem 0 0;
  }
}
.nature-tab {
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 18.1rem;
  height: 25.5rem;
  transition: 0.3s ease-in-out;
  background-color: transparent;
  border: 0.2rem solid #d9d9d9;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .nature-tab:hover, .nature-tab:focus-visible {
    border-color: #656565;
  }
}
.nature-tab.is-active {
  cursor: default;
  border-color: #111111;
}
@media screen and (max-width: 767px) {
  .nature-tab {
    width: 10rem;
    height: 14rem;
  }
}
.nature-tab-img {
  left: 50%;
  top: 1.3rem;
  width: auto;
  height: 42.7rem;
  max-width: none;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .nature-tab-img {
    top: 0.8rem;
    height: 23.5rem;
  }
}

.band {
  overflow: hidden;
  padding: 4.8rem 0;
  background-color: #111111;
}
@media screen and (max-width: 767px) {
  .band {
    padding: 3.2rem 0;
  }
}
.band-marquee {
  height: 6.4rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .band-marquee {
    height: 4rem;
    margin-bottom: 3.2rem;
  }
}
.band-marquee .splide__slide {
  gap: 2rem;
  width: auto;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}
.band-word {
  font-weight: 700;
  line-height: 1.15;
  color: transparent;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-title);
  -webkit-text-stroke: 0.2rem white;
  font-size: 5.6rem;
}
@media screen and (max-width: 1200px) {
  .band-word {
    font-size: clamp(4rem, 3.5rem + 1.3333vw, 5.1rem);
  }
}
.band-star {
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
  background-color: white;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("../images/common/logo.png");
          mask-image: url("../images/common/logo.png");
}
@media screen and (max-width: 767px) {
  .band-star {
    width: 4rem;
    height: 4rem;
  }
}
.band-media {
  display: grid;
  height: 85rem;
  gap: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .band-media {
    height: 60rem;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .band-media {
    height: auto;
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
  }
}
.band-item {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .band-item {
    grid-area: auto !important;
    aspect-ratio: 4/5;
  }
}
.band-img {
  inset: 0;
  position: absolute;
}
.band-img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.band-media-1 {
  grid-template-columns: 1fr;
}
.band-media-2a {
  grid-template-columns: 613fr 987fr;
}
.band-media-2b {
  grid-template-columns: 1fr 1fr;
}
.band-media-3 {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 904fr 696fr;
}
.band-media-3 .band-item:nth-child(1) {
  grid-area: 1/1/3/2;
}
.band-media-4 {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 332fr 332fr 904fr;
}
.band-media-4 .band-item:nth-child(1) {
  grid-area: 1/1/2/3;
}
.band-media-4 .band-item:nth-child(4) {
  grid-area: 1/3/3/4;
}

.essentials {
  padding: 10rem 0rem 10rem;
}
@media screen and (max-width: 991px) {
  .essentials {
    padding: 6rem 0rem;
  }
}
.essentials {
  background-color: #fafafa;
}
.essentials-head {
  gap: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 4.8rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .essentials-head {
    gap: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.essentials-title {
  font-weight: 700;
  line-height: 1.125;
  color: #131313;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 6.4rem;
}
@media screen and (max-width: 1200px) {
  .essentials-title {
    font-size: clamp(2.4rem, 1.7182rem + 1.8182vw, 3.9rem);
  }
}
.essentials-tabs {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .essentials-tabs {
    flex: 1 0 100%;
    margin-left: 0;
  }
}
.essentials-tabs > .swiper {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .essentials-tabs > .swiper {
    width: 100%;
    margin-left: 0;
  }
}
.essentials-tabs .swiper-slide {
  width: auto;
  height: auto;
  gap: 1.6rem;
  display: flex;
  align-items: center;
}
.essentials-tabs-sep {
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1.25;
  color: #d9d9d9;
  font-family: var(--font-title);
  font-size: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .essentials-tabs-sep {
    font-size: clamp(2.2rem, 1.9727rem + 0.6061vw, 2.7rem);
  }
}
.essentials-tab {
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1.25;
  color: #d9d9d9;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  background-color: transparent;
  font-family: var(--font-title);
  font-size: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .essentials-tab {
    font-size: clamp(2.2rem, 1.9727rem + 0.6061vw, 2.7rem);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .essentials-tab:hover, .essentials-tab:focus-visible {
    color: #656565;
  }
}
.essentials-tab.is-active {
  color: #131313;
}
.essentials-body {
  gap: 3.2rem;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .essentials-body {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .essentials-body {
    flex-direction: column-reverse;
    align-items: stretch;
  }
}
.essentials-banner {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 38.4rem;
  height: 72.7rem;
  background-color: #f5f5f2;
}
@media screen and (max-width: 1200px) {
  .essentials-banner {
    width: 30rem;
    height: 60rem;
  }
}
@media screen and (max-width: 991px) {
  .essentials-banner {
    width: 100%;
    height: 45rem;
  }
}
.essentials-banner-video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.essentials-main {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 991px) {
  .essentials-main {
    width: 100%;
  }
}
.essentials-slider .swiper {
  width: 100%;
}
.essentials-slider .products {
  margin: 0;
  padding: 0;
  list-style: none;
}
.essentials-empty {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.6;
}
.essentials-foot {
  gap: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .essentials-foot {
    gap: 1.6rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .essentials-foot {
    flex-direction: column;
  }
}
.essentials-foot .swiper-pagination {
  gap: 1.6rem;
  width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  position: static;
  flex-wrap: wrap;
  align-items: center;
  --swiper-pagination-bullet-width: 10rem;
  --swiper-pagination-bullet-height: 0.4rem;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-inactive-color: #e9e9e5;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: #111111;
  --swiper-pagination-bullet-opacity: 1;
}
@media screen and (max-width: 1200px) {
  .essentials-foot .swiper-pagination {
    gap: 0.8rem;
    --swiper-pagination-bullet-width: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .essentials-foot .swiper-pagination {
    --swiper-pagination-bullet-width: 3rem;
  }
}
.essentials-foot .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  gap: 0;
  flex-wrap: nowrap;
  transform: none;
}
.essentials-foot .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  flex: none;
  transform: none;
  margin: 0 0.4rem;
}
.essentials-foot .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.is-edge-start {
  transform-origin: right center;
  transform: scaleX(0.5);
}
.essentials-foot .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.is-edge-end {
  transform-origin: left center;
  transform: scaleX(0.5);
}
.essentials-foot .swiper-pagination-bullet {
  margin: 0;
  flex-shrink: 0;
  border-radius: 0 !important;
  transition: 0.3s ease-in-out;
}
.essentials-more {
  gap: 0.8rem;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.34;
  color: #111111;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .essentials-more {
    font-size: clamp(1.5rem, 1.4545rem + 0.1212vw, 1.6rem);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .essentials-more:hover, .essentials-more:focus-visible {
    color: #c5342d;
  }
  .essentials-more:hover .essentials-more-icon, .essentials-more:focus-visible .essentials-more-icon {
    transform: translateX(0.4rem);
  }
}
.essentials-more-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease-in-out;
  filter: var(--filter-black);
}

.reveal {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
}
@media screen and (max-width: 1200px) {
  .reveal {
    height: 100svh;
  }
}
.reveal-media {
  inset: 0;
  position: absolute;
}
.reveal-poster, .reveal-video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  transition: 0.3s ease-in-out;
}
.reveal-video {
  opacity: 0;
}
.reveal.is-playing .reveal-poster {
  opacity: 0;
}
.reveal.is-playing .reveal-video {
  opacity: 1;
}
.reveal-mask {
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}
.reveal-word {
  will-change: transform;
}
.reveal.is-open .reveal-mask {
  opacity: 0;
}

.look {
  overflow: hidden;
  position: relative;
  padding: 10rem 0rem 10rem;
}
@media screen and (max-width: 991px) {
  .look {
    padding: 6rem 0rem;
  }
}
.look {
  background-color: #fafafa;
}
.look-title {
  font-weight: 700;
  line-height: 1.125;
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 6.4rem;
}
@media screen and (max-width: 1200px) {
  .look-title {
    font-size: clamp(2.4rem, 1.7182rem + 1.8182vw, 3.9rem);
  }
}
.look-body {
  width: 100%;
  height: 70.3rem;
  margin-top: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .look-body {
    height: 50rem;
    margin-top: 1.6rem;
  }
}
.look-slide {
  height: 100%;
  width: 43.5rem;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.look-slide.swiper-slide-active {
  cursor: default;
}
@media screen and (max-width: 767px) {
  .look-slide {
    width: 26rem;
  }
}
.look-figure {
  flex-shrink: 0;
  height: 66rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .look-figure {
    height: 46rem;
  }
}
.look-slide-01 .look-figure {
  height: 66rem;
}
.look-slide-02 .look-figure {
  height: 65.8rem;
}
.look-slide-03 .look-figure {
  height: 65.8rem;
}
.look-slide-04 .look-figure {
  height: 65.1rem;
}
.look-slide-05 .look-figure {
  height: 66.2rem;
}
@media screen and (max-width: 767px) {
  .look-slide-01 .look-figure, .look-slide-02 .look-figure, .look-slide-03 .look-figure, .look-slide-04 .look-figure, .look-slide-05 .look-figure {
    height: 46rem;
  }
}
.look-img {
  width: auto;
  height: 100%;
  opacity: 0;
  max-width: none;
}
.look-img ~ .look-img {
  top: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.look-img.is-active {
  opacity: 1;
}
.look-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.look-frame {
  left: 50%;
  z-index: 2;
  top: 10.7rem;
  width: 43.6rem;
  height: 31rem;
  position: absolute;
  pointer-events: none;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .look-frame {
    top: 6rem;
    width: 28rem;
    height: 20rem;
  }
}
.look-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.look-caption {
  font-weight: 600;
  margin-top: 2.4rem;
  color: #131313;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  .look-caption {
    font-size: clamp(1.6rem, 1.5091rem + 0.2424vw, 1.8rem);
  }
}
@media screen and (max-width: 767px) {
  .look-caption {
    margin-top: 1.6rem;
  }
}

.outside {
  overflow: hidden;
  position: relative;
  background-color: #111111;
}
@keyframes outsideChar {
  from {
    opacity: 0;
    translate: 0 50%;
  }
}
@keyframes outsideFadeLeft {
  from {
    opacity: 0;
    translate: 8rem 0;
  }
}
.outside.is-intro .outside-char,
.outside.is-intro .outside-content,
.outside.is-intro .outside-card,
.outside.is-intro .outside-btn {
  opacity: 0;
}
.outside.is-play .outside-char,
.outside.is-play .outside-content,
.outside.is-play .outside-card,
.outside.is-play .outside-btn {
  opacity: 1;
}
.outside.is-play .outside-char {
  animation: outsideChar 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 0.08s) both;
}
.outside.is-play .outside-content {
  animation: outsideFadeLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 1.3s both;
}
.outside.is-play .outside-card {
  animation: outsideFadeLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 1.55s both;
}
.outside.is-play .outside-btn {
  animation: outsideFadeLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 1.7s both;
}
@media (prefers-reduced-motion: reduce) {
  .outside .outside-char,
  .outside .outside-content,
  .outside .outside-card,
  .outside .outside-btn {
    opacity: 1 !important;
    animation: none !important;
  }
}
.outside-inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1728/900;
}
.outside-bg {
  inset: 0;
  z-index: 1;
  position: absolute;
}
.outside-bg-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.outside-bg::after {
  inset: 0;
  display: none;
  position: absolute;
  content: "";
  background-color: rgba(17, 17, 17, 0.55);
}
@media screen and (max-width: 1200px) {
  .outside-bg::after {
    display: block;
  }
}
.outside-word {
  top: 12.111%;
  left: 16.782%;
  z-index: 3;
  width: 65.625%;
  height: 28.667%;
  position: absolute;
}
.outside-word-img {
  width: 100%;
  height: 100%;
}
.outside-char {
  display: block;
  height: 100%;
}
.outside-char:not(:first-child) {
  inset: 0;
  position: absolute;
}
.outside-char:nth-child(1) {
  clip-path: inset(0 85.406% 0 0%);
}
.outside-char:nth-child(2) {
  clip-path: inset(0 69.268% 0 14.594%);
}
.outside-char:nth-child(3) {
  clip-path: inset(0 52.954% 0 30.732%);
}
.outside-char:nth-child(4) {
  clip-path: inset(0 37.478% 0 47.046%);
}
.outside-char:nth-child(5) {
  clip-path: inset(0 29.453% 0 62.522%);
}
.outside-char:nth-child(6) {
  clip-path: inset(0 13.448% 0 70.547%);
}
.outside-char:nth-child(7) {
  clip-path: inset(0 0% 0 86.552%);
}
.outside-people {
  left: 0;
  top: 25.889%;
  z-index: 4;
  width: 77.257%;
  height: 74.111%;
  overflow: hidden;
  position: absolute;
}
.outside-people-img {
  left: 0;
  width: 129.44%;
  height: 145.73%;
  top: -44.53%;
  max-width: none;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.outside-content {
  gap: 2.2rem;
  z-index: 5;
  top: 44.333%;
  width: 19.734%;
  left: 64.641%;
  position: absolute;
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
}
.outside-heading {
  width: 33.4rem;
  height: 5.6rem;
  flex-shrink: 0;
}
.outside-heading-img {
  width: 100%;
  height: 100%;
}
.outside-desc {
  width: 100%;
  line-height: 1.72;
  color: white;
  word-break: break-word;
  font-family: var(--font-mono);
  font-size: 1.4rem;
}
.outside-card {
  z-index: 2;
  top: 51.556%;
  left: 85.764%;
  width: 11.458%;
  height: 36.889%;
  padding: 1.2rem;
  position: absolute;
  background-color: #f5f5f2;
}
.outside-card-img {
  display: block;
  width: 100%;
  height: 100%;
}
.outside-card-img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.outside-btn {
  gap: 0.8rem;
  z-index: 5;
  top: 89.778%;
  left: 85.764%;
  width: 11.458%;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  position: absolute;
  padding: 1.2rem 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  background-color: white;
  font-family: var(--font-title);
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .outside-btn {
    font-size: clamp(1.4rem, 1.3091rem + 0.2424vw, 1.6rem);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .outside-btn:hover, .outside-btn:focus-visible {
    color: white;
    background-color: #111111;
  }
  .outside-btn:hover .outside-btn-icon, .outside-btn:focus-visible .outside-btn-icon {
    filter: var(--filter-white);
  }
}
.outside-btn-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease-in-out;
  filter: var(--filter-black);
}
@media screen and (max-width: 1200px) {
  .outside {
    padding: 6rem 0;
  }
  .outside-inner {
    gap: 3.2rem;
    height: auto;
    max-width: none;
    aspect-ratio: auto;
    flex-direction: column;
    padding: 0 var(--container-padding);
    display: flex;
    flex-wrap: wrap;
  }
  .outside-word, .outside-people, .outside-content, .outside-card, .outside-btn {
    top: auto;
    left: auto;
    position: relative;
  }
  .outside-word {
    width: 100%;
    height: auto;
  }
  .outside-word-img {
    height: auto;
  }
  .outside-char {
    height: auto;
  }
  .outside-people {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .outside-people-img {
    top: auto;
    width: 100%;
    height: auto;
    position: relative;
  }
  .outside-content {
    width: 100%;
    max-width: 34.1rem;
  }
  .outside-heading {
    width: 100%;
    max-width: 33.4rem;
    height: auto;
  }
  .outside-heading-img {
    height: auto;
  }
  .outside-card {
    width: 19.8rem;
    height: 33.2rem;
  }
}
@media screen and (max-width: 767px) {
  .outside {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 3.2rem 0;
    height: calc(100svh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }
  .outside-inner {
    flex: 1;
    gap: 2.4rem;
    width: 100%;
    min-height: 0;
    height: 100%;
    justify-content: space-between;
  }
  .outside-people {
    display: none;
  }
  .outside-card {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
  }
  .outside-card-img {
    min-height: 100%;
  }
  .outside-btn {
    width: 100%;
    flex-shrink: 0;
  }
}
/*# sourceMappingURL=home.css.map */
