@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");
body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

ul {
  list-style: none;
}

section {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
a {
  text-decoration: none;
  color: black;
}

.navbar.scrolled {
  background: red;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  height: 80px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: red;
}

#hero {
  width: 100%;
  height: 70vh;
}
#hero .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
#hero .swiper .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(0, 0, 0, 0.438);
}
#hero .swiper .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
#hero .swiper .cta-box .cta-content h1 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 3rem;
}
#hero .swiper .cta-box .cta-content p {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
#hero .swiper .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
#hero .swiper .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 10rem;
  transition: 0.5s;
}
#hero .swiper .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .swiper .cta-box .cta-content .btn-box a:first-child {
  background: #c2a661;
  color: #3a2e1f;
  border-radius: 2em;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(194, 166, 97, 0.13);
  border: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.25s cubic-bezier(0.4, 1.5, 0.5, 1), filter 0.2s;
  animation: btn-gold-in 0.7s cubic-bezier(0.4, 1.5, 0.5, 1);
}
#hero .swiper .cta-box .cta-content .btn-box a:first-child::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 120%;
  height: 220%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.45) 75%, rgba(255, 255, 255, 0) 90%);
  transform: skewX(-25deg);
  pointer-events: none;
  animation: btn-gloss-move 2.2s linear infinite;
}
#hero .swiper .cta-box .cta-content .btn-box a:last-child {
  color: white;
}
#hero .swiper .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #c2a661;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: 80vh;
  }
  #hero .swiper {
    width: 100%;
    height: 100%;
    position: relative;
  }
  #hero .swiper .cta-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 2rem;
    display: flex;
    align-items: center;
  }
  #hero .swiper .cta-box .cta-content {
    background: linear-gradient(140deg, rgba(194, 166, 97, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 1rem;
  }
  #hero .swiper .cta-box .cta-content h1 {
    font-size: 1.4rem;
  }
  #hero .swiper .cta-box .cta-content p {
    margin-bottom: 2rem;
  }
  #hero .swiper .cta-box .cta-content .btn-box {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  #hero .swiper .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero .swiper .cta-box .cta-content .btn-box a i {
    padding-left: 0.5rem;
    font-size: 1.3rem;
  }
  #hero .swiper .cta-box .cta-content .btn-box a:first-child {
    border: 1px solid white;
    border-radius: 10rem;
  }
  #hero .swiper .cta-box .cta-content .btn-box a:last-child {
    color: white;
  }
  #hero .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #c2a661;
}
#works .nav-pills .nav-link {
  color: #FF6B00;
}
#works .work-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  #works .work-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
  }
}
#contact {
  background: #f8f5f0;
  color: #4b3b2a;
  padding: 6rem 0 4rem 0;
}
#contact .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#contact .contact-title {
  color: #3a2e1f;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  border-left: 6px solid #c2a661;
  padding-left: 1rem;
  line-height: 1.3;
}
#contact .contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#contact .contact-list .contact-box {
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(194, 166, 97, 0.07);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-left: 5px solid #c2a661;
}
#contact .contact-list .contact-box .icon {
  font-size: 2rem;
  color: #c2a661;
  min-width: 2.5rem;
  text-align: center;
}
#contact .contact-list .contact-box .info {
  flex: 1;
}
#contact .contact-list .contact-box .info .label {
  font-size: 1.1rem;
  color: #a08c6a;
  margin-bottom: 0.2rem;
}
#contact .contact-list .contact-box .info .value {
  font-size: 1.15rem;
  color: #3a2e1f;
  font-weight: 600;
  word-break: break-all;
}
#contact .contact-list .contact-box .info a.value {
  color: #3a2e1f;
  text-decoration: underline;
  transition: color 0.2s;
}
#contact .contact-list .contact-box .info a.value:hover {
  color: #c2a661;
}

@media (max-width: 768px) {
  #contact {
    padding: 3rem 0 2rem 0;
  }
  #contact .contact-title {
    font-size: 1.3rem;
    padding-left: 0.7rem;
  }
  #contact .contact-list {
    gap: 1rem;
  }
  #contact .contact-list .contact-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem;
  }
  #contact .contact-list .contact-box .icon {
    font-size: 1.5rem;
  }
  #contact .contact-list .contact-box .info .value {
    font-size: 1rem;
  }
}
footer {
  background: #f2f2f2;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}

#about {
  background: #f8f5f0;
  color: #4b3b2a;
  padding: 6rem 0 4rem 0;
}
#about .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#about .about-title {
  color: #3a2e1f;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  border-left: 6px solid #c2a661;
  padding-left: 1rem;
  line-height: 1.3;
}
#about .about-list {
  margin-bottom: 2.5rem;
}
#about .about-list li {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.9;
  position: relative;
  padding-left: 1.5em;
}
#about .about-list li::before {
  content: "✓";
  color: #c2a661;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.1em;
}
#about .about-list li b, #about .about-list li strong {
  color: #c2a661;
  font-weight: 700;
}
#about .about-quote {
  background: rgba(194, 166, 97, 0.08);
  border-left: 4px solid #c2a661;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  color: #3a2e1f;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}
#about .about-note {
  color: #a08c6a;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: right;
  font-style: italic;
}
#about .about-experience {
  color: #3a2e1f;
  font-size: 1.1rem;
  font-family: "Noto Serif TC", serif;
  border-top: 1px dashed #c2a661;
  padding-top: 1.2rem;
  margin-top: 2rem;
  text-align: right;
}

@media (max-width: 768px) {
  #about {
    padding: 3rem 0 2rem 0;
  }
  #about .about-title {
    font-size: 1.4rem;
    padding-left: 0.7rem;
  }
  #about .about-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  #about .about-quote, #about .about-experience {
    font-size: 1rem;
    padding: 1rem;
  }
}
#services {
  background: #f8f5f0;
  color: #4b3b2a;
  padding: 6rem 0 4rem 0;
}
#services .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#services .services-title {
  color: #3a2e1f;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  border-left: 6px solid #c2a661;
  padding-left: 1rem;
  line-height: 1.3;
}
#services .services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.15rem;
}
#services .services-list li {
  padding-left: 1.5em;
  position: relative;
}
#services .services-list li::before {
  content: "•";
  color: #c2a661;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0.1em;
}

#services .services-list.with-img {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}
#services .services-list.with-img .service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  border-bottom: 1.5px solid #e5dcc7;
  padding-bottom: 2rem;
  padding-left: 0.5rem;
  position: relative;
}
#services .services-list.with-img .service-item:last-child {
  border-bottom: none;
}
#services .services-list.with-img .service-item .service-img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.7rem;
  border: 2.5px solid #c2a661;
  box-shadow: none;
  background: #f8f5f0;
  flex-shrink: 0;
}
#services .services-list.with-img .service-item .service-text {
  color: #3a2e1f;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
  padding-left: 0.5rem;
  position: relative;
}
#services .services-list.with-img .service-item .service-text::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 0.18em;
  background: #c2a661;
  border-radius: 1em;
  margin-right: 0.7em;
  vertical-align: middle;
}

@media (max-width: 900px) {
  #services .services-list.with-img {
    gap: 1.5rem;
  }
  #services .services-list.with-img .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
  #services .services-list.with-img .service-item .service-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  #services .services-list.with-img .service-item .service-text {
    font-size: 1.1rem;
    padding-left: 0;
  }
  #services .services-list.with-img .service-item .service-text::before {
    display: none;
  }
}
#process {
  background: #f8f5f0;
  color: #4b3b2a;
  padding: 6rem 0 4rem 0;
}
#process .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#process .process-title {
  color: #3a2e1f;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  border-left: 6px solid #c2a661;
  padding-left: 1rem;
  line-height: 1.3;
}
#process .process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.15rem;
  counter-reset: step;
  list-style: none;
}
#process .process-list li {
  padding-left: 2.5em;
  position: relative;
  min-height: 2.2em;
}
#process .process-list li::before {
  counter-increment: step;
  content: counter(step) ".";
  color: #c2a661;
  font-weight: bold;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
}

#process .process-list.with-icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
#process .process-list.with-icon .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-width: 120px;
}
#process .process-list.with-icon .process-step .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f8f5f0;
  border: 2.5px solid #c2a661;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  color: #c2a661;
  box-shadow: 0 2px 8px rgba(194, 166, 97, 0.08);
  transition: background 0.2s, color 0.2s;
}
#process .process-list.with-icon .process-step .step-text {
  color: #3a2e1f;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
#process .process-list.with-icon .process-step:hover .icon {
  background: #c2a661;
  color: #fff;
}

@media (max-width: 900px) {
  #process .process-list.with-icon {
    flex-direction: column;
    gap: 1.5rem;
  }
  #process .process-list.with-icon .process-step {
    flex-direction: row;
    align-items: center;
  }
  #process .process-list.with-icon .process-step .icon {
    margin-bottom: 0;
    margin-right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  #process .process-list.with-icon .process-step .step-text {
    text-align: left;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #services, #process {
    padding: 3rem 0 2rem 0;
  }
  #services .services-title, #services .process-title, #process .services-title, #process .process-title {
    font-size: 1.3rem;
    padding-left: 0.7rem;
  }
  #services .services-list, #services .process-list, #process .services-list, #process .process-list {
    font-size: 1rem;
    gap: 1rem;
  }
  #services .process-list li, #services .services-list li, #process .process-list li, #process .services-list li {
    padding-left: 1.5em;
  }
}
@keyframes btn-gold-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes btn-gloss-move {
  0% {
    left: -60%;
  }
  100% {
    left: 100%;
  }
}
#hero .btn-box a:first-child:hover {
  filter: brightness(1.08) drop-shadow(0 2px 8px rgba(194, 166, 97, 0.2666666667));
  color: #2c2c2c;
  background: #e6c77a;
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(194, 166, 97, 0.18);
}/*# sourceMappingURL=style.css.map */