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

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

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

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

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

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

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

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

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

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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  background-color: #f7f6f3;
  color: #1b1b1b;
  line-height: 1.85;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-label {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: #b03a2e;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
@media (max-width: 768px) {
  .section-label {
    font-size: 0.72rem;
  }
}

.section-h2 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #1b1b1b;
  position: relative;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.section-h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: #b03a2e;
  margin-top: 0.6rem;
}
@media (max-width: 768px) {
  .section-h2 {
    font-size: 2.2rem;
  }
}

.section-desc {
  color: #555555;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-desc {
    font-size: 0.9rem;
  }
}

#mainNav {
  background: transparent;
  background: #1b1b1b;
  padding: 1.2rem 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
#mainNav.scrolled {
  background: #1b1b1b;
}
#mainNav .navbar-brand {
  gap: 0.75rem;
}
#mainNav .navbar-brand .nav-logo {
  width: 300px;
}
@media (max-width: 768px) {
  #mainNav .navbar-brand .nav-logo {
    width: 180px;
  }
}
#mainNav .navbar-brand .brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
#mainNav .navbar-brand .brand-name .brand-cn {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f7f6f3;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  #mainNav .navbar-brand .brand-name .brand-cn {
    font-size: 1rem;
  }
}
#mainNav .navbar-brand .brand-name .brand-sub {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: #d8c8a3;
  text-transform: uppercase;
}
#mainNav .navbar-toggler {
  border: none;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
}
#mainNav .navbar-toggler:focus {
  box-shadow: none;
}
#mainNav .navbar-toggler .toggler-icon {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #f7f6f3;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#mainNav .navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
  display: none;
}
@media (max-width: 768px) {
  #mainNav .navbar-toggler .navbar-toggler-icon {
    display: inline-block;
  }
}
#mainNav .navbar-nav {
  gap: 0.25rem;
}
@media (max-width: 991px) {
  #mainNav .navbar-nav {
    padding: 1rem 0;
    gap: 0;
    background: #1b1b1b;
  }
}
#mainNav .nav-link {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: rgba(247, 246, 243, 0.8) !important;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: #b03a2e;
  transform: scaleX(0);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
#mainNav .nav-link:hover {
  color: #f7f6f3 !important;
}
#mainNav .nav-link:hover::after {
  transform: scaleX(1);
}
@media (max-width: 991px) {
  #mainNav .nav-link {
    padding: 0.7rem 1.5rem;
    border-bottom: 1px solid rgba(247, 246, 243, 0.06);
  }
  #mainNav .nav-link::after {
    display: none;
  }
}

#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 768px) {
  #hero {
    height: 30vh;
    margin-top: 89.73px;
  }
}
#hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero .hero-bg .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#hero .hero-bg .swiper {
  width: 100%;
  height: 100%;
}
#hero .hero-bg .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
}
#hero .hero-content {
  padding-top: 4rem;
}
@media (max-width: 768px) {
  #hero .hero-content {
    padding-top: 6rem;
  }
}
#hero .hero-eyebrow {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: #d8c8a3;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #hero .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }
}
#hero .hero-title {
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
#hero .hero-title .hero-title-line {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: #f7f6f3;
  display: block;
}
@media (max-width: 768px) {
  #hero .hero-title .hero-title-line {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }
}
#hero .hero-title .accent {
  color: #b03a2e;
}
#hero .hero-desc {
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: rgba(247, 246, 243, 0.7);
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  #hero .hero-desc {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }
}
#hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#hero .hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
#hero .hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #d8c8a3);
  animation: scrollLine 1.8s ease-in-out infinite;
}
#hero .hero-scroll-hint p {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(247, 246, 243, 0.5);
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media (max-width: 768px) {
  #hero .hero-scroll-hint {
    display: none;
  }
}

.btn-primary-custom {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: #b03a2e;
  color: #f7f6f3;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  border: 1px solid #b03a2e;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-custom:hover {
  background: transparent;
  color: #f7f6f3;
  border-color: #f7f6f3;
}
@media (max-width: 768px) {
  .btn-primary-custom {
    padding: 0.75rem 1.8rem;
    font-size: 0.8rem;
  }
}

.btn-ghost-custom {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: #f7f6f3;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  border: 1px solid rgba(247, 246, 243, 0.5);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-ghost-custom:hover {
  border-color: #f7f6f3;
  background: rgba(247, 246, 243, 0.1);
}
@media (max-width: 768px) {
  .btn-ghost-custom {
    padding: 0.75rem 1.8rem;
    font-size: 0.8rem;
  }
}

#about {
  background: #f7f6f3;
}
#about .about-images {
  position: relative;
}
#about .about-images .about-swiper {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 20px 20px 0 #d8d8d8;
}
@media (max-width: 768px) {
  #about .about-images .about-swiper {
    aspect-ratio: 3/2;
    box-shadow: 10px 10px 0 #d8d8d8;
  }
}
#about .about-images .about-swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-images .about-swiper .swiper-pagination-bullet {
  background: #f7f6f3;
  opacity: 0.6;
}
#about .about-images .about-swiper .swiper-pagination-bullet-active {
  background: #b03a2e;
  opacity: 1;
}
#about .about-images .about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  background: #1b1b1b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(27, 27, 27, 0.2);
}
@media (max-width: 768px) {
  #about .about-images .about-badge {
    bottom: -1rem;
    right: -0.5rem;
    width: 70px;
    height: 70px;
  }
}
#about .about-images .about-badge .badge-num {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1.5rem;
  color: #d8c8a3;
  line-height: 1;
}
@media (max-width: 768px) {
  #about .about-images .about-badge .badge-num {
    font-size: 1.2rem;
  }
}
#about .about-images .about-badge .badge-text {
  font-size: 0.65rem;
  color: rgba(247, 246, 243, 0.7);
  letter-spacing: 0.05em;
  text-align: center;
}
#about .about-content {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  #about .about-content {
    padding-left: 0;
  }
}
#about .about-text {
  margin-bottom: 2rem;
}
#about .about-text p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #about .about-text p {
    font-size: 0.9rem;
  }
}
#about .about-text .about-lead {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1.15rem;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #about .about-text .about-lead {
    font-size: 1rem;
  }
}
#about .about-text .about-closing {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1rem;
  color: #1b1b1b;
  font-weight: 400;
  font-style: italic;
}
#about .about-text strong {
  color: #1b1b1b;
  font-weight: 600;
}
#about .about-values {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #about .about-values {
    gap: 1.2rem;
  }
}
#about .about-values .value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
#about .about-values .value-item i {
  font-size: 1.5rem;
  color: #b03a2e;
}
#about .about-values .value-item span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #555555;
}

#services {
  background: #efefef;
}
#services .service-card {
  background: #f7f6f3;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
#services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27, 27, 27, 0.12);
  border-color: #d8d8d8;
}
#services .service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}
#services .service-card:hover .service-overlay {
  opacity: 0.15;
}
#services .service-card .service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#services .service-card .service-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#services .service-card .service-img-wrap .service-overlay {
  position: absolute;
  inset: 0;
  background: #b03a2e;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#services .service-card .service-body {
  padding: 1.8rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #services .service-card .service-body {
    padding: 1.4rem 1.2rem;
  }
}
#services .service-card .service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
#services .service-card .service-icon i {
  font-size: 1.4rem;
  color: #b03a2e;
}
#services .service-card h3 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1b1b1b;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
#services .service-card .service-sub {
  font-size: 0.8rem;
  color: #b03a2e;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
#services .service-card p {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}
#services .service-card .service-scope {
  font-size: 0.82rem;
  color: rgba(85, 85, 85, 0.8);
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid #d8d8d8;
}
#services .commitment-bar {
  background: #1b1b1b;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #services .commitment-bar {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
#services .commitment-bar .commitment-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#services .commitment-bar .commitment-item i {
  font-size: 1.1rem;
  color: #b03a2e;
}
#services .commitment-bar .commitment-item span {
  font-size: 0.85rem;
  color: rgba(247, 246, 243, 0.85);
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  #services .commitment-bar .commitment-item span {
    font-size: 0.78rem;
  }
}

#process {
  background: #f7f6f3;
}
#process .timeline-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
#process .timeline-wrap::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d8d8d8;
  z-index: 0;
}
@media (max-width: 768px) {
  #process .timeline-wrap::before {
    left: 22px;
  }
}
#process .timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #process .timeline-item {
    gap: 0.2rem;
    margin-bottom: 2rem;
  }
}
#process .timeline-item.last {
  margin-bottom: 0;
}
#process .timeline-item .timeline-num {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 2rem;
  color: #b03a2e;
  letter-spacing: 0.1em;
  min-width: 76px;
  text-align: center;
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #process .timeline-item .timeline-num {
    min-width: 44px;
    font-size: 1.8rem;
  }
}
#process .timeline-item .timeline-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex: 1;
  background: #f7f6f3;
  border: 1px solid #d8d8d8;
  padding: 1.8rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
#process .timeline-item .timeline-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#process .timeline-item .timeline-body:hover {
  box-shadow: 0 8px 40px rgba(27, 27, 27, 0.08);
  border-color: transparent;
}
#process .timeline-item .timeline-body:hover::before {
  background: #b03a2e;
}
@media (max-width: 768px) {
  #process .timeline-item .timeline-body {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }
}
#process .timeline-item .timeline-icon {
  min-width: 48px;
  height: 48px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#process .timeline-item .timeline-icon i {
  font-size: 1.4rem;
  color: #b03a2e;
}
@media (max-width: 768px) {
  #process .timeline-item .timeline-icon {
    min-width: 40px;
    height: 40px;
  }
  #process .timeline-item .timeline-icon i {
    font-size: 1.2rem;
  }
}
#process .timeline-item .timeline-content {
  flex: 1;
}
#process .timeline-item .timeline-content h3 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #1b1b1b;
  margin-bottom: 0.2rem;
}
@media (max-width: 768px) {
  #process .timeline-item .timeline-content h3 {
    font-size: 1rem;
  }
}
#process .timeline-item .timeline-content .timeline-sub {
  font-size: 0.78rem;
  color: #b03a2e;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
#process .timeline-item .timeline-content p {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #process .timeline-item .timeline-content p {
    font-size: 0.84rem;
  }
}
#process .timeline-item .timeline-content .timeline-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
#process .timeline-item .timeline-content .timeline-tags span {
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid #d8d8d8;
  color: #555555;
  letter-spacing: 0.05em;
  background: #efefef;
}
#process .process-promise {
  border: 1px solid #d8d8d8;
  padding: 2rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#process .process-promise::before {
  content: "✦";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f7f6f3;
  padding: 0 0.75rem;
  color: #b03a2e;
  font-size: 0.9rem;
}
#process .process-promise p {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1rem;
  color: #555555;
  line-height: 2;
  font-style: italic;
}
#process .process-promise p strong {
  color: #1b1b1b;
  font-style: normal;
}
@media (max-width: 768px) {
  #process .process-promise {
    padding: 1.5rem;
  }
}

.auto-carousel {
  padding-top: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#contact {
  background: #1b1b1b;
}
#contact .section-label {
  color: #d8c8a3;
}
#contact .section-h2 {
  color: #f7f6f3;
}
#contact .section-h2::after {
  background: #b03a2e;
}
#contact .contact-info-box {
  height: 100%;
  padding: 2.5rem;
  border: 1px solid rgba(247, 246, 243, 0.12);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #contact .contact-info-box {
    padding: 1.8rem;
  }
}
#contact .contact-info-box h3 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #f7f6f3;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #contact .contact-info-box h3 {
    font-size: 1.3rem;
  }
}
#contact .contact-info-box .contact-intro {
  font-size: 0.9rem;
  color: rgba(247, 246, 243, 0.65);
  line-height: 1.85;
  margin-bottom: 2rem;
}
#contact .contact-info-box .contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 0;
}
#contact .contact-info-box .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
#contact .contact-info-box .contact-list li i {
  font-size: 1.2rem;
  color: #b03a2e;
  margin-top: 2px;
  flex-shrink: 0;
}
#contact .contact-info-box .contact-list li a {
  color: rgba(247, 246, 243, 0.75);
  font-size: 0.9rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6;
}
#contact .contact-info-box .contact-list li a:hover {
  color: #b03a2e;
}
#contact .contact-info-box .contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
#contact .contact-info-box .contact-social .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(247, 246, 243, 0.15);
  color: rgba(247, 246, 243, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#contact .contact-info-box .contact-social .social-link svg,
#contact .contact-info-box .contact-social .social-link i {
  font-size: 1.1rem;
  flex-shrink: 0;
}
#contact .contact-info-box .contact-social .social-link:hover {
  border-color: #b03a2e;
  color: #f7f6f3;
}
#contact .contact-info-box .contact-social .social-link.line-link svg {
  width: 20px;
  height: 20px;
  fill: #b03a2e;
}
#contact .map-wrap {
  height: 100%;
  min-height: 380px;
}
@media (max-width: 768px) {
  #contact .map-wrap {
    min-height: 280px;
  }
}
#contact .map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: grayscale(40%) contrast(1.1);
}
@media (max-width: 768px) {
  #contact .map-wrap iframe {
    min-height: 280px;
  }
}

#footer {
  background: rgb(19.35, 19.35, 19.35);
}
#footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#footer .footer-brand .footer-logo {
  width: 44px;
  height: 44px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  opacity: 0.85;
}
#footer .footer-brand .footer-brand-text .footer-brand-cn {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 1rem;
  color: #f7f6f3;
  letter-spacing: 0.15em;
  margin-bottom: 0;
}
#footer .footer-brand .footer-brand-text .footer-brand-en {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: #d8c8a3;
}
#footer .footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(247, 246, 243, 0.55);
  margin-bottom: 0.6rem;
}
#footer .footer-info p i {
  color: #b03a2e;
  margin-top: 2px;
  flex-shrink: 0;
}
#footer .footer-info p a {
  color: rgba(247, 246, 243, 0.55);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#footer .footer-info p a:hover {
  color: #b03a2e;
}
#footer .footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #footer .footer-social {
    justify-content: flex-start;
  }
}
#footer .footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247, 246, 243, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 246, 243, 0.55);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#footer .footer-social a i,
#footer .footer-social a svg {
  font-size: 1.1rem;
  width: 18px;
  height: 18px;
}
#footer .footer-social a:hover {
  border-color: #b03a2e;
  color: #b03a2e;
}
#footer .footer-social a:hover svg {
  fill: #b03a2e;
}
#footer .footer-bottom {
  padding: 0.5rem 0;
  border-top: 1px solid rgba(247, 246, 243, 0.07);
  text-align: center;
}
#footer .footer-bottom p {
  color: rgba(247, 246, 243, 0.35);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-size: 0.78rem;
}
#footer .footer-bottom p .designed-by {
  font-size: 0.78rem;
  color: rgba(247, 246, 243, 0.35);
  margin-left: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#footer .footer-bottom p .designed-by:hover {
  color: #b03a2e;
}

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 1.2rem;
    right: 1rem;
    gap: 0.6rem;
  }
}
.floating-actions .float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 27, 27, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-actions .float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(27, 27, 27, 0.35);
}
@media (max-width: 768px) {
  .floating-actions .float-btn {
    width: 46px;
    height: 46px;
  }
}
.floating-actions .float-phone {
  background: #1b1b1b;
  border: 1px solid rgba(247, 246, 243, 0.15);
}
.floating-actions .float-phone i {
  font-size: 1.4rem;
  color: #f7f6f3;
}
.floating-actions .float-line {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.floating-actions .float-line svg {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=all.css.map */