@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.2rem);
  font-weight: 300;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 300;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 300;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 300;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 300;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 300;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 300;
  line-height: 1.4;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #59585c;
  background: #ede7e0;
}

[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #59585c;
}

h2 {
  margin-bottom: 4rem;
  text-align: center;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  text-transform: capitalize;
  color: #59585c;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
}

.swap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4em;
  vertical-align: middle;
  padding: 0 1rem;
}

.swap .split {
  display: block;
  will-change: transform;
}

.split {
  display: block;
}

.char {
  display: inline-block;
  position: relative;
}
.char:first-child {
  text-transform: uppercase;
}

.split.en {
  text-transform: lowercase;
}

.split.zh {
  text-align: center;
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #59585c;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #ede7e0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(0);
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0rem;
  padding-bottom: 0;
}
.navbar .navbar-brand img {
  width: 250px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse {
  /* -----------------------------------
     導覽列雙語排版與間距
  ----------------------------------- */
}
.navbar .navbar-collapse .navbar-nav {
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.25rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 0.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link .en {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #59585c;
  transition: color 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link .zh {
  font-size: 0.85rem;
  color: #59585c;
  font-weight: 400;
  transition: color 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover .en,
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover .zh, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus .en,
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus .zh {
  color: #d15d47;
}
.navbar .navbar-collapse .navbar-nav {
  /* -----------------------------------
     整合後的下拉選單美化 (已去重)
  ----------------------------------- */
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid #e6e7e8;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  min-width: 260px;
  white-space: normal;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0;
  }
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.5rem;
  white-space: normal;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item .en {
  font-family: "Noto Serif TC", serif;
  font-size: 0.95rem;
  color: #59585c;
  transition: color 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item .zh {
  font-size: 0.85rem;
  color: rgb(126.8416666667, 125.4333333333, 131.0666666667);
  margin-top: 0.2rem;
  transition: color 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover, .navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: rgba(209, 93, 71, 0.05);
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover .en,
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover .zh, .navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:focus .en,
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:focus .zh {
  color: #d15d47;
}
.navbar .navbar-collapse {
  /* -----------------------------------
     新增：右上角社群 Icons 樣式 (適用於 Phosphor Regular)
  ----------------------------------- */
}
.navbar .navbar-collapse .social-links a {
  color: #59585c;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar .navbar-collapse .social-links a:hover, .navbar .navbar-collapse .social-links a:focus {
  color: #d15d47;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .social-links a {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .social-links {
    padding-left: 1rem;
    padding-bottom: 1rem;
  }
}

#hero {
  width: 100%;
  height: calc(100vh - 115.66px);
  position: relative;
  overflow: hidden;
  margin-top: 115.66px;
}
@media (max-width: 768px) {
  #hero {
    height: 60vh;
    margin-top: 88.32px;
  }
}
@media (max-width: 576px) {
  #hero {
    height: 40vh;
    margin-top: 86.32px;
  }
}
#hero .swiper {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 8s ease;
}
#hero .swiper .swiper-slide-active img {
  transform: scale(1.1);
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4470588235);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem;
  }
}
#hero .cta-box .cta-content {
  text-align: center;
  color: #59585c;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 0;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.5;
  color: rgb(14, 16, 36);
  color: white;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    border-radius: 3px;
    padding: 0.4rem 1rem;
  }
}
@media (max-width: 576px) {
  #hero .cta-box .cta-content .btn-box a {
    border-radius: 3px;
    padding: 0.5rem 1rem;
  }
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #d15d47;
  border: 1px solid #d15d47;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:first-child:hover {
  background: rgb(183.2, 67.7043478261, 45.8);
  border-color: rgb(183.2, 67.7043478261, 45.8);
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: #59585c;
  background: rgba(255, 255, 255, 0.8);
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
}

#about h2 {
  text-align: start;
}
#about p {
  line-height: 2;
  margin-bottom: 2rem;
}

/* -----------------------------------
   獨立認證區塊 (Certification)
----------------------------------- */
#certification {
  background: #ede7e0;
}
#certification .company-cert-box {
  background: #ffffff;
  border: 1px solid #e6e7e8;
  border-radius: 8px;
  padding: 3rem 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
@media (max-width: 768px) {
  #certification .company-cert-box {
    padding: 1.5rem;
  }
}
#certification .company-cert-box .cert-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed #e6e7e8;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#certification .company-cert-box .cert-header .en {
  font-family: "Noto Serif TC", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #d15d47;
  font-weight: 500;
}
#certification .company-cert-box .cert-header .zh {
  font-size: 1.1rem;
  color: #59585c;
  font-weight: 500;
}
#certification .company-cert-box .cert-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  #certification .company-cert-box .cert-body {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
#certification .company-cert-box .cert-body .cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#certification .company-cert-box .cert-body .cert-item i {
  font-size: 1.5rem;
  color: #d15d47;
  flex-shrink: 0;
}
#certification .company-cert-box .cert-body .cert-item span {
  font-size: 1rem;
  color: #59585c;
  line-height: 1.5;
}

#services {
  background: #ede7e0;
}
#services .service-card {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  #services .service-card {
    padding: 0rem;
    padding-bottom: 2rem;
  }
}
#services .service-card .icon {
  text-align: center;
}
#services .service-card .icon svg {
  width: 20%;
  fill: #d15d47;
}
@media (max-width: 768px) {
  #services .service-card .icon svg {
    width: 25%;
  }
}
@media (max-width: 576px) {
  #services .service-card .icon svg {
    width: 20%;
  }
}
#services .service-card h3 {
  color: #59585c;
  text-align: center;
  margin: 2rem 0 1.5rem;
}
@media (max-width: 768px) {
  #services .service-card h3 {
    margin: 2.5rem 0 1rem;
  }
}
#services .service-card p {
  color: #59585c;
}
#services .service-card ul {
  list-style: square;
}
#services .service-card ul li + li {
  margin-top: 1rem;
}

#process {
  background: #f7f7f7;
  padding-right: 8rem;
  padding-left: 8rem;
}
@media (max-width: 768px) {
  #process {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media (max-width: 768px) {
  #process h2 {
    margin-bottom: 0;
  }
}
#process {
  /* 整合後的分類切換按鈕樣式 */
}
#process .process-switch {
  display: flex;
  gap: 12px;
  justify-content: center;
}
#process .process-switch .process-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 6px;
  border: 1px solid #59585c;
  background: transparent;
  color: #59585c;
  padding: 12px 16px;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 768px) {
  #process .process-switch .process-tab {
    padding: 12px 8px;
    border-radius: 3px;
    width: 100%;
    text-align: center;
  }
}
#process .process-switch .process-tab:hover {
  border-color: #d15d47;
  color: #d15d47;
}
#process .process-switch .process-tab.is-active {
  background: #d15d47;
  color: #fff;
  border-color: #d15d47;
}
#process {
  /* 流程內容樣式 */
}
#process .process-box .img-box {
  width: 40px;
  background: white;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #process .process-box .img-box {
    width: 30px;
  }
}
#process .process-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#process .process-box .content h4 {
  color: #59585c;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  #process .process-box .content h4 {
    margin-top: 0;
    font-size: 1rem;
  }
}
#process .process-box .content h4 span {
  margin-right: 0.5rem;
}
#process .process-box .content p {
  padding-right: 2rem;
}
@media (max-width: 768px) {
  #process .process-box .content p {
    font-size: 0.9rem;
  }
}
#process {
  /* 費用說明樣式 */
}
#process .fee-note {
  padding: 1.25rem 1.5rem;
  border: 1px solid #e3e3e3;
  background: #ede7e0;
  backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  #process .fee-note {
    padding: 1rem 1.1rem;
    margin-bottom: 2rem;
  }
}
#process .fee-note .fee-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #d15d47;
}
#process .fee-note .fee-title i {
  color: #d15d47;
}
@media (max-width: 768px) {
  #process .fee-note .fee-title {
    font-size: 0.95rem;
  }
}
#process .fee-note ul {
  margin: 0;
  padding-left: 1.2rem;
}
#process .fee-note ul li {
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
@media (max-width: 768px) {
  #process .fee-note ul li {
    font-size: 0.9rem;
  }
}

#works {
  background: #ede7e0;
  /* 分類切換按鈕樣式 (已同步 Process 樣式) */
}
#works .works-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
}
#works .works-filter .filter-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 6px;
  border: 1px solid #59585c;
  background: transparent;
  color: #59585c;
  padding: 12px 16px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  #works .works-filter .filter-tab {
    padding: 12px 8px;
    border-radius: 3px;
    width: 100%;
    text-align: center;
  }
}
#works .works-filter .filter-tab:hover {
  border-color: #d15d47;
  color: #d15d47;
}
#works .works-filter .filter-tab.is-active {
  background: #d15d47;
  color: #fff;
  border-color: #d15d47;
}
#works {
  /* 作品卡片樣式 */
}
#works .work-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: inline-block;
}
#works .work-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .work-card .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(44, 41, 37, 0.65);
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 2rem;
}
#works .work-card .text h4 {
  color: white;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}
#works .work-card .text .en-sub {
  color: #cfcfcf;
  font-family: "Noto Serif TC", serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
#works .work-card:hover img {
  transform: scale(1.1);
}
#works .work-card:hover .text {
  opacity: 0;
}

#contact {
  background: #59585c;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact h2 {
  color: white;
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  color: white;
  border-bottom: 1px solid rgb(114, 114, 114);
}
@media (max-width: 768px) {
  #contact .contact-box {
    padding: 1.5rem 0;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  color: rgb(164, 164, 164);
}
#contact .contact-box .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  color: rgb(164, 164, 164);
  font-size: 2rem;
}
#contact .contact-box svg {
  fill: white;
  fill: rgb(164, 164, 164);
}
#contact .contact-box a {
  color: white;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  color: white;
  background: #59585c;
  padding-bottom: 1rem;
}
footer a {
  color: white;
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */