.main {
  padding-top: 80px;
}

.heritage-story {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.heritage-story::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(212,163,115,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-50px);
  }
}

.heritage-story__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.heritage-story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.heritage-story__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.heritage-story__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.heritage-story__description {
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

.heritage-story__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.heritage-highlight {
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.heritage-highlight:hover {
  box-shadow: 0 15px 40px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.heritage-highlight i {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.heritage-highlight h3 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.heritage-highlight p {
  opacity: 0.8;
  color: var(--text-color);
}

.heritage-story__image {
  position: relative;
}

.heritage-story__image img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.2);
}

.heritage-story__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 5px 20px rgba(166, 61, 64, 0.3);
  color: white;
  font-weight: 600;
  background: var(--accent-color);
}



.expert-team {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.expert-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expert-team__header {
  margin-bottom: 4rem;
  text-align: center;
}

.expert-team__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.expert-team__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.expert-team__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.expert-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  border: 2px solid transparent;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.2);
  transform: translateY(-10px);
}

.team-member__image {
  position: relative;
  overflow: hidden;
}

.team-member__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .team-member__image img {
  transform: scale(1.05);
}

.team-member__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: linear-gradient(135deg, rgba(46, 74, 98, 0.8), rgba(166, 61, 64, 0.8));
  transition: all 0.3s ease;
}

.team-member:hover .team-member__overlay {
  opacity: 1;
}

.team-member__social {
  display: flex;
  gap: 1rem;
}

.team-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  color: var(--main-color);
  background: white;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.team-member:hover .team-social-link {
  opacity: 1;
  transform: translateY(0);
}

.team-social-link:nth-child(1) {
  transition-delay: 0.1s;
}

.team-social-link:nth-child(2) {
  transition-delay: 0.2s;
}

.team-social-link:hover {
  color: white;
  background: var(--secondary-color);
  transform: scale(1.1);
}

.team-member__info {
  padding: 1.5rem;
}

.team-member__name {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.team-member__role {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1rem;
}

.team-member__description {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}



.craftsmanship-process {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, var(--bg-color) 100%);
}

.craftsmanship-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.craftsmanship-process__header {
  margin-bottom: 4rem;
  text-align: center;
}

.craftsmanship-process__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.craftsmanship-process__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.craftsmanship-process__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.craftsmanship-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.process-step {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.process-step__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.process-step:hover .process-step__icon {
  transform: scale(1.1) rotate(5deg);
}

.process-step__icon i {
  color: white;
  font-size: 2rem;
}

.process-step__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.process-step__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.process-step__image {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
}

.process-step__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.process-step:hover .process-step__image img {
  transform: scale(1.05);
}



.brand-principles {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.brand-principles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-principles__header {
  margin-bottom: 4rem;
  text-align: center;
}

.brand-principles__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.brand-principles__title i {
  color: var(--accent-color);
  font-size: 2rem;
}

.brand-principles__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.brand-principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.principle-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.principle-card::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  transition: opacity 0.3s ease;
}

.principle-card:hover::before {
  opacity: .4;
}

.principle-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.principle-card:hover .principle-card__icon {
  transform: scale(1.1) rotate(360deg);
}

.principle-card__icon i {
  color: white;
  font-size: 2.5rem;
}

.principle-card__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.principle-card__description {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}



.showcase-gallery {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.showcase-gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.showcase-gallery__header {
  margin-bottom: 4rem;
  text-align: center;
}

.showcase-gallery__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.showcase-gallery__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.showcase-gallery__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.showcase-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.2);
  transform: translateY(-10px);
}

.gallery-item__image {
  position: relative;
  overflow: hidden;
}

.gallery-item__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__image img {
  transform: scale(1.1);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(46, 74, 98, 0.8), rgba(166, 61, 64, 0.8));
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__content {
  padding: 2rem;
  color: white;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.gallery-item:hover .gallery-item__content {
  transform: translateY(0);
}

.gallery-item__title {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
}

.gallery-item__location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.gallery-item__price {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.2rem;
}



.trusted-partners {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.trusted-partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trusted-partners__header {
  margin-bottom: 4rem;
  text-align: center;
}

.trusted-partners__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.trusted-partners__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.trusted-partners__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.trusted-partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.partner-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.2), transparent);
  transition: left 0.5s ease;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card__logo {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
}

.partner-card__logo img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-card__logo img {
  transform: scale(1.05);
}

.partner-card__name {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.partner-card__description {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.partner-card__location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
}

.partner-card__location i {
  color: var(--accent-color);
}




@media (max-width: 1024px) {
  .heritage-story__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .heritage-story__image {
    order: -1;
  }

  .expert-team__grid {
    gap: 1.5rem;
  }

  .brand-principles__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .showcase-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}


@media (max-width: 768px) {

  .heritage-story,
  .expert-team,
  .craftsmanship-process,
  .brand-principles,
  .showcase-gallery,
  .trusted-partners {
    padding: 3rem 0;
  }

  .heritage-story__container,
  .expert-team__container,
  .craftsmanship-process__container,
  .brand-principles__container,
  .showcase-gallery__container,
  .trusted-partners__container {
    padding: 0 15px;
  }

  .heritage-story__title,
  .expert-team__title,
  .craftsmanship-process__title,
  .brand-principles__title,
  .showcase-gallery__title,
  .trusted-partners__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .heritage-story__title i,
  .expert-team__title i,
  .craftsmanship-process__title i,
  .brand-principles__title i,
  .showcase-gallery__title i,
  .trusted-partners__title i {
    font-size: 1.5rem;
  }

  .heritage-story__highlights {
    gap: 1rem;
  }

  .heritage-highlight {
    padding: 1rem;
  }

  .expert-team__grid {
    gap: 1.5rem;
  }

  .craftsmanship-process__steps {
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .brand-principles__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .principle-card {
    padding: 1.5rem;
  }

  .showcase-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trusted-partners__grid {
    gap: 1.5rem;
  }

  .partner-card {
    padding: 1.5rem;
  }
}


@media (max-width: 480px) {

  .heritage-story,
  .expert-team,
  .craftsmanship-process,
  .brand-principles,
  .showcase-gallery,
  .trusted-partners {
    padding: 2rem 0;
  }

  .heritage-story__title,
  .expert-team__title,
  .craftsmanship-process__title,
  .brand-principles__title,
  .showcase-gallery__title,
  .trusted-partners__title {
    font-size: 1.8rem;
  }

  .heritage-story__image img {
    height: 300px;
  }

  .team-member__image img {
    height: 250px;
  }

  .gallery-item__image img {
    height: 250px;
  }

  .process-step__image img {
    height: 180px;
  }
}


.heritage-highlight:nth-child(1) {
  animation-delay: 0.1s;
}

.heritage-highlight:nth-child(2) {
  animation-delay: 0.2s;
}

.heritage-highlight:nth-child(3) {
  animation-delay: 0.3s;
}

.team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.team-member:nth-child(2) {
  animation-delay: 0.2s;
}

.team-member:nth-child(3) {
  animation-delay: 0.3s;
}

.team-member:nth-child(4) {
  animation-delay: 0.4s;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.process-step:nth-child(3) {
  animation-delay: 0.3s;
}

.process-step:nth-child(4) {
  animation-delay: 0.4s;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heritage-story,
.expert-team,
.craftsmanship-process,
.brand-principles,
.showcase-gallery,
.trusted-partners {
  animation: fadeInUp 0.8s ease-out;
}