@charset "UTF-8";
/* 引入變數檔案 */
/* 變數 */
/* 全局樣式 */
html,
body {
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 標題樣式 */
h1,
h2,
h3,
.hero-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
}

h1,
h3,
p,
span,
.button,
.hero-title {
  font-weight: 400;
  font-style: normal;
}

h4,
h5 {
  font-weight: 500;
  font-family: "Crimson Text", serif;
}

.hero-title {
  font-size: 6em;
  color: #F8F8FA;
  line-height: 1.1;
}

h1 {
  font-size: 4.5em;
}

h2 {
  font-weight: 400;
  font-style: italic;
  font-size: 3.5em;
}

h3 {
  font-size: 2.5em;
}

h4 {
  font-size: 1.5em;
  color: #6C94B0;
}

h5 {
  font-size: 1.25em;
}

p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: 1em;
  color: #35373B;
}

/* 連結樣式 */
a {
  text-decoration: none;
}

/* 統一icon 樣式 */
/* 記得有新icon class 都要加係度，再把新icon class 加入script.js 整 hover effect */
.icon-bottom-mail img,
.icon-bottom-linkidin img,
a.icon-lang img,
a.m-icon-contact img,
.m-icon-menu,
.m-icon-close {
  width: 3rem;
  height: 3rem;
  display: block;
}

/* text button style */
.button,
.button-lang {
  font-family: "Crimson Text", serif;
  font-size: 1.25em;
  padding: 0 0.75rem;
  height: 3rem;
  color: #35373B;
  align-content: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.button:hover, .button:active,
.button-lang:hover,
.button-lang:active {
  border: 1px solid #35373B;
  border-left: none;
  border-right: none;
  background-color: rgba(106, 109, 118, 0.5);
}

.icon-text-button {
  font-family: "Crimson Text", serif;
  font-size: 1.25em;
  padding: 0 0.75rem;
  height: 3rem;
  color: #B7D5EA;
  transition: background 0.3s ease;
  background-color: #35373B;
  align-items: center;
  justify-content: center;
}
.icon-text-button:hover, .icon-text-button:active {
  border: 1px solid #35373B;
  border-left: none;
  border-right: none;
  color: #35373B;
  background-color: rgba(246, 205, 201, 0.5);
}
.icon-text-button:hover img, .icon-text-button:active img {
  filter: invert(100);
}
.icon-text-button img {
  height: 1.5rem;
  width: 1.5rem;
  display: block;
}

/* slash symbol */
.slash {
  height: 3.75rem;
  align-content: center;
  display: block;
  justify-content: center;
}
.slash p {
  font-size: 1em;
}

/* 所有section 100% */
section {
  width: 100%;
}

/* 12 grid container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 12.5rem 6.75rem 8rem 6.75rem;
}

.span-4 {
  grid-column: span 4;
  display: flex;
  /* 用 subgrid 繼承 .grid-container 的 12 列 */
  flex-direction: column;
  flex-wrap: wrap;
}

.span-8 {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* 添加 overflow: hidden 確保內容不會超出 */
}

/* Navigation bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 6.75rem;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  /* scrolling background blur */
}
header.scrolled {
  background: rgba(183, 213, 234, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0 1rem 0;
}
header .container a.logo {
  display: block;
  width: 8.375em;
  height: 4em;
  background-size: contain;
}
header .container a.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .container nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0;
  /* 修正選擇器 */
}
header .container nav .nav-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-content: center;
}
header .container nav .nav-buttons a.button {
  color: #35373B;
  transition: color 0.3s ease;
}
header .container nav .nav-buttons a.button-lang {
  display: none;
  color: #35373B;
}
header .container nav a.icon-lang img {
  display: block;
}
header .container .menu-btn-position {
  display: none;
}
header .container .menu-btn-position img {
  display: none;
}
header .container .m-icon-contact {
  display: none;
}

/* Hero section */
section#hero-section .container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  /* mobile ver spline viewer */
}
section#hero-section .container .desktop-hero {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}
section#hero-section .container .desktop-hero .desktop-spline {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
section#hero-section .container .mobile-hero {
  display: none;
  /* 所有 hero section slogan intro 放在 @media 內 */
}

/* Graphic section */
section#graphic-section {
  background-image: url("../images/graphicBg.png");
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
section#graphic-section .grid-container .span-4 {
  gap: 1.5rem;
}
section#graphic-section .grid-container .span-4 .slider-instruction {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  color: #6A6D76;
  line-height: 1.75;
  text-align: left;
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
section#graphic-section .grid-container .span-8 {
  justify-content: flex-end;
  width: 100%;
  overflow: hidden; /* 確保內容不會超出 span-8 */
  /* Swiper 容器 */
  /* 幻燈片基本樣式 - 普通模式 */
  /* 分頁器樣式 - 確保在幻燈片下方顯示 */
}
section#graphic-section .grid-container .span-8 .graphic-menu {
  height: 6em;
  gap: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 3.75rem;
  position: relative;
  z-index: 10;
}
section#graphic-section .grid-container .span-8 .graphic-menu .catalogue {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 0;
  flex-wrap: nowrap;
  border: 1px solid #35373B;
  border-left: none;
  border-right: none;
  background-image: linear-gradient(90deg, transparent, rgba(106, 109, 118, 0.2));
}
section#graphic-section .grid-container .span-8 .graphic-menu .catalogue a.catalogue-button {
  font-family: "Crimson Text", serif;
  font-size: 1em;
  padding: 0 0.75rem;
  height: 3rem;
  color: #35373B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
section#graphic-section .grid-container .span-8 .graphic-menu .catalogue a.catalogue-button:hover {
  background-color: rgba(246, 205, 201, 0.8);
}
section#graphic-section .grid-container .span-8 .graphic-menu .catalogue a.catalogue-button.active {
  font-size: 1.25em !important;
  font-weight: 400 !important;
  color: #6A6D76 !important;
  background-color: rgba(246, 205, 201, 0.8) !important;
}
section#graphic-section .grid-container .span-8 .graphic-menu .catalogue a.catalogue-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #35373B;
}
section#graphic-section .grid-container .span-8 .mySwiper {
  width: 100%;
  padding-bottom: 40px; /* 為分頁器留出空間 */
  overflow: hidden !important; /* 確保幻燈片不會超出容器 */
  max-width: 100%; /* 確保不超過父容器寬度 */
  box-sizing: border-box; /* 確保內邊距計入總寬度 */
}
section#graphic-section .grid-container .span-8 .swiper-slide {
  width: 100%; /* 全寬顯示 */
  height: auto;
  aspect-ratio: 3/2;
  max-width: 600px;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0; /* 防止圖片縮小 */
}
section#graphic-section .grid-container .span-8 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
section#graphic-section .grid-container .span-8 .swiper-slide.swiper-slide-active {
  z-index: 10; /* 當前幻燈片在最上層 */
}
section#graphic-section .grid-container .span-8 .swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 20px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  z-index: 15 !important;
}
section#graphic-section .grid-container .span-8 .swiper-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #6A6D76 !important;
  border-radius: 50% !important;
  opacity: 0.5 !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}
section#graphic-section .grid-container .span-8 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #35373B !important;
  opacity: 1 !important;
  transform: scale(1.2) !important;
}

/* About me section */
section#about-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-bottom: auto;
}
section#about-section .about-spline {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 120vh;
  -o-object-fit: fill;
     object-fit: fill;
}
section#about-section .m-about-viewer-container {
  display: none;
}
section#about-section .grid-container .span-8 {
  justify-content: flex-end;
  width: 100%;
  gap: 1.5rem;
}
section#about-section .grid-container .span-8 .about-header {
  height: 6em;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 3.75rem;
}
section#about-section .grid-container .span-8 .about-header .about-menu {
  gap: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section#about-section .grid-container .span-8 .about-header .about-menu .tag-container {
  gap: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  height: 3rem;
}
section#about-section .grid-container .span-8 .about-header .about-menu .tag-container .tag {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: auto;
  justify-content: center;
  align-items: center;
}
section#about-section .grid-container .span-8 .about-header .about-menu .tag-container .tag img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
section#about-section .grid-container .span-8 .about-header .about-menu .tag-container .tag span {
  font-size: 0.75em;
  color: #6A6D76;
  gap: 0.5rem;
}
section#about-section .grid-container .span-8 .about-header .about-menu a.icon-text-button {
  display: flex;
  flex-direction: row;
}
section#about-section .grid-container .span-8 .about-header .about-menu .slash {
  align-content: center;
  display: block;
  justify-content: center;
}
section#about-section .grid-container .span-8 .about-header .about-menu .slash p {
  font-size: 1em;
}
section#about-section .grid-container .span-8 h3 {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  width: 100%;
  margin-left: auto;
  /* 字母間距 (kerning) */
  letter-spacing: -1px;
  /* 字距 (kerning) */
  word-spacing: 0px;
  text-align: right;
  color: #6A6D76;
}
section#about-section .grid-container .span-8 .span-6 {
  /* span-6承計 span-8 用 display flex, 用級margin 頂死右邊 */
  width: 75%;
  /* 喺 8 列中佔 6 列 */
  margin-left: auto;
  /* 靠右對齊 */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  word-spacing: 1px;
}
section#about-section .grid-container .span-8 .span-6 p {
  grid-column: span 6;
  line-height: 1.75;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  text-align: justify;
}
section#about-section .grid-container .span-8 .span-6 .skill-div {
  grid-column: span 6;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
}
section#about-section .grid-container .span-8 .span-6 .skill-div h5 {
  color: #35373B;
}
section#about-section .grid-container .span-8 .span-6 .skill-div .skill-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
section#about-section .grid-container .span-8 .span-6 .skill-div .skill-icon img {
  width: 3rem;
  height: 3rem;
}

/* contact */
section#contact-section {
  /* background-image 順序 url> gradient */
  background-image: url("../images/contact_bg.png"), linear-gradient(120deg, #bbc8d7, #B7D5EA, #FBE9E7);
  width: 100%;
  min-height: 100vh;
}
section#contact-section .grid-container {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
section#contact-section .grid-container .hero-title {
  color: #6C94B0;
}
section#contact-section .grid-container .span-8 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 72.5%;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  gap: 3.75rem;
}
section#contact-section .grid-container .span-8 .contact-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #6A6D76;
}
section#contact-section .grid-container .span-8 .contact-content h3 {
  width: 100%;
  display: block;
  line-height: 1.5;
  /* 字母間距 (kerning) */
  letter-spacing: -1px;
  /* 字距 (kerning) */
  word-spacing: 1px;
  word-break: break-word;
}
section#contact-section .grid-container .span-8 .contact-content h3 span {
  letter-spacing: 0;
}
section#contact-section .grid-container .span-8 .contact-item-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 60px;
}
section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item p.slash {
  height: 3rem;
  align-content: center;
}
section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.icon-bottom-mail, section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.blank-none {
  color: #35373B;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.icon-bottom-mail:hover, section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.icon-bottom-mail:active, section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.blank-none:hover, section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.blank-none:active {
  border: 1px solid #35373B;
  border-left: none;
  border-right: none;
  color: #35373B;
  background-color: rgba(106, 109, 118, 0.5);
}
section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.blank-none img {
  display: none;
}

/* Footer */
footer {
  width: 100%;
  position: relative;
  padding: 1.5rem 6.75rem;
  background: #6A6D76;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: baseline;
}
footer .container h4 {
  color: #F8F8FA;
}
footer .container .sitemap {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
footer .container .sitemap a {
  color: #F8F8FA;
  font-size: 0.75em;
  align-content: center;
}
footer .copyright {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0 0.75em 1em 0;
  gap: 0.5rem;
  align-items: center;
  z-index: 50;
}
footer .copyright a.icon-bottom-mail {
  display: block;
}
footer .copyright a.icon-bottom-linkidin {
  display: block;
}
footer .copyright .xs-txt {
  font-size: 0.75em;
  color: #35373B;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 集中所有 @media 查詢 */
@media (max-width: 540px) {
  /* 12 合一 mobile*/
  .grid-container {
    grid-column: 1/-1;
    padding: 8rem 1em 3.75rem 1em;
  }
  .span-4 {
    display: block;
    /* 用 subgrid 繼承 .grid-container 的 12 列 */
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .span-8 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    margin-top: 3.75rem;
  }
  .hero-title {
    font-size: 4.5em;
  }
  header {
    padding: 0;
  }
  header .container {
    padding: 2.75rem 0 1.5rem 0;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
  }
  header .container .logo {
    margin-left: 1rem;
  }
  header .container .menu-btn-position {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-right: 1rem;
  }
  header .container .menu-btn-position .mobile-menu-icon {
    display: flex;
  }
  header .container .menu-btn-position .mobile-menu-icon img {
    max-width: 3rem;
    max-height: 3rem;
    width: 3rem;
    height: 3rem;
    display: block;
  }
  header .container .menu-btn-position .mobile-menu-icon .m-icon-close {
    display: none;
  }
  header .container .menu-btn-position img.m-icon-contact {
    display: block;
    max-width: 3rem;
    max-height: 3rem;
    width: 3rem;
    height: 3rem;
  }
  header .container nav {
    display: none;
    margin-top: 1.5rem;
    width: 100vw;
    background-color: rgba(106, 109, 118, 0.8);
    transition: color 0.3s ease;
  }
  header .container nav.open {
    display: block;
    /* 改動 4：展開時顯示 nav */
  }
  header .container nav a.icon-lang {
    display: none;
  }
  header .container nav .nav-buttons {
    display: flex;
    flex-direction: column;
    width: 100vw;
    text-align: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
  }
  header .container nav .nav-buttons a.button,
  header .container nav .nav-buttons a.button-lang {
    display: block;
    color: #F8F8FA;
  }
  /* Mobile Hero section */
  section#hero-section .container .desktop-hero {
    display: none;
  }
  section#hero-section .container .mobile-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 0;
  }
  section#hero-section .container .mobile-hero .m-hero-spline {
    position: relative;
    max-width: 100vw;
    max-height: 100vh;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: -1;
  }
  section#hero-section .container .mobile-hero .hero-txt {
    position: absolute;
    gap: 0.5rem;
    text-align: center;
    color: #35373B;
    width: 100%;
    top: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  section#hero-section .container .mobile-hero .hero-txt .hero-slogan {
    color: #35373B;
    gap: 0.5rem;
  }
  section#hero-section .container .mobile-hero .hero-txt .hero-slogan .hero-slogan {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 14vw, 56px);
    margin: 0;
    line-height: 1;
  }
  section#hero-section .container .mobile-hero .hero-txt .hero-slogan .hero-ltalic {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(32px, 10vw, 40px);
    margin: 0;
    line-height: 1;
  }
  section#hero-section .container .mobile-hero .hero-txt .hero-myName h4 {
    font-size: clamp(24px, 8vw, 32px);
    margin: 0.5rem 0;
    line-height: 1;
  }
  section#hero-section .container .mobile-hero .hero-txt .hero-intro h5 {
    font-size: clamp(16px, 4vw, 24px);
    line-height: 2;
    margin-bottom: 1.5rem;
  }
  /* Graphic section mobile */
  section#graphic-section {
    min-height: 100vh;
  }
  section#graphic-section .grid-container {
    display: flex;
    flex-direction: column;
  }
  section#graphic-section .grid-container .span-4 {
    width: 100%;
  }
  section#graphic-section .grid-container .span-4 .slider-instruction {
    font-size: 0.875em;
    flex-wrap: nowrap;
    text-align: left;
    margin-top: 24px;
  }
  section#graphic-section .grid-container .span-8 {
    /* 修改 5：修正手機版 Catalogue Menu 和 Slider 距離為 24px */
    margin-top: 48px;
  }
  section#graphic-section .grid-container .span-8 .graphic-menu {
    height: 3.2em;
    gap: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 24px;
  }
  section#graphic-section .grid-container .span-8 .graphic-menu .catalogue {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  section#graphic-section .grid-container .span-8 .mySwiper {
    max-height: none;
    margin-bottom: 48px;
    overflow: hidden !important; /* 確保幻燈片不會超出容器 */
  }
  section#graphic-section .grid-container .span-8 .swiper-slide {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }
  /* Mobile About me section */
  section#about-section {
    min-height: 100vh;
  }
  section#about-section .about-spline {
    display: none;
  }
  section#about-section .m-about-viewer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 145vh;
  }
  section#about-section .m-about-viewer-container .m-about-spline {
    position: relative;
    max-width: 100vw;
    max-height: 145vh;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
  }
  section#about-section .grid-container {
    position: absolute;
    top: 0;
    width: 100vw;
    min-height: 100vh;
    display: block;
  }
  section#about-section .grid-container .span-8 {
    display: flex;
    gap: 1.5rem;
  }
  section#about-section .grid-container .span-8 .about-header {
    display: contents;
  }
  section#about-section .grid-container .span-8 .about-header .about-menu {
    width: 100%;
    justify-content: space-between;
    display: contents;
    order: 1;
  }
  section#about-section .grid-container .span-8 .about-header .about-menu a.icon-text-button {
    display: flex;
    flex-direction: row;
    order: 4;
  }
  section#about-section .grid-container .span-8 .about-header .about-menu .slash {
    display: none;
  }
  section#about-section .grid-container .span-8 h3 {
    font-size: 1.75em;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    order: 2;
  }
  section#about-section .grid-container .span-8 .span-6 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    order: 3;
    gap: 3.75rem;
  }
  section#about-section .grid-container .span-8 .span-6 p {
    font-size: 0.875em;
  }
  section#about-section .grid-container .span-8 .span-6 .skill-div {
    justify-content: space-between;
    padding-bottom: 1.5rem;
  }
  section#about-section .grid-container .span-8 .span-6 .skill-div h5 {
    font-size: 1em;
  }
  section#about-section .grid-container .span-8 .span-6 .skill-div .skill-icon {
    gap: 0.75rem;
  }
  /* Mobile contact */
  section#contact-section {
    height: 100vh;
  }
  section#contact-section .grid-container {
    gap: 3.75rem;
  }
  section#contact-section .grid-container .span-4 {
    margin-left: -4px;
  }
  section#contact-section .grid-container .span-8 {
    width: 100%;
    gap: 1.5rem;
    flex-direction: column;
    gap: 3.75rem;
  }
  section#contact-section .grid-container .span-8 .contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #6A6D76;
  }
  section#contact-section .grid-container .span-8 .contact-content h3 {
    font-size: 1.75em;
    /* 字母間距 (kerning) */
    letter-spacing: 0px;
    /* 字距 (kerning) */
  }
  section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item p.slash {
    display: none;
  }
  section#contact-section .grid-container .span-8 .contact-item-wrapper .contact-item a.blank-none img {
    padding: 0 1.5rem;
    width: 3rem;
    display: block;
  }
  footer {
    position: absolute;
    padding: 1.5rem 1rem;
  }
  footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .container h4 {
    display: none;
  }
  footer .container .sitemap {
    display: none;
  }
  footer .copyright {
    position: static;
    margin: 0;
    gap: 0;
  }
  footer .copyright a.icon-bottom-mail,
  footer .copyright a.icon-bottom-linkidin {
    display: none;
  }
  footer .copyright .xs-txt {
    writing-mode: horizontal-tb;
    text-orientation: unset;
    text-align: center;
    color: #F8F8FA;
  }
}/*# sourceMappingURL=style.css.map */