/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #0D0D0D;
  background: url(../images/bg_mv_kitsu.png) center top no-repeat;
  background-size: contain;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
body a { color: #0D0D0D; text-decoration: none; }
body a:hover { text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; }

/* brand accent (sub-brand: KiTSU Sustainable) */
:root {
  --accent: #2b7fb5;  /* brand blue from PDF */
  --accent-2: #f08a3e; /* brand orange from PDF */
  --gray-txt: #656565;
  --gray-line: #9F9C9C;
  --gray-line-2: #D9D9D9;
  --vttl: #5A5657;
}

.sp_only { display: none; }
.pc_only { display: block; }

.inner {
  box-sizing: content-box;
  max-width: 1390px;
  width: 96%;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body { font-size: 15px; align-items: flex-start; background: none; position: relative; }
  body::after {
    content: "";
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../images/bg_mv_kitsu.png) center top no-repeat;
    background-size: cover;
  }
  .pc_only { display: none !important; }
  .sp_only { display: block !important; }
  .inner { width: 94%; padding: 0 3%; }
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 87px;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 2%;
  z-index: 20;
}
.header_logo {
  max-width: 243px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_logo img {
  height: 52px;
  width: auto;
  display: block;
}
.header_logo .mark {
  width: 44px;
  height: 44px;
  flex: none;
}
.header_logo .mark svg { width: 100%; height: 100%; display: block; }
.header_logo .txt {
  font-family: "century-gothic", "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.header_logo .txt small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--gray-txt);
  margin-top: 4px;
}

.nav_list { display: flex; align-items: center; }
.nav_list a { font-size: 15px; }
.nav_list a span { display: none; }
.nav_list a:hover { text-decoration: underline; }
.nav_list li + li { margin-left: 35px; }

.nav_list .btn_shop {
  display: block;
  width: 190px;
  height: 47px;
  line-height: 47px;
  background: #54C2F0;
  text-align: center;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
}
.nav_list .btn_shop:hover { opacity: 0.7; text-decoration: none; }

.nav_list .btn {
  display: block;
  width: 170px;
  height: 47px;
  line-height: 47px;
  background: #f08445;
  text-align: center;
  color: #fff;
  font-size: 15px;
  border-radius: 6px 0 0 6px;
  transition: 0.3s ease-in-out;
}
.nav_list .btn:hover { opacity: 0.7; text-decoration: none; }

.nav_txt { display: none; }
.menu_toggle { display: none; }

@media screen and (max-width: 767px) {
  .header { height: 53px; padding: 0 0 0 2%; }
  .header_logo { max-width: 60%; }
  .header_logo img { height: 36px; }

  .nav {
    background: #fff;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .is-open { overflow: hidden; }
  .is-open .nav {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .nav_list { width: 73%; margin: 0 auto; display: block; }
  .nav_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    padding: 25px 0;
  }
  .nav_list a span {
    width: 50%;
    display: inline-block;
    font-size: 14px;
    opacity: 0.5;
    font-family: "Noto Sans JP", sans-serif;
  }
  .nav_list li:not(:last-child) { border-bottom: 1px solid #000; }
  .nav_list li + li { margin-left: 0; }
  .nav_list .btn_shop {
    display: block;
    width: 100%;
    height: auto;
    line-height: 1.6;
    background: none;
    text-align: left;
    color: #0D0D0D;
    font-size: 22px;
    border-radius: 0;
  }
  .nav_list .btn {
    display: block;
    width: 100%;
    height: auto;
    line-height: 1.6;
    background: none;
    text-align: left;
    color: #0D0D0D;
    font-size: 22px;
    border-radius: 0;
  }
  .nav_txt {
    display: block;
    width: 73%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
  }
  .nav_txt span { font-size: 15px; }
  .nav_txt + .nav_txt { margin-top: 20px; }

  .menu_toggle {
    position: absolute;
    top: 16px;
    right: 3%;
    display: block;
    height: 22px;
    cursor: pointer;
    z-index: 100;
  }
  .menu_toggle div { position: relative; width: 33px; }
  .menu_toggle span {
    width: 100%;
    z-index: 100;
    height: 1px;
    right: 0;
    display: block;
    background: #000;
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .menu_toggle span:nth-child(1) { top: 0; }
  .menu_toggle span:nth-child(2) { top: 11px; }
  .menu_toggle span:nth-child(3) { top: 22px; }
  .is-open .menu_toggle span:nth-child(1) { top: 12px; transform: rotate(45deg); }
  .is-open .menu_toggle span:nth-child(2) { opacity: 0; }
  .is-open .menu_toggle span:nth-child(3) { top: 12px; transform: rotate(-45deg); }
}

/* ==================== MV (HERO) ==================== */
.mv {
  padding-top: 180px;
  padding-bottom: 130px;
}
.mv .inner { text-align: center; }

.mv_ttl {
  max-width: 1300px;
  width: 100%;
  margin: 47px auto 35px;
  font-family: "century-gothic", "Inter", sans-serif;
  font-size: clamp(44px, 8.5vw, 120px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #54c3f1;
  text-shadow: 0 0 10px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,0.8);
}
.mv_ttl .kits {
  color: #f08445;
}
.mv_ttl .amp {
  font-style: normal;
  font-weight: 700;
  color: inherit;
}
.mv_txt {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.2;
}
.mv_sub {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: "century-gothic", "Inter", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .mv { padding-top: 110px; padding-bottom: 120px; }
  .mv_ttl {
    max-width: 96%;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 45px;
    text-align: center;
    font-size: clamp(26px, 8vw, 46px);
  }
  .mv_txt { font-size: 14px; }
}

/* ==================== COMMON ==================== */
.cmn_ttl {
  font-size: 46px;
  font-weight: 800;
  max-width: 1000px;
  margin: 0 auto 100px;
}
.cmn_ttl small { font-size: 36px; font-weight: 700; }
.cmn_ttl span { display: inline-block; }

.vertical_ttl {
  font-size: 150px;
  line-height: 1;
  font-weight: 700;
  font-family: "century-gothic", "Inter", sans-serif;
  letter-spacing: -0.05em;
  color: var(--vttl);
  writing-mode: vertical-lr;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  white-space: nowrap;
  overflow-x: clip;
  padding-left: 20px;
}
.vertical_ttl span { display: inline-block; }

.cmn_list li {
  position: relative;
  padding-left: 20px;
}
.cmn_list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
}
.cmn_list li + li { margin-top: 10px; }

@media screen and (max-width: 1100px) {
  .vertical_ttl { display: none; }
}
@media screen and (max-width: 767px) {
  .cmn_ttl { font-size: 9.16vw; margin: 0 auto 40px; }
  .vertical_ttl {
    display: block;
    font-size: 25vw;
    opacity: 0.08;
    right: -4%;
  }
}

/* ==================== WORK (Products) ==================== */
.work { overflow: hidden; margin-bottom: 90px; }
.work .vertical_ttl { top: 60px; }

.work_inner {
  padding-left: 2%;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(50px) brightness(114%);
  backdrop-filter: blur(50px) brightness(114%);
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

.work_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.work_list li {
  width: 49.8%;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
}

.work_cat {
  display: inline-block;
  align-self: flex-start;
  background: #f08445;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin: 0 0 14px 20px;
}
.work_tagline {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 4px 20px;
}
.work_list h3 {
  font-size: 20px;
  font-weight: 700;
  min-height: 60px;
  margin: 0 0 10px 20px;
  line-height: 1.5;
}
.work_img {
  width: calc(100% - 20px);
  height: 260px;
  margin: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.work_list p.desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt);
  margin: 0 0 16px 20px;
  line-height: 1.9;
}
.price_list {
  margin-left: 20px;
  border-top: 1px dashed #c9c9c9;
  padding-top: 12px;
}
.price_list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
  width: 100%;
  margin-bottom: 0 !important;
}
.price_list .price {
  font-weight: 700;
  color: var(--accent-2);
}
.note_small {
  font-size: 11px;
  color: var(--gray-txt);
  margin: 6px 0 0 20px;
  font-weight: 400;
}

.detail_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: auto 0 0 20px;
  width: calc(100% - 20px);
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.05em;
}
.detail_link::after {
  content: "→";
  font-family: "century-gothic", "Inter", sans-serif;
  font-size: 15px;
  transition: transform 0.3s ease-in-out;
}
.detail_link:hover {
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
}
.detail_link:hover::after {
  transform: translateX(4px);
}
@media screen and (max-width: 767px) {
  .detail_link { margin-left: 0; width: 100%; }
}

@media screen and (max-width: 1300px) {
  .work .vertical_ttl { display: none; }
}
@media screen and (max-width: 767px) {
  .work { margin-bottom: 55px; }
  .work .cmn_ttl { margin-bottom: 20px; }
  .work .vertical_ttl { top: 0; display: block; }
  .work_inner {
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 60px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 49%);
  }
  .work_list { display: block; }
  .work_list li { width: 100%; margin-bottom: 60px; }
  .work_list h3 { font-size: 16px; min-height: auto; margin: 10px 0 20px; }
  .work_cat, .work_tagline, .note_small { margin-left: 0; }
  .work_img { width: 100%; margin-left: 0; height: 220px; position: relative; z-index: 15; }
  .work_list p.desc { font-size: 14px; margin-left: 0; }
  .price_list { margin-left: 0; }
}

/* ==================== CLIENTS (主要取引先) ==================== */
.clients { overflow: hidden; margin-bottom: 20px; }
.clients .vertical_ttl {
  top: 46px;
  right: auto;
  left: 0;
  padding-left: 0;
}
.clients .vertical_ttl > span:last-child { padding-top: 35px; }

.clients_inner {
  padding-left: 2%;
  padding-top: 172px;
  padding-bottom: 126px;
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(50px) brightness(126%);
  backdrop-filter: blur(50px) brightness(126%);
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}
.clients_inner02 {
  max-width: 883px;
  margin: 0 auto;
}
.clients_ttl {
  font-size: 46px;
  font-weight: 800;
  max-width: 883px;
  margin: 0 auto 60px;
}
.clients_subttl {
  font-size: 20px;
  font-weight: 700;
  max-width: 883px;
  margin: 0 auto 30px;
}
.clients_list {
  max-width: 883px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-line-2);
  border-bottom: 1px solid var(--gray-line-2);
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
}
.clients_list li {
  width: calc(50% - 1em);
  position: relative;
  padding: 10px 0;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 15px;
}
.clients_list li::before {
  content: "・";
}
@media screen and (max-width: 1100px) {
  .clients .vertical_ttl { display: none; }
}
@media screen and (max-width: 767px) {
  .clients { margin-bottom: 40px; }
  .clients .vertical_ttl { top: 10px; right: auto; left: -4%; display: block; }
  .clients .vertical_ttl > span:last-child { padding-top: 0.725%; }
  .clients_inner {
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 49%);
  }
  .clients_ttl { font-size: 9.16vw; margin: 0 auto 30px; }
  .clients_subttl { font-size: 16px; margin: 0 auto 20px; }
  .clients_list li { width: 100%; font-size: 14px; }
}

/* ==================== PARTNERS (Scenes) ==================== */
.partners { overflow: hidden; margin-bottom: 20px; }
.partners .vertical_ttl {
  top: 46px;
  right: auto;
  left: 0;
  padding-left: 0;
}
.partners .vertical_ttl > span:last-child { padding-top: 35px; }

.partners_inner {
  padding-left: 2%;
  padding-top: 172px;
  padding-bottom: 126px;
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(50px) brightness(126%);
  backdrop-filter: blur(50px) brightness(126%);
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}
.partners_inner02 { max-width: 883px; margin: 0 auto; }

.partners_subttl02 {
  font-weight: 700;
  max-width: 883px;
  margin: 0 auto 20px;
}

.scenes_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 883px;
  margin: 0 auto;
}
.scene_card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s;
}
.scene_card:hover { transform: translateY(-4px); }
.scene_img {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  background: rgba(156, 212, 236, 0.25);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene_img img {
  width: 108%;
  height: 108%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.scene_title {
  background: var(--accent);
  color: #fff;
  display: inline-block;
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.scene_desc {
  font-size: 13px;
  line-height: 1.9;
  color: #0D0D0D;
  font-weight: 500;
}

@media screen and (max-width: 900px) {
  .scenes_grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 767px) {
  .partners { margin-bottom: 40px; }
  .partners .vertical_ttl { top: 10px; right: auto; left: -4%; }
  .partners .vertical_ttl > span:last-child { padding-top: 0.725%; }
  .partners_inner {
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 49%);
  }
  .partners_subttl02 { font-size: 16px; margin: 0 auto 10px; }
  .scene_img { width: 120px; height: 120px; }
}
@media screen and (max-width: 420px) {
  .scenes_grid { grid-template-columns: 1fr; }
}

/* ==================== COMPANY ==================== */
.company { overflow: hidden; margin-bottom: 20px; }
.company .vertical_ttl { top: 172px; }
.company .vertical_ttl > span:last-child { padding-top: 30px; }

.company_inner {
  padding-left: 2%;
  padding-top: 172px;
  padding-bottom: 126px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(50px) brightness(114%);
  backdrop-filter: blur(50px) brightness(114%);
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}
.company_inner02 { max-width: 800px; margin: 0 auto; }

.company_table {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 50px;
  border-top: 1px solid var(--gray-line);
  position: relative;
  z-index: 20;
}
.company_table th {
  padding: 25px 0;
  font-weight: 700;
  width: 100px;
  vertical-align: top;
  text-align: left;
}
.company_table td {
  padding: 25px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.company_table td a { color: var(--accent); }
.company_table td a:hover { text-decoration: underline; }
.company_table tr { border-bottom: 1px solid var(--gray-line); }

@media screen and (max-width: 767px) {
  .company { margin-bottom: 40px; }
  .company .vertical_ttl > span:last-child { padding-top: 2.014%; }
  .company_inner {
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 49%);
  }
  .company_table th { display: block; width: 100%; padding: 20px 0 15px; }
  .company_table td { display: block; width: 100%; padding: 0 0 20px; }
}

/* ==================== CONTACT ==================== */
.contact { overflow: hidden; }
.contact .vertical_ttl { top: 0; }
.contact_inner {
  padding-left: 2%;
  padding-top: 143px;
  padding-bottom: 273px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(50px) brightness(114%);
  backdrop-filter: blur(50px) brightness(114%);
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}
.contact_inner02 { max-width: 800px; margin: 0 auto; }
.contact_txt { font-size: 20px; line-height: 2; }
.contact_txt .adj { margin: 0 4px; }
.contact_list {
  margin-top: 30px;
  border-top: 1px solid var(--gray-line);
}
.contact_list li {
  font-size: 15px;
  padding: 25px 0;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--gray-line);
}
.contact_list li .label {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 100px;
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 700;
}
.contact_list li a { color: var(--accent); }
.contact_cta {
  display: inline-block;
  margin-top: 60px;
  background: #f08445;
  color: #fff !important;
  padding: 16px 48px;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
.contact_cta:hover { opacity: 0.7; }

@media screen and (max-width: 767px) {
  .contact_inner {
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 120px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 49%);
  }
  .contact_txt { font-size: 15px; line-height: 2; }
  .contact_txt + .contact_txt { margin-top: 20px; }
  .contact_txt .adj { font-size: 12px; }
  .contact_list li { flex-direction: column; gap: 4px; }
}

/* ==================== COPY ==================== */
.copy {
  font-size: 10px;
  font-weight: 600;
  font-family: "century-gothic", "Inter", sans-serif;
  writing-mode: vertical-lr;
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  letter-spacing: 0.05em;
  color: #0D0D0D;
}
.copy_note {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  writing-mode: horizontal-tb;
  font-size: 11px;
  color: var(--gray-txt);
  padding: 20px 20px 40px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .copy { font-size: 7px; top: auto; right: 5px; bottom: 20px; transform: translateY(0); }
}

/* ==================== ANIMATIONS ==================== */

/* --- fade up (default for most elements) --- */
.anim-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- stagger children (product cards, scene cards) --- */
.anim-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.anim-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.anim-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.anim-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.anim-stagger.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.anim-stagger.is-visible > *:nth-child(4) { transition-delay: 0.36s; }
.anim-stagger.is-visible > *:nth-child(5) { transition-delay: 0.48s; }

/* --- title letter stagger --- */
.anim-letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.anim-letters.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

/* --- vertical title fade --- */
.anim-vttl {
  opacity: 0 !important;
  transition: opacity 1.2s ease-out;
}
.anim-vttl.is-visible {
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .anim-vttl.is-visible { opacity: 0.08 !important; }
}

/* --- hero special: fade up with slight scale --- */
.anim-hero {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.anim-hero.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.anim-hero-delay {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
}
.anim-hero-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}