@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.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;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #faf8f5;
  color: #2f2f2f;
  font-family: "Noto Serif TC", "Noto Sans TC", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 300;
  scroll-behavior: smooth;
}

/* CSS */
[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);
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 3.5rem;
  }
}
.section-title .title-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(199, 180, 163, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: -1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-title .title-en {
    font-size: 3rem;
  }
}
.section-title .title-zh {
  font-size: 2.2rem;
  font-weight: 500;
  color: #5c5349;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .section-title .title-zh {
    font-size: 1.8rem;
  }
}
.section-title .title-zh::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #bfa9a3;
  border-radius: 5px;
}

.split {
  display: inline-block;
  overflow: hidden;
  text-shadow: 0 1.3em currentColor; /* 和 JS 位移一致 */
  will-change: transform;
  padding: 1 1rem;
}

.char {
  display: inline-block;
  position: relative;
}

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

a {
  text-decoration: none;
  color: #c7b4a3;
}

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

.all-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.35;
}
.all-bg img {
  width: 100%;
  height: 100%;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #c7b4a3;
}
.cta-link a.tel .label {
  color: #333;
}
.cta-link a.tel svg #background {
  fill: #c7b4a3;
}
.cta-link a.tel svg #icon {
  fill: white;
  fill: #333;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 50px;
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  /* 用可動畫屬性取代 display */
  opacity: 0;
  visibility: hidden;
  max-width: 0; /* 或用 width，依喜好 */
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.cta-link a:hover {
  gap: 0.5rem;
}
.cta-link a:hover .label {
  opacity: 1;
  visibility: visible;
  max-width: 200px;
  margin-left: 0rem;
  padding-right: 1rem;
  transform: translateX(0);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s;
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar.scrolled {
  background: #faf8f5;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand span {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-brand span {
    font-size: 1.3rem;
  }
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 50px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #c7b4a3;
}

#hero {
  background-color: #faf8f5;
  background: linear-gradient(to bottom, #faf8f5, rgba(199, 180, 163, 0.5));
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  #hero {
    min-height: auto;
    padding: 6rem 0 6rem;
  }
}
#hero .vertical-deco-text {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  writing-mode: vertical-rl;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(92, 83, 73, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
}
#hero .hero-text-content {
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  #hero .hero-text-content {
    margin-bottom: 4rem;
  }
}
@media (max-width: 400px) {
  #hero .hero-text-content {
    padding-top: 0rem;
    margin-bottom: 2rem;
  }
}
#hero .hero-text-content .text-wrapper {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  #hero .hero-text-content .text-wrapper {
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#hero .hero-text-content .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bfa9a3;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
#hero .hero-text-content .eyebrow-line i {
  font-size: 1.2rem;
  color: #c7b4a3;
}
#hero .hero-text-content .hero-title {
  font-size: 4rem;
  font-weight: 300;
  color: #2f2f2f;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  #hero .hero-text-content .hero-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  #hero .hero-text-content .hero-title {
    font-size: 2.5rem;
  }
}
#hero .hero-text-content .hero-title .highlight {
  position: relative;
  display: inline-block;
  font-weight: 400;
  color: #5c5349;
  font-size: 4rem;
}
@media (max-width: 1200px) {
  #hero .hero-text-content .hero-title .highlight {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  #hero .hero-text-content .hero-title .highlight {
    font-size: 2.5rem;
  }
}
#hero .hero-text-content .hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(199, 180, 163, 0.3);
  z-index: -1;
}
#hero .hero-text-content .hero-desc {
  font-size: 1.05rem;
  color: #7a7a7a;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem;
  max-width: 90%;
}
@media (max-width: 991px) {
  #hero .hero-text-content .hero-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #hero .hero-text-content .hero-desc {
    display: none;
  }
}
#hero .hero-text-content .btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  group: hover;
}
#hero .hero-text-content .btn-editorial .btn-text {
  font-size: 1rem;
  color: #2f2f2f;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}
#hero .hero-text-content .btn-editorial .btn-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #5c5349;
  transition: width 0.4s ease;
}
#hero .hero-text-content .btn-editorial .btn-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(92, 83, 73, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5c5349;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}
#hero .hero-text-content .btn-editorial:hover .btn-text {
  color: #5c5349;
}
#hero .hero-text-content .btn-editorial:hover .btn-text::after {
  width: 100%;
}
#hero .hero-text-content .btn-editorial:hover .btn-icon-circle {
  background-color: #5c5349;
  color: #fff;
  transform: rotate(45deg);
}
#hero .hero-visual-gallery {
  position: relative;
}
#hero .hero-visual-gallery .gallery-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}
@media (max-width: 991px) {
  #hero .hero-visual-gallery .gallery-wrapper {
    height: 500px;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #hero .hero-visual-gallery .gallery-wrapper {
    height: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#hero .hero-visual-gallery .gallery-wrapper .img-box {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(47, 47, 47, 0.08);
}
@media (max-width: 768px) {
  #hero .hero-visual-gallery .gallery-wrapper .img-box {
    position: relative;
  }
}
#hero .hero-visual-gallery .gallery-wrapper .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
#hero .hero-visual-gallery .gallery-wrapper .img-box:hover img {
  transform: scale(1.03);
}
#hero .hero-visual-gallery .gallery-wrapper .main-img {
  width: 75%;
  top: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  #hero .hero-visual-gallery .gallery-wrapper .main-img {
    width: 85%;
    align-self: flex-end;
    transform: translateY(0);
  }
}
#hero .hero-visual-gallery .gallery-wrapper .sub-img {
  width: 45%;
  height: 50%;
  bottom: -3rem;
  left: -5rem;
  z-index: 3;
  border: 8px solid #faf8f5;
}
@media (max-width: 768px) {
  #hero .hero-visual-gallery .gallery-wrapper .sub-img {
    width: 70%;
    transform: translateY(-40px);
    left: -3rem;
    margin-top: -20px;
    border-width: 4px;
  }
}
#hero .hero-visual-gallery .gallery-wrapper .deco-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #bfa9a3;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  z-index: 1;
  opacity: 0.15;
  filter: blur(20px);
}
@media (max-width: 768px) {
  #hero .hero-visual-gallery .gallery-wrapper .deco-circle {
    width: 200px;
    height: 200px;
  }
}

#about .about-image-wrapper {
  position: relative;
  padding: 2rem;
}
@media (max-width: 991px) {
  #about .about-image-wrapper {
    margin-bottom: 3rem;
    padding: 1rem;
  }
}
#about .about-image-wrapper .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: rgba(199, 180, 163, 0.2);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 0;
}
#about .about-image-wrapper .about-img {
  position: relative;
  z-index: 1;
  border-radius: 20px 100px 20px 20px;
  box-shadow: 10px 15px 30px rgba(92, 83, 73, 0.08);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 4/5;
}
#about .about-content {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  #about .about-content {
    padding-left: 0;
    text-align: center;
  }
}
#about .about-content .leaf-icon {
  font-size: 2.5rem;
  color: #c7b4a3;
  margin-bottom: 1rem;
}
#about .about-content .highlight-text {
  font-size: 1.3rem;
  color: #5c5349;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #about .about-content .highlight-text {
    font-size: 1.15rem;
  }
}
#about .about-content p {
  color: #7a7a7a;
  margin-bottom: 1rem;
  text-align: justify;
}
@media (max-width: 991px) {
  #about .about-content p {
    text-align: center;
  }
}
#about .about-content .quote-text {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(199, 180, 163, 0.1), transparent);
  border-radius: 0 15px 15px 0;
  color: #5c5349;
}
@media (max-width: 991px) {
  #about .about-content .quote-text {
    border-radius: 15px;
  }
}
#about .about-content .quote-text strong {
  display: block;
  margin-top: 0.5rem;
  color: #2f2f2f;
  font-size: 1.1rem;
}

#services {
  background: rgba(199, 180, 163, 0.2);
}
#services .service-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(47, 47, 47, 0.04);
  position: relative;
  border: 1px solid rgba(199, 180, 163, 0.1);
}
#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(47, 47, 47, 0.08);
}
#services .service-card:hover .img-box img {
  transform: scale(1.05);
}
#services .service-card .img-box {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#services .service-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#services .service-card .card-body {
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  text-align: center;
}
#services .service-card .card-body .step-num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #faf8f5;
  background: #bfa9a3;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", serif;
  font-size: 1.5rem;
  color: #c7b4a3;
  color: white;
  box-shadow: 0 5px 15px rgba(92, 83, 73, 0.1);
}
#services .service-card .card-body h3 {
  font-size: 1.25rem;
  color: #5c5349;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#services .service-card .card-body h3 i {
  color: #bfa9a3;
}
#services .service-card .card-body .sub-label {
  display: block;
  font-size: 0.85rem;
  color: #c7b4a3;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
#services .service-card .card-body p {
  font-size: 0.95rem;
  color: #7a7a7a;
  margin-bottom: 0;
  text-align: justify;
}
@media (max-width: 768px) {
  #services .service-card .card-body p {
    text-align: center;
  }
}

#process .process-wrapper {
  position: relative;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  #process .process-wrapper {
    padding-left: 2rem;
  }
}
#process .process-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(199, 180, 163, 0.1), #c7b4a3, rgba(199, 180, 163, 0.1));
}
@media (max-width: 768px) {
  #process .process-wrapper::before {
    left: 15px;
  }
}
#process .process-wrapper .process-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
}
#process .process-wrapper .process-item:last-child {
  margin-bottom: 0;
}
#process .process-wrapper .process-item .process-icon {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #c7b4a3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5349;
  font-size: 1.2rem;
  box-shadow: 0 0 0 5px #faf8f5;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #process .process-wrapper .process-item .process-icon {
    left: -2rem;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
#process .process-wrapper .process-item:hover .process-icon {
  background-color: #c7b4a3;
  color: #fff;
}
#process .process-wrapper .process-item .process-content {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 2rem;
  border-radius: 0 20px 20px 20px;
  box-shadow: 0 5px 20px rgba(47, 47, 47, 0.02);
  width: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  #process .process-wrapper .process-item .process-content {
    padding: 1.2rem 1.5rem;
  }
}
#process .process-wrapper .process-item .process-content h4 {
  font-size: 1.1rem;
  color: #5c5349;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
#process .process-wrapper .process-item .process-content h4 span {
  font-size: 0.8rem;
  background-color: rgba(191, 169, 163, 0.2);
  color: #5c5349;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
#process .process-wrapper .process-item .process-content p {
  color: #7a7a7a;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.auto-carousel {
  padding: 0;
  scroll-margin-top: 8rem;
}
.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: 300px;
  aspect-ratio: 4/5;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 150px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #c7b4a3;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

#contact {
  background-color: #faf8f5;
  position: relative;
  overflow: hidden;
}
#contact .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(199, 180, 163, 0.15);
  box-shadow: 0 10px 25px rgba(47, 47, 47, 0.02);
  transition: all 0.4s ease;
}
#contact .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(47, 47, 47, 0.06);
  background: rgb(255, 255, 255);
  border-color: rgba(199, 180, 163, 0.3);
}
#contact .contact-card:hover .icon-wrapper {
  background-color: #c7b4a3;
  color: #fff;
}
#contact .contact-card:hover .icon-wrapper.custom-svg svg path {
  fill: #fff;
}
#contact .contact-card.highlight-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(191, 169, 163, 0.15));
  border: 1px solid rgba(199, 180, 163, 0.4);
}
#contact .contact-card.highlight-card .icon-wrapper {
  background-color: #5c5349;
  color: #fff;
}
#contact .contact-card.highlight-card .icon-wrapper svg path {
  fill: #ffffff !important;
}
#contact .contact-card.highlight-card:hover .icon-wrapper {
  background-color: #c7b4a3;
}
#contact .contact-card .icon-wrapper {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: rgba(199, 180, 163, 0.1);
  color: #5c5349;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
#contact .contact-card .icon-wrapper.custom-svg svg path {
  transition: fill 0.3s ease;
  fill: #5c5349;
}
#contact .contact-card .content {
  flex-grow: 1;
}
#contact .contact-card .content h3 {
  font-size: 0.95rem;
  color: #7a7a7a;
  margin-bottom: 0.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
#contact .contact-card .content p {
  color: #2f2f2f;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
#contact .contact-card .content .info-text {
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
#contact .contact-card .content .info-text:hover {
  color: #5c5349;
}
#contact .contact-card .content .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #c7b4a3;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0.3rem;
}
#contact .contact-card .content .link-btn i {
  transition: transform 0.3s ease;
}
#contact .contact-card .content .link-btn:hover {
  color: #5c5349;
}
#contact .contact-card .content .link-btn:hover i {
  transform: translateX(4px);
}
#contact .contact-card .content .link-btn.primary {
  color: #5c5349;
  font-weight: 600;
}
#contact .contact-card .content .link-btn.primary:hover {
  color: #c7b4a3;
}
#contact .map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(47, 47, 47, 0.06);
  border: 6px solid #fff;
  position: relative;
}
@media (max-width: 991px) {
  #contact .map-wrapper {
    min-height: 350px;
    margin-top: 2rem;
  }
}
#contact .map-wrapper iframe {
  filter: grayscale(20%) contrast(90%);
  transition: filter 0.3s ease;
}
#contact .map-wrapper iframe:hover {
  filter: grayscale(0%) contrast(100%);
}

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